*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color:#FFFFFF;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
}

.navbar-brand .logo {
    height: 60px; 
    width: auto;
}

.navbar-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0 15px;
}
.navbar-menu a:hover{
    color: #FFD700;
}

.navbar-menu a {
    color: black;
    text-decoration: none;
}

.navbar-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
.ham-menu {
    width: 100%;
    display: flex;
    justify-content: center; /* Center all items horizontally */
    align-items: center;
    list-style: none;
    position: relative;
    background-color: white;
    padding: 12px 20px;
    gap: 40px; /* space between items */
}

/* To center the logo exactly, you can make the logo flex item not grow/shrink */
.ham-menu .logo {
    flex: 0 0 auto; /* keep logo size fixed */
    margin: 0 20px;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.menu{
    display: flex;
}
.menu li{
    padding-left: 30px;
}
.menu li a{
    display: inline-block;
    text-decoration: none;
    color: black;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}
.menu li a:hover{
    color: #ffd700;
}
.open-menu , .close-menu{
    position: absolute;
    color: #ffd700;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}
.open-menu{
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.close-menu{
    top: 20px;
    right: 20px;
}
#check{
    display: none;
}

 .home-video{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    /* position: absolute;
    left: -5px;
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip; */
}
.home-btn{   
    transition: all .5s ease;
    font-family:'Montserrat', sans-serif;
    text-transform: uppercase;
    display: flex;
    gap: 20px;
    text-align: center;
    justify-content: center;
    line-height: 1;
    font-size: 17px;
    background-color : transparent;
    padding: 10px;
    outline: none;
    border-radius: 4px;
}
.home-btn button{
    border: 3px solid #FFD700;
}
.home-btn a{
    text-decoration: none;
    color: black;
}
.home-btn button:hover{
    background-color:#008080;
}
.home-btn a:hover{
    color:white;
}
/* Team Section Container */
.team-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

/* Team Section Heading */
.team-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color:#008080;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* Team Members Flex Container */
.team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Individual Team Member */
.team-member {
    flex: 1 1 200px; /* responsive width */
    max-width: 250px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member p {
    margin: 5px 0;
    font-size: 1rem;
    color: #333;
}
.image-slider-heading{
    margin: 50px 0;
    /* margin-left: 253px; */
    text-align: center;
    font-size: 60px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: lighter;
    color: #008080;
}

.slider-container {
    width: 100%;
    max-width: 800px;      /* Max width of the slider */
    margin: 0 auto;        /* Center horizontally */
    overflow: hidden;
    padding: 0;
}

.slider {
    display: flex;
    animation: slideAnimation 10s infinite;
    margin: 0;
    padding: 0;
}

.slide {
    min-width: 100%;       /* Each slide takes full container width */
    transition: transform 1s ease;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;   /* Vertically center image */
    justify-content: center; /* Horizontally center image */
}

.slide img {
    width: 80%;            /* Image width relative to slide */
    height: 93vh;          /* Height relative to viewport height */
    object-fit: contain;   /* Show full image without cropping */
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}


/* Keyframe animation for auto sliding */
@keyframes slideAnimation {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-200%);
    }
    75% {
        transform: translateX(-300%);
    }
    100% {
        transform: translateX(0);
    }
}
.whatsapp-icon { 
position: fixed; 
right: 20px; 
bottom: 20px; 
width: 60px; 
height: 60px; 
border-radius: 50%; 
display: flex; 
align-items: center; 
justify-content:center; 
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
color:#008080; 
font-size: 2em; 
transition: transform 0.3s ease; 
}
.whatsapp-icon:hover {
color: #ffd700; 
transform: scale(1.1); 
}
a.whatsapp-icon{
    text-decoration: none;
}
footer {
    background-color:black;
    color: white;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}
.footer-section a{
    text-decoration: none;
    color: #FFFFFF;
}
.footer-section a:hover{
    color:#008080;
}
.footer-section h3 {
    margin-bottom: 10px;
    cursor: pointer;
}
.footer-section h3:hover{
    color: #FFD700;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section-e a {
    color: white;
    text-decoration: none;
}
.footer-section-e {
    cursor: pointer;
}
.footer-section-e a:hover {
    text-decoration: underline;
    color: #008080;
}
.footer-section-e:hover{
    color: #FFD700;
}
.footer-section-p{
    cursor: pointer;
}
.footer-section-p h3:hover{
    color: #FFD700;
}
.footer-section-p p:hover{
    color: #008080;
}
.social-icons a {
    margin-right: 10px;
}

.bottom {
    justify-content: center;
    text-align: center; 
    cursor: pointer;
    margin-top: 20px;
    font-size: 14px;
}

@media (max-width: 1080px) {
    /* Navbar adjustments */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }

    .open-menu, .close-menu {
        display: block;
    }

    /* Hamburger Menu */
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: #008080;
        transition: all 0.2s ease-in-out;
    }

    #check:checked ~ .menu {
        right: 0;
    }

    .menu li {
        margin-top: 20px;
    }

    .menu li a,
    .menu a {
        color: white;
        padding: 15px;
    }

    /* Image slider */
    .image-slider-heading {
        margin-left: 20px;
        font-size: 40px;
        color: #FFD700;
    }

    .slider-container {
        max-width: 100%;
    }

    .slider {
        animation: slideAnimation 8s infinite;
    }

    .slide img {
        width: 90%;
        height: 60vh;
    }

    /* Team section */
    .team-heading {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #FFD700;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .team-member {
        max-width: 100%;
        flex: 1 1 100%;
    }

    /* Home button */
    .home-btn {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .home-btn button {
        padding: 10px;
        font-size: 13px;
        border-radius: 3px;
        cursor: pointer;
        border: 3px solid #008080;
        transition: background-color 0.3s;
    }

    .home-btn a {
        color: black;
    }

    .home-btn a:hover {
        color: white;
    }

    .home-btn button:hover {
        background-color: #FFD700;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 14px;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    /* WhatsApp icon */
    .whatsapp-icon {
        color: #FFD700;
        width: 50px;
        height: 50px;
        font-size: 3em;
    }

    a.whatsapp-icon:hover {
        color: #008080;
    }
}

@media (max-width: 1024px) {
    .image-slider-heading {
        font-size: 36px;
        margin-left: 15px;
    }

    .slide img {
        width: 85%;
        height: 55vh;
    }

    .home-btn button {
        font-size: 14px;
        padding: 12px 25px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .footer-section {
        min-width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .social-icons a {
        margin: 0 8px;
        display: inline-block;
    }
}


@media (max-width: 912px) {
    .navbar-menu {
        top: 55px;
    }

    .image-slider-heading {
        font-size: 34px;
        margin-left: 12px;
    }

    .slide img {
        width: 80%;
        height: 50vh;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .home-btn button {
        font-size: 13px;
        padding: 10px 22px;
    }
}


@media (max-width: 853px) {
    .menu {
        width: 90%;
        right: -90%;
    }

    #check:checked ~ .menu {
        right: 0;
    }

    .image-slider-heading {
        font-size: 32px;
        margin-left: 10px;
    }

    .slide img {
        width: 75%;
        height: 48vh;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 13px;
    }

    .home-btn button {
        font-size: 12px;
        padding: 9px 20px;
    }
}


@media (max-width: 820px) {
    .navbar-menu {
        top: 50px;
    }

    .image-slider-heading {
        font-size: 30px;
        margin-left: 8px;
    }

    .slide img {
        width: 70%;
        height: 45vh;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 12px;
    }

    .home-btn button {
        font-size: 11px;
        padding: 8px 18px;
    }

    .team-heading {
        font-size: 1.75rem;
    }

    .menu li {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }
    .menu {
        flex-direction: column; /* Keeps the menu items in a column */
        align-items: center; /* Centers items horizontally */
        justify-content: center; /* Centers items vertically */
        width: 100%; /* Makes the menu full width */
        height: 100vh; /* Full viewport height */
        position: fixed; /* Fixed positioning */
        top: 0; /* Aligns to the top */
        right: -100%; /* Starts off-screen */
        z-index: 100; /* Ensures it is on top of other elements */
        background-color: #008080; /* Teal background color */
        transition: all 0.2s ease-in-out; /* Smooth transition for opening/closing */
    }
    
    .menu li {
        margin-top: 20px; /* Adjusted margin for smaller screens */
    }

    .menu li a {
        color: white; /* White text color for links */
    }

    .menu a {
        padding: 15px; /* Increased padding for better touch targets */
    }

    .open-menu, .close-menu {
        display: block; /* Ensure buttons are displayed */
    }

    #check:checked ~ .menu {
        right: 0; /* Moves the menu into view when checked */
    }
    .image-slider-heading {
        margin-left: 20px; /* Adjust heading position for smaller screens */
        font-size: 40px; /* Reduce font size */
        color: #FFD700;
    }

    .slider-container {
        max-width: 100%;
      }
    
    .slider {
        animation: slideAnimation 8s infinite; /* Speed up the animation for smaller screens */
    }

    .slide img {
        width: 90%;
        height: 60vh;
      }

    .footer-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
    }
    
    .footer-section {
        width: 100%; /* Make sections full width */
        margin: 10px 0; /* Space between sections */
        text-align: center; /* Center text */
    }
    
    .footer-section h3 {
        font-size: 20px; /* Adjust heading size */
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 14px; /* Adjust text size */
    }

    .social-icons {
        justify-content: center; /* Center social icons */
        margin-top: 10px; /* Space above social icons */
    }
    .home-btn{
        flex-wrap: wrap;
    }
    .home-btn button {
        padding: 15px 30px;
        font-size: 16px;
        border-radius: 3px;
        cursor: pointer;
        border: 3px solid #008080;
        transition: background-color 0.3s;
        padding: 10px;
        font-size: 13px;
    }
    .home-btn a{
        color:black;
    }
    .home-btn a:hover{
        color: white;
    }
    .home-btn button:hover{
        background-color:#FFD700;
    }
    .team-members {
        gap: 20px;
    }
    .team-member {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .team-heading {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #ffd700;
      }

    .whatsapp-icon {
    color:#ffd700;
     width: 50px;
    height: 50px; 
    font-size: 3em; 
}
a.whatsapp-icon:hover{
    color: #008080;
}
}


@media (max-width: 480px) {
    /* Navbar Menu */
    .navbar-menu {
        top: 50px; /* Adjust top position for better spacing */
    }

    /* Menu */
    .menu {
        height: 100vh; /* Full viewport height */
        right: -100%; /* Keep the menu off-screen initially */
    }

    #check:checked ~ .menu {
        right: 0; /* Show the menu when checked */
    }

    .menu li {
        margin-top: 15px; /* Reduce space between menu items */
    }

    .menu li a {
        color: white;
    }

    .menu a {
        padding: 12px; /* Adjust padding to fit smaller screens */
    }

    /* Image Slider */
    .image-slider-heading {
        margin-left: 15px; /* Adjust heading position */
        font-size: 30px; /* Adjust font size for smaller screens */
        color: #FFD700;
    }

    .slider-container {
        max-width: 100%; /* Ensure the container takes full width */
    }

    .slider {
        animation: slideAnimation 6s infinite; /* Speed up the animation */
    }

    .slide img {
    width: 100%;
    height: 40vh;
  }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%; /* Full width sections */
        margin: 6px 0; /* Reduced space between footer sections */
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px; /* Adjust font size for footer heading */
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 12px; /* Adjust text size */
    }

    .social-icons {
        justify-content: center;
        margin-top: 8px; /* Adjust space above social icons */
    }

    /* Home Button */
    .home-btn button {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 3px;
        cursor: pointer;
        border: 2px solid #008080;
        transition: background-color 0.3s;
    }

    .home-btn a {
        color: black;
    }

    .home-btn a:hover {
        color: white;
    }

    .home-btn button:hover {
        background-color: #FFD700;
    }
    .team-members {
        gap: 15px;
      }
      .team-member {
        max-width: 100%;
        flex: 1 1 100%;
        padding: 10px;
      }
      .team-heading {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #ffd700;
      }
      .team-member p {
        font-size: 0.9rem;
      }
    .whatsapp-icon {
    color: #ffd700; 
    width: 45px; 
    height: 45px; 
    font-size: 2.3em; 
}

a.whatsapp-icon:hover{
    color: #008080;
}

}


@media (max-width: 414px) {
    /* Navbar Menu */
    .navbar-menu {
        top: 55px; /* Adjust the top position for better spacing */
    }

    /* Menu */
    .menu {
        height: 100vh; /* Full viewport height */
        right: -100%; /* Keep the menu off-screen initially */
    }

    #check:checked ~ .menu {
        right: 0; /* Show the menu when checked */
    }

    .menu li {
        margin-top: 18px; /* Adjust margin for a more compact layout */
    }

    .menu li a {
        color: white;
    }

    .menu a {
        padding: 13px; /* Reduce padding for a better fit */
    }

    /* Image Slider */
    .image-slider-heading {
        margin-left: 15px; /* Adjust heading position */
        font-size: 32px; /* Adjust font size */
        color: #FFD700;
    }

    .slider-container {
        max-width: 100%; /* Ensure the container takes full width */
    }

    .slider {
        animation: slideAnimation 7s infinite; /* Speed up the animation */
    }

    .slide img {
        width: 100%;
        height: 35vh;
      }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%; /* Full width sections */
        margin: 8px 0; /* Reduced margin between footer sections */
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px; /* Adjust font size for footer heading */
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 12px; /* Adjust text size */
    }

    .social-icons {
        justify-content: center;
        margin-top: 8px; /* Adjust space above social icons */
    }

    /* Home Button */
    .home-btn button {
        padding: 12px 25px;
        font-size: 14px;
        border-radius: 3px;
        cursor: pointer;
        border: 2px solid #008080;
        transition: background-color 0.3s;
    }

    .home-btn a {
        color: black;
    }

    .home-btn a:hover {
        color: white;
    }

    .home-btn button:hover {
        background-color: #FFD700;
    }

    .team-members {
        gap: 12px;
      }
      .team-member {
        padding: 8px;
      }
      .team-heading {
        font-size: 1.9rem;
        color: #ffd700;
      }
      .team-member p {
        font-size: 0.85rem;
      }

    .whatsapp-icon {
    color: #ffd700; 
    width: 40px; 
    height: 40px; 
    font-size: 1.3em; 
}
a.whatsapp-icon:hover{
    color: #008080;
}

}
@media (max-width: 375px) {
    /* Navbar Menu */
    .navbar-menu {
        top: 50px; /* Adjust the top position for better spacing */
    }

    /* Menu */
    .menu {
        height: 100vh; /* Full viewport height */
        right: -100%; /* Keep the menu off-screen initially */
    }

    #check:checked ~ .menu {
        right: 0; /* Display the menu when checked */
    }

    .menu li {
        margin-top: 15px; /* Reduce spacing between menu items */
    }

    .menu li a {
        color: white;
    }

    .menu a {
        padding: 12px; /* Reduce padding for smaller screens */
    }

    /* Image Slider */
    .image-slider-heading {
        margin-left: 15px; /* Adjust heading position */
        font-size: 28px; /* Adjust font size */
        color: #FFD700;
    }

    .slider-container {
        max-width: 100%; /* Ensure the container takes full width */
    }
    
    .slider {
        animation: slideAnimation 7s infinite; /* Speed up the animation */
    }

    .slide img {
        width: 100%;
        height: 30vh;
      }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%; /* Full width sections */
        margin: 8px 0; /* Reduce space between footer sections */
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px; /* Adjust heading font size */
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 12px; /* Adjust text size */
    }

    .social-icons {
        justify-content: center;
        margin-top: 8px; /* Space above social icons */
    }

    /* Home Button */
    .home-btn button {
        padding: 12px 25px;
        font-size: 14px;
        border-radius: 3px;
        cursor: pointer;
        border: 2px solid #008080;
        transition: background-color 0.3s;
    }

    .home-btn a {
        color: black;
    }

    .home-btn a:hover {
        color: white;
    }

    .home-btn button:hover {
        background-color: #FFD700;
    }
    .team-members {
        gap: 10px;
      }
      .team-member {
        padding: 7px;
      }
      .team-heading {
        font-size: 1.8rem;
        color: #ffd700;
      }
      .team-member p {
        font-size: 0.8rem;
      }

    .whatsapp-icon {
    color: #ffd700; 
    width: 35px; 
    height: 35px; 
    font-size: 1.2em; 
}
a.whatsapp-icon:hover{
    color: #008080;
}

}
@media (max-width: 360px) {
    /* Navbar Menu */
    .navbar-menu {
        top: 50px; /* Adjust top position */
    }

    /* Toggle button */
    .navbar-toggle {
        display: block; /* Ensures toggle button is displayed */
    }

    /* Menu */
    .menu {
        height: 100vh; /* Full viewport height */
        right: -100%; /* Start menu off-screen */
    }

    #check:checked ~ .menu {
        right: 0; /* Show the menu when checked */
    }

    .menu li {
        margin-top: 15px; /* Adjust spacing for smaller screens */
    }

    .menu li a {
        color: white;
    }

    .menu a {
        padding: 12px; /* Adjust padding for smaller screens */
    }

    /* Image Slider */
    .image-slider-heading {
        margin-left: 10px; /* Adjust heading position */
        font-size: 24px; /* Adjust font size */
    }

    .slider-container {
        max-width: 100%; /* Full width of the container */
    }
    
    .slider {
        animation: slideAnimation 6s infinite; /* Speed up animation */
    }

    .slide img {
        width: 100%;
        height: 28vh;
      }
      
    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%;
        margin: 8px 0; /* Space between footer sections */
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px; /* Adjust font size */
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 12px; /* Adjust text size */
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    /* Home Button */
    .home-btn button {
        padding: 10px 20px;
        font-size: 12px;
        border-radius: 3px;
        cursor: pointer;
        border: 2px solid #008080;
        transition: background-color 0.3s;
    }

    .home-btn a {
        color: black;
    }

    .home-btn a:hover {
        color: white;
    }

    .home-btn button:hover {
        background-color: #FFD700;
    }
    .team-members {
        gap: 8px;
      }
      .team-member {
        padding: 6px;
      }
      .team-heading {
        font-size: 1.7rem;
        color: #ffd700;
      }
      .team-member p {
        font-size: 0.75rem;
      }

    .whatsapp-icon {
    color: #ffd700; 
    width: 30px; 
    height: 30px; 
    font-size: 1.1em;
}
a.whatsapp-icon:hover{
    color: #008080;
}

}