  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .container-1{
       max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e1e5e9;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 200px;
    height: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a2363;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0a2363;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d8325c;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-item-dropdown {
    position: relative;
    
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
    z-index: 1001;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #0a2363;
    border-radius: 8px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
        .header-content {
        padding: 0.75rem 0;
    }
.header-hero{
    margin-top: 85px;
}
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    .nav-list {
        flex-direction: column;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
    }
.nav-item-dropdown {
    position: relative;
    text-align: center;
}
    .nav-list.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: none;
        margin-left: 1rem;
    }

    .dropdown-menu.open {
        display: block;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        /* disable hover effect on mobile */
    }
}



/* Animated Hero Section */
.header-hero {
    background: linear-gradient(135deg, #0a2363 0%, #1a3a7a 25%, #2d4a8a 50%, #d8325c 75%, #e74c6f 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 85px;
}

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

/* Animated Background Elements */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff6b6b, #4ecdc4);
    top: 10%;
    left: 10%;
    animation: float 20s infinite ease-in-out;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #45b7d1, #96ceb4);
    top: 60%;
    right: 20%;
    animation: float 25s infinite ease-in-out reverse;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f093fb, #f5576c);
    bottom: 20%;
    left: 60%;
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { top: 80%; left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { top: 40%; left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { top: 60%; left: 40%; animation-delay: 6s; animation-duration: 16s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 8s; animation-duration: 24s; }
.particle:nth-child(6) { top: 70%; left: 60%; animation-delay: 10s; animation-duration: 20s; }
.particle:nth-child(7) { top: 50%; left: 70%; animation-delay: 12s; animation-duration: 18s; }
.particle:nth-child(8) { top: 90%; left: 80%; animation-delay: 14s; animation-duration: 22s; }
.particle:nth-child(9) { top: 10%; left: 90%; animation-delay: 16s; animation-duration: 26s; }
.particle:nth-child(10) { top: 25%; left: 85%; animation-delay: 18s; animation-duration: 28s; }

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fff, transparent);
    top: 15%;
    right: 10%;
    animation: rotate 20s linear infinite, pulse 4s ease-in-out infinite;
}

.shape-2 {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(255, 255, 255, 0.2);
    top: 70%;
    left: 15%;
    animation: rotate 15s linear infinite reverse, bounce 3s ease-in-out infinite;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    top: 40%;
    right: 25%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 25s linear infinite, float 6s ease-in-out infinite;
}

.shape-4 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 80%;
    right: 40%;
    animation: pulse 5s ease-in-out infinite, float 8s ease-in-out infinite;
}

.shape-5 {
    width: 100px;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    top: 25%;
    left: 70%;
    animation: rotate 30s linear infinite, pulse 7s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Content */
.header-content-hero {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

/* Typewriter Effect */
.hero-text-animation {
    margin-bottom: 40px;
}

.typewriter-text {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
}

.typewriter-word {
    opacity: 0;
    animation: typewriter 3s steps(15) forwards, slideInUp 0.8s ease-out forwards;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  background-color: white;
  animation: blink 1.5s infinite, hideCursor 0.5s forwards;
  animation-delay: 3s; /* start hideCursor after typing animation ends */
  animation-fill-mode: forwards;
}

@keyframes typewriter {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes hideCursor {
  to {
    opacity: 0;
  }
}
@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Subtitle Animation */
.header-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.subtitle-line:first-child {
    animation-delay: 0.5s;
}

.subtitle-line:last-child {
    animation-delay: 0.8s;
}

/* Enhanced Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 60px 0;
    opacity: 0;
    animation: slideInUp 1s ease-out 1.2s forwards;
}

.stat-item {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(30px);
    animation: statSlideUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 1.5s; }
.stat-item:nth-child(2) { animation-delay: 1.7s; }
.stat-item:nth-child(3) { animation-delay: 1.9s; }

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    margin-bottom: 15px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.stat-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
    border-radius: 2px;
    width: 0;
    transition: width 2s ease-out;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes statSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 2.5s forwards;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-wheel {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite ease-in-out;
}

.scroll-text {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 300;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

        /* Main Content */
        .main-content {
            padding: 40px 0;
        }

        .section {
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #0a2363;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #0a2363, #d8325c);
            border-radius: 2px;
        }

        .intro-section {
            text-align: center;
            background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
            padding: 60px 40px;
            border-radius: 20px;
            margin-bottom: 80px;
            box-shadow: 0 10px 30px rgba(10, 35, 99, 0.1);
        }

        .intro-text {
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
            color: #555;
        }

        .highlight {
            color: #d8325c;
            font-weight: 600;
        }

       /* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
    gap: 30px;
    margin: 60px 0;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr; /* 1 column on smaller screens */
    }
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 35, 99, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

        /* Mission/Vision Cards */
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-left: 5px solid #d8325c;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .card h3 {
            color: #0a2363;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .card-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0a2363, #d8325c);
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .card p {
            color: #666;
            line-height: 1.7;
        }

        /* Core Values */
        .values-container {
            margin-top: 50px;
        }

        .value-item {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s ease;
        }

        .value-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .value-item.reverse {
            flex-direction: row-reverse;
        }

        .value-content {
            flex: 1;
            padding: 40px;
            background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
            border-radius: 20px;
            border-left: 5px solid #d8325c;
            box-shadow: 0 10px 30px rgba(10, 35, 99, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .value-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(10, 35, 99, 0.12);
        }

        .value-content h4 {
            color: #0a2363;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .value-content h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #0a2363, #d8325c);
            border-radius: 2px;
        }

        .value-content p {
            color: #555;
            line-height: 1.7;
            font-size: 1rem;
        }

        .value-image {
            flex: 1;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(10, 35, 99, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .value-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(10, 35, 99, 0.2);
        }

        .value-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .value-image:hover img {
            transform: scale(1.05);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .header-hero {
                padding: 60px 0 80px;
            }

      

            .header-hero h1 {
                font-size: 2rem;
            }

            .header-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .intro-section {
                padding: 40px 20px;
                margin-bottom: 60px;
            }

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

            .image-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin: 40px 0;
            }

            .mission-vision {
                grid-template-columns: 1fr;
                gap: 30px;
                margin: 40px 0;
            }

            .card {
                padding: 30px 20px;
            }

            .value-item {
                flex-direction: column !important;
                gap: 30px;
                margin-bottom: 60px;
            }

            .value-content {
                padding: 30px 20px;
            }

            .value-image {
                order: -1;
            }

            .value-image img {
                height: 250px;
            }

            .main-content {
                padding: 60px 0;
            }

            .section {
                margin-bottom: 60px;
            }
        }

        @media (max-width: 480px) {
            .header-hero {
                padding: 40px 0 60px;
            }

        

            .header-hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .intro-section {
                padding: 30px 15px;
            }

            .card {
                padding: 25px 15px;
            }

            .value-content {
                padding: 25px 20px;
            }

            .value-item {
                gap: 20px;
                margin-bottom: 50px;
            }

            .value-image img {
                height: 200px;
            }
        }

        /* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #d8325c 0%, #e74c6f 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr auto 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-text {
    text-align: left;
}

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.contact-button {
    display: flex;
    justify-content: flex-end;
}

.contact-cta .btn-primary {
    background: white;
    color: #d8325c;
    border-color: white;
    font-size: 1.1rem;
}

.contact-cta .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .contact-text h2 {
        font-size: 2rem;
    }

    .contact-text p {
        font-size: 1rem;
    }

    .arrow-img {
        width: 80px;
        margin: 0 auto;
    }

    .contact-button {
        justify-content: center;
    }
}

.footer {
  background: #0a2363;
  color: white;
  padding: 60px 20px 20px;
  z-index: 100;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.footer-logo-wrapper {
  background: white;      /* or a lighter shade */
  padding: 8px 12px;
  border-radius: 4px;    /* rounded corners */
  display: inline-block;
  margin-bottom: 10px;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  display: block;
}


.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #d8325c;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 300px;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #d8325c;
  color: white;
}

/* Optional: different colors for each social */
.social-icon.facebook:hover { background-color: #3b5998; }
.social-icon.twitter:hover { background-color: #1da1f2; }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-icon.linkedin:hover { background-color: #0077b5; }

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

  .footer-section p {
    max-width: 100%;
  }
  .social-icons{
    justify-content: center;
  }
      .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

}

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

.contact-trigger {
  cursor: pointer;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    width: 90%;
        max-height: 90vh;         /* ✅ Limit content height */
    overflow-y: auto; 
    max-width: 800px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a2363;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a2363;
}
/* Style for select dropdowns */
.form-group select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: white;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
}

.form-group select:focus {
  outline: none;
  border-color: #0a2363;
}

/* Book a Demo Button */
.contact-form .btn {
  background-color: #0a2363;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #061a45;
}
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}
.btn-primary {
    background: #d8325c;
    color: white;
    border-color: #d8325c;
}

.btn-primary:hover {
    background: #c12951;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(216, 50, 92, 0.3);
}


.map-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container img {
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
