@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-blue: #0f4cba;
    /* Matches Image 1 */
    --accent-green: #d1f0b0;
    /* Matches Image 2 Card 1 */
    --accent-orange: #ffab76;
    /* Matches Image 2 Card 2 */
    --accent-lightblue: #b8d4f0;
    /* Matches Image 2 Card 3 */
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --white: #ffffff;
    --gray-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- Navbar --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--primary-blue);
    color: var(--white);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a:not(.btn-nav) {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.9;
}

.btn-nav {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Hero Section/* --- Hero Section (Restored Blue Theme) --- */
.hero {
    background-color: var(--primary-blue);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--white);
    padding: 60px 5% 150px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: auto;
    /* Reset min-height */
}

/* Remove reference to ::before blob if it exists */
.hero::before {
    display: none;
}

.hero-content {
    max-width: 60%;
    position: relative;
    z-index: 2;
    padding-right: 0;
}

.pill-tag {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    font-weight: 400;
}

.btn-hero {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    box-shadow: none;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Restored Image Container Styles */
.hero-image-container {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    z-index: 2;
}

.consultant-img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* Rounded corners */
    position: relative;
    z-index: 1;
    clip-path: none;
    /* Remove blob clip */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Remove abstract blobs from display */
.blob-shape-pink,
.blob-shape-green {
    display: none;
}

@keyframes rotate-slow {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(-45%, -55%) rotate(0deg);
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 50% 40% 50%;
        transform: translate(-45%, -55%) rotate(180deg);
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(-45%, -55%) rotate(360deg);
    }
}

/* Floating Badges from Image 1 */
.badge {
    position: absolute;
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    width: auto;
    min-width: 160px;
    z-index: 10;
}

.badge.top-right {
    top: 40px;
    right: -40px;
    transform: rotate(5deg);
    animation: float 6s ease-in-out infinite;
}

.badge.bottom-left {
    bottom: 80px;
    left: -60px;
    transform: rotate(-5deg);
    animation: float-reverse 7s ease-in-out infinite;
}

/* --- Floating Background Props --- */
.hero-bg-props {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.prop {
    position: absolute;
    opacity: 0.2;
}

.prop-1 {
    top: 55%;
    left: 45%;
    width: 60px;
    animation: float 8s infinite;
}

.prop-2 {
    bottom: 20%;
    right: 10%;
    width: 80px;
    animation: float-reverse 9s infinite;
}

.prop-3 {
    top: 15%;
    right: 15%;
    width: 40px;
    animation: float 7s infinite;
    opacity: 0.15;
}

.prop-4 {
    bottom: 40%;
    left: 10%;
    width: 55px;
    opacity: 0.15;
}

.prop-5 {
    top: 12%;
    left: 8%;
    width: 45px;
    animation: float 6s infinite;
    opacity: 0.15;
}

.prop-6 {
    top: 45%;
    right: 5%;
    width: 50px;
    animation: float-reverse 9s infinite;
    opacity: 0.15;
}

.prop-7 {
    bottom: 15%;
    left: 35%;
    width: 45px;
    animation: float 7.5s infinite;
    opacity: 0.15;
}


/* --- Overlap Info Cards (Bottom of Hero) --- */
.info-cards-wrapper {
    margin-top: -80px;
    /* Pulls it up into the blue section */
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
    position: relative;
    z-index: 5;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
}

.info-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* --- Services Section (Image 2 Style) --- */
.services-section {
    padding: 50px 5%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center vertically */
    margin-bottom: 50px;
    gap: 40px;
}

.section-header h2 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--text-dark);
    max-width: 500px;
    font-weight: 800;
    text-align: right;
    /* Heading on right */
    order: 2;
    /* Ensure heading is visually second (right) */
}

.section-desc {
    max-width: 350px;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    order: 1;
    /* Description on left */
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* The Card Design from Image 2 */
/* The Card Design from Image 2 */
.service-card {
    border-radius: 40px;
    padding: 30px;
    height: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.green {
    background-color: var(--accent-green);
}

.service-card.orange {
    background-color: var(--accent-orange);
}

.service-card.blue {
    background-color: var(--accent-lightblue);
}

/* Layout Styles */
.service-card.style-bottom {
    justify-content: flex-end;
    /* Text at bottom */
}

.service-card.style-top {
    justify-content: flex-start;
    /* Text at top */
}

/* Arrow Positioning */
.icon-loc {
    z-index: 5;
}

.icon-loc.top-left {
    position: absolute;
    top: 30px;
    left: 30px;
}

.icon-loc.bottom-left {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.arrow-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.service-card:hover .arrow-circle {
    transform: rotate(45deg);
}

/* Header Text Content */
.card-content-box {
    position: relative;
    z-index: 5;
    max-width: 55%;
}

.tag-pill {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.6);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.4;
}

/* Image Styling */
.card-img-holder {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    z-index: 1;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Style 1: Curve Bottom-Left (for Green/Blue) */
.card-img-holder.img-style-1 img {
    border-bottom-left-radius: 80px;
}

/* Style 2: Curve Top-Left (for Orange) */
.card-img-holder.img-style-2 img {
    border-top-left-radius: 80px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.green {
    background-color: var(--accent-green);
}

.service-card.orange {
    background-color: var(--accent-orange);
}

.service-card.blue {
    background-color: var(--accent-lightblue);
}

/* Card Layout Internal Elements */
.service-card .arrow-btn {
    position: absolute;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-card .arrow-btn.top-left {
    top: 30px;
    left: 30px;
}

.service-card .arrow-btn.bottom-left {
    bottom: 30px;
    left: 30px;
}

.service-card .card-content {
    position: absolute;
    z-index: 10;
    max-width: 50%;
}

.service-card .card-content.top-left {
    top: 30px;
    left: 30px;
}

.service-card .card-content.bottom-left {
    bottom: 30px;
    left: 30px;
}

/* Image container sizing for the "split" look */
.card-image-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    /* Take up right half */
    height: 100%;
    overflow: hidden;
    /* Ensure image respects border radius of container if set, though we apply to img usually */
}

/* Specific Image Curves logic */
/* For Green/Blue (Bottom Focus), apply curve to container */
.img-curve-bottom {
    border-bottom-left-radius: 100px;
    /* Large curve on container */
    overflow: hidden;
    /* Clip the zoomed image to this curve */
}

.img-curve-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    /* Remove radius from image */
}

/* For Orange (Top Focus), apply curve to container */
.img-curve-top {
    border-top-left-radius: 100px;
    /* Large curve on container */
    overflow: hidden;
    /* Clip the zoomed image to this curve */
}

.img-curve-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    /* Remove radius from image */
}

.card-content {
    z-index: 2;
    max-width: 60%;
}

.tag-pill {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.1;
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}


/* New Premium Footer styles are at the bottom of the file */



/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(5deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(5deg);
    }
}

@keyframes float-reverse {
    0% {
        transform: translateY(0px) rotate(-5deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }

    100% {
        transform: translateY(0px) rotate(-5deg);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-bottom: 80px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .info-cards-wrapper {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .badge {
        display: none;
    }

    /* Hide floating badges on mobile */
    .hero-image-container {
        margin: 0 auto;
    }
}

/* --- Popular Programs (Image 1 Adaptation) --- */
.programs-section {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--white);
}

.programs-header {
    margin-bottom: 60px;
}

.programs-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.programs-header h2 span {
    color: var(--primary-blue);
}

.programs-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.program-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateY(-10px);
}

.program-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* --- Custom Glass Dropdown --- */
.custom-dropdown-container {
    position: relative;
    width: 100%;
}

.custom-dropdown-trigger {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.3s ease;
}

.custom-dropdown-trigger:hover {
    background: transparent;
    border-bottom-color: white;
}

.custom-dropdown-trigger.active {
    background: transparent;
    border-bottom-color: white;
    border-radius: 0;
}

.custom-dropdown-trigger .arrow-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.custom-dropdown-trigger.active .arrow-icon {
    transform: rotate(180deg);
}

.custom-dropdown-options {
    position: absolute;
    bottom: 100%;
    /* Open upwards */
    left: 0;
    width: 100%;
    background: rgba(15, 76, 186, 0.95);
    /* Deep Blue with opacity */
    border: none;
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    /* Start hidden */
    z-index: 100;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.custom-dropdown-container.open .custom-dropdown-options {
    max-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Expand */
    overflow-y: auto;
    /* Scroll if needed */
}

.custom-option {
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding-left: 25px;
    /* Slide effect */
}

/* Custom Scrollbar for dropdown */
.custom-dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.custom-dropdown-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.program-item.p-1 .program-icon-circle {
    background-color: #f3e8ff;
    color: #9333ea;
    border: 2px solid white;
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.1);
}

.program-item.p-2 .program-icon-circle {
    background-color: #fef08a;
    color: #eab308;
    border: 2px solid white;
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.1);
}

.program-item.p-3 .program-icon-circle {
    background-color: #afece1;
    color: #14b8a6;
    border: 2px solid white;
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.1);
}

.program-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Why Choose Us (Image 2 Adaptation) --- */
.why-us-section {
    padding: 80px 5%;
    background-color: var(--gray-bg);
    position: relative;
    overflow: hidden;
}

/* Background Props */
.bg-props {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.why-us-header,
.why-us-grid,
.btn-center-wrapper {
    position: relative;
    z-index: 2;
}

/* Shapes */
.dots-pattern {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    background-image: radial-gradient(#64748b 3px, transparent 3px);
    /* Darker and larger dots */
    background-size: 25px 25px;
    opacity: 0.8;
    /* Higher opacity */
    animation: float 6s ease-in-out infinite;
}

.abstract-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
    animation: float-reverse 8s ease-in-out infinite;
}

.blob-1 {
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: #bae6fd;
    /* Darker blue */
    opacity: 0.6;
}

.blob-2 {
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: #fbcfe8;
    /* Darker pink */
    opacity: 0.6;
}

.dashed-ring {
    position: absolute;
    right: 15%;
    bottom: 10%;
    width: 120px;
    height: 120px;
    border: 4px dashed #94a3b8;
    /* Thicker and darker */
    border-radius: 50%;
    opacity: 0.7;
    animation: rotate-slow 20s linear infinite;
}

.squiggle-shape {
    position: absolute;
    top: 20%;
    right: 25%;
    width: 50px;
    height: 50px;
    border: 4px solid #fcd34d;
    transform: rotate(45deg);
    opacity: 0.5;
    animation: float 7s ease-in-out infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-card .why-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Specific Colors for Icons now */
.why-card.c-1 .why-icon {
    background-color: #ecfdf5;
    color: #10b981;
}

.why-card.c-2 .why-icon {
    background-color: #fff1f2;
    color: #f43f5e;
}

.why-card.c-3 .why-icon {
    background-color: #ecfeff;
    color: #06b6d4;
}

.why-card.c-4 .why-icon {
    background-color: #fffbeb;
    color: #d97706;
}

.why-card.c-5 .why-icon {
    background-color: #f5f3ff;
    color: #7c3aed;
}

.why-card.c-6 .why-icon {
    background-color: #fdf2f8;
    color: #db2777;
}

/* Removed original c-4 to c-6 block as it is now integrated above */

.why-icon {
    /* Base styles, dimensions overridden in .why-card .why-icon */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.btn-center-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* --- Testimonials (Image 3 Adaptation) --- */
.testimonials-section {
    padding: 100px 5%;
    background-color: var(--white);
    text-align: center;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow like image */
    position: relative;
    margin-top: 40px;
    /* Space for the floating image */
    text-align: center;
    border: 1px solid var(--gray-bg);
}

.user-img-float {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.t-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 20px;
}

.t-stars {
    color: #fbbf24;
    margin-bottom: 10px;
}

.t-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.t-role {
    font-size: 0.85rem;
    color: #888;
}

/* --- Contact Section (Image 4 Adaptation) --- */
.contact-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
    padding: 60px;
    background: var(--white);
}

.contact-info h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 30px;
}

.info-label {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--primary-blue);
    /* Theme color instead of purple */
    padding: 60px;
    color: white;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1rem;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    outline: none;
    border-bottom-color: white;
}

.btn-submit {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: white;
    color: var(--primary-blue);
}

@media (max-width: 1024px) {

    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-section {
        flex-direction: column;
        margin: 50px 20px;
    }
}

/* --- Hero Entrance Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInBadge {
    to {
        opacity: 1;
    }
}

/* Apply to Hero Elements */
.hero .pill-tag {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero h1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero p {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero .btn-hero {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Image Container */
.hero-image-container {
    opacity: 0;
    animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

/* Update Badges to include Fade In + Float */
/* Note: We re-declare the animations to chain them properly.
   Using !important to ensure this override works against previous float definitions. */
.badge.top-right {
    opacity: 0;
    transform: rotate(5deg);
    animation: fadeInBadge 0.8s ease-out 1s forwards, float 6s ease-in-out 1s infinite;
}

.badge.bottom-left {
    opacity: 0;
    transform: rotate(-5deg);
    animation: fadeInBadge 0.8s ease-out 1s forwards, float-reverse 7s ease-in-out 1s infinite;
}

/* --- Hero Creative Hover Effects --- */
.hero-image-container {
    transition: transform 0.4s ease-out;
    /* Smooth hover */
}

.hero-image-container:hover {
    /* Subtle tilt on hover */
    transform: scale(1.02) rotate(-1deg) !important;
    /* !important needed to fight keyframe 'forwards' value if applied via 'animation' shorthand without 'hover' specificity consideration or to ensure it overrides the static/keyframe result */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.badge i,
.badge img {
    /* Add pulse to icons/avatars on badges for liveness */
    animation: pulse 3s infinite ease-in-out;
    display: inline-block;
}

/* --- NEW ANIMATIONS AND MOTION EFFECTS --- */

/* Base Reveal Animation Class (required for script.js) */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 1. Directions of Education (Services) Animations */

/* Staggered entrance for Service Cards */
.services-grid.reveal.active .service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.services-grid.reveal.active .service-card:nth-child(2) {
    transition-delay: 0.3s;
}

.services-grid.reveal.active .service-card:nth-child(3) {
    transition-delay: 0.5s;
}

/* Enhanced Hover Effects for Service Cards */
.service-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card .arrow-btn {
    transition: all 0.4s ease;
}

.service-card:hover .arrow-btn {
    transform: rotate(45deg) scale(1.1);
    background: var(--text-dark);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-image-container img {
    transition: transform 0.8s ease;
    transform-origin: center;
}

.service-card:hover .card-image-container img {
    transform: scale(1.1);
}

/* 2. Testimonials Animations */

/* Staggered entrance for Testimonial Cards */
.testimonials-section.reveal.active .testimonial-card:nth-child(1) {
    animation: fadeInUpCard 0.8s ease-out 0.1s forwards;
}

.testimonials-section.reveal.active .testimonial-card:nth-child(2) {
    animation: fadeInUpCard 0.8s ease-out 0.2s forwards;
}

.testimonials-section.reveal.active .testimonial-card:nth-child(3) {
    animation: fadeInUpCard 0.8s ease-out 0.3s forwards;
}

.testimonials-section.reveal.active .testimonial-card:nth-child(4) {
    animation: fadeInUpCard 0.8s ease-out 0.4s forwards;
}

.testimonials-section.reveal.active .testimonial-card:nth-child(5) {
    animation: fadeInUpCard 0.8s ease-out 0.5s forwards;
}

.testimonials-section.reveal.active .testimonial-card:nth-child(6) {
    animation: fadeInUpCard 0.8s ease-out 0.6s forwards;
}

@keyframes fadeInUpCard {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects for Testimonial Cards */
.testimonial-card {
    transition: all 0.4s ease;
    border: 1px solid transparent;
    /* Prepare for border color change */
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.testimonial-card:hover .user-img-float {
    transform: translateX(-50%) scale(1.1);
    border-color: var(--primary-blue);
    transition: all 0.4s ease;
}

/* Make stars twinkle on hover */
.testimonial-card:hover .t-stars i {
    animation: starTwinkle 0.5s ease-in-out infinite alternate;
}

.testimonial-card:hover .t-stars i:nth-child(2) {
    animation-delay: 0.1s;
}

.testimonial-card:hover .t-stars i:nth-child(3) {
    animation-delay: 0.2s;
}

.testimonial-card:hover .t-stars i:nth-child(4) {
    animation-delay: 0.3s;
}

.testimonial-card:hover .t-stars i:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starTwinkle {
    from {
        color: #fbbf24;
        transform: scale(1);
    }

    to {
        color: #f59e0b;
        transform: scale(1.2);
    }
}

/* --- Testimonial Slider --- */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    /* Space for arrows */
}

.testimonials-viewport {
    overflow: hidden;
    padding: 20px 0;
    /* Space for hover effects */
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    /* No gap on track, handle spacing via padding on items */
}

.testimonial-slide {
    flex: 0 0 33.333%;
    padding: 10px;
    /* Gap between slides */
    box-sizing: border-box;
}

/* --- Partner Marquee (University Images) --- */
.partners-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.partners-wrapper {
    display: flex;
    width: 100%;
    position: relative;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Reduced gap for continuous image flow */
    animation: scrollMarquee 40s linear infinite;
    width: max-content;
    padding-left: 40px;
}

.partners-track:hover {
    animation-play-state: paused;
}

/* Card Style for Images */
.partner-logo-item {
    display: block;
    /* Changed from flex */
    width: 240px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.partner-logo-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* University Name Overlay */
.partner-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Testimonials Styling (Modern Left-Align) --- */
.testimonials-section {
    position: relative;
    padding-bottom: 60px;
    background-color: #f8f9fa;
    /* Light grey bg for distinction */
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Clean shadow */
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: left;
    /* Align text left */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
    /* No huge top margin needed */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* .testimonial-card:hover removed */

/* Header with Image and Info */
.t-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* User Image - Now Inside and Left */
.user-img-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    position: static;
    /* Removing absolute positioning */
    transform: none;
    border: none;
    box-shadow: none;
    background-color: #eee;
    margin-top: 0;
}

/* Name and Role Container */
.t-info {
    display: flex;
    flex-direction: column;
}

.t-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.t-role {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Quote Icon - Watermark Top Right */
.testimonial-card::after {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(99, 102, 241, 0.1);
    /* Primary color tinth */
    z-index: 0;
}

/* Text refinements */
.t-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    flex-grow: 1;
    /* Pushes stars to bottom */
}

/* Stars Styling */
.t-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-top: auto;
    /* Push to bottom if needed */
}

/* Removing old accent border to keep it clean */
.testimonial-card::before {
    display: none;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 50%;
        /* 2 cards */
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
        /* 1 card */
    }
}


/* --- Updated Program Icons (FontAwesome) --- */
.program-icon-circle i {
    font-size: 3rem;
    /* Match size of previous imgs */
    /* Color inherits from parent specialized class */
}

.program-icon-circle {
    /* Ensure icon is centered */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific Colors for New Programs */
.program-item.p-nursing .program-icon-circle {
    background-color: #fce7f3;
    color: #db2777;
    /* Deep Pink */
    border: 2px solid white;
    box-shadow: 0 10px 20px rgba(219, 39, 119, 0.1);
}

.program-item.p-btech .program-icon-circle {
    background-color: #e0f2fe;
    color: #0284c7;
    /* Sky Blue */
    border: 2px solid white;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.1);
}

/* Reuse existing program items for consistent colors */
.program-item.p-1 .program-icon-circle {
    color: #9333ea;
}

.program-item.p-2 .program-icon-circle {
    color: #eab308;
}

.program-item.p-3 .program-icon-circle {
    color: #14b8a6;
}

/* --- Blog Section & Cards --- */
.blog-section {
    position: relative;
    z-index: 2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(15, 76, 186, 0.1);
}

.blog-card img {
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-tag {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-dark);
}

.blog-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.read-more-btn {
    color: var(--primary-blue);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more-btn {
    gap: 10px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FORM SUBMISSION POPUP MODAL
   ============================================================ */

/* Overlay Backdrop */
.status-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 20, 50, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 20px;
}

.status-modal-overlay.active {
    opacity: 1;
}

/* Modal Card */
.status-modal {
    background: #ffffff;
    border-radius: 28px;
    padding: 50px 44px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.6);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    overflow: hidden;
}

.status-modal-overlay.active .status-modal {
    transform: scale(1) translateY(0);
}

/* Decorative top gradient bar */
.status-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 28px 28px 0 0;
}

.status-success .status-modal::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.status-error .status-modal::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

/* Close (X) button */
.btn-modal-x {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.btn-modal-x:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Animated Icon Circle */
.status-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    position: relative;
}

.status-success .status-icon {
    background: #d1fae5;
    color: #059669;
    box-shadow: 0 0 0 12px #d1fae555;
    animation: pulse-green 2.5s ease-in-out infinite;
}

.status-error .status-icon {
    background: #fee2e2;
    color: #dc2626;
    box-shadow: 0 0 0 12px #fee2e255;
    animation: pulse-red 2.5s ease-in-out infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.12);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(16, 185, 129, 0.05);
    }
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.12);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(239, 68, 68, 0.05);
    }
}

/* Checkmark draw animation */
.status-icon i {
    animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes pop-in {
    from {
        transform: scale(0) rotate(-30deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Typography */
.status-modal h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.status-modal p {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 32px;
}

/* CTA Button */
.btn-modal-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.status-success .btn-modal-close {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.38);
}

.status-error .btn-modal-close {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 6px 24px rgba(239, 68, 68, 0.38);
}

.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

/* Auto-close progress bar */
.modal-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    width: 100%;
}

.modal-progress-bar {
    height: 100%;
    width: 100%;
    transform-origin: left center;
    border-radius: 0 0 28px 28px;
    animation: shrink-bar 5s linear forwards;
}

.status-success .modal-progress-bar {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.status-error .modal-progress-bar {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

@keyframes shrink-bar {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .status-modal {
        padding: 44px 24px 32px;
        border-radius: 20px;
    }

    .status-modal h3 {
        font-size: 1.4rem;
    }

    .status-icon {
        width: 72px;
        height: 72px;
        font-size: 1.6rem;
    }
}


/* ============================================================
   TOAST NOTIFICATIONS (optional lightweight alerts)
   ============================================================ */

.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: #1e293b;
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    pointer-events: all;
    position: relative;
    overflow: hidden;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.toast.active {
    transform: translateX(0);
    opacity: 1;
}

.toast i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toast.success i {
    color: #34d399;
}

.toast.error i {
    color: #f87171;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
}

.toast-progress-bar {
    height: 100%;
    width: 100%;
    transform-origin: left;
    animation: shrink-bar 4s linear forwards;
}

.toast.success .toast-progress-bar {
    background: #34d399;
}

.toast.error .toast-progress-bar {
    background: #f87171;
}

/* --- PREMIUM FOOTER STYLES --- */
.premium-footer {
    background-color: #0c121d;
    color: #94a3b8;
    padding: 0;
    margin-top: 100px;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

.footer-accent-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90.02deg, #0F4CBA 0.01%, #FFAB76 99.98%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

.social-row {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #0f4cba;
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(15, 76, 186, 0.1);
    color: #0f4cba;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    gap: 25px;
}

.bottom-links a {
    color: #94a3b8;
    text-decoration: none;
}

.bottom-links a:hover {
    color: white;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}