/* General Styles */
body {
   

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    
    background-color: rgb(244,245,255);
   
}
.raleway-unique {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200; /* Example weight, you can change it as needed */
    font-style: normal;
  }

a {
    text-decoration: none;
    color: inherit;
}


.navbar {
    background-color: #fdfeff;
    color: rgb(5, 5, 5);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    font-size: large;
    color: #060606;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
}

.navbar ul li a:hover {
    color: #e87a05;
}

/* Add caret to dropdown */
.navbar ul li.dropdown > a::after {
    content: '\f0d7'; /* Font Awesome down arrow (caret) */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
}

.navbar ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fbfcfd;
    display: none;
    list-style: none;
    z-index: 998;
}

.navbar ul li:hover ul {
    display: block;
}

.navbar ul li ul li a {
    padding: 0.5rem 1rem;
    width: 200px;
    text-align: left;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgb(12, 12, 12);
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column; /* Keep this to stack items vertically */
        position: absolute;
        top: 70%;
        left: 0;
        background-color: #fdfefe;
        color: #000;
        width: 100%;
    
        display: none;
        z-index: 100;
        padding: 1rem 0; /* Add padding for better spacing */
    }

    .navbar ul.active {
        display: flex;
        flex-direction: column; /* Ensure items stack vertically */
        align-items: flex-start; /* Align items to the left */
    }

    .navbar ul li {
        width: 100%; /* Make each item full width */
    }

    .navbar ul li a {
        width: 100%; /* Make links full width for easier clicking */
        text-align: left; /* Align text to the left */
    }

    .navbar ul li ul {
        position: static; /* Ensure dropdowns are aligned properly */
    }

    .navbar ul li ul li a {
        padding: 0.5rem 1rem; /* Keep padding for dropdowns */
    }

    .menu-toggle {
        display: block;
    }
}


.section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f50;
    padding: 10px;
}
.text {
    color: white;
    font-size: 20px;
    margin-right: 20px;
}
.button {
    background-color: white;
    color: #f50;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #ff7043;
}
@media (max-width: 600px) {
    .text {
        font-size: 16px;
    }
    .button {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* Navbar Styles */

/* Hero Section Styles */

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Green overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(78,90,246, 0.7); /* Semi-transparent green overlay */
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 1rem;
    font-family: "Raleway", sans-serif;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: "Raleway", sans-serif;
    color: white;
    font-weight: 500;
    
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #ff6347;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff4500;
}

/* Responsive Design */

@media (max-width: 768px) {
    .hero-section{
        min-height: 50vh;
    }
    .hero-content{
        margin-bottom: 50px;
        padding-bottom: 50px ;
    }
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 50px;
        padding-bottom: 50px ;
    }

    .btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
.hero-section{
    min-height: 50vh;
}
    .hero-content{
        margin-bottom: 50px;
        padding-bottom: 50px ;
    }
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding-bottom: 50px ;
    }

    .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}




@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    
    .hero-content h1 {
        transform: translateY(-20px);
        font-size: 2.5em;
    }
    .hero-content p {
        transform: translateY(-20px);
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .hero{
        height: 30vh;
    }
    .hero-content h1 {
        transform: translateY(-40px);
        font-size: 2em;
    }
    .hero-content p {
        transform: translateY(-40px);
        font-size: 1.1em;
    }
    .hero-content button {
        transform: translateY(-40px);
        padding: 10px 25px;
        font-size: 1em;
    }
}





/* Responsive Styles */

/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Styles */

/* Tablets (Portrait, 768px and up) */
/* Tablets (Portrait, 768px and up) */
@media (max-width: 768px) {
    
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
    
}
/* Mobile Devices (Portrait, 480px and up) */
@media (max-width: 480px) {
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
   
    .hero{
        margin-bottom: 270px;
    }
    .hero-section{
        height: 30vh;
        display: flex;  
        flex-direction: column;  
        justify-content: flex-start;
       
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 50px;
    }

    .hero-content {
        margin-top: 150px;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-image {
        height: 200px;
    }
    .a{
        margin-top: 40px;
    }}


    

  
  


.text-image-sectionn{
    width: 78%;
    margin: 40px auto;
}


/* first section */
.company-section {
    margin: 0 auto ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;

    max-width: 1200px;
  

    gap: 20px;
    flex-wrap: wrap;
  }
  
  .image-container {
    flex: 1;
    margin-right: 20px;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .text-container {
    flex: 2;
    text-align: left;
  }
  
  .text-container h2 {
    font-family: "Raleway", sans-serif;
    font-size: 25px;
    margin-bottom: 10px;
    color:rgb(254,74,10);
    font-weight: bold;
  }
  
  .text-container p {
    text-align: justify;
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #000;
font-family: "Raleway", sans-serif;
    font-family: "Raleway", sans-serif;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .text-image-sectionn{
        max-width: 10px auto;
    }
    .company-section {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .image-container {
      margin-right: 0;
      margin-bottom: 20px;
    }
  
    .text-container {
      text-align: center;
    }
  
    .text-container h2 {
      font-size: 22px;
    }
  }
  
  @media (max-width: 768px) {
    .text-container h2 {
      font-size: 20px;
    }
  
    .text-container p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .text-image-sectionn{
        max-width: 10px auto;
    }
    .text-container h2 {
      font-size: 18px;
    }
  
    .text-container p {
      font-size: 14px;
    }
  
    .company-section {
      padding: 15px;
    }
  }

  
  /* 2nd section */
  .text-image-section {
    width: 75%;
    padding: 20px;
   
    margin: 10px auto;
  }
  
  .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 ;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
  }
  
  .left-text {
    padding: 20px;
    max-width: 900px;
    flex: 1;
    
  }
  
  .right-image img {
    max-width: 100%;
    height: auto;
    width: 500px; /* Set fixed width for larger screens */
  }
  
  h2 {
    font-size: 25px;
    color:rgb(254,74,10);
  }
  
  p {

    font-weight: 500;

    font-size: 23px;
    color: black;
  }
  
  @media (max-width: 992px) {
    .content-wrapper {
      flex-direction: column; /* Stack the text and image on smaller screens */
    }
    
    h2 {
      font-size: 28px;
    }
  
    p {
      font-size: 16px;
    }
  
    .right-image img {
      width: 100%; /* Adjust image width for smaller screens */
    }
  
    .left-text {
      padding: 15px;
    }
  }
  
  @media (max-width: 768px) {
    h2 {
      font-size: 24px;
    }
  
    p {
      font-size: 14px;
    }
  
    .right-image img {
      width: 100%; /* Full width image on small screens */
    }
  
    .left-text {
      padding: 10px;
    }
  }
  
  @media (max-width: 576px) {
    h2 {
      font-size: 20px;
    }
  
    p {
      font-size: 12px;
    }
  
    .left-text {
      padding: 8px;
    }
  }


  @media (max-width: 480px) {
    h2 {
      font-size: 20px;
    }
  
    p {
      font-size: 12px;
    }
  
    .left-text {
      padding: 8px;
    }

    .text-image-sectionn{
        margin: 10px auto;
    }
  }
  

  .services-section {
   background-color: white;
    padding: 50px 20px;
    color: #070707;
    width: 80%;
    margin: 40px auto;
  }
  
  .containerrr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .left-content {
    flex: 1;
    max-width: 40%;
    margin-right: 20px;
  }
  
  .left-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(254,74,10);
    margin-bottom: 10px;
  }
  
  .left-content h1 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .left-content .btn {
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    border: 1px solid rgb(254,74,10);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .left-content .btn:hover {
    background-color:rgb(254,74,10);
  }
  
  .right-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    flex: 1;
    max-width: 55%;
  }
  
  .service-card {
    background-color:rgb(254,74,10);
    padding: 20px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
  }
  
  .service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
  }
  
  .service-card p {
    font-size: 14px;
    color: #fefefe;
  }
  
  .service-card a {
    font-size: 14px;
    color: #fff;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .service-card a:hover {
    color: rgb(254,74,10);
  }
  
  .service-card.highlighted {
    background-color: rgb(254,74,10);
    color: #fff;
  }
  
  .service-card.highlighted a {
    color: #fff;
  }
  
  .service-card:hover {
    background-color: rgb(134, 44, 14);
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      text-align: center;
    }
  
    .left-content {
      max-width: 100%;
      margin-bottom: 30px;
    }
  
    .right-content {
      grid-template-columns: 1fr;
      max-width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .left-content h1 {
      font-size: 26px;
    }
  
    .left-content .btn {
      padding: 10px 25px;
    }
  }