* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #64ffda;
    --primary-dark: #4ad3b3;
    --text-light: rgba(255, 255, 255, 0.95);
    --text-dark: rgba(255, 255, 255, 0.9);
}

html {
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    gap: 6px;
    font-size: 1.5rem;
}
.logo-img {
    width: 5rem;  
    height: 5rem;  
    object-fit: contain;  
    vertical-align: middle; 
    margin-left: 5px;
}
.logo:hover {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.menu-btn.active {
    transform: rotate(90deg);
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: url('./images/landingBg.jpeg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.8) 80%,
        rgba(0, 0, 0, 1) 100%
    );
    animation: gradientAnimation 10s ease infinite;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.cta-button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.about {
    background-color: #000;
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 7rem;
}

.about-content {
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
}

.about-content.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.about-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.about-content:hover .about-title::after {
    width: 100px;
}

.about-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
}

.about-image.visible {
    animation: fadeInRight 0.8s ease forwards 0.2s;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 85%,
        rgba(0, 0, 0, 0.8) 90%,
        rgba(0, 0, 0, 1) 100%
    );
}

.image-side-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 100%
    );
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.1);
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-image {
        order: -1;
    }
}

.team {
    background-color: #000;
    padding: 6rem 2rem;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.team-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    overflow: hidden;
}

.team-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    min-height: 450px;
    width: max-content;
}
.team-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.team-card {
    min-width: 250px; /* Adjust as needed for your design */
    margin-right: 20px; /* Adjust spacing between cards */
}


.team-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px var(--primary-color));
}

.member-image:hover .social-links {
    transform: translateY(0);
}

.social-links a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.team-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(100, 255, 218, 0.15);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.team-carousel-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.team-carousel-btn.prev { left: 10px; }
.team-carousel-btn.next { right: 10px; }

.team-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.team-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.team-dot.active {
    background: var(--primary-color);
}

.footer {
    background-color: #111;
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.contact-info {
    text-align: center;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    right: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-nav {
        align-items: center;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.carousel-gallery {
    overflow-x: auto;
    white-space: nowrap;
    padding: 2rem 0;
    background: #000;
}

.gallery-carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-image {
    width: auto;
    height: calc(150px + 10vh);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-image:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.carousel-track::-webkit-scrollbar {
    height: 8px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.carousel-track::-webkit-scrollbar-thumb:hover {
    background: #666;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .contact-info p {
        justify-content: center;
    }

    .scroll-button, .team-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

.gallery-section {
    text-align: center;
    padding: 1rem 0;
    background: #000;
    color: #ffffff;
    overflow: hidden;
}

.gallery-heading {
    font-size: 2rem;
    margin-bottom: 0rem;
    color: #64ffda;
}

.carousel-gallery {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 1rem;
}

.carousel-image-container {
    position: relative;
    padding: 10px;
    background: #333;
    border: 3px solid #222;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    width: auto;
    height: calc(150px + 10vh);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 5px;
}

.carousel-image:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.film-border {
    position: absolute;
    top: 5%;
    bottom: 5%;
    width: 3px;
    background-color: #444;
}

.film-border-left {
    left: -10px;
}

.film-border-right {
    right: -10px;
}

.film-border::before,
.film-border::after {
    content: '';
    display: block;
    width: 3px;
    height: 10px;
    margin: 3px 0;
    background-color: #666;
    border-radius: 50%;
    opacity: 0.8;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(100, 255, 218, 0.15);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.scroll-button:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.scroll-button.left { left: 10px; }
.scroll-button.right { right: 10px; }

.scroll-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hod-section {
    background-color: #111;
    color: #fff;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hod-content {
    display: flex;
    gap: 3rem;
    max-width: 900px;
    align-items: center;
}

.hod-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
}

.hod-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: #00ffcc;
    opacity: 0.5;
}

.hod-text {
    max-width: 600px;
}

.title {
    color: #00ffcc;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.name {
    font-size: 2em;
    font-weight: bold;
}

.description {
    margin-top: 15px;
    line-height: 1.6;
}

.social-icons a {
    margin-right: 10px;
    color: #00ffcc;
    font-size: 1.2em;
}

.social-icons a:hover {
    color: #00ffaa;
}

.contact-section {
    background-color: #000;
    color: #00ff88;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-title {
    font-size: 2em;
    color: #00ff88;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

input, textarea {
    background-color: #111;
    border: 1px solid #00ffcc;
    color: #fff;
    padding: 10px;
    
    font-size: 1em;
    flex: 1;
    outline: none;
    border-radius: 5px;
}

textarea {
    width: 100%;
    resize: vertical;
    height: 100px;
}

.submit-btn {
    background-color: #00ffcc;
    color: #000;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #00e676;
}

@media (max-width: 768px) {
    .hod-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hod-image-container {
        margin: 0 auto;
    }

    .hod-text {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    input, textarea {
        width: 100%;
    }

    .contact-title {
        font-size: 1.8em;
    }

    .contact-subtitle {
        font-size: 1.1em;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hod-section {
        padding: 2rem 1rem;
    }

    .hod-image-container {
        width: 150px;
        height: 150px;
    }

    .name {
        font-size: 1.5em;
    }

    .description {
        font-size: 0.9em;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .submit-btn {
        width: 100%;
        padding: 12px;
    }
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
.faq-section {
    background-color: #000;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
  }
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .arrow {
    transform: rotate(180deg);
  }
  
