body {
    font-family: 'nunito', sans-serif;
    line-height: 1.6;
    color: black;
    margin: 0;
    padding: 0;


}

body h1 {
    text-align: center;
    font-size: 35px;
}


/* Header Section */
.header {
    min-height: 50vh;
    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;
    border: none;
    outline: none;
    max-width: 60%;
    font-family: 'nunito',serif;
    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);
}

/* Navigation Styling */
nav {
    display: flex;
    justify-content: right;
    margin-top: 10px;
}

.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);
}

.menu-toggle {
    display: none;
}

/* Hero Content */
.hero-content {
    text-align: left;
    position: relative;
    padding-left: 13px;
    display:flex;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: left;
    width: 10px;
}

#typing-container {
    list-style: none;
    padding-left: 200px;
    font-size: 20px;
    padding-bottom: 10px;
    padding-top: 50px;
    
}

/* Structure for About Us, Our Mission, and Our Vision */
.about-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 10px;
}



.about-row .column {
    flex: 1;
    padding: 0 20px;
    background-color:rgba(230, 230, 230, 0.692) ;
    margin-left: 10px;
    margin-top: 20px;
    border-radius: 10px;
    color: black;
   
}


.about-row .column h1, .about-row .column h2 {
    color: black;
    text-align: center;
}

.about-row .column p {
    text-align: justify;
    font-size: 1.1rem;
}

/* Content with Image */
.content-with-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 10px;
}

.content-with-image .image {
    flex: 1;
    padding-right: 20px;
}

.content-with-image .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 5s ease-out, transform 1.5s ease-out;
}

.content-with-image .content {
    flex: 2;
    padding-left: 20px;
    background-color: rgba(0, 0, 0, 0.911);
    color: white;
    border-radius: 10px;
    display: grid;
    
}

.content-with-image .content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-with-image .content p, .content-with-image .content ul {
    text-align: justify;
    font-size: 1.1rem;
}

.content-with-image .content ul {
    list-style: none;
    padding-left: 0;
}

.content-with-image .content ul li {
    margin-bottom: 10px;
}

/* Fade-in from left animation */
.content-with-image .image img.show {
    opacity: 1;
    transform: translateX(0);
}

/* Values and Team Section Styling */
.about-us ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.about-us ul li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.about-us img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
}

/* Additional general styling */
.about-us h2 {
    margin-top: 30px;
}

.about-us p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.val{
    color: black;
    padding-left: 10px;
    text-align: center;
    
}
.val p{
    padding-bottom: 15px;
}
.val h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}
.values-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}


.value-card {
    position: relative;
    width: 160px;
    height: 160px;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.6s;
    margin-bottom: 80px;
    z-index: 1; /* Set default z-index */
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s, box-shadow 0.3s ease;
    overflow: hidden;
    width: 300px;
    height: 200px;
}

.card-front {
    background-color: #1E88E5;
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

.card-back {
    background-color: #ffffff;
    color: #333;
    transform: rotateY(180deg);
    padding: 10px;
    border: 2px solid white;
    font-size: 14px;
    line-height: 1.2;
}

.value-card:hover {
    z-index: 10; /* Bring the hovered card to the front */
}

.value-card:hover .card-front {
    transform: rotateY(180deg);
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.8);
}

.value-card:hover .card-back {
    transform: rotateY(360deg);
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.8);
}

.card-front:hover {
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 12px rgba(30, 136, 229, 0.8);
    }
    to {
        text-shadow: 0 0 12px rgba(255, 255, 255, 1), 0 0 18px rgba(30, 136, 229, 1);
    }
}

/* Team Section Styles */
.team {
    padding: 60px 20px;
    background-color: #f0f4f8;
    text-align: center;
}

.team h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.team p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

.team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Team Member Card Styles */
.team-member {
    perspective: 1000px;
    margin: 10px;
}

.member-card {
    width: 300px;
    height: 400px;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.member-card:hover {
    transform: rotateY(180deg);
}

.member-front,
.member-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Front Side */
.member-front {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.member-front img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.member-front h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.member-front p {
    font-size: 1rem;
    color: #777;
}

.member-front:hover img {
    transform: scale(1.05);
}

/* Back Side */
.member-back {
    background-color: #1E88E5;
    color: #fff;
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.member-back h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.member-back p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.social-links a:hover img {
    transform: scale(1.2);
}




/* Partners Section Styles */
.partners {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.partners h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.partners p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(250px * 8);
    animation: scroll 20s linear infinite;
}

.slide {
    width: 250px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: transform 0.3s, filter 0.3s, opacity 0.3s;
    padding-left: 10px;
}

.slide img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* Footer */
/* footer {
    background-color: rgba(0, 0, 0, 0.897);
    height: auto;
    width: 100%;
    text-align: center;
}


footer .socials img {
    width: 40px;
    height: 30px;
    padding-left: 10px;
}


footer p {
    color: rgba(255, 255, 255, 0.678);
}

footer a {
    text-decoration: none;
    color: pink;
}

.footer_nav {
    display: flex;
    justify-content: right;
    margin-top: 10px;
}

.footer_nav_links ul {
    list-style: none;
    display: block;
    justify-content: center;
}

.footer_nav_links ul li {
    padding: 8px 20px;
}


.footer_nav_links ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
} */




:root {
    /* --primary-color: #1E88E5; */
    --secondary-color: #2C3E50;
    --accent-color: #FF6F61;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --text-color: #333;
    --light-text: #fff;
    --hero-text:black;
    --font-primary: 'nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    
    color: black;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 35px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-top: 20px;
}

/* Mission and Vision Section */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 20px;
    background-color: var(--light-bg);
    margin-top: -100px;
}

.mission-vision .card {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mission-vision h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-vision p {
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 20px;
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.services-content {
    padding: 20px;
}

.services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.services-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.services-list li:before {
    content: '✔';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}

.services-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.services-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision, .services-section {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

.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;
}

@media screen and (max-width: 768px){
    .header{
        min-height: 30vh;
    }

    .header .top-bar img{
       scale: 0.6;
       margin-left: -15px;
    }

    body{
        overflow:auto;
        scrollbar-width: 0px;
        overflow-x: hidden;
        /* overflow-y: hidden; */
       
    }
    body::-webkit-scrollbar {
        display: none; 
    }
    .header .top-bar{
        display: block;
        align-content: center;
    }

    .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: 20px;
        left: 0;
        width: 100%;
        padding: 10px 0;
    }
    .hamburger-menu {
        display: flex;
        top: 0;
        left: 0;
        margin-top: -120px;
        
    }
    #search-bar {
        max-width: 100%;
        margin-left: 80px;
    }

    .logo{
        margin-left: -10%;
    }

    .hero-content h1{
        font-size: 20px;
        margin-left: 1px;
        text-align: left;
        margin-top: 10px;
    }
    #typing-container {
        font-size: 15px;
        margin-left:-50%;
        margin-top: -10%;
        margin-right: 10px;
    }
    .cta-button{
        font-size: 15px;
        padding: 5px 15px;
        border-radius: 20px;
        margin-top: 10px;
       
    }
    
    .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: 90%;
        z-index: 1;
        border-radius: 10px;
    }
    .header-slideshow img{
        object-fit: cover;
        width: 100%;
        height: 200px;
        
    }
   .hidden{
    display: none;
   }

   footer{
    margin-top: 63vh;
}
footer .socials img{
    width: 32px;
    height: 25px;
    margin-bottom: 5px;
    margin-top: 10px;
}
footer p{
    font-size: 10px;
    text-align: left;
    margin-top: -10px;
    padding: 10px;
}
footer a{
    color:pink;
}


  
.val h1{
    font-size: 20px;
}

.val p{
    font-size: 15px;
    text-align: left;
}

.values-section {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-left:-14%;
margin-right:17%;
}


.value-card {
    position: relative;
    margin-bottom: 5px;
    width: 100px - 90px;
    flex-wrap: wrap;
    height: 160px;
    
}

.card-front, .card-back {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    width: 260px;
    height: 150px;
}

.card-front{
    font-size: 18px;
}
.card-back p{
    font-size: 14px;
    padding: 10px;
}

.card-back {
    padding: 10px;
    font-size: 14px;
}


.team {
    padding:10px;
    text-align: center;
}

.team h1 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team p {
    font-size: 15px;
    margin-bottom: 10px;
}
.team-row{
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    margin-top: -12px;
}

/* Team Member Card Styles */


.member-card {
    width: 130px;
    height: 130px;
    margin-left: -15px;
}

/* Front Side */
.member-front {
    padding: 10px;
}

.member-front img {
    width: 67px;
    height: 67px;
    margin-bottom: 3px;
}

.member-front h3 {
    margin-bottom: 2px;
    font-size: 11px;
    margin-top: -2%;
}

.member-front p {
    font-size: 10px;
    text-align: center;
    margin-bottom: -15%;
    margin-top: -5%;
}


/* Back Side */
.member-back {
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.member-back h3 {
    font-size: 11px;
    top: 0;
    margin-top: 50px;
    margin-bottom: 2px;
    color: white;
}

.member-back p {
    font-size: 10px;
    text-align: left;
    margin-bottom: 1px;
}

.social-links {
    display: flex;
    gap: 2px;
}

.social-links a img {
    width: 10px;
    height: 10px;
    margin-top: -10px;
}

.social-links a:hover img {
    transform: scale(0.5);
}

.partners {
    padding: 5px;
    margin-bottom: -135%;
}

.partners h1 {
    font-size: 20px;
    margin-bottom: 10px;
}

.partners p {
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 10px;
    text-align: left;
    
}


.slide {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: auto;
    opacity: 1;
    filter: grayscale(0%);
}
.dis{
    text-align: left;
    padding-top: 3%;
    color: green;
    font-weight: bold;
    font-size: 1px;
}
#search-bar:focus {
    width: 250px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

}
