/* Root Variables */
:root {
    --primary-color: #002f3f;
    --secondary-color: #ffffff;
    --accent-color: #ffd700;
    --text-color: #333333;
}

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

body {
    background: linear-gradient(to right,#006683, #eef3f5);
    padding-top: 30px;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #000000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dropdown > a:hover,
.dropdown > a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #000000;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    border-radius: 10px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-content a {
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    display: block;
    padding: 2rem 5%;
    min-height: 80vh;
    background-color: white;
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
}

/* Bottom row with icons, button and van */
.bottom-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
    padding: 0 2rem;
}

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

/* Add new animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Update social icons animation */
.social-icon {
    color: var(--primary-color);
    font-size: 2rem;
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideInFromLeft 0.8s forwards;
    animation-delay: 0.5s; /* Start after text animations */
}

/* Each icon gets progressive delay */
.social-links a:nth-child(1) {
    animation-delay: 0.5s;
}

.social-links a:nth-child(2) {
    animation-delay: 0.7s;
}

.social-links a:nth-child(3) {
    animation-delay: 0.9s;
}

/* Contact button animation */
.contact-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 47, 63, 0.2);
    opacity: 0;
    animation: slideInFromLeft 0.8s forwards;
    animation-delay: 1.1s; /* Start after icons */
}

/* Van image animation */
.hero-image {
    flex: 1;
    width: 450px;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: slideInFromRight 0.8s forwards;
    animation-delay: 1.3s; /* Start after contact button */
}

/* Update hover effects to maintain transforms */
.social-icon:hover {
    transform: scale(1.1);
}

.contact-btn:hover {
    transform: scale(1.05);
}

.van-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.company-name {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.company-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

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

/* Update responsive design */
@media (max-width: 768px) {
    .bottom-row {
        flex-direction: column;
        gap: 2rem;
    }

    .left-content {
        align-items: center;
        width: 100%;
    }

    .hero-image {
        width: 100%;
    }

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

    .nav-links {
        display: none;
    }
}

/* Smooth scroll behavior for the entire page */
html {
    scroll-behavior: smooth;
}

/* Update Current Projects Section */
.current-projects {
    padding: 4rem 5%;
    background-color: white;
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.current-projects.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.5s;
}

/* Update Projects Container */
.projects-slider {
    position: relative;
    overflow: visible;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
    width: 100%;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/6;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    max-width: 100%;
}

/* Update responsive breakpoints */
@media (min-width: 1200px) {
    .projects-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .projects-container {
        grid-template-columns: 1fr;
    }
}

.project-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 47, 63, 0.95) 0%,
        rgba(0, 47, 63, 0.85) 25%,
        rgba(0, 47, 63, 0.6) 50%,
        rgba(0, 47, 63, 0) 100%
    );
    padding: 3rem 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 47, 63, 0.98) 0%,
        rgba(0, 47, 63, 0.9) 25%,
        rgba(0, 47, 63, 0.7) 50%,
        rgba(0, 47, 63, 0.2) 100%
    );
}

.project-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-card:hover .project-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.project-icon i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.project-card:hover .project-icon i {
    transform: scale(1.1);
}

.project-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
    transform: translateY(0);
}

.project-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    transition: transform 0.3s ease;
    transform: translateY(0);
}

.project-card:hover .project-description,
.project-card:hover .project-title {
    transform: translateY(-5px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 2;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background-color: #006683;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 131, 0.3);
}

.slider-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Smooth fade for cards */
.project-card {
    opacity: 0;
    transform: translateY(30px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slider button animations */
.slider-btn.prev {
    opacity: 0;
    animation: slideInFromLeft 0.8s forwards;
    animation-delay: 1.4s;
}

.slider-btn.next {
    opacity: 0;
    animation: slideInFromRight 0.8s forwards;
    animation-delay: 1.4s;
}

/* Smooth transitions for slider */
.projects-container {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.project-card {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    will-change: transform, opacity;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover animations */
.project-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Our Services Section */
.services-section {
    padding: 4rem 5%;
    background-color: white;
    border-radius: 20px;
    margin: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 47, 63, 0.2);
}

.service-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 47, 63, 0.95) 0%,
        rgba(0, 47, 63, 0.85) 50%,
        rgba(0, 47, 63, 0) 100%
    );
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.service-overlay:hover {
    background: linear-gradient(
        to top,
        rgba(0, 47, 63, 0.98) 0%,
        rgba(0, 47, 63, 0.9) 50%,
        rgba(0, 47, 63, 0.2) 100%
    );
}

.service-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: white;
    transform: translateY(-2px);
}

.service-title {
    padding: 1.5rem;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
    background: linear-gradient(
        to right,
        var(--primary-color) 0%,
        #006683 100%
    );
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 200px;
    }

    .service-title {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

/* Service Card Animations */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--secondary-color);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 1;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--primary-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(0, 47, 63, 0.1);
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Adjust service section padding for anchor links */
.service-section {
    padding-top: 100px;
    margin-top: -80px;
}

/* Services Page Styles */
.services-header {
    background: linear-gradient(to right, var(--primary-color), #006683);
    color: white;
    padding: 4rem 5%;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 80px;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-content {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: none;
    scroll-margin-top: 100px;
}

/* Project Page Styles */
.project-hero {
    background: linear-gradient(to right,#eceff0, #006683);
    color: white;
    padding: 4rem 5%;
    margin-bottom: 2rem;
    margin-top: 80px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    /* ... (all your responsive styles) ... */
}

@media (max-width: 768px) {
    /* ... (all your mobile styles) ... */
}

.ethics-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.ethics-section .section-title {
    text-align: center;
    color: #006d77;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.ethics-box {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.ethics-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.ethics-item:hover {
    transform: translateY(-5px);
}

.ethics-item i {
    font-size: 2rem;
    color: #006d77;
    margin-top: 0.5rem;
}

.ethics-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Responsive Design */
@media (min-width: 768px) {
    .ethics-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ethics-section {
        padding: 3rem 1rem;
    }
    
    .ethics-item {
        padding: 1.5rem;
    }
    
    .ethics-section .section-title {
        font-size: 2rem;
    }
}

/* About Us Page Styles */
.about-header {
    background: linear-gradient(to right, var(--primary-color), #006683);
    color: white;
    padding: 4rem 5%;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 80px;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.about-header h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto;
}

.about-content {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-description {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Vision & Mission Section */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.vision-box, .mission-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vision-box h2, .mission-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.vision-box h2::after, .mission-box h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0.8rem auto;
}

.vision-box p, .mission-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Core Values Section */
.core-values {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.core-values h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.core-values h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.value-card {
    padding: 2rem;
    transition: transform 0.3s ease;
    background: #f8f9fa;
    border-radius: 15px;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.value-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.5rem;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-description p,
    .vision-box p,
    .mission-box p {
        font-size: 1.1rem;
    }

    .core-values h2,
    .vision-box h2,
    .mission-box h2 {
        font-size: 1.8rem;
    }
}

/* Team Section Styles */
.team-section {
    background: white;
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.department {
    margin-bottom: 4rem;
}

.department h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.department h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0.8rem auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    background: #f8f9fa;
    border-radius: 15px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
}

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

.team-member h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.position {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-section {
        padding: 2rem 1rem;
    }
    
    .department h3 {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 2rem 5%;
    margin-top: 80px;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-container, 
.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #004960;
    transform: translateY(-2px);
}

/* Contact Info Styles */
.contact-info {
    color: var(--text-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Map Section */
.map-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 1rem;
    }

    .contact-form-container, 
    .contact-info,
    .map-section {
        padding: 2rem;
    }

    .contact-intro {
        font-size: 1.1rem;
    }
}

/* Footer Styles */
.footer {
    background: #000000;
    color: var(--secondary-color);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-contact-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-contact-info i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.footer-contact-info p {
    margin: 0;
}

.footer-contact-info strong {
    color: var(--accent-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Mobile Navigation Styles */
.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
        margin-right: 10px;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background: #000000;
        padding-top: 80px;
        z-index: 1000;
    }
}

/* Add these styles for mobile menu handling */
body.menu-open {
    overflow: hidden;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;  /* Hidden by default */
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
        margin-right: 10px;
        padding: 0;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #000000;
        padding-top: 80px;
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        right: 0;
    }

    .nav-links .dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-links .dropdown a {
        padding: 15px;
        width: 100%;
        display: block;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        background: #111111;
        box-shadow: none;
        transform: none;
        left: 0;
    }
}