/* General Styling */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
    
}

header {
    position: fixed; /* Fixed position to stay on top */
    top: 0;
    z-index: 1000;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: larger;
    background-color: rgb(163, 160, 160); /* Gray background */
    box-shadow: inset 0 12px 22px rgba(0.4, 0.4, 0.5, 0.4); /* Inner shadow */
}
/* for sub menu on nav bar */
.menu {
  margin-top: -11px;
  font-family: 'Segoe UI', 'Roboto', 'Montserrat', 'Arial', 'Helvetica Neue', sans-serif;
  font-weight: bolder;
  font-size: 20px;
  line-height: 1;
  color: white;
  width: fit-content;
  display: flex;
  list-style: none;
}
  
  .menu a {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  .menu .link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 36px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .menu .link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #007b5e;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .menu .link svg {
    width: 14px;
    height: 14px;
    fill: #000000;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .menu .item {
    position: relative;
  }
  
  .menu .item .submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    border-radius: 0 0 16px 16px;
    left: 0;
    width: 100%;
    overflow: hidden;
    border: 1px solid #cccccc;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    pointer-events: none;
    list-style: none;
    font-size: 18px;
  }
  
  .menu .item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    border-top: transparent;
    border-color: #007b5e;
  }
  
  .menu .item:hover .link {
    color: #ffffff;
    border-radius: 16px 16px 0 0;
  }
  
  .menu .item:hover .link::after {
    transform: scaleX(1);
    transform-origin: right;
  }
  
  .menu .item:hover .link svg {
    fill: #ffffff;
    transform: rotate(-180deg);
  }
  
  .submenu .submenu-item {
    width: 100%;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .submenu .submenu-link {
    display: block;
    padding: 12px 24px;
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .submenu .submenu-item:last-child .submenu-link {
    border-bottom: none;
  }
  
  .submenu .submenu-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    width: 100%;
    height: 100%;
    background-color: #007b5e;
    z-index: -1;
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .submenu .submenu-link:hover:before {
    transform: scaleX(1);
    transform-origin: right;
  }
  
  .submenu .submenu-link:hover {
    color: #ffffff;
  }


                /* whatsapp icom */
  .whatsapp-icon {
    position: fixed;
    bottom: 60px;
    right: 30px;
    text-align: center;
    z-index: 1000;
  }
  
  /* Link Styling */
  .whatsapp-link {
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }
  
  /* Note Styling */
  .note {
    background: #25d366;
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 15px 25px;
    text-align: center;
    position: relative;
    max-width: 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Adding subtle gradient to note */
  .note {
    background: linear-gradient(135deg, #25d366, #1eb956);
  }
  
  /* Adding arrow design to the note */
  .note::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #1eb956;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
  
  /* Hover effect for note */
  .whatsapp-link:hover .note {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1eb956, #25d366);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Icon Styling */
  .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-top: 10px;
  }
  
  .icon img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Hover effect for icon */
  .whatsapp-link:hover img {
    transform: scale(1.15);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .note {
      font-size: 13px;
      padding: 10px 20px;
      max-width: 180px;
    }
  
    .icon {
      width: 50px;
      height: 50px;
    }
  }
  
  @media (max-width: 480px) {
    .whatsapp-icon {
        position: fixed;
        bottom: 26%;
        right: 30px;
        text-align: center;
        z-index: 1000;
      }
    .note {
      font-size: 12px;
      padding: 8px 15px;
      max-width: 150px;
    }
  
    .icon {
      width: 40px;
      height: 40px;

    }
  }
.logo {
    height: 50px;
    margin-left: 10%;
}

nav {
    margin-right: 10%;
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
margin-top: -11px;
  font-family: 'Segoe UI', 'Roboto', 'Montserrat', 'Arial', 'Helvetica Neue', sans-serif;
  font-weight: bolder;
  font-size: 20px;
  line-height: 1;
  color: white;
  width: fit-content;
  display: flex;
  list-style: none;
    
           
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 15px;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #007b5e;
    color: #ffffff;
}

/* Sliding Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: #ffffff;
    margin-right: 10%;
    font-size: 24px; /* Larger font for the toggle */
}

.sidebar {
    position: fixed;
    top: 0;
    right: -250px; /* Hidden off-screen */
    width: 250px;
    height: 100%;
    background: rgba(28, 28, 28, 0.9);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.sidebar ul li a:hover {
    background-color: #007b5e;
}

/* Image Background Section */
.image-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-image: url('https://img.freepik.com/free-vector/blue-copy-space-digital-background_23-2148821698.jpg?ga=GA1.1.1083888277.1742803658&semt=ais_hybrid&w=740');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

section.about {
    position: relative;
    padding: 60px 20px;
    color: #fff;
    z-index: 1;
}

section.about h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white; /* Ensure the h1 color is set to white */
}

/* Adjusted Paragraph styles */
section.about p {
    position: relative;
    font-size: 1.6rem; /* Adjusted font size for better readability */
    max-width: 85%;
    margin: 0 auto;
    line-height: 1.8;
    color: #fff;
    transform: translateY(100px); /* Start position (below) */
    opacity: 0; /* Start hidden */
    animation: slideUp 1s ease-in forwards; /* Animation */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Transition for hover effect */
}

/* Add hover effect for paragraph */
section.about p:hover {
    transform: translateY(-10px); /* Move up on hover */
    opacity: 1; /* Ensure it's fully visible on hover */
}

/* Keyframes for slide-up animation */
@keyframes slideUp {
    0% {
        transform: translateY(100px); /* Start from below */
        opacity: 0; /* Fully transparent */
    }
    100% {
        transform: translateY(0); /* Move to original position */
        opacity: 1; /* Fully visible */
    }
}



/* Our Services Section */
.services {
    background-color: #ffffff;
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 12px;
    border: 2px solid #007b5e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    text-align: center;
}

.services h2 {
    color: #007b5e;
    margin-bottom: 30px;
    font-size: 2rem; /* Adjusted for mobile readability */
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 30%); /* 3 items in a row with 30% width */
    justify-content: space-between; /* Even spacing between items */
    gap: 20px;
}

.service-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 80px; /* Set width for icon size */
    height: 80px; /* Set height for icon size */
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #007b5e;
    margin: 15px 0;
    font-size: 1.5rem; /* Adjusted for mobile */
}

.service-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem; /* Adjusted for readability on smaller screens */
}

/* Responsive Design for Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .services-container {
        grid-template-columns: repeat(3, 30%);
    }
}

/* Responsive Design for Medium Screens (768px to 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .services-container {
        grid-template-columns: repeat(2, 45%); /* 2 items in a row */
    }
}

/* Responsive Design for Small Screens (Mobile) */
@media (max-width: 767px) {
    .services-container {
        grid-template-columns: 1fr; /* 1 item in a row */
    }

    .service-item {
        padding: 15px; /* Compact padding for mobile */
    }

    .service-image {
        width: 60px; /* Adjust icon size for mobile */
        height: 60px;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }
}



/* CEO Vision Section */
.ceo-vision {
    background-color: #ffffff;
    padding: 40px 20px;
    margin: 40px auto;
    border-radius: 12px;
    border: 2px solid #007b5e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    text-align: center;
}

.ceo-vision h2 {
    color: #007b5e;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.ceo-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 20px 0;
}

.ceo-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.ceo-image {
    width: 200px; /* Adjust size as needed */
    border-radius: 10px;
}

.ceo-name {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333; /* Use a suitable color for contrast */
    font-weight: bold;
}


/* Our History Section */
.our-history {
    background-color: #f5f5f5; /* Light gray background for a professional look */
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 12px;
    max-width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left; /* Align text to the left */
}

.our-history h2 {
    color: #007b5e; /* Match brand or theme color */
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center; /* Center align the heading */
}

.our-history p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333; /* Dark gray for readability */
    margin-bottom: 15px;
}

.our-history p strong {
    color: #007b5e; /* Highlight strong text with theme color */
    font-weight: bold;
}





/* Contact Us Section */
.contact-us {
    background-color: #007b5e;
    color: #fff;
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.contact-us h2 {
    margin-bottom: 15px;
}

.contact-us p {
    font-size: large;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    color: #777;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    header {
        padding: 10px;
    }
    .logo {
        height: 40px;
    }
    nav ul li {
        margin: 0 10px;
    }
    nav ul li a {
        padding: 8px 12px;
    }
    .ceo-vision,
    .contact-us,
    .services {
        width: 95%;
    }
   
}

@media (max-width: 992px) {
    section.about h1 {
        font-size: 2.5rem;
    }
    section.about p {
        font-size: 1rem;
    }
    .ceo-vision,
    
    .contact-us,
    .services {
        width: 95%;
    }
}

@media (max-width: 768px) {
    nav {
        display: none; /* Hide the normal nav */
    }

    .menu-toggle {
        display: block; /* Show the menu toggle */
    }

    .sidebar {
        width: 250px;
    }

    section.about h1 {
        font-size: 2rem;
    }
    .ceo-vision,
  
    .contact-us,
    .services {
        width: 98%;
    }
}

@media (max-width: 576px) {
    .sidebar {
        width: 200px; /* Reduce sidebar width on smaller screens */
    }

    section.about h1 {
        margin-top: -100px;
        font-size: 1.5rem;
    }

    section.about p {
        font-size: 0.9rem;
        margin-top: 50px;
    }

    .ceo-vision h2,
   
    .services h2 {
        font-size: 1.5rem;
    }

    .contact-us h2 {
        font-size: 1.5rem;
    }

    .service-item {
        padding: 15px;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
/* Keyframe Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Animation for Services Section */
@media (max-width: 768px) {
    .service-item {
        animation: slideIn 0.5s ease forwards;
        opacity: 0; /* Start invisible for animation */
    }

    .service-item:nth-child(1) { animation-delay: 0.1s; }
    .service-item:nth-child(2) { animation-delay: 0.2s; }
    .service-item:nth-child(3) { animation-delay: 0.3s; }
    .service-item:nth-child(4) { animation-delay: 0.4s; }
    .service-item:nth-child(5) { animation-delay: 0.5s; }
    .service-item:nth-child(6) { animation-delay: 0.6s; }
}
.icon {
    width:40px; /* Set a width for the icons */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between icon and text */
    vertical-align: middle; /* Align icon vertically with text */
}
/* footer */
.footer {
    width: 100%;
    background-color: rgb(163, 160, 160); /* Gray background */
    box-shadow: inset 0 12px 22px rgba(0.4, 0.4, 0.5, 0.4); /* Inner shadow */
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    color:white;
    margin-top: auto; /* This makes the footer stick to the bottom */
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer p {
    margin: 0 0 10px;
    font-weight: 500;
  }
  
  .social-media {
    display: flex;
    gap: 30px;
    justify-content: center;
  }
  
  .social-link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: grayscale(10%);
  }
  
  .social-link:hover img {
    transform: scale(1.2);
    filter: grayscale(0%);
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer p {
      font-size: 12px;
    }
  
    .social-link img {
      width: 20px;
      height: 20px;
    }
  
    .footer {
      padding: 15px 0; /* Adjust padding for smaller screens */
    }
  }
   
/* General Section Styling */
.legal-section {
    max-width: 90%;
    margin: 40px auto;
    padding: 30px 25px;
    background-color: #f9f9f9;
    border-left: 6px solid   #007b5e; /* Green left border */;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #333;
}

/* Section Headings */
.legal-section h2 {
    font-size: 26px;
    color: #444;
    margin-bottom: 15px;
    border-bottom: 2px solid #007b5e;
    padding-bottom: 5px;
}

/* Paragraph Styling */
.legal-section p {
    font-size: 16px;
    text-align: justify;
}

/* Highlight Important Text */
.legal-section strong {
    color: #000;
}

/* Links */
.legal-section a {
    color:  #007b5e;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .legal-section {
        padding: 20px 15px;
    }

    .legal-section h2 {
        font-size: 22px;
    }

    .legal-section p {
        font-size: 15px;
    }
}
 /* View on scroll animation styles */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
    will-change: opacity, transform;
  }
  .animate-on-scroll.visible {
    opacity: 1;
    transform: none;
  }

  .why-choose-us {
        background: #f7f7f7;
        padding: 50px 0 30px 0;
        text-align: center;
      }
      .choose-us-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
      }
      .choose-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.07);
        padding: 30px 24px 20px 24px;
        max-width: 270px;
        flex: 1 1 220px;
        min-width: 220px;
        transition: box-shadow 0.3s;
      }
      .choose-card:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,0.13);
      }
      .choose-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
      }
      .faqs-section {
        background: #fff;
        padding: 50px 0 30px 0;
        text-align: center;
      }
      .faqs-container {
        max-width: 700px;
        margin: 0 auto;
        text-align: left;
      }
      .faq-item {
        margin-bottom: 18px;
        border-radius: 8px;
        background: #f7f7f7;
        box-shadow: 0 1px 6px rgba(0,0,0,0.04);
        overflow: hidden;
      }
      .faq-question {
        width: 100%;
        background: none;
        border: none;
        outline: none;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 18px 20px;
        cursor: pointer;
        text-align: left;
        transition: background 0.2s;
      }
      .faq-question:hover {
        background: #e0e0e0;
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: #fff;
        padding: 0 20px;
        font-size: 1rem;
        color: #333;
        transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
      }