/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    /* Adding some padding so the page isn't totally empty below the header */
    min-height: 100vh; 
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Styles */
.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    cursor: pointer;
    user-select: none;
}

.logo-blue {
    color: #0056b3; /* Premium Blue */
}

.logo-orange {
    color: #ff6b00; /* Vibrant Orange */
}

/* Navigation Styles */
.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Animated Underline Effect for Nav Links */
.nav-links > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ff6b00;
    transition: width 0.3s ease;
}

.nav-links > li:not(.dropdown):hover > a::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ff6b00;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #ffffff;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    list-style: none;
    padding: 1rem 0;
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: translateX(-50%) translateY(10px);
}

/* Small invisible bridge to keep hover state active when moving to dropdown */
.dropdown::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: -20px;
    left: 0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.8rem;
    color: #444444;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #0056b3;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8fbff;
    color: #0056b3;
    padding-left: 2.2rem; /* micro-animation effect */
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001; /* Keep above the mobile menu */
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger Animation */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Banner Section */
.banner-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.banner-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay-orange {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #e84c22;
    clip-path: polygon(0 0, 68% 0, 52% 100%, 0 100%);
    z-index: 2;
}

.banner-overlay-blue {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #172036;
    clip-path: polygon(0 0, 66% 0, 50% 100%, 0 100%);
    z-index: 3;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 4;
    width: 42%;
    color: white;
}

.banner-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.text-white {
    color: #ffffff;
}

.text-orange {
    color: #e84c22;
}

.banner-desc-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-desc {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #e0e0e0;
    margin: 0;
    max-width: 80%;
}

.banner-btn {
    background-color: #1570EF;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.banner-btn:hover {
    background-color: #0f5bc2;
    transform: translateX(3px);
}

.banner-indicators {
    position: absolute;
    bottom: 40px;
    left: 45%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #1570EF;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #1570EF;
}

/* Utility Classes */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4%;
}

.section-padding {
    padding: 3rem 0;
}

.bg-light {
    background-color: #f8fbff;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #333333;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 500;
}

/* Welcome Section */
.welcome-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    align-items: stretch;
}

.welcome-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.welcome-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 1.5rem;
}

.welcome-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}

.feature-card {
    background-color: #f0f6fc;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border: 1px solid #e1ebf4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.08);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.feature-card p {
    color: #666666;
    font-size: 1rem;
    margin: 0;
}

/* Why Choose Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 86, 179, 0.08);
    border-color: #d1e3f8;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #f0f6fc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: #ff6b00; /* Default orange stroke for SVG */
    transition: all 0.3s ease;
}

.grid-card:hover .icon-wrapper {
    background-color: #0056b3;
    color: #ffffff;
    transform: scale(1.05);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.grid-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.grid-card:hover h4 {
    color: #ff6b00;
}

.grid-card p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Section */
.services-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    width: calc(33.333% - 1.34rem);
    min-width: 320px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
}

.service-card .img-container {
    overflow: hidden;
    height: 220px;
    border-radius: 12px 12px 0 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.service-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #002855;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h4 {
    color: #ff6b00;
}

.service-content p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.service-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f6fc;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff6b00;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.service-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-btn {
    background-color: #0056b3;
    color: #ffffff;
}

.service-card:hover .service-btn svg {
    transform: translateX(3px);
}

/* Internship Section General */
.internship-section {
    background-color: #ffffff;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 4rem; }
.mt-5 { margin-top: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* What You Will Gain Grid */
.gain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gain-card {
    background-color: #f8fbff;
    border: 1px solid #e1ebf4;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.gain-card:hover {
    transform: translateY(-8px);
    background-color: #0056b3;
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.15);
}

.gain-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #0056b3;
    transition: all 0.4s ease;
}

.gain-card:hover .gain-icon {
    color: #ff6b00;
    transform: scale(1.2) rotate(5deg);
}

.gain-card h4 {
    color: #002855;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    transition: color 0.4s ease;
}

.gain-card:hover h4 { color: #ffffff; }

.gain-card p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.4s ease;
}

.gain-card:hover p { color: #e0e0e0; }

/* Program Highlights */
.highlights-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, #f0f6fc 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #e1ebf4;
}

.highlights-list {
    flex: 1;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444444;
    font-weight: 500;
    border-bottom: 1px solid #e1ebf4;
    padding-bottom: 1rem;
}

.custom-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #ff6b00;
}

.highlights-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.highlights-img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.highlights-image-wrapper:hover .highlights-img {
    transform: scale(1.05);
}

.img-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0056b3, #ff6b00);
    z-index: 2;
}

/* Academic Project Support */
.academic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.academic-card {
    background-color: #f8fbff;
    border: 1px solid #e1ebf4;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.academic-card:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.08);
    transform: translateY(-5px);
}

.step-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b00, #ff8c33);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.academic-card p {
    margin: 0;
    font-weight: 600;
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonial-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%;
}

.quote-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 2rem;
    color: #ffccaa; /* Light orange */
}

.testimonial-content {
    transition: opacity 0.3s ease;
}

.testimonial-text {
    font-size: 1.3rem;
    color: #444444;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.author-info h5 {
    font-size: 1.1rem;
    color: #002855;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #0056b3;
    font-weight: 500;
}

.nav-btn {
    background-color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0056b3;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-btn:hover {
    background-color: #0056b3;
    color: #ffffff;
    transform: scale(1.1);
}

/* Footer Styles */
.footer {
    background-color: #002855;
    padding: 5rem 0 2rem;
    border-top: 1px solid #e1ebf4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-blue {
    color: #ffffff;
}

.footer-desc {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

.app-buttons {
    display: flex;
    gap: 1rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    border: 1px solid #e1ebf4;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    border-color: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
    transform: translateY(-2px);
}

.store-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-btn small {
    font-size: 0.65rem;
    color: #666666;
}

.store-btn strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333333;
}

.footer-links h4, .footer-contact h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: #ff6b00;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b00;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.contact-item p, .contact-item a {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff6b00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #cccccc;
    font-size: 0.95rem;
}

/* Scroll Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.client-logos-section {
    margin-top: 3rem;
    padding: 2rem 1rem 1rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(243,247,255,0.95) 100%);
    box-shadow: 0 18px 40px rgba(6, 35, 86, 0.08);
}

.clients-title {
    margin: 0 0 1.5rem;
    color: #0c2f5c;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
}

.logo-track {
    display: flex;
    gap: 1.1rem;
    animation: scroll-left 28s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    min-width: 160px;
    padding: 1rem 1.3rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(4, 74, 159, 0.08);
    color: #0b3b75;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 49, 105, 0.05);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .client-logos-section { padding: 1.5rem 0.8rem; }
    .logo-item { min-width: 140px; font-size: 0.88rem; padding: 0.9rem 1rem; }
}

/* Make banner responsive */
@media (max-width: 992px) {
    .banner-title { font-size: 2.8rem; }
    .banner-content { width: 50%; }
    .banner-overlay-blue { clip-path: polygon(0 0, 75% 0, 55% 100%, 0 100%); }
    .banner-overlay-orange { clip-path: polygon(0 0, 77% 0, 57% 100%, 0 100%); }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .welcome-content { gap: 2rem; }
    
    .service-card { width: calc(50% - 1rem); }
    
    .gain-grid, .academic-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-flex { flex-direction: column; gap: 3rem; }
    .highlights-list, .highlights-image-wrapper { width: 100%; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Header Responsive */
    .menu-toggle { display: flex; }
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: #ffffff; flex-direction: column; align-items: center;
        padding: 0; max-height: 0; overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .nav-links.active { max-height: 500px; padding: 2rem 0; }
    .nav-links li { width: 100%; text-align: center; margin: 0.5rem 0; }
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; display: none; width: 100%; border: none; padding: 0;
    }
    .dropdown:hover .dropdown-menu { display: block; }

    /* Banner Responsive */
    .banner-title { font-size: 2.2rem; }
    .banner-content { width: 80%; left: 5%; }
    .banner-overlay-blue { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); background-color: rgba(23, 32, 54, 0.85); }
    .banner-overlay-orange { display: none; }
    .banner-indicators { left: 50%; }

    /* New Sections Responsive */
    .welcome-content { flex-direction: column; }
    .welcome-text, .welcome-features { width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2.2rem; }
    
    .service-card { width: 100%; }
    
    .gain-grid, .academic-grid { grid-template-columns: 1fr; }
    .highlights-image-wrapper { width: 100%; }
    .highlights-flex { padding: 2rem 1.5rem; }
    
    .testimonial-wrapper { flex-direction: column; }
    .nav-btn { display: none; }
    .testimonial-card { padding: 2.5rem 1.5rem; }
    .testimonial-text { font-size: 1.1rem; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .app-buttons { flex-direction: column; width: fit-content; }
}

/* Contact Page Styles */
.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: #0056b3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero h1 {
    font-size: 3.2rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #172036;
}

.contact-hero p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4f5d7a;
    margin-bottom: 2rem;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.mini-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.08);
    border: 1px solid rgba(0, 86, 179, 0.08);
}

.mini-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #002855;
}

.mini-card p,
.mini-card a {
    color: #3c4963;
    line-height: 1.7;
    text-decoration: none;
}

.blue-card {
    background: linear-gradient(180deg, #eaf4ff 0%, #ffffff 100%);
}

.orange-card {
    background: linear-gradient(180deg, #fff4ea 0%, #ffffff 100%);
}

.hero-image-card {
    display: flex;
    justify-content: center;
}

.featured-card {
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(231, 240, 255, 0.95), #ffffff);
    border: 1px solid rgba(0, 86, 179, 0.12);
    box-shadow: 0 24px 60px rgba(0, 86, 179, 0.08);
    width: 100%;
    max-width: 520px;
}

.featured-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #002855;
}

.featured-card p {
    color: #5c708d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.featured-card img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    min-height: 260px;
}

.contact-form-section {
    padding: 4rem 0 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(460px, 1.5fr);
    gap: 2rem;
    align-items: start;
}

.contact-info-panel {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background-color: #ffffff;
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid #e1ebf4;
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.07);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #002855;
}

.info-card p {
    color: #4f5d7a;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.info-card span {
    color: #8b96a7;
    font-size: 0.94rem;
}

.contact-form-panel .form-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 28px;
    border: 1px solid #e1ebf4;
    box-shadow: 0 18px 45px rgba(0, 86, 179, 0.08);
}

.contact-form-panel h2 {
    margin-bottom: 1.5rem;
    color: #002855;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.65rem;
    color: #172036;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid #d7e3f2;
    background-color: #f8fbff;
    color: #2f3b55;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.08);
}

.primary-btn {
    background-color: #0056b3;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.primary-btn:hover {
    background-color: #003d7d;
    transform: translateY(-1px);
}

.form-note {
    margin-top: 1rem;
    color: #667392;
    font-size: 0.95rem;
}

.map-section {
    padding: 3rem 0 5rem;
    background-color: #ffffff;
}

.map-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #002855;
    text-align: center;
}

.map-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 24px 60px rgba(0, 86, 179, 0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}

.active-link,
.nav-links a.active-link {
    color: #ff6b00;
}

@media (max-width: 1100px) {
    .contact-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-card {
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding-top: 4rem;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .info-card,
    .form-card,
    .featured-card {
        border-radius: 20px;
    }
}

/* Animated Clients Section */
.clients-animated-section {
    background-color: #f8fbff;
    position: relative;
    overflow: hidden;
}

.clients-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.client-animated-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.05);
    border: 1px solid #e1ebf4;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.client-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #002855;
    z-index: 2;
    transition: all 0.4s ease;
    background: linear-gradient(90deg, #002855, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.client-hover-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0056b3 0%, #ff6b00 100%);
    z-index: 0;
    transition: all 0.6s ease;
    opacity: 0;
}

.client-animated-link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
    border-color: transparent;
}

.client-animated-link:hover .client-hover-bg {
    left: 0;
    opacity: 1;
}

.client-animated-link:hover .client-name {
    -webkit-text-fill-color: #ffffff;
    background: transparent;
    letter-spacing: 2px;
}

/* Float animation for the cards */
@keyframes float-client {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.client-animated-link:nth-child(1) { animation: float-client 6s ease-in-out infinite; }
.client-animated-link:nth-child(2) { animation: float-client 6s ease-in-out infinite 2s; }
.client-animated-link:nth-child(3) { animation: float-client 6s ease-in-out infinite 4s; }

.client-animated-link:hover {
    animation-play-state: paused;
}

@media (min-width: 992px) {
    .clients-showcase {
        flex-direction: row;
        justify-content: center;
    }
    
    .client-animated-link {
        padding: 3rem 2rem;
        flex: 1;
    }
    
    .client-name {
        font-size: 1.5rem;
    }
}

