/* --- Animated Top Line --- */
.top-animated-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    /* Super thin line */
    z-index: 10000;
    background: linear-gradient(90deg, #ff510e, #ff0080, #ec4899, #7928ca, #6366f1, #0ea5e9, #0070f3, #00dfd8, #10b981, #84cc16, #f59e0b, #ff510e);
    background-size: 200% 100%;
    animation: runningLine 6s linear infinite;
}

@keyframes runningLine {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: -200% 0%;
    }
}

/* Base Variables */

/* Base Variables */
:root {
    --primary: #3b82f6;
    /* Modern Blue */
    --primary-dark: #1d4ed8;
    --secondary: #f8f9fa;
    /* Light Gray */
    --bg-color: #ffffff;
    --text-main: #1f2937;
    /* Very Dark Gray */
    --text-muted: #6b7280;
    /* Medium Gray */
    --white: #ffffff;
    --dark-bg: #111827;
    /* For elements that need to stay dark */
    --card-bg: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    --nav-bg: rgba(30, 58, 138, 0.95);
    /* Blue background for navbar */
    --nav-text: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --brand-primary: #134580;
    /* Official Brand Color */
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);

    /* Responsive Typography & Spacing System */
    --section-padding: 80px;
    /* Reduced from 120px globally */
    --title-size: 3.5rem;
}

/* Responsive Scaling for Titles & Spacing */
@media (max-width: 1440px) {
    :root {
        --section-padding: 100px;
        --title-size: 3rem;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
        --title-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --title-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
        --title-size: 1.8rem;
    }
}

/* Reset & Scaffolding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    padding-top: 136px;
    /* Height of top-bar + navbar */
}

/* Global Orange Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background-color: #ff510e !important;
    border-radius: 10px !important;
    border: 3px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #e64600 !important;
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff510e #f1f5f9;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    color: white;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sub-heading {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--brand-primary);
    color: white;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 500;
    width: 100%;
    position: fixed;
    top: 1.5px;
    /* Adjust for thinner line */
    left: 0;
    z-index: 1005;
    /* Consistently higher than navbar (1003) */
    display: block;
    overflow: visible !important;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible !important;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-right {
    position: relative;
    overflow: visible !important;
}

.login-dropdown-container {
    position: relative;
}

.login-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    z-index: 99999;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideUpDropdown 0.3s ease forwards;
}

.login-dropdown-menu.active {
    display: block !important;
}

/* Footer Section */
.footer-top-bar {
    background: #ff510e;
    /* Vivid Orange as requested */
    color: white;
    padding: 20px 0;
    margin-top: 0;
    /* Removed margin to stick to map */
}

.footer-top-bar .contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2.5rem;
    width: 100%;
    margin: 0 auto;
}

.footer-top-bar .separator {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    display: block;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .footer-top-bar .contact-info {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .footer-top-bar .separator {
        display: none;
    }
}

.footer-top-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.footer-top-bar .icon-box {
    width: 45px;
    height: 45px;
    background: white;
    /* Changed from semi-transparent to solid white */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff510e;
    /* Icon color changed to orange */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-top-bar .info-text span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.footer-top-bar .info-text p,
.footer-top-bar .info-text a {
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.main-footer {
    background: var(--brand-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff510e;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: #ff510e;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.login-option {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 20px !important;
    color: #374151 !important;
    font-size: 0.9rem !important;
    text-transform: none !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    width: 100%;
}

.login-option:hover {
    background: #f3f4f6 !important;
    color: var(--brand-primary) !important;
}

.login-option img {
    width: 20px;
    height: 20px;
}

@keyframes slideUpDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.top-bar a:hover {
    color: #e2e8f0;
    /* Off-white hover for links */
}

.top-bar a.announcement-text {
    background: #ff510e;
    /* Brand Accent Color */
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 700;
}

.top-bar a.announcement-text:hover {
    color: white;
    /* No text color change on button hover */
    background: #e64600;
    /* Subtle background change instead */
}

.top-bar-right a i {
    font-size: 0.9rem;
}

/* Ticker Animation for Admission Enquiry */
.admission-ticker {
    height: 20px !important;
    overflow: hidden !important;
    display: inline-block !important;
    vertical-align: middle;
    position: relative;
}

.ticker-content {
    display: block;
    animation: ticker-slide 10s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
}

@keyframes ticker-slide {

    0%,
    40% {
        transform: translateY(0);
    }

    50%,
    90% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(-40px);
    }
}

.ticker-item {
    height: 20px !important;
    line-height: 20px !important;
    white-space: nowrap;
    display: block !important;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 36px;
    /* space for top-bar (~34.5px) + animated-line (1.5px) */
    left: 0;
    width: 100%;
    z-index: 1003;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    transition: var(--transition);
    height: 100px;
    display: flex;
    align-items: center;
}

#navbar.scrolled {
    height: 80px;
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-primary);
    transition: var(--transition);
}

.nav-link.active::after {
    width: 100%;
}

@media (min-width: 1151px) {
    .nav-link:hover i {
        transform: rotate(180deg);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--brand-primary);
    }
}

/* Dropdown Styles */
.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--brand-primary);
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
    z-index: 1000;
}

@media (min-width: 1151px) {
    .nav-item:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

/* Nested Dropdown */
.dropdown-menu li {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -10px;
    /* Align with parent item */
    min-width: 260px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--brand-primary);
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
    z-index: 1001;
}

@media (min-width: 1151px) {
    .dropdown-menu li:hover>.submenu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

.dropdown-item {
    color: var(--text-main);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    /* Changed from block to flex for arrow alignment */
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    text-transform: none;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--brand-primary);
    padding-left: 25px;
}

.dropdown-item i.fa-caret-right {
    font-size: 0.8em;
    opacity: 0.5;
}

.dropdown-item:hover i.fa-caret-right {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.user-profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.user-profile span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.nav-divider {
    height: 20px;
    width: 1px;
    background-color: #e5e7eb;
}

/* Search Bar - New Design */
.search-trigger-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.search-trigger-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--brand-primary);
}

/* Search Bar - Glass Morphism & Below Navbar Animation */
.search-overlay {
    position: fixed;
    top: 36px;
    /* Starts behind the navbar (~34.5px + 1.5px) */
    left: 0;
    width: 100%;
    height: 100px;
    /* Initial navbar height */
    z-index: 1002;
    /* Behind navbar (1003) but above page content */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Slower, smoother animation */
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
}

.search-overlay.active {
    transform: translateY(100px);
    /* Slips down below 100px navbar */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#navbar.scrolled~.search-overlay {
    height: 80px;
}

#navbar.scrolled~.search-overlay.active {
    transform: translateY(80px);
    /* Slips down below 80px navbar */
}

/* Responsive adjustments for search overlay */
@media (max-width: 1440px) {
    .search-overlay {
        height: 80px;
    }

    .search-overlay.active {
        transform: translateY(80px);
    }
}

@media (max-width: 1150px) {
    .search-overlay {
        top: 65px;
        height: 75px;
    }

    .search-overlay.active {
        transform: translateY(75px);
    }

    #navbar.scrolled~.search-overlay {
        height: 65px;
    }

    #navbar.scrolled~.search-overlay.active {
        transform: translateY(65px);
    }
}

@media (max-width: 520px) {
    .search-overlay {
        top: 78px;
        height: 80px;
    }

    .search-overlay.active {
        transform: translateY(80px);
    }

    #navbar.scrolled~.search-overlay {
        height: 70px;
    }

    #navbar.scrolled~.search-overlay.active {
        transform: translateY(70px);
    }
}

.search-pill-container {
    background: rgba(30, 58, 138, 0.25);
    /* Blue-tint glass morphism (Deep Blue) */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    width: auto;
    max-width: 95%;
}

.search-white-bar {
    background: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 2px 4px 2px 25px;
    /* Increased left padding for cleaner look */
    width: 650px;
    max-width: 100%;
    /* Fluid for mobile */
    /* Slightly narrower */
    height: 44px;
    /* Reduced height as requested */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-input-wrapper {
    flex: 1;
}

.search-input-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 400;
}

.main-search-btn {
    background: #ff510e;
    /* Match 'Apply Now' button color */
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0 20px;
    height: 36px;
    font-weight: 600;
    /* Reduced from 800 to 600 to look less 'fat' */
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    flex-shrink: 0;
    /* Prevent button from shrinking */
}

.main-search-btn:hover {
    background: #e64600;
    transform: scale(1.02);
}

.search-close-circle {
    background: rgba(255, 255, 255, 0.85);
    /* Light solid-ish background to make orange pop */
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: #ff510e;
    /* Orange color matching Apply Now button */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    /* CRITICAL: Prevent circle from distorting/squeezing */
}

.search-close-circle:hover {
    background: #ffffff;
    transform: rotate(90deg);
}


.btn-apply {
    background-color: #ff510e;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-apply:hover {
    background-color: #e64600;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(255, 81, 14, 0.2);
    color: white;
    /* Keep text white for contrast */
}

.btn-signup {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--primary);
    transition: var(--transition);
}

.btn-signup:hover {
    background: rgba(59, 130, 246, 0.1);
}

.btn-signup::after {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero-slider {
    height: calc(100vh - 136px);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slides-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hero content and overlays removed as per request */

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 10;
    text-align: left;
    max-width: 850px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #000000;
    margin-bottom: 2.5rem;
    max-width: 700px;
    opacity: 0;
    line-height: 1.6;
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.hero-btns {
    opacity: 0;
}

/* Slide Animation Triggers */
.slide.active .hero-title {
    animation: slideInLeft 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
}

.slide.active .hero-subtitle {
    animation: slideInLeft 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.7s;
}

.slide.active .hero-btns {
    animation: slideInLeft 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1s;
}

/* Slider Controls */
.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #ff510e;
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e64600;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* Stats section styles removed as per request */

/* Partners Section - Scrolling Logos */
.partners-section {
    padding: var(--section-padding) 0;
    background-color: #f8f9fa;
    overflow: hidden;
    width: 100%;
}

.partners-section .container {
    max-width: 100%;
    padding: 0;
}

.partners-title {
    text-align: center;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    padding: 0 2rem;
    font-size: var(--title-size);
}

.partners-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1rem 0;
}

.partners-scroll-container::before,
.partners-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.partners-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

.partners-track {
    display: flex;
    /* Removed gap and used margin on items for a perfectly seamless 50% loop */
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 120px;
    margin-right: 4rem;
    /* Standardized gap for seamless loop */
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.partner-logo img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        /* Move by exactly half the track width (one full set of logos) */
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: var(--title-size);
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.about p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.feature-list i {
    color: var(--primary);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover {
    gap: 10px;
}

.about-image {
    position: relative;
}

.img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.1);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    filter: grayscale(0%);
}

.img-wrapper:hover img {
    transform: scale(1.02);
}

/* Academics Section */
.academics {
    padding: var(--section-padding) 0;
    background-color: var(--secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: var(--title-size);
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-link:hover {
    gap: 10px;
}

/* Unlock Your Learning Potential Section */
.unlock-learning {
    padding: 50px 0 150px;
    /* Reduced top, increased bottom as requested */
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.unlock-wrapper {
    background-color: #f7f9fa;
    border-radius: 40px;
    padding: 120px 40px;
    text-align: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.05);
}

.unlock-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.unlock-content h1 {
    font-size: var(--title-size);
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.unlock-content h1 .highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #ff510e;
    display: inline-block;
    margin-top: 10px;
}

.unlock-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 45px;
    line-height: 1.6;
    font-weight: 500;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #ff510e;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 81, 14, 0.3);
    text-decoration: none;
}

.btn-explore i {
    background: #fff;
    color: #ff510e;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
    /* Default diagonal position */
}

.btn-explore:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 81, 14, 0.4);
    color: #fff;
}

.btn-explore:hover i {
    transform: rotate(0deg);
    /* Straightens on hover or slightly different rotation */
}

/* Floating Images */
.floating-img {
    position: absolute;
    width: 260px;
    height: 260px;
    z-index: 10;
    pointer-events: none;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%, 0% 25%, 25% 25%);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.img-top-right {
    top: -60px;
    right: -40px;
    transform: rotate(15deg) translateX(50px);
    opacity: 0;
}

.floating-img.img-top-right.active {
    transform: rotate(15deg) translate(0);
    opacity: 1;
}

.img-top-right::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: #3db2c6;
    clip-path: polygon(25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%, 0% 25%, 25% 25%);
    z-index: -1;
    opacity: 0.4;
}

.img-bottom-left {
    bottom: -60px;
    left: -40px;
    transform: rotate(-10deg) translateX(-50px);
    opacity: 0;
}

.floating-img.img-bottom-left.active {
    transform: rotate(-10deg) translate(0);
    opacity: 1;
}

.img-bottom-left::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: #ff510e;
    clip-path: polygon(25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%, 0% 25%, 25% 25%);
    z-index: -1;
    opacity: 0.4;
}



@media (max-width: 1200px) {
    .unlock-wrapper {
        max-width: 90%;
    }

    .floating-img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 992px) {
    .unlock-content h1 {
        font-size: 2.8rem;
    }

    .unlock-learning {
        padding: 80px 0;
    }

    .unlock-wrapper {
        padding: 80px 20px;
    }

    .floating-img {
        width: 140px;
        height: 140px;
        opacity: 0.8;
    }

    .img-top-right {
        top: -40px;
        right: -20px;
    }

    .img-bottom-left {
        bottom: -40px;
        left: -20px;
    }
}

@media (max-width: 768px) {
    .unlock-content h1 {
        font-size: 2.2rem;
    }

    .unlock-content p {
        font-size: 1rem;
    }

    .floating-img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 490px) {
    .unlock-wrapper {
        padding: 60px 20px;
        border-radius: 30px;
    }

    .unlock-content h1 {
        font-size: 1.8rem;
    }

    /* Show decorative images on very small screens as requested */
    .floating-img {
        display: block;
        width: 80px;
        height: 80px;
        opacity: 0.6;
    }

    .img-top-right {
        top: -45px;
        right: -15px;
    }

    .img-bottom-left {
        bottom: -45px;
        left: -15px;
    }
}

/* Events Section */
.events {
    padding: 8rem 0;
    background-color: var(--bg-color);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-item:hover {
    background-color: var(--secondary);
    transform: translateX(5px);
}

.event-item .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: 2rem;
    min-width: 80px;
}

.event-item .day {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.event-item .month {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.event-item .details {
    flex: 1;
}

.event-item .details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--text-main);
}

.event-item .details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.event-item:hover .btn-icon {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

/* Main Footer */
.main-footer {
    background-color: var(--brand-primary);
    padding: 2rem 0 1rem;
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer .container {
    max-width: 1600px;
    /* Increased max-width for wider layout */
    padding: 0 4rem;
    /* More padding on sides */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr 0.8fr 1fr;
    /* Custom widths: Brand larger, Quick Links widest */
    gap: 3rem;
    /* Increased gap between columns */
    margin-bottom: 2rem;
}

/* Wide column for Quick Links */
.wide-footer-col {
    /* Keeping class for future utility but preventing empty rule lint */
    display: block;
}

/* 770px–1200px: Keep all 4 columns in a single horizontal row */
@media (min-width: 770px) and (max-width: 1200px) {
    .main-footer .container {
        padding: 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1.4fr 1fr 1fr;
        gap: 1rem;
    }

    /* Quick Links: 2 text-columns inside the cell */
    .multi-column-list {
        column-count: 2;
        column-gap: 0.8rem;
    }

    /* Push Academics column further to the right */
    .footer-grid>.footer-col:nth-child(3) {
        padding-left: 2.5rem;
    }

    /* Scale down footer text to fit */
    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer-links a,
    .footer-links li {
        font-size: 0.75rem;
    }

    .footer-desc {
        font-size: 0.78rem;
    }

    .footer-logo img {
        height: 45px;
    }

    .socials a {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
    object-fit: contain;
}

.footer-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-desc {
    color: #ffffff;
    /* Pure white text */
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Socials */
.socials {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #cbd5e1;
}

.socials a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.7rem;
    break-inside: avoid;
    page-break-inside: avoid;
}

/* Multi Column List */
.multi-column-list {
    column-count: 3;
    /* Reduced from 4 for better spacing */
    column-gap: 3rem;
    /* Wider gap between text columns */
}

/* Already handled in the 770px–1200px block above */

/* Below 770px: stack to 2-column grid */
@media (max-width: 769px) {
    .main-footer .container {
        padding: 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-col.brand-col {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-col.brand-col .socials {
        justify-content: center;
    }

    .wide-footer-col {
        grid-column: 1 / -1;
    }

    .multi-column-list {
        column-count: 3;
        column-gap: 1.5rem;
    }
}

@media (max-width: 550px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .wide-footer-col {
        width: 100%;
    }

    .multi-column-list {
        column-count: 2;
        column-gap: 1rem;
    }
}

@media (max-width: 400px) {
    .multi-column-list {
        column-count: 1;
    }
}

.footer-links a {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, text-shadow 0.3s ease, color 0.3s ease;
    font-size: 0.85rem;
    backface-visibility: hidden;
    will-change: transform;
    padding-left: 0;
    text-shadow: none;
}

.footer-links a::before {
    content: '+';
    color: #ffffff;
    font-weight: bold;
}

/* Hover: zoom-in + glow effect (desktop) */
.footer-links li:hover a {
    color: #ffffff;
    transform: scale(1.1);
    transform-origin: left center;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.9),
        0 0 16px rgba(100, 180, 255, 0.7),
        0 0 28px rgba(100, 180, 255, 0.4);
}

/* Click/active state for responsive/touch screens */
.footer-links a.footer-link-active {
    color: #ffffff;
    transform: scale(1.1);
    transform-origin: left center;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.9),
        0 0 16px rgba(100, 180, 255, 0.7),
        0 0 28px rgba(100, 180, 255, 0.4);
}

/* Contact Hero Section Styling */
.contact-hero-section {
    padding: 80px 0 60px;
    background-color: #f8fafc;
}

.contact-hero-section .container {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
}

.contact-hero-section .hero-title {
    max-width: 800px;
    margin-bottom: 1rem;
    font-size: 3rem;
    color: #0f172a;
    line-height: 1.2;
    text-align: center !important;
}

.contact-hero-section .hero-subtitle {
    max-width: 600px;
    margin-bottom: 3rem;
    color: #64748b;
    font-size: 1.1rem;
    text-align: center !important;
}

.content-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: #eef2ff;
    color: var(--brand-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.contact-hero-section .info-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .contact-hero-section .info-highlights {
        grid-template-columns: 1fr;
    }
}

.footer-contact-links a::before {
    display: none !important;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.copyright p {
    color: #ffffff;
    /* White text */
    font-size: 0.85rem;
}

/* Floating Elements */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}

.chat-widget:hover {
    transform: translateY(-5px);
}

.go-top-text {
    position: fixed;
    bottom: 150px;
    right: -30px;
    transform: rotate(-90deg);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.go-top-text::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--text-muted);
}

.go-top-text:hover {
    color: var(--primary);
}

.go-top-text:hover::before {
    background-color: var(--primary);
}

@media (max-width: 900px) {
    /* Keep existing rules but refine if needed */
}

/* Single-line horizontal layout: 900px to 1400px */
@media (min-width: 900px) and (max-width: 1400px) {
    .footer-top-bar {
        padding: 14px 0;
    }

    .footer-top-bar .contact-info {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .footer-top-bar .separator {
        display: block;
        height: 30px;
        flex-shrink: 0;
    }

    .footer-top-bar .contact-item {
        flex-shrink: 1;
        gap: 10px;
    }

    .footer-top-bar .icon-box {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .footer-top-bar .info-text span {
        font-size: 0.68rem;
    }

    .footer-top-bar .info-text p,
    .footer-top-bar .info-text a {
        font-size: 0.8rem;
    }
}

@media (max-width: 990px) {
    .footer-top-bar .contact-info {
        flex-direction: column;
        align-items: flex-start;
        /* Align left */
        gap: 1.5rem;
        padding-left: 0;
        /* Removed padding to align with container left edge */
    }

    .footer-top-bar .separator {
        display: none;
    }

    .contact-item {
        width: 100%;
        justify-content: flex-start;
    }

    /* Fix icon shrinking on small screens */
    .footer-top-bar .icon-box {
        flex-shrink: 0;
        /* Prevent circle from becoming oval */
        min-width: 45px;
        /* Force width */
        min-height: 45px;
        /* Force height */
    }
}

/* Animations Keyframes */
@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes smoothShake {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(1px, -1px) rotate(2deg);
    }

    50% {
        transform: translate(-1px, 1px) rotate(-2deg);
    }

    75% {
        transform: translate(1px, 1px) rotate(1deg);
    }
}

@keyframes shakeHalfCircle {

    0%,
    100% {
        transform: rotate(-30deg) translate(0, 0);
    }

    25% {
        transform: rotate(-28deg) translate(2px, -2px);
    }

    50% {
        transform: rotate(-32deg) translate(-2px, 2px);
    }

    75% {
        transform: rotate(-29deg) translate(1px, 1px);
    }
}



/* Utility Animations Classes */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="slide-left"] {
    transform: translateX(50px);
}

[data-animate="slide-right"] {
    transform: translateX(-50px);
}

[data-animate="scale-up"] {
    transform: scale(0.9);
}

/* Active States */
[data-animate].active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Laptop & Smaller Desktop Screens */
@media (max-width: 1440px) {
    .nav-container {
        padding: 0 2rem;
    }

    .logo {
        margin-left: 0;
        /* Reset excessive margin for smaller laptops */
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .nav-actions {
        gap: 0.8rem;
    }

    .btn-apply {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    #navbar {
        height: 80px;
    }

    #navbar.scrolled {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }

    body {
        padding-top: 116px;
    }
}

@media (max-width: 1250px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }
}

/* Tablet & Mobile Responsiveness - Sidebar menu starts here */
@media (max-width: 1150px) {
    .top-bar {
        padding: 5px 0;
        height: 65px;
        display: flex;
        align-items: center;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 3px;
        padding: 0 1rem;
    }

    .top-bar-right {
        order: -1;
        width: 100%;
        justify-content: center;
        gap: 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 5px;
    }

    .top-bar-right a {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .top-bar-right a:not(.login-dropdown) {
        display: flex;
        /* Restore visibility */
    }

    .top-bar-left {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .top-bar-left .announcement-text {
        font-size: 0.65rem;
    }

    .admission-ticker {
        font-size: 0.65rem;
    }

    /* Adjust navbar top offset - More compact top-bar (approx 65px) */
    #navbar {
        top: 65px;
        height: 75px;
    }

    #navbar.scrolled {
        height: 65px;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100%;
        width: 280px;
        height: calc(100vh - 100% - 65px);
        background-color: #ffffff;
        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        box-shadow: 15px 0 35px rgba(0, 0, 0, 0.1);
        z-index: 1002;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin-top: 0 !important;
        overflow-y: auto;
        overflow-x: hidden;
        max-width: 85vw;
        border-right: 1px solid #eee;
        scrollbar-width: thin;
        scrollbar-color: #ff510e #f1f5f9;
    }

    /* Orange Scrollbar for Nav Menu */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background-color: #ff510e !important;
        border-radius: 10px !important;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background-color: #e64600 !important;
    }

    /* Sidebar Header (Logo and Close) */
    /* Sidebar Header (Logo and Close) - Removed as per request to move menu items up */
    /*
    .nav-menu::before {
        content: '';
        display: block;
        height: 60px;
        margin: 1.5rem 2rem 1rem;
        background: url('assets/coeb-logo.png') no-repeat left center;
        background-size: contain;
        border-bottom: 1px solid #f3f4f6;
        padding-bottom: 1rem;
    }
    */

    /* Removed redundant margin-tops */

    body {
        padding-top: 140px;
        /* 65px top-bar + 75px navbar */
    }

    .nav-link {
        color: var(--text-main);
        padding: 1rem 2.2rem;
        /* SHIFTED MORE RIGHT AS REQUESTED */
        justify-content: flex-start;
        width: 100%;
        font-size: 1rem;
        border-bottom: 1px solid #f9fafb;
        font-weight: 600;
        position: relative;
    }

    /* Shifted active state to be more to the right and consistent */
    /* Shifted active state to be more to the right and consistent */
    .nav-link.active,
    .nav-item.active>.nav-link {
        color: var(--brand-primary);
        background-color: #eff6ff;
        padding-left: 1.8rem;
    }

    /* Line and Icon rotation on click/active state ONLY in responsive */
    .nav-link.active::after,
    .nav-item.active>.nav-link::after {
        width: 100%;
        height: 3px;
    }

    .nav-item.active>.nav-link i {
        transform: rotate(180deg);
    }

    .nav-link:hover {
        background-color: transparent;
        padding-left: 1rem;
    }

    .nav-actions {
        gap: 0.6rem;
    }

    .nav-divider {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .logo {
        margin-left: 1.5rem;
    }

    .logo img {
        height: 48px;
    }

    .search-container.active .search-input {
        width: 140px;
    }

    .btn-apply {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .footer-col.brand-col,
    .footer-col:last-child {
        grid-column: span 2;
    }

    /* Backdrop Overlay */
    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden !important;
    }

    /* Mobile Dropdowns */
    .nav-item.active .dropdown-menu {
        display: block !important;
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background-color: #f8fafc;
        animation: none;
        padding-left: 3rem;
        /* Indent submenus content properly as requested */
    }

    .nav-item .dropdown-menu {
        transition: all 0.3s ease;
    }

    .dropdown-item {
        padding: 0.8rem 1.5rem;
        /* Indent submenus content properly */
        background-color: transparent !important;
    }

    /* Nested Submenu Mobile Fix */
    .dropdown-menu li {
        display: block;
        width: 100%;
    }

    .submenu {
        display: none;
        position: static;
        width: 100%;
        background-color: #f1f5f9;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        animation: none;
        padding-top: 0;
        padding-bottom: 0;
    }

    .dropdown-menu li.active>.submenu {
        display: block !important;
        animation: none;
    }

    .dropdown-menu li.active>.dropdown-item {
        color: var(--brand-primary);
        font-weight: 700;
    }

    .dropdown-menu li.active>.dropdown-item i.fa-caret-right {
        transform: rotate(90deg);
    }
}

/* Small Mobile Screens */
@media (max-width: 520px) {
    .nav-container {
        padding: 0 0.8rem;
    }

    .logo {
        margin-left: 0.5rem;
    }

    .logo img {
        height: 50px;
        transition: height 0.3s ease;
    }

    #navbar.scrolled .logo img {
        height: 45px;
    }

    .nav-actions {
        gap: 0.4rem;
    }

    .btn-apply {
        padding: 0.4rem 0.6rem;
        white-space: nowrap;
        font-size: 0.7rem;
    }

    .search-container.active .search-input {
        width: 80px;
    }

    /* Show admission ticker below announcement on small phones (80px height) */
    .top-bar {
        padding: 4px 0;
        height: 78px;
        display: flex;
        align-items: center;
    }

    .top-bar .container {
        gap: 2px;
        justify-content: center;
        flex-direction: column;
    }

    .top-bar-right {
        padding-bottom: 2px;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .top-bar-right a {
        font-size: 0.6rem;
        letter-spacing: 0;
    }

    .top-bar-left {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        align-items: center;
    }

    .admission-ticker {
        display: block !important;
        font-size: 0.6rem;
        max-width: 100%;
        overflow: hidden;
    }

    .ticker-item {
        height: 18px !important;
        line-height: 18px !important;
        font-size: 0.6rem;
        text-align: center;
    }

    #navbar {
        height: 80px;
        top: 78px;
    }

    #navbar.scrolled {
        height: 70px;
    }

    body {
        padding-top: 158px;
        /* 78 + 80 */
    }

    /* Correct offsets for mobile menu on very small screens */
    #navbar:not(.scrolled) .nav-menu,
    #navbar.scrolled .nav-menu {
        margin-top: 0;
    }

    .nav-menu {
        height: calc(100vh - 158px);
    }
}


/* Welcome EduFor Section */
.welcome-edufor {
    padding: var(--section-padding) 0 80px;
    /* Slightly more bottom padding for breathing room */
    background-color: #ffffff;
    overflow: hidden;
}

.welcome-edufor .container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
}

.welcome-collage {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 100 / 85;
    height: auto;
    display: block;
    margin: 0 auto;
}

.collage-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.collage-img:hover {
    transform: scale(1.03);
    z-index: 10;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Img 1: Top Left Landscape */
.img-1 {
    width: 54%;
    aspect-ratio: 3/2;
    top: 8%;
    left: 0;
    z-index: 2;
    height: auto;
}

/* Img 2: Right Tall Portrait */
.img-2 {
    width: 41%;
    aspect-ratio: 2/3;
    top: 0;
    right: 0;
    z-index: 1;
    height: auto;
}

/* Img 3: Bottom Left Square */
/* Img 3: Bottom Left Square */
.img-3 {
    width: 42%;
    aspect-ratio: 1/1;
    bottom: -4%;
    left: 12%;
    z-index: 3;
    height: auto;
}

/* Decorative Shapes */
.shape-half-circle {
    position: absolute;
    top: -12%;
    left: 14%;
    width: 12%;
    aspect-ratio: 1/1;
    background-color: #f15a29;
    border-radius: 50% 50% 0 0;
    /* Semi-circle radius hack, or just circle clipped */
    border-radius: 100px 100px 0 0;
    transform: rotate(-30deg);
    z-index: 0;
    animation: shakeHalfCircle 6s ease-in-out infinite;
    height: auto;
}

.shape-star {
    position: absolute;
    bottom: 0%;
    right: 10%;
    width: 15%;
    aspect-ratio: 1/1;
    z-index: 0;
    animation: smoothShake 5s ease-in-out infinite;
    height: auto;
}

.welcome-content {
    flex: 1.2;
}

.welcome-content h2 {
    font-size: var(--title-size);
    color: #0c2231;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.welcome-content p {
    font-size: 1.1rem;
    color: #4c565d;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-view-services {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #0c2231;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-view-services:hover {
    background-color: #1a3a50;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(12, 34, 49, 0.2);
}

.btn-view-services i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-view-services:hover i {
    transform: translateX(5px);
}

.welcome-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    color: #4c565d;
    margin-bottom: 0;
    font-weight: 500;
}

.stat-item.accepted h3 {
    color: #8dc63f;
}

.stat-item.universities h3 {
    color: #00aeef;
}

.stat-item.scholarships h3 {
    color: #f15a29;
}

@media (max-width: 1280px) {
    .welcome-edufor .container {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .welcome-edufor .container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .welcome-collage {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .welcome-content h2 {
        font-size: var(--title-size);
    }

    .welcome-content p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .welcome-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .welcome-collage {
        max-width: 450px;
    }

    .welcome-content h2 {
        font-size: var(--title-size);
    }
}

@media (max-width: 480px) {
    .welcome-collage {
        max-width: 100%;
    }

    .welcome-content h2 {
        font-size: var(--title-size);
    }

    .welcome-content p {
        font-size: 0.9rem;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }
}

/* Why COEB Section - Scroll Based */
.why-coeb-section {
    position: relative;
    background-color: #f8f9fa;
    width: 100%;
    overflow: visible;
}

.why-coeb-sticky-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
    box-sizing: border-box;
}

.why-coeb-header {
    text-align: center;
    margin-bottom: 20px;
    /* Even tighter header margin */
}

.why-coeb-header h2 {
    font-size: var(--title-size);
    color: #0c2231;
    margin-bottom: 8px;
    /* Reduced from 15px to bring description closer */
    font-weight: 700;
}

.why-coeb-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.why-coeb-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    /* Changed from flex-start for better vertical centering */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.why-coeb-image {
    position: relative;
    /* Changed from sticky as GSAP handles pinning the whole wrapper */
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.why-coeb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.why-coeb-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Increased for better scroll triggering */
    padding: 0;
}

.why-card {
    background: #ffffff;
    padding: 12px 25px;
    /* Further reduced vertical padding */
    border-radius: 20px;
    border: 2px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.why-card h3 {
    font-size: 1.4rem;
    color: #0c2231;
    margin-bottom: 0;
    font-weight: 700;
    transition: color 0.3s ease;
}

/* Card content - hidden by default */
.card-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    margin-top: 0;
}

.card-content p {
    font-size: 1rem;
    color: #4c565d;
    line-height: 1.6;
    /* Reduced line-height from 1.7 */
    margin-bottom: 10px;
    /* Further reduced margin */
    margin-top: 0;
}

.view-services-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0c2231;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.view-services-link i {
    transition: transform 0.3s ease;
}

.view-services-link:hover i {
    transform: translateX(5px);
}

/* Active States for Cards */
.why-card.active {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 15px 25px;
    /* Further reduced active padding */
    transform: scale(1.02);
}

.why-card.active .card-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 5px;
    /* Further reduced to bring description closer to title */
}

/* Active State Colors */
.why-card[data-step="0"].active {
    border-color: #ff510e;
}

.why-card[data-step="0"].active h3 {
    color: #ff510e;
}

.why-card[data-step="1"].active {
    border-color: #00aeef;
}

.why-card[data-step="1"].active h3 {
    color: #00aeef;
}

.why-card[data-step="2"].active {
    border-color: #8dc63f;
}

.why-card[data-step="2"].active h3 {
    color: #8dc63f;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-coeb-section {
        height: auto;
        padding: 40px 0;
    }

    .why-coeb-sticky-wrapper {
        position: relative;
        height: auto;
        padding: 0;
    }

    .why-coeb-content {
        grid-template-columns: 1fr;
        gap: 25px;
        /* Reduced gap to bring image and cards closer */
        padding: 0 20px;
        /* Applied consistent padding to parent */
    }

    .why-coeb-image {
        position: relative;
        top: 0;
        height: 400px;
        width: 100%;
        margin-bottom: 0;
        /* Gap handles this now */
    }

    .why-coeb-cards {
        gap: 12px;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .why-coeb-section {
        padding: 30px 0;
    }

    .why-coeb-header h2 {
        font-size: 2.2rem;
    }

    .why-coeb-image {
        height: 300px;
        padding: 0;
        /* Align with no-padding cards on mobile */
    }

    .why-card {
        padding: 20px 25px;
        /* Consistent with earlier height adjustment */
    }

    .why-card h3 {
        font-size: 1.3rem;
    }

    .card-content p {
        font-size: 0.95rem;
    }
}

/* Standardized Typography cleanup - removed redundant overrides */

@media (max-width: 480px) {

    .section-header h2,
    .why-coeb-header h2,
    .career-content h2,
    .unlock-content h1,
    .partners-title,
    .about h2 {
        font-size: var(--title-size);
    }
}

/* How We Work Timeline Section - Image 1 Exact Match */
.how-we-work {
    padding: 80px 0 var(--section-padding);
    /* Reintroduced slightly more top padding */
    position: relative;
    background-color: #fdfdfd;
    overflow: hidden;
}

.how-we-work .container {
    position: relative;
    z-index: 2;
}

.how-we-work .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.how-we-work .section-header h2 {
    font-size: var(--title-size);
    color: #0c2231;
    margin-top: 0;
    /* Forced to 0 */
    margin-bottom: 10px;
    /* Tighter margin */
    font-weight: 700;
}

.how-we-work .section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

/* Timeline Wrapper */
.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0 100px;
}

/* Central Vertical Line */
.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    /* Changed from calc(100% - 100px) for perfect scroll sync */
    background: transparent;
    z-index: 1;
}

/* Animated Fill Line - Managing color via JS Gradient */
.timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    /* managed by JS */
    z-index: 2;
}

/* Start Dot - Hidden (not needed, badges show numbers) */
.timeline-start-dot {
    display: none;
}

/* End Dot - Hidden (not needed) */
.timeline-end-dot {
    display: none;
}

/* Timeline Items - Visible by default, content always shown */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 80px;
    margin-bottom: 100px;
    opacity: 1;
    transform: scale(1);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
}

/* Content starts hidden, slides in from right when active */
.timeline-item .timeline-content {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item.active .timeline-content {
    opacity: 1;
    transform: translateX(0);
}


/* Right Side Items */
.timeline-item.right {
    left: 50%;
    padding-left: 80px;
    padding-right: 40px;
}

/* Left Side Items */
.timeline-item.left {
    left: 0;
    text-align: right;
    padding-left: 40px;
    padding-right: 80px;
}


/* Numbered Badge/Dot - Always visible as small dots, grow when active */
.timeline-badge {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0;
    /* Hidden when small */
    z-index: 15;
    background-color: var(--badge-color, #ddd);
    /* Use the color from JS */
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 1;
    transform: scale(1);
}

.timeline-item.active .timeline-badge {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.timeline-item.right .timeline-badge {
    left: -10px;
}

.timeline-item.left .timeline-badge {
    right: -10px;
}

.timeline-item.active.right .timeline-badge {
    left: -25px;
}

.timeline-item.active.left .timeline-badge {
    right: -25px;
}

/* Color Coding per Step */
.timeline-item[data-color="#00aeef"] {
    color: #00aeef;
}

.timeline-item[data-color="#ff510e"] {
    color: #ff510e;
}

.timeline-item[data-color="#8cc63f"] {
    color: #8cc63f;
}

.timeline-item[data-color="#662d91"] {
    color: #662d91;
}

@keyframes rocketLaunch {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
    }
}

.how-we-work .s6 {
    animation: rocketLaunch 3s ease-in-out infinite;
}

/* Timeline Content Optimization */
.timeline-content {
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.timeline-item.active .timeline-content {
    border-color: currentColor;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    transition: color 0.3s ease;
}

.timeline-item.active .timeline-content h3 {
    color: currentColor;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Floating Decorative Shapes */
.item-shapes {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-100px);
    width: 300px;
    height: 300px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item.active .item-shapes {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Shapes on LEFT side */
.timeline-item.right .item-shapes.left {
    right: calc(100% + 30px);
}

/* Shapes on RIGHT side */
.timeline-item.left .item-shapes.right {
    left: calc(100% + 30px);
}


/* Individual Shape Styling */
.shake-shape {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    animation: smooth-float 6s ease-in-out infinite;
}

.shake-shape:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 7s;
}

.shake-shape svg,
.shake-shape img,
.shake-shape i {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Smooth Floating Animation */
@keyframes smooth-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(3deg);
    }

    50% {
        transform: translateY(0) rotate(-3deg);
    }

    75% {
        transform: translateY(15px) rotate(2deg);
    }
}

/* Tablet Optimization - Keep Desktop Design but refine spacing */
@media (min-width: 601px) and (max-width: 1150px) {
    .timeline-item {
        padding: 0 40px !important;
    }

    .timeline-item.right {
        padding-left: 60px !important;
    }

    .timeline-item.left {
        padding-right: 60px !important;
    }

    .item-shapes {
        width: 220px;
        height: 220px;
    }

    .shake-shape {
        width: 70px;
        height: 70px;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .item-shapes {
        display: none;
    }

    .timeline-item {
        margin-bottom: 80px;
    }

    .timeline-line,
    .timeline-start-dot {
        left: 30px;
        top: -20px;
        transform: translateX(-50%);
    }

    .timeline-start-dot {
        transform: translate(-50%, -50%);
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 90px !important;
        padding-right: 20px !important;
        text-align: left !important;
        margin-bottom: 80px;
    }

    .timeline-badge {
        left: 30px !important;
        right: auto !important;
        top: -20px;
        transform: translateX(-50%) !important;
    }

    .timeline-item.active.right .timeline-badge,
    .timeline-item.active.left .timeline-badge {
        top: -20px;
        transform: translateX(-50%) !important;
    }

    .timeline-content {
        padding: 30px;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }
}

/* User Requested Timeline Design Adjustments */

/* Step 1: Blue - Make shapes smaller, move items */
.timeline-item[data-color="#00aeef"] .shake-shape.s1,
.timeline-item[data-color="#00aeef"] .shake-shape.s2 {
    width: 65px;
    height: 65px;
    position: relative;
}

/* Star go more left side */
.timeline-item[data-color="#00aeef"] .shake-shape.s1 {
    left: -80px;
}

/* Orange go more bottom */
.timeline-item[data-color="#00aeef"] .shake-shape.s2 {
    top: 60px;
    left: -20px;
    /* Slight adjustment to balance */
}


/* Step 2: Orange - Make shapes smaller, move items */
.timeline-item[data-color="#ff510e"] .shake-shape.s3,
.timeline-item[data-color="#ff510e"] .shake-shape.s4 {
    width: 65px;
    height: 65px;
    position: relative;
}

/* Orange go more right side */
.timeline-item[data-color="#ff510e"] .shake-shape.s3 {
    left: 80px;
}

/* Yellow adjustment for balance */
.timeline-item[data-color="#ff510e"] .shake-shape.s4 {
    left: 20px;
}


/* Step 3: Green - Purple go more left side */
.timeline-item[data-color="#8cc63f"] .shake-shape.s5 {
    position: relative;
    left: -80px;
}


/* Step 4: Purple - Pink go more right side */
.timeline-item[data-color="#662d91"] .shake-shape.s7 {
    position: relative;
    left: 80px;
}

/* Career Opportunities Section */
.career-opportunities {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.career-image-wrapper {
    position: relative;
    padding: 0;
}

.image-frame {
    position: absolute;
    top: -35px;
    right: -35px;
    width: 100%;
    height: 100%;
    border: 3px solid #ff510e;
    border-radius: 40px;
    z-index: 1;
}

.career-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 40px;
}

.career-content h2 {
    font-size: var(--title-size);
    color: #000000;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.career-content .subtitle {
    font-size: 1.2rem;
    color: #8c9096;
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.6;
}

.career-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 68px;
    height: 68px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    /* Soft diffused shadow as per image */
    flex-shrink: 0;
    color: #3db2c6;
    /* Exact teal from image */
    font-size: 1.4rem;
}

.feature-text {
    padding-top: 5px;
}

.feature-text h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-text p {
    font-size: 1.1rem;
    color: #8c9096;
    line-height: 1.5;
}

.btn-get-started {
    display: inline-block;
    background-color: #3db2c6;
    /* Exact teal from image */
    color: #ffffff;
    padding: 16px 42px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-get-started:hover {
    background-color: #2da1b5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(61, 178, 198, 0.3);
    color: #ffffff;
}

@media (max-width: 992px) {
    .career-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .career-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .career-content {
        text-align: left;
    }

    .career-content .subtitle {
        margin-left: 0;
    }

    .image-frame {
        top: -20px;
        right: -20px;
    }
}

@media (max-width: 576px) {
    .career-img {
        height: 450px;
    }

    .image-frame {
        display: block;
        top: -15px;
        right: -15px;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
}

/* Why Choose Section - Placement Page */
.why-choose-section {
    padding: var(--section-padding) 0;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: var(--title-size);
    margin-bottom: 1.2rem;
    font-family: 'Outfit', sans-serif;
    color: #1a202c;
    font-weight: 700;
}

.section-header-centered h2 span {
    color: #ff510e;
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-weight: 800;
}

.section-header-centered p {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.choose-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.choose-col:not(.middle) {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}

.choose-card {
    background: #f8fafc;
    border-radius: 30px;
    padding: 45px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 81, 14, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.choose-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    border-color: rgba(255, 81, 14, 0.2);
}

.choose-card:hover::before {
    transform: translateX(100%);
}

.choose-image {
    width: 100%;
    height: 100%;
    /* Fill the grid cell */
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.choose-image:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.choose-icon i {
    font-size: 1.8rem;
    color: #1a202c;
}

.choose-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
    line-height: 1.3;
}

.choose-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Community Diagram */
.community-diagram {
    position: relative;
    height: 380px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.orbit-circle {
    position: absolute;
    border: 1.5px dashed #e2e8f0;
    border-radius: 50%;
}

.orbit-1 {
    width: 140px;
    height: 140px;
}

.orbit-2 {
    width: 240px;
    height: 240px;
}

.orbit-3 {
    width: 340px;
    height: 340px;
}

.central-icon {
    width: 90px;
    height: 90px;
    background: #ff510e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 15px 30px rgba(255, 81, 14, 0.4);
    position: relative;
}

.central-icon i {
    color: white;
    font-size: 2.5rem;
}

.floating-avatar {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: transform 0.4s ease;
}

.floating-avatar:hover {
    transform: scale(1.1) translateY(-5px);
}

.avatar-1 {
    top: 15%;
    left: 10%;
    width: 55px;
    height: 55px;
}

.avatar-2 {
    top: 0%;
    left: 45%;
    width: 60px;
    height: 60px;
}

.avatar-3 {
    top: 20%;
    right: 5%;
    width: 50px;
    height: 50px;
}

.avatar-4 {
    bottom: 25%;
    left: 5%;
    width: 65px;
    height: 65px;
}

.avatar-5 {
    bottom: 0%;
    left: 40%;
    width: 55px;
    height: 55px;
}

.avatar-6 {
    bottom: 15%;
    right: 10%;
    width: 70px;
    height: 70px;
}

.floating-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatAvatar {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.floating-avatar {
    animation: floatAvatar 4s ease-in-out infinite;
}

.avatar-1 {
    animation-delay: 0s;
}

.avatar-2 {
    animation-delay: 1s;
}

.avatar-3 {
    animation-delay: 1.5s;
}

.avatar-4 {
    animation-delay: 0.5s;
}

.avatar-5 {
    animation-delay: 2s;
}

.avatar-6 {
    animation-delay: 2.5s;
}


@media (max-width: 1200px) {
    .why-choose-grid {
        gap: 20px;
    }

    .choose-card {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }

    .choose-col.middle {
        grid-column: span 2;
        order: 3;
    }

    .community-diagram {
        height: 400px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .choose-col.middle {
        grid-column: span 1;
    }

    .choose-image {
        height: 250px;
    }
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
    transform: translateX(-100px);
}

.reveal-right {
    transform: translateX(100px);
}

.reveal-bottom {
    transform: translateY(100px);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Assistance & FAQ Section Styles */
.assistance-section {
    padding: 100px 0;
    background: #ffffff;
}

.assistance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
}

.faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: #111827;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon i {
    font-size: 1.1rem;
    color: #3b82f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-icon i {
    color: #1a202c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.info-column {
    position: relative;
}

.info-column .sub-label {
    color: #3b82f6;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.potential-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 40px;
    color: #111827;
    font-family: 'Outfit', sans-serif;
}

.info-card-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 550px;
    background: #f8fafc;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-card-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.8s ease;
}

.info-card-container:hover img {
    transform: scale(1.05);
}

.questions-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.questions-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    white-space: nowrap;
}

.btn-get-touch {
    background: #3b82f6;
    color: white !important;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    white-space: nowrap;
}

.btn-get-touch:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 1150px) {
    .potential-title {
        font-size: 2.8rem;
    }

    .assistance-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .assistance-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .info-card-container {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .potential-title {
        font-size: 2.4rem;
    }

    .questions-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px;
    }

    .questions-card h3 {
        font-size: 1.5rem;
    }
}

/* Contact Page New Design - Refined for Precise Reference */
.contact-main-container {
    padding: 1rem 2rem;
    max-width: 1400px;
    /* Optional: maintain explicit constraint */
}

.contact-section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    min-height: auto;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0 8rem;
    /* Added 8rem bottom padding for space before footer */
}

.contact-section-left {
    position: relative;
    width: 50%;
    min-height: 600px;
}

/* Circles - Top image (Cyan) OVER Bottom image (Pink) */
.visual-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #f0f0f0;
}

.visual-circle:hover {
    transform: scale(1.03);
}

.visual-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-cyan {
    width: 240px;
    /* Slightly smaller */
    height: 240px;
    top: 50px;
    left: 40px;
    /* Moved left */
    z-index: 5;
    /* HIGHER to show over pink */
    animation: float 6s ease-in-out infinite;
}

.circle-pink {
    width: 300px;
    /* Slightly smaller */
    height: 300px;
    top: 200px;
    left: 160px;
    /* Moved left */
    z-index: 4;
    /* LOWER than cyan */
    animation: float 8s ease-in-out infinite reverse;
}

/* Wavy Line - Behind Circles */
.wavy-line-svg {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 140%;
    z-index: 1;
    /* Lowest */
    pointer-events: none;
    opacity: 0.8;
}

/* Decorative Elements */
.dots-grid {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.dots-grid span {
    width: 6px;
    height: 6px;
    background-color: #cbd5e1;
    border-radius: 50%;
    display: block;
}

/* Dots - Position Refinement */
.dots-top {
    top: 130px;
    /* Moved bottom */
    right: 40px;
    /* Default position */
    z-index: 0;
}

@media (min-width: 1200px) {
    .dots-top {
        right: 200px;
        /* Move even more left on large screens */
    }
}

.dots-bottom {
    bottom: 180px;
    /* Moved top */
    left: 80px;
    /* Moved left side */
    color: var(--brand-primary);
    font-family: monospace;
    font-weight: 900;
    display: flex;
    gap: 12px;
}

.dots-bottom span {
    background: transparent;
    border-radius: 0;
    width: auto;
    height: auto;
    font-size: 1.4rem;
    color: var(--brand-primary);
}

/* Glass Morphism Form Card - Size Adjustment */
.contact-form-clean {
    flex: 1;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 100px rgba(19, 69, 128, 0.1);

    padding: 2.5rem 4rem;
    /* Less height (vertical), kept width (horizontal) */
    border-radius: 30px;
    margin-right: 0;
    /* Centering or allowing more width */
    max-width: 720px;
    /* Increased width */
    position: relative;
    z-index: 10;
}

.form-tag {
    display: inline-block;
    background: #eaeff5;
    color: #1e3a8a;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-title {
    font-size: 2.6rem;
    color: var(--brand-primary);
    /* Navbar Brand Color #134580 */
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

#newContactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    position: relative;
    opacity: 0;
    animation: fadeSlideUpExtra 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.6s;
}

.form-group:nth-child(2) {
    animation-delay: 0.7s;
}

/* Email (3rd field) */
#newContactForm .form-group:nth-of-type(3) {
    animation-delay: 0.8s;
}

/* Course (4th field) */
#newContactForm .form-group:nth-of-type(4) {
    animation-delay: 0.9s;
}

/* Message (5th field) */
#newContactForm .form-group:nth-of-type(5) {
    animation-delay: 1.0s;
}

/* Message */

/* Animated Border Input */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #eaeff5;
    /* Light initial border */
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #fff;
    color: #1e293b;
    outline: none !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(19, 69, 128, 0.1), 0 15px 35px rgba(19, 69, 128, 0.05);
    transform: translateY(-3px);
    /* Animated Border Effect */
    background-image: linear-gradient(#fff, #fff),
        linear-gradient(to right, var(--brand-primary), #3b82f6);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
}

.submit-btn {
    opacity: 0;
    animation: fadeSlideUpExtra 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards;
    background-color: var(--brand-primary);
    /* Navbar Brand Color #134580 */
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    align-self: center;
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(19, 69, 128, 0.25);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background-color: #0f3664;
    /* Darker version of brand primary */
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(19, 69, 128, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Animations Management */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

@keyframes fadeSlideUpExtra {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes circleReveal {
    from {
        opacity: 0;
        transform: scale(0.6) rotate(-15deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes lineDraw {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-section-wrapper {
    animation: fadeSlideUpExtra 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.contact-form-clean {
    opacity: 0;
    animation: fadeSlideUpExtra 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.visual-circle {
    opacity: 0;
}

.circle-cyan {
    animation: circleReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards,
        float 6s ease-in-out infinite 1.7s;
}

.circle-pink {
    animation: circleReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards,
        floatReverse 8s ease-in-out infinite 1.9s;
}

.wavy-line-svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    /* Animation will be triggered by JS adding a class */
}

.wavy-line-svg.animate path {
    animation: lineDraw 3s ease-out forwards;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 100px;
    /* Below navbar */
    right: 20px;
    z-index: 10000;
}

.toast {
    position: relative;
    /* For progress bar positioning */
    overflow: hidden;
    /* Clip progress bar corners */
    background-color: #ffffff;
    border-left: 5px solid #28a745;
    /* Success Green */
    color: #333;
    padding: 12px 20px;
    /* Reduced padding for smaller height */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    /* Slightly reduced min-width */
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-bottom: 15px;
    /* Increased margin between toasts */
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    /* Smaller icon */
    height: 24px;
    /* Smaller icon */
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    color: #28a745;
    font-size: 1rem;
    /* Smaller icon font size */
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    /* Slightly smaller title */
    margin-bottom: 2px;
    color: #1a202c;
}

.toast-message {
    font-size: 0.85rem;
    /* Slightly smaller message */
    color: #64748b;
}

/* Select Input Styling */
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #eaeff5;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #fff;
    color: #1e293b;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group select:invalid {
    color: #94a3b8;
}

.form-group select:focus {
    border-color: var(--brand-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(19, 69, 128, 0.1), 0 15px 35px rgba(19, 69, 128, 0.05);
    transform: translateY(-3px);
    background-image: linear-gradient(#fff, #fff),
        linear-gradient(to right, var(--brand-primary), #3b82f6),
        url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23134580' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    /* Re-add arrow SVG along with gradient border */
    background-origin: border-box;
    background-clip: padding-box, border-box, border-box;
    /* Complicated due to multiple backgrounds */
    border: 2px solid transparent;
    background-position: center, center, right 1rem center;
    background-repeat: no-repeat;
    background-size: auto, auto, 1em;
}

.toast-close {
    cursor: pointer;
    color: #94a3b8;
    background: none;
    border: none;
    font-size: 1.1rem;
    margin-left: auto;
    transition: color 0.3s ease;
}

.toast-close:hover {
    color: #ef4444;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #28a745;
    /* Success Green */
    transform-origin: left;
    transform: scaleX(0);
    /* Start at 0, animate to 1 or vice versa? Logic: start full, shrink. */
}

.toast.show .toast-progress {
    /* If we want it to shrink: start at scaleX(1) and go to 0. But keyframes are better. */
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

@media (max-width: 576px) {
    .toast-container {
        top: 80px;
        right: 15px;
        left: 15px;
        /* Center on mobile */
    }

    .toast {
        min-width: auto;
        width: 100%;
        padding: 10px 15px;
        /* Tighter padding */
        margin-bottom: 10px;
    }

    .toast-icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .toast-title {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .toast-message {
        font-size: 0.8rem;
        /* Smaller text */
        line-height: 1.2;
        /* Tighter line height */
    }
}

/* Contact Page - New Hero Section */
.contact-hero-section {
    padding: 2rem 0 3rem;
    /* Reduced top from 10rem to 2rem */
    text-align: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-hero-section .content-tag {
    display: inline-block;
    background: #f1f5f9;
    color: var(--brand-primary);
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out;
}

.contact-hero-section .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--brand-primary);
    font-weight: 800;
    margin-bottom: 6rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    font-family: var(--font-heading);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.info-highlights {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card.address {
    animation-delay: 0.3s;
}

.highlight-card.phone {
    animation-delay: 0.5s;
}

.highlight-card.email {
    animation-delay: 0.7s;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Three different colors as requested */
.ripple-blue {
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

/* Address - Blue */
.ripple-green {
    color: #10b981;
    border: 2px solid #10b981;
}

/* Phone - Green */
.ripple-orange {
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

/* Email - Orange */

.highlight-card h3 {
    font-size: 1.6rem;
    color: var(--brand-primary);
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.highlight-card .line {
    width: 50px;
    height: 2px;
    background: var(--brand-primary);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.highlight-card p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.highlight-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: inherit;
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .contact-form-clean {
        padding: 2rem;
        max-width: 500px;
        /* Reduce width on intermediate screens to prevent overlap */
    }

    .circle-pink {
        left: 150px;
        /* Shift circles slightly left to make room */
    }

    .circle-cyan {
        left: 50px;
    }
}

@media (max-width: 991px) {
    .info-highlights {
        gap: 2rem;
        /* Reduced gap */
        justify-content: center;
    }

    .highlight-card {
        max-width: 45%;
        margin-bottom: 2rem;
        /* Add margin for wrapping */
    }
}

@media (max-width: 768px) {
    .info-highlights {
        flex-direction: column;
        align-items: center;
        /* Center items explicitly */
        gap: 1.5rem;
        /* Tighter gap for mobile */
    }

    .highlight-card {
        max-width: 100%;
        margin-bottom: 1.5rem;
        width: 100%;
        /* Ensure full width for centering logic if needed, but max-width handles it */
        align-items: center;
        /* Text center */
        text-align: center;
    }
}

/* Restoring Responsive Final Polishing */
@media (max-width: 900px) {
    .contact-main-container {
        padding: 1rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        overflow-x: clip;
        /* Prevent horizontal scrollbar on body */
    }

    .contact-section-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 0;
        /* Removed gap to bring form closer */
        padding-top: 1rem;
        padding-bottom: 4rem;
        width: 100%;
        max-width: 100%;
        /* Bottom padding adjustment */
    }

    .contact-section-left {
        width: 100%;
        min-height: 400px;
        /* Reduce height requirement significantly */
        margin-bottom: 0;
        /* Remove margin */
        /* Overflow visible to allow decorations to show */
        position: relative;
    }

    .contact-form-clean {
        width: 90%;
        /* Use percentage usually better for mobile */
        max-width: 550px;
        padding: 2rem;
        margin: 0 auto;
        /* Force center */
    }

    /* Fix Circle Overlap - Bring them closer to center */
    .circle-cyan {
        width: 200px;
        height: 200px;
        left: 50%;
        margin-left: -140px;
        /* Positioned left of center */
        top: 20px;
    }

    .circle-pink {
        width: 240px;
        height: 240px;
        left: 50%;
        margin-left: -60px;
        /* Shifted left (was -40px) to prevent right overflow */
        top: 140px;
        /* Moved up to overlap vertically */
    }

    .wavy-line-svg {
        width: 100%;
        /* Adjusted from 150% to prevent cut-off */
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        /* Proper centering for SVG */
    }

    /* Fix Dots Position in Responsive - Center Relative */
    .dots-top {
        top: 40px;
        /* Moved down */
        left: 50%;
        margin-left: 100px;
        /* Moved right */
        right: auto;
    }

    .dots-bottom {
        bottom: auto;
        top: 260px;
        /* Moved up */
        left: 50%;
        margin-left: -160px;
    }

    .form-title {
        font-size: 2.2rem;
        text-align: center;
        /* Ensure title is centered */
    }
}

@media (min-width: 480px) and (max-width: 620px) {
    .dots-bottom {
        top: 220px;
        /* Move x x x even higher */
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .circle-cyan {
        width: 140px;
        /* Smaller */
        height: 140px;
        margin-left: -100px;
        /* Tighter spread */
        top: 40px;
    }

    .circle-pink {
        width: 180px;
        /* Smaller to fit screen */
        height: 180px;
        top: 100px;
        margin-left: -50px;
        /* Tighter spread */
    }

    /* Adjust dots for smaller scale */
    .dots-top {
        margin-left: 50px;
        top: 30px;
    }

    .dots-bottom {
        margin-left: -110px;
        top: 240px;
    }

    .wavy-line-svg {
        width: 120%;
        /* Slightly wider than container but controlled */
    }

    .contact-form-clean {
        padding: 1.5rem;
        width: 95%;
        /* Wider on very small screens */
    }

    .form-title {
        font-size: 1.8rem;
    }


}

/* Map Section */
.map-section {
    padding: 40px 0 0 0;
    background-color: #f9fafb;
}

.map-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Removed border-radius for full width look */
}

.map-container iframe {
    width: 100%;
    height: 350px;
    /* Reduced height as requested */
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* --- Contact Hero Section Styling --- */
.contact-hero-section {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('assets/bg-pattern.png');
    background-size: cover;
    overflow: hidden;
    text-align: left;
}

.contact-hero-section .container {
    max-width: 1200px;
    position: relative;
    z-index: 5;
}

.contact-hero-section .content-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(19, 69, 128, 0.08);
    color: var(--brand-primary);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.contact-hero-section .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.3s;
}

.contact-hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: #475569;
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.6s;
}

.info-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 60px;
    flex-wrap: wrap;
}

.highlight-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.9s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.ripple-blue {
    background: #e0f2fe;
    color: #0284c7;
}

.ripple-green {
    background: #f0fdf4;
    color: #16a34a;
}

.ripple-orange {
    background: #fff7ed;
    color: #ea580c;
}

.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.highlight-card .line {
    width: 40px;
    height: 3px;
    background: var(--brand-primary);
    margin-bottom: 15px;
    border-radius: 2px;
}

.highlight-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 140px 0 80px;
        text-align: center;
    }

    .contact-hero-section .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .info-highlights {
        justify-content: center;
    }
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-slide:hover img {
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background: var(--brand-primary) !important;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--brand-primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Modern Gallery Section */
.gallery-modern-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.gallery-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-family: var(--font-heading);
}

.gallery-info p {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #f5f5f5;
    border-color: #1a1a1a;
}

.action-btn.primary {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.action-btn.primary i {
    font-size: 1rem;
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.03);
    filter: brightness(0.9);
}

.grid-item.main-img {
    grid-row: 1 / span 2;
}

.show-all-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    transition: all 0.2s;
}

.show-all-btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .gallery-grid-modern {
        grid-template-columns: 1fr 1fr;
        height: 500px;
    }

    .grid-item.main-img {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-grid-modern {
        grid-template-columns: 1fr;
        height: auto;
    }

    .grid-item {
        height: 250px;
    }

    .grid-item.main-img {
        grid-column: 1;
        height: 300px;
    }

    .gallery-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .action-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }
}