body {
    font-family: 'nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    width: 100%;

}
/* body h1{
    text-align: center;
    font-size: 35px;
} */

/* /////////////////// */
.body_arch{
    font-family: 'nunito', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.body_arch h2{
    padding-left: 20px;
}

#achievements {
    display: flex;
    justify-content: space-around;
    width: 80%;
    padding: 2rem;
}

.achievement {
    text-align: center;
}

/* Counter Section */
.counter-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.counter-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.counter-container {
    text-align: center;
    width: 150px;
}

.counter-container h2 {
    font-size: 2.5rem;
    color: #28a745;
    margin: 10px 0;
    transition: color 0.3s ease-in-out;
}

.counter-container h2:hover {
    color: #1e7e34;
}

.counter-container p {
    font-size: 1.1rem;
    color: #555;
}


.body_arch p {
    font-size: 1.2rem;
    color: #333;
    margin-top: -50px;
}
/* //////////////// */

.header {
    height: 100vh;
    width:100%;
    position: relative;
    color: black;
    overflow: hidden; /* Ensure video does not overflow */
}

/* Background video styling */
#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
    z-index: -1; /* Place it behind the content */
}

/* Top Bar (Logo and Search Bar) */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.top-bar img {
    width: 300px;
    height: auto;
    padding-left: 10px
}

/* Search Bar Styling */
#search-bar {
    padding: 12px 20px;
    border-radius: 25px;
font-family:'nunito',serif;    
border: none;
    outline: none;
    max-width: 60%;
    background-color: #f1f1f1;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: width 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
}

#search-bar:focus {
    width: 300px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}
.hamburger-menu span {
    background: #333;
    height: 3px;
    margin: 4px 0;
    width: 25px;
    border-radius: 15px;
}
/* Navigation Styling */
nav {
    display: flex;
    justify-content: right;
    margin-top: 10px;
    
}
/* Notification styling */
#notification {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50; /* Success background color */
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    animation: fadeInOut 4s forwards;
}

/* Fade in/out animation */
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


.nav_links ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav_links ul li {
    padding: 8px 20px;
}

.nav_links ul li a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

.nav_links ul li a:hover {
    color: rgb(85, 198, 243);
}


/* Hero Content */
.hero-content {
    text-align: left;
    position: absolute;
    padding-left: 10px;
    z-index: 1;
top:120px;
left:10px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: left;
}

#typing-container {
    list-style: none;
    padding: 0;
    font-size: 20px;
    padding-bottom: 10px;
}
.cta-button {
    background-color: green;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    transform: translateX(-50%);
    display: inline-block;
    margin-top: 10px;
    pointer-events: none; /* Prevent clicking while hidden */
    z-index: 10; /* Ensure it's on top of other elements */
    position: relative; /* Required for z-index to work */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

.cta-button.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto; /* Enable clicking when visible */
}

.cta-button:hover {
    background-color: rgb(65, 178, 223);
    transform: scale(1.05); /* Slight scale on hover */
}

.header-slideshow {
    width: 600px;
    height: 70%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
    border-radius: 10px;
    margin-left: 650px;
    margin-bottom: 10px;
}

.header-slideshow img {
    width: 700px;
    height: 70%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s;
    border-radius: 10px;
}

.header-slideshow img.active {
    opacity: 1;
}

.main h1{
    text-align: center;
    font-size: 35px;
}

.main h3{
    color: green;
    padding-left: 10px;
    
}

.main h2{
    color: black;
}

.txt_head{
    padding-left: 10px;
}

.txt_head a{
    color: black;
    margin-top: 10px;
    padding-left: 10px;
    margin-top: 5px;
}

.txt_head p{
    color: #333333a2;
}

  
.FAQ{
    background-color: rgba(0, 0, 0, 0.938);
}
.FAQ h1{
    color: white;
}
.FAQ h3{
 color: rgba(240, 238, 238, 0.918);
}
.FAQ p{
    color: rgb(160, 158, 158);
}
.FAQ .row{
    display: flex;
    margin-left: 110px;
    
}
/* .FAQ .column1{
    padding-left: 100px;
} */



.Contact h3{
    color: green;
    /* margin-top: -10px; */
    padding-left: 45px;
}

.services h3{
    color: green;
    margin-top: -10px;
    padding-left: 45px;
}

.services .service-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.services .service-container .service-card{
    width: 200px;
    height: 300px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    margin-left: 15px;
    border-radius: 10px;
    
}

.services .service-container .service-card h4{
    margin-top: -10px;
    margin-left: 3px;
    font-size: 15px;
}

.services .service-container .service-card p{
    margin-top: -20px;
    font-size: 11px;
    margin-left: 3px;
}
.services .service-container .service-card img{
    width: 200px;
    border-radius: 10px;
    height: 200px;
}
.Contact h1{
    color: black;
}

/* Contact Form and Map Styling */
.contact-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.contact_form {
    width: 45%;
    padding-left: 20px;
}

.contact_form input,
.contact_form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: 'nunito', sans-serif;
}

.contact_form textarea {
    height: 150px;
}

.contact_form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #5cb85c;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.contact_form button:hover {
    background-color: #4cae4c;
}

.map {
    width: 50%;
    padding-left: 20px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
}

 /* Container Styling */
.content-with-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* Text Block Styling */
.txt_head {
    width: 60%;
}

/* Fade from the left animation */
@keyframes fadeInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply the animation to the image */
.content-with-image .side-image img.hidden{
    width: 500px;
    height: 500px;
    border-radius: 10px;
    opacity: 0;
    animation: fadeInFromright 7s ease-out forwards; /* Animation details */
}

.content-with-image .side-image img.show {
    animation: fadeInFromLeft 1.5s ease-out forwards;
}

/* Hide scrollbars but allow scrolling */
body {
    overflow: auto; /* Allows scrolling */
    scrollbar-width: none; /* For Firefox */
}

body::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Edge */
}


/* ///responsiveness  */
@media screen and (max-width: 768px){
    .header{
        min-height: 65vh;
  }
    .header .top-bar img{
       scale: 0.6;
       margin-left: -15px;
    }

    .logo{
        margin-left: -10%;
    }
    body{
        overflow:auto;
        scrollbar-width: 0px;
        overflow-x: hidden;
       
    }
    body h1{
        text-align: center;
    }
    body::-webkit-scrollbar {
        display: none; 
    }
    .header .top-bar{
        display: block;
        align-content: center;
    }
.header{
height:60vh;
}

    .header .top-bar input{
        margin-top: 5px;
        margin-left: 0;
        scale: 0.9;
    }

    .nav_links ul {
        display: none; /* Initially hide navigation links */
        flex-direction: column;
        background: rgba(255, 255, 255, 0.9);
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        padding: 10px 0;
    }
    .hamburger-menu {
        display: flex;
        margin-top: -120px;
        
    }
    #search-bar {
        max-width: 100%;
        margin-left: 80px;
    }

    .hero-content h1{
        font-size: 20px;
        /* margin-left: -15%; */
        text-align: left;
margin-bottom:-10px;
        /* margin-top: 95%; */
    }
    #typing-container {
        font-size: 15px;
        /* margin-left: -15%; */
    }
.hero-content{
position:relative;
align-items:left;
margin-top:-120px;
margin-bottom:10px;
}
    .cta-button{
        font-size: 15px;
        padding: 5px 15px;
        border-radius: 20px;
        margin-top: 5px;
        margin-bottom: 5px;
       
    }
    
    .nav_links ul.active {
        display: flex; /* Show links when active */
        width: 50%;
        height: 100%;        
        text-align: left;
        background-color: rgba(255, 255, 255, 0.993);
        z-index: 1000;
        border-radius: 10px;
    }
    .nav_links ul li a{
        font-size: 15px;
    }
    .header-slideshow{
        margin-left: -200px;
        height: 200px;
        margin: 10px;
        width: 95%;
        z-index: 1;
        border-radius: 10px;
    }
    .header-slideshow img{
        object-fit: cover;
        width: 100%;
        height: 200px;
        
    }
   .hidden{
    display: none;
   }

   .main .content-with-image {
    margin-left: -5%;
    text-align: left;
   }
   .main .content-with-image h2{
    font-size: 15px;
    width: 100%;
   }

   .main .content-with-image h3{
    font-size: 13px;
    margin-top: -10px;
    width: 100%;
    margin-left: -10px;
   }

   .main .content-with-image p{
    font-size: 10px;
    margin-top: -10px;
    width: 100%;
   }
   
   .main .content-with-image a{
    font-weight: bold;
    font-size: 11px;
    color: #4cae4c;
    margin-left: -8px;
   }
   /* Apply the animation to the image */
.content-with-image .side-image img.hidden{
    width: 200px;
    height: 200px;
}

 /* Container Styling */
 .content-with-image {
    display: block;
    justify-content: center;
}

/* Text Block Styling */
.txt_head {
    width: 100%;
}
.FAQ{
    display: block;
    align-content: center;
}

.FAQ h1{
    font-size: 20px;
}
.FAQ .row .column p,h3{
   font-size: 10px;
   /* margin-left: -100px; */
}

.form-container{
    margin-top: -100px;
}

.FAQ .row .column1 p{
    margin-left: -48px;
    font-size: 10px;
}

.FAQ .row {
    display: block;
}

.FAQ .row .column1{
    text-align: left;
    /* margin-top: 30vh; */
    /* margin-left: -30vh; */
}

.Contact h3{
    /* margin-top: -10px; */
    margin-left: -30px;
}
.Contact h1{
    font-size: 20px;
}
form{
    font-size: 10px;
    margin-top: -19px;
}

/* Contact Form and Map Styling */
.contact-container {
    display: block;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.contact_form {
    width: 100%;
    padding-left: 10px;
    margin-left: -15px;
    /* margin-top: 190px; */
}

.contact_form input,
.contact_form textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 10px;
    font-family: 'nunito', sans-serif;
}

.contact_form textarea {
    height: 150px;
}

.contact_form button {
    width: 100%;
    padding: 5px;
    font-family: 'nunito', sans-serif;
    font-size: 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    background-color: #5cb85c;
    color: white;
}

.contact_form button:hover {
    background-color: #4cae4c;
}

.map {
    width: 100%;
    margin-left: -20px;
    /* margin-top: -61vh; */
    height: 180px;
    
}

.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.services h1{
    font-size: 15px;
}
.services h3{
    color: green;
    margin-top: -20px;
    padding-left: 25%;
}

.services .service-container{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 12px;    
    flex-wrap: nowrap;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: 0px;
    scrollbar-color: white;
}

.services .service-container .service-card{
    width: 170px;
    height: 200px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    margin-left: 10px;
    border-radius: 10px;
    flex: 0 0 auto;
    overflow: hidden;
    margin-bottom: 10px;
    margin-top: 5px;
}

.services .service-container .service-card h4{
    margin-top: -5px;
    margin-left: 3px;
    font-size: 10px;
}

.services .service-container .service-card p{
    margin-top: -5px;
    font-size: 8px;
    margin-left: 3px;
}
.services .service-container .service-card img{
    width: 170px;
    height: 140px;
    border-radius: 10px;
    
}

}

/* Small Mobile Screens (max-width: 480px) */
@media screen and (max-width: 480px) {
    .header {
        min-height: 50vh;
    }
    .hero-content h1 {
        font-size: 18px;
        text-align: center;
        margin-left: 0;
    }
    #typing-container {
        font-size: 14px;
        margin-left: 0;
        text-align: center;
    }
    .cta-button {
        font-size: 14px;
        padding: 4px 12px;
    }
    .header-slideshow {
        height: 150px;
    }
    .header-slideshow img {
        height: 150px;
    }
    .nav_links ul {
        width: 80%;
    }
    .FAQ h1 {
        font-size: 18px;
    }
    .FAQ .row .column p, h3 {
        font-size: 9px;
        margin-left: -50px;
    }
    .contact_form {
        margin-top: 100px;
    }
}

/* Larger Tablets & Small Laptops (768px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header {
        min-height: 75vh;
    }
    .hero-content h1 {
        font-size: 22px;
        text-align: left;
        margin-left: 5%;
    }
    #typing-container {
        font-size: 16px;
        margin-left: 5%;
    }
    .header-slideshow {
        height: 250px;
    }
    .header-slideshow img {
        height: 250px;
    }
    .nav_links ul {
        display: flex;
        position: relative;
        background: transparent;
        flex-direction: row;
    }
    .hamburger-menu {
        display: none;
    }
    .FAQ h1 {
        font-size: 22px;
    }
    .contact_form {
        width: 80%;
        margin: auto;
    }
}

/* Laptops & Desktops (1024px - 1440px) */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .header {
        min-height: 90vh;
    }
    .hero-content h1 {
        font-size: 26px;
    }
    #typing-container {
        font-size: 18px;
    }
    .header-slideshow {
        height: 350px;
    }
    .header-slideshow img {
        height: 350px;
    }
    .contact_form {
        width: 60%;
        margin: auto;
    }
}

/* Large Screens (1440px and above) */
@media screen and (min-width: 1441px) {
    .header {
        min-height: 100vh;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    #typing-container {
        font-size: 22px;
    }
    .header-slideshow {
        height: 400px;
    }
    .header-slideshow img {
        height: 400px;
    }
    .contact_form {
        width: 50%;
        margin: auto;
    }
}
