﻿/* File: styles.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-height: 80px;
    --clr-lBlue: rgba(255, 255, 255, 0.9);

    /* ========================================
       PRIMARY COLORS (From EduCare Brand)
       ======================================== */

    /* Main dark navy/purple from banner background */
    --primary-color-solid: #0d0830;
    /* Dark purple-navy from banner */
    --primary-color: linear-gradient(135deg,
            #070422e7 0%,
            /* Lighter shade for gradient start */
            var(--primary-color-solid) 100%);

    /* Yellow accent color from "We've got you covered!" highlight */
    --secondary-color: #f4d03f;
    /* Vibrant yellow from banner */
    --clr-primary: #f4d03f;
    /* Yellow accent */

    /* ========================================
       ADDITIONAL BRAND COLORS
       ======================================== */

    /* Cream/light yellow from bottom section of banner */
    --accent-light: #fef5d4;
    /* Light cream/yellow background */

    /* White for text and contrast elements */
    --text-white: #ffffff;

    /* Gold variation for premium feel (from yellow tones) */
    --gold-accent: #f9ca24;
    /* Brighter gold variation */

    /* ========================================
       SEMANTIC/UTILITY COLORS
       ======================================== */

    --success-color: #10b981;
    /* Green for success states */
    --warning-color: #f59e0b;
    /* Orange for warnings */
    --danger-color: #ef4444;
    /* Red for errors/alerts */
    --info-color: var(--primary-color-solid);
    /* Uses primary navy */

    /* ========================================
       TYPOGRAPHY
       ======================================== */

    --primary-font: "Plus Jakarta Sans", "Inter", "Helvetica Neue", Arial, sans-serif;
    --heading-font: "Roboto", sans-serif;
    --body-font: "Inter", "Helvetica Neue", Arial, sans-serif;

    /* ========================================
       DESIGN TOKENS
       ======================================== */

    --border-radius: 8px;
    /* Optional: Add spacing variables for consistency */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
}

/* ========================================
   BODY & CONTAINER STYLES
   ======================================== */

body {
    font-family: var(--primary-font);
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    /* Light neutral background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Responsive hero heights for mobile devices */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 400px;
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
        min-height: 350px;
        max-height: 400px;
    }
}

/* Background video for hero section */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay with brand primary color tint */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(45, 40, 85, 0.75) 0%,
            /* Primary purple-navy with transparency */
            rgba(45, 40, 85, 0.85) 100%
            /* Darker for depth */
        );
    z-index: 1;
}

/* Hero content container */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

/* Main hero heading */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-white);
    /* Brand white */
}

/* Hero subtitle/description */
.hero-subtitle {
    font-size: 1.3rem;
    font-family: "Roboto Flex", sans-serif;
    margin-bottom: 40px;
    opacity: 0.95;
    color: var(--text-white);
}

/* Hero call-to-action button with brand yellow */
.hero-btn {
    background: var(--secondary-color);
    /* Brand yellow #f4d03f */
    color: var(--primary-color-solid);
    /* Dark navy text on yellow button */
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn:hover {
    background: var(--gold-accent);
    /* Brighter gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

/* Responsive typography for tablets */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   COURSE FINDER SECTION
   ======================================== */

/* Main course finder card - elevated design */
.course-finder {
    background: white;
    margin: -40px auto 0;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(45, 40, 85, 0.15);
    padding: 10px;
    position: relative;
    z-index: 10;
}

/* Course finder header section */
.finder-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* Main title for course finder */
.finder-title {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary-color-solid);
   
    /* Contrast against hero video */
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Subtitle for course finder */
.finder-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   TAB NAVIGATION
   ======================================== */

/* Tab container with light background */
.tab-navigation {
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    background: var(--accent-light);
    padding: 8px;
    border-radius: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Individual tab button */
.tab-button {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--primary-color-solid);
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

/* Active tab with brand colors */
.tab-button.active {
    background: var(--secondary-color);
    color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Tab hover state */
.tab-button:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ========================================
   SEARCH FORM
   ======================================== */

/* Two-column grid layout for form */
.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

/* Form group container */
.form-group {
    display: flex;
    flex-direction: column;
}

/* Full-width form group (spans both columns) */
.form-group.full-width {
    grid-column: 1 / -1;
}

/* Form label styling */
.form-label {
    font-weight: 600;
    color: var(--primary-color-solid);
    /* Brand navy for labels */
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Form inputs and select dropdowns */
.form-input,
.form-select {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    /* Light gray border */
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

/* Focus state for inputs with brand color */
.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    /* Brand yellow focus */
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.2);
    /* Yellow glow */
}

/* Placeholder text color */
.form-input::placeholder {
    color: #9ca3af;
    /* Light gray */
}

/* ========================================
   SEARCH BUTTON
   ======================================== */

/* Primary search button with brand yellow gradient */
.search-button {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            /* Brand yellow #f4d03f */
            var(--gold-accent) 100%
            /* Gold accent #f9ca24 */
        );
    color: var(--primary-color-solid);
    /* Dark navy text */
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
    /* Brand yellow shadow */
}

/* Search button hover effect */
.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.6);
    /* Enhanced shadow on hover */
    background: linear-gradient(135deg,
            var(--gold-accent) 0%,
            var(--secondary-color) 100%);
}

/* Search button active (clicked) state */
.search-button:active {
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */

@media (max-width: 768px) {

    /* Single column layout on mobile */
    .search-form {
        grid-template-columns: 1fr;
    }

    /* Adjust tab navigation for smaller screens */
    .tab-navigation {
        max-width: 100%;
        padding: 6px;
    }

    .tab-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    /* Reduce finder padding on mobile */
    .finder-title {
        font-size: 1.6rem;
    }

    .finder-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    /* Further adjustments for very small screens */
    .course-finder {
        margin: -30px 15px 0;
        border-radius: 16px;
    }

    .search-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
}


/* ========================================
   QUICK SUGGESTIONS SECTION
   ======================================== */

.quick-suggestions {
    margin-top: 30px;
    text-align: center;
}

/* Title for suggestions section */
.suggestions-title {
    font-size: 0.9rem;
    color: #6b7280;
    /* Neutral gray */
    margin-bottom: 15px;
}

/* Container for suggestion tags */
.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Individual suggestion tag with light background */
.suggestion-tag {
    background: var(--accent-light);
    /* Brand light cream #fef5d4 */
    border: 1px solid #e2e8f0;
    color: var(--primary-color-solid);
    /* Brand navy text */
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect with brand colors */
.suggestion-tag:hover {
    background: var(--secondary-color);
    /* Brand yellow */
    color: var(--primary-color-solid);
    /* Navy text on yellow */
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

/* ========================================
   SUPPORT SECTION
   ======================================== */

/* Support callout section with brand colors */
.support-section {
    background: linear-gradient(135deg,
            var(--accent-light) 0%,
            /* Light cream */
            rgba(254, 245, 212, 0.7) 100%
            /* Lighter variation */
        );
    border: 2px solid var(--secondary-color);
    /* Yellow border */
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

/* Support section title */
.support-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color-solid);
    /* Brand navy */
    margin-bottom: 10px;
}

/* Support section descriptive text */
.support-text {
    color: #7c6a3f;
    /* Warm brown that complements yellow */
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Support call-to-action button */
.support-button {
    background: var(--secondary-color);
    /* Brand yellow */
    color: var(--primary-color-solid);
    /* Navy text */
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

/* Support button hover state */
.support-button:hover {
    background: var(--gold-accent);
    /* Brighter gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.5);
}

/* ========================================
   TAB CONTENT MANAGEMENT
   ======================================== */

/* Hide inactive tab content */
.tab-content {
    display: none;
}

/* Show active tab content */
.tab-content.active {
    display: block;
}

/* Smooth fade-in animation for tab switching */
.tab-content.active {
    animation: fadeIn 0.3s ease-in-out;
}

/* Fade-in keyframe animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   DESTINATIONS SECTION
   ======================================== */

/* Main destinations container */
.destinations {
    padding: 0;
    /* Remove padding to let blue-bg handle it */
    background: transparent;
    overflow: hidden;
}

/* Clean, sophisticated background for Destinations */
.blue-bg {
    background: var(--bg-gray-50);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

/* Flexbox container for destination section layout */
.destination-sec-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    height: 77vh;
    position: relative;
}

/* Left image column with scroll animation */
.dest-img-left {
    width: 20%;
    margin-bottom: -590px;
    animation: scrollUp 20s linear infinite;
}

/* Right image column with scroll animation */
.dest-img-right {
    width: 20%;
    margin-right: 40px;
    margin-top: -590px;
    animation: scrollDown 20s linear infinite;
}

/* Center content area */
.dest-content {
    width: 40%;
    text-align: center;
    color: var(--text-primary);
    padding: var(--space-12) 0;
    z-index: 2;
    position: relative;
}

/* Main section title */
.dest-content .sec-title {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

/* Bold text within title */
.dest-content .sec-title strong {
    font-weight: 800;
}

/* Highlighted text with brand gold */
.dest-content .highlighter {
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.dest-content .highlighter::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary-soft);
    z-index: -1;
}

/* Paragraph container */
.dest-content .comm-para {
    margin: 16px 0 40px;
}

/* Paragraph styling */
.dest-content .comm-para p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/* Individual destination image card */
.dest-img {
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border-medium);
}

/* Image hover effect */
.dest-img:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
    /* Yellow border on hover */
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.3);
}

/* Image element styling */
.dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

/* White outline button style */
.button.white-line {
    background: transparent;
    border: 2px solid var(--text-white);
    /* White border */
    color: var(--text-white);
    /* White text */
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Button hover with brand yellow */
.button.white-line:hover {
    background: var(--secondary-color);
    /* Brand yellow background */
    color: var(--primary-color-solid);
    /* Navy text */
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 208, 63, 0.4);
}

/* ========================================
   SCROLLING ANIMATIONS
   ======================================== */

/* Upward scrolling animation for left column */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Downward scrolling animation for right column */
@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ======================================== */

@media (max-width: 1024px) {

    /* Adjust destination section for tablets */
    .destination-sec-wrap {
        height: 60vh;
    }

    .dest-content {
        width: 50%;
        padding: 60px 20px;
    }

    .dest-img-left,
    .dest-img-right {
        width: 25%;
    }

    .dest-content .sec-title {
        font-size: 2rem;
    }
}
}

.story-nav .swiper-button-prev:after,
.story-nav .swiper-button-next:after {
    content: '';
}

.story-nav .story-prev i {
    transform: rotate(-180deg);
}

.google-business-info-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.google-business-info-header .business-details h4 {
    font-size: 1.625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
}

.google-business-info-header .business-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.google-business-info-header .stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.google-business-info-header .rating-score {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.google-business-info-header .total-reviews {
    color: #666;
    font-size: 0.9rem;
}

.google-business-info-header .google-logo {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.reviewSwiper {
    overflow: visible;
    padding: 10px 0;
    width: 100%;
    height: auto;
}

.reviewSwiper .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear;
}


.reviewSwiper .swiper-slide {
    background: transparent;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.review-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
    width: 100%;
    min-height: 300px;
}

.review-slide::before {
    content: '';
    background: var(--secondary-color);
    opacity: 0.1;
    filter: blur(25px);
    width: 70%;
    display: block;
    height: 100%;
    position: absolute;
    right: 3%;
}

.review-slide::after {
    content: '';
    border-radius: 30px;
    border: 2px solid #ffffff;
    background: rgba(255, 255, 255, 0.9);
    width: 77%;
    display: block;
    height: 110%;
    position: absolute;
    right: 0;
}

.review-vdo {
    width: 280px;
    height: 220px;
    z-index: 9;
    position: relative;
    border-radius: 20px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.reviewer-avatar-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reviewer-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.google-badge-large {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.review-rating-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.review-rating-overlay .stars {
    color: var(--secondary-color);
    font-size: 1rem;
}

.review-content {
    max-width: 450px;
    width: 100%;
    position: relative;
    z-index: 9;
    text-align: left;
    margin-right: 20px;
}

.review-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    margin-bottom: 20px;
    font-style: italic;
}

.prof-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.prof-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.prof-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-small {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.prof-dtl h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.prof-dtl h5 {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.button.white-line {
    background: transparent;
    border: 2px solid #08a805;
    color: #08a805;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.button.white-line:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 168, 5, 0.3);
}

@media (max-width: 1024px) {
    .review-slide {
        gap: 30px;
    }

    .review-vdo {
        width: 240px;
        height: 180px;
    }

    .review-content {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .header-titlewithnav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .review-slide {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .review-vdo {
        width: 280px;
        height: 200px;
    }

    .review-content {
        margin-right: 0;
        text-align: center;
        max-width: 100%;
    }

    .review-slide::before,
    .review-slide::after {
        display: none;
    }

    .comm-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .review-vdo {
        width: 240px;
        height: 160px;
    }

    .header-titlewithnav .sec-title {
        font-size: 1.8rem;
    }

    .review-content p {
        font-size: 14px;
    }
}

/* ========================================
   EVENTS SECTION
   ======================================== */

/* Events Section */
.events-section {
    padding: 20px 0;
    /* background: linear-gradient(180deg, rgba(45, 40, 85, 0.8) 0%, #f09433 100%); */
    /* background: var(--gold-accent); */
    background-color: #f09433;
    background-size: cover;
    /* Ensures full background coverage */
}

.events-section .section-header {
    text-align: center;
    margin: 8rem 4rem;
}

.events-section .section-title {
    font-size: 3.4rem;
    /* Increased size for a more prominent title */
    font-weight: 900;
    /* Stronger weight for emphasis */
    color: var(--text-white);
    margin-bottom: 20px;
    font-family: var(--heading-font);
    letter-spacing: -0.015em;
    /* Slight adjustment for readability */
    line-height: 1.2;
    /* Slightly increased for more spacious feel */
    text-decoration: none;
    text-underline-offset: 1rem;
    /* Increased offset for refinement */
    /* text-decoration-color: var(--secondary-color); */

    /* Enhanced underline effect */
    text-decoration-skip-ink: all;
    text-decoration-thickness: 6px;
    /* Thicker underline for a bolder statement */
    text-transform: capitalize;
    background-image: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    color: transparent;
}

.events-section .section-subtitle {
    font-size: 1.125rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.75;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.event-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.event-type-badge {
    display: inline-block;
    background: #e0f2fe;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.event-card:nth-child(2n) .event-type-badge {
    background: #f3e8ff;
    color: var(--primary-color);
}

.event-card:nth-child(3n) .event-type-badge {
    background: #ecfdf5;
    color: var(--secondary-color);
}

.event-card:nth-child(4n) .event-type-badge {
    background: #fef3c7;
    color: var(--secondary-color);
}

.event-title {
    font-size: 1.6rem;
    /* Slight increase in size for better readability */
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
    min-height: 60px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.event-detail i {
    color: var(--primary-color-solid);
    width: 16px;
    font-size: 0.9rem;
}

.view-event-btn {
    background: var(--primary-color-solid);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.view-event-btn:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    color: white;
}

.view-all-btn {
    background: transparent;
    border: 2px solid;
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 168, 5, 0.3);
    text-decoration: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .event-card {
        padding: 20px;
    }

    .event-title {
        font-size: 1.3rem;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .events-section {
        padding: 60px 0;
    }

    .event-card {
        padding: 16px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}






/* How It Works Section */

.how-it-works {
    padding: 20px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            #e2e8f0 20%,
            #e2e8f0 80%,
            transparent);
}

.sec-title {
    font-size: 3.2rem;
    color: #0f172a;
    margin-bottom: 30px;
    font-weight: 800;
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.highlighter {
    background: var(--secondary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.text-center {
    text-align: center;
}

.steps-main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    position: relative;
    margin-top: 80px;
}

.steps-card-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 35px;
    flex: 1;
}

.steps-card {
    padding: 45px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    position: sticky;
    top: calc(var(--header-height) + 90px);
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) padding-box,
        linear-gradient(135deg, #e2e8f0, #cbd5e1) border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) padding-box,
        linear-gradient(135deg, #2563eb, #7c3aed) border-box;
}

.steps-card .comm-card-hdn {
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 16px;
    color: #0f172a;
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.numbers {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--heading-font);
    min-width: 70px;
    transition: all 0.3s ease;
}

.steps-card:hover .numbers {
    transform: scale(1.05);
}

.card-content-wrap {
    flex: 1;
}

/* Process Step Dynamic Image Styling */
.step-dynamic-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
    transition: opacity 0.3s ease-in-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

/* Active step highlight */
.steps-card.active-step {
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) padding-box,
        linear-gradient(135deg, #2563eb, #7c3aed) border-box;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.steps-card.active-step .numbers {
    transform: scale(1.1);
}

.step-features {
    margin-top: 16px;
    padding-left: 20px;
    list-style: none;
}

.step-features li {
    position: relative;
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
}

.step-features li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.comm-para p {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 0;
    font-family: var(--body-font);
    font-weight: 400;
}

.card-btn {
    margin-top: 30px;
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.card-btn:hover {
    background: var(--clr-primary);
    color: white;
}

.steps-img {
    max-width: 500px;
    width: 100%;
    position: sticky;
    top: calc(var(--header-height) + 12rem);
    flex-shrink: 0;
}

.steps-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

/* Responsive design */
@media (max-width: 1024px) {
    .steps-main-wrapper {
        gap: 50px;
    }

    .steps-card {
        padding: 30px;
    }

    .steps-card .comm-card-hdn {
        font-size: 24px;
    }

    .numbers {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }

    .steps-main-wrapper {
        flex-direction: column;
        gap: 40px;
        margin-top: 50px;
    }

    .steps-card {
        position: relative;
        top: auto;
        border-radius: 20px;
        padding: 28px;
    }

    .steps-img {
        position: relative;
        top: auto;
        max-width: 100%;
        order: -1;
    }

    .sec-title {
        font-size: 2.2rem;
    }

    .steps-card .comm-card-hdn {
        font-size: 1.375rem;
        margin-bottom: 16px;
    }

    .numbers {
        font-size: 2.5rem;
    }

    .comm-para p {
        font-size: 1rem;
    }

    .step-features li {
        font-size: 0.875rem;
    }

    .step-dynamic-image {
        max-height: 350px;
    }

    .steps-img {
        max-width: 100%;
    }

    .universities-section,
    .events-section,
    .google-reviews-section,
    .blog-section,
    .contact {
        padding: 20px 0;
    }

    .universities-section .sec-title,
    .events-section .section-title,
    .header-titlewithnav .sec-title,
    .blog-section .section-title,
    .contact .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 60px 0;
    }

    .steps-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

    .sec-title {
        font-size: 1.875rem;
    }

    .steps-card .comm-card-hdn {
        font-size: 1.25rem;
    }

    .numbers {
        font-size: 2.25rem;
    }

    .step-features {
        text-align: left;
    }

    .step-features li {
        font-size: 0.8125rem;
    }

    .step-dynamic-image {
        max-height: 300px;
    }

    .steps-img {
        max-width: 100%;
        max-height: 300px;
    }

    .universities-section,
    .events-section,
    .google-reviews-section,
    .blog-section,
    .contact {
        padding: 20px 0;
    }

    .universities-section .sec-title,
    .events-section .section-title,
    .header-titlewithnav .sec-title,
    .blog-section .section-title,
    .contact .section-title {
        font-size: 1.875rem;
    }

    .comm-para p,
    .events-section .section-subtitle,
    .blog-section .section-subtitle,
    .contact .section-subtitle {
        font-size: 1rem;
    }

    .card-btn {
        margin-top: 20px;
    }
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding: 10px 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color-solid);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-color-solid);
    font-family: var(--heading-font);
    line-height: 1;
    opacity: 0.3;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-content h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-content span {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
}

/* Top Universities Section */
.universities-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 20px 0;
}

.universities-section .comm-section {
    padding: 0;
}

.container-small {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.universities-section .sec-title {
    font-size: 3.2rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 24px;
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.universities-section .highlighter {
    background: var(--secondary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
}

.universities-section .highlighter::after {
    display: none;
}

.text-center {
    text-align: center;
}

.comm-para.sec-dtl {
    text-align: center;
    margin-bottom: 60px;
}

.comm-para p {
    font-size: 1.125rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
    font-family: var(--body-font);
    font-weight: 400;
}

.center {
    text-align: center;
}

.partner-logo-wrap {
    margin-top: 60px;
}

.f-row {
    display: grid;
    gap: 30px;
}

.f-5 {
    grid-template-columns: repeat(5, 1fr);
}

.f-1024-4 {
    grid-template-columns: repeat(5, 1fr);
}

.f-768-3 {
    grid-template-columns: repeat(5, 1fr);
}

.f-480-2 {
    grid-template-columns: repeat(5, 1fr);
}

.f-360-1 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
    .f-1024-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .f-768-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .f-480-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gap {
        gap: 20px;
    }
}

@media (max-width: 360px) {
    .f-360-1 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.partner-logo {
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 16px;
    border: 2px solid #f1f5f9;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(8, 168, 5, 0.15);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: all 0.3s ease;
    filter: grayscale(20%) brightness(0.9);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.partner-overlay {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #08a805, #06d900);
    color: white;
    padding: 4px 8px;
    border-bottom-left-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-overlay {
    opacity: 1;
    transform: translateX(0);
}

.partner-rank {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.partner-country {
    font-size: 0.6rem;
    opacity: 0.9;
    line-height: 1;
}

.center-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.button.line {
    background: transparent;
    border: 2px solid;
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.button.line::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.button.line:hover::before {
    left: 0;
}

.button.line:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 168, 5, 0.3);
}

.button.line i {
    transition: transform 0.3s ease;
}

.button.line:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .sec-title {
        font-size: 2rem;
    }

    .partner-logo {
        height: 100px;
    }

    .partner-logo img {
        padding: 12px;
    }

    .partner-logo-wrap {
        margin-top: 40px;
    }

    .center-btn {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .partner-logo {
        height: 80px;
    }

    .partner-logo img {
        padding: 10px;
    }

    .sec-title {
        font-size: 1.8rem;
    }
}

/* Blog Section */
.blog-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 20px 0;
}

.blog-section .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.blog-section .section-subtitle {
    font-size: 1.125rem;
    color: #475569;
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.75;
}

.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-card .card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card .card-text {
    font-size: 1rem;
    color: #64748b;
    font-family: var(--body-font);
    line-height: 1.65;
}

.blog-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.blog-card img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card .card-body {
    padding: 20px;
}

.blog-card .card-footer {
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Contact Section */
.contact {
    padding: 20px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.contact .section-subtitle {
    font-size: 1.125rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.75;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.contact-type-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #000000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: var(--heading-font);
    letter-spacing: -0.01em;
    min-height: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.contact-detail i {
    color: var(--primary-color-solid);
    width: 16px;
    font-size: 0.9rem;
}

.contact-action-btn {
    background: var(--primary-color-solid);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.contact-action-btn:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    color: white;
}

.social-links-card {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.social-links-card a {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-card a:hover {
    background: var(--primary-color-solid);
    color: white;
    transform: translateY(-2px);
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.close-modal {
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.close-modal:hover {
    color: #1f2937;
}

.modal-body {
    padding: 0 24px 24px;
}

.modal-body p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--heading-font);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color-solid);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 168, 5, 0.3);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-title {
        font-size: 1.2rem;
        min-height: auto;
    }

    .modal-content {
        margin: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 20px 0;
    }

    .contact-card {
        padding: 16px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .modal-header,
    .modal-body {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Alert Styles */
.alert-success {
    background: var(--success-color);
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.error {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Footer Section */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-contact {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--primary-color-solid);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fbbf24;
}

/* Remove universities carousel navigation buttons */

/* About Us Homepage Section */
.about-us-homepage {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-us-homepage::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(37, 99, 235, 0.1) 0%,
            transparent 70%);
    border-radius: 50%;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text .section-badge {
    display: inline-block;
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            #1e40af 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: #1f2937;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-learn-more:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-learn-more i {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

.about-mission-vision {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, 0.1) 0%,
            rgba(30, 64, 175, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-solid);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.vision-card .card-icon {
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.2) 0%,
            rgba(255, 193, 7, 0.2) 100%);
    color: #d97706;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-us-homepage {
        padding: 60px 0;
    }

    .about-text .section-title {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .highlight-item:hover {
        transform: translateY(-5px);
    }
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stats-row {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .course-finder {
        margin: -20px 20px 0;
        padding: 30px 20px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .tab-navigation {
        max-width: 100%;
    }

    .suggestion-tags {
        justify-content: flex-start;
    }

    .carousel-wrapper {
        padding: 0 20px;
    }

    .carousel-btn {
        display: none;
    }

    .destination-card {
        min-width: 280px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        min-width: auto;
    }

    .event-meta {
        flex-direction: column;
        gap: 8px;
    }

    .event-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 2rem;
}

.footer-logo h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #cbd5e1;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.link-column h3::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.link-column ul {
    list-style: none;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: var(--transition);
}

.link-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 20px 5%;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #cbd5e1;
}

.footer-policies {
    display: flex;
    gap: 20px;
}

.footer-policies a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-policies a:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links ul li {
        padding: 0.5rem 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .process-step {
        flex-direction: column;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .nav-links {
        position: fixed;
        background: var(--primary-color);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links ul {
        padding: 30px;
    }

    .nav-links ul li {
        display: block;
        margin: 25px 0;
    }

    nav .fas {
        display: block;
        color: var(--text-color-secondary);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding-top: 80px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-policies {
        margin-top: 10px;
        justify-content: center;
    }
}

/* ========================================
   MODERN NAVIGATION - EDUCARE INTERNATIONAL
   ======================================== */

/* Main navigation bar with brand colors and premium shadow */
.educare-nav {
    background: linear-gradient(180deg,
            #ffffff 0%,
            rgba(253, 255, 255, 0.884) 100%
            /* Subtle cream gradient */
        ) !important;
    box-shadow: 0 4px 20px rgba(45, 40, 85, 0.12),
        /* Brand navy shadow */
        0 8px 30px rgba(244, 208, 63, 0.25),
        /* Yellow glow */
        0 0 40px rgba(244, 208, 63, 0.15);
    /* Ambient yellow */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    color: var(--primary-color-solid);
    /* Brand navy text */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Scrolled state - more prominent shadow */
.educare-nav.scrolled {
    box-shadow: 0 6px 25px rgba(45, 40, 85, 0.18),
        0 10px 40px rgba(244, 208, 63, 0.35);
    padding: 0.75rem 0;
}

/* ========================================
   NAVIGATION CONTAINER & LAYOUT
   ======================================== */

/* Container for navigation elements */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

/* Logo styling */
.nav-logo img {
    height: 46px;
    background: transparent;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(244, 208, 63, 0.3));
}

/* ========================================
   NAVIGATION LINKS
   ======================================== */

/* Links container */
.nav-links {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    list-style: none;
}

/* Base link styling */
a.nav-link {
    text-decoration: none;
    list-style: none;
    color: inherit;
    transition: color 0.3s ease;
}

a.nav-link:hover {
    text-decoration: none;
    list-style: none;
    color: inherit;
}

/* ========================================
   NAVIGATION ITEMS WITH HOVER EFFECTS
   ======================================== */

/* Individual nav item with sophisticated hover */
.nav-item {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color-solid);
    /* Brand navy */
    /* color: red; */
    color: #140855;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

/* Animated underline effect */
.nav-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg,
            var(--secondary-color) 0%,
            /* Brand yellow */
            var(--gold-accent) 100%
            /* Gold accent */
        );
    transition: width 0.35s ease, left 0.35s ease;
    border-radius: 10px;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(244, 208, 63, 0.4);
}

/* Hover state */
.nav-item:hover {
    color: var(--secondary-color);
    /* Brand yellow */
    transform: translateY(-2px);
}

.nav-item:hover::after {
    width: 100%;
    left: 50%;
}

/* Active/current page state */
.nav-item.active {
    color: var(--secondary-color);
    font-weight: 700;
}

.nav-item.active::after {
    width: 100%;
}

/* ========================================
   DROPDOWN MENU STYLES
   ======================================== */

/* Dropdown toggle button */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    color: var(--primary-color-solid);
    /* Brand navy */
    color: #140855;
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.dropdown-toggle::after {
    display: none;
    /* Hide default Bootstrap arrow */
}

/* Dropdown icon rotation when open */
.dropdown.show .dropdown-toggle span {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.dropdown-toggle:hover {
    color: var(--secondary-color);
}

/* ========================================
   DROPDOWN MENU
   ======================================== */

/* Dropdown menu container */
.dropdown-menu {
    background: #ffffff;
    border: 2px solid var(--secondary-color);
    /* Yellow border */
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(45, 40, 85, 0.15),
        0 0 20px rgba(244, 208, 63, 0.2);
    /* Navy + yellow shadows */
    padding: 1rem 0;
    min-width: 220px;
    margin-top: 0.5rem;
    z-index: 1001;
    animation: dropdownFadeIn 0.3s ease;
}

/* Dropdown fade-in animation */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown menu items */
.dropdown-menu a {
    display: inline-block;
    padding: 0.6rem 1rem;
    margin: 0.25rem 1rem;
    border-radius: 8px;
    color: var(--primary-color-solid);
    /* Brand navy */
    color: #140855;
    font-family: "Roboto Flex", sans-serif;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 500;
    position: relative;
}

/* Dropdown item hover effect */
.dropdown-menu a:hover {
    background: linear-gradient(135deg,
            rgba(244, 208, 63, 0.15) 0%,
            rgba(249, 202, 36, 0.1) 100%);
    /* Light yellow gradient */
    color: var(--secondary-color);
    /* Brand yellow */
    font-weight: 600;
    text-decoration: none;
    list-style: none;
    transform: translateX(5px);
    padding-left: 1.2rem;
}

/* Optional: Add icon/arrow on hover */
/* .dropdown-menu a:hover::before {
    content: "â†’";
    position: absolute;
    left: 0.5rem;
    color: var(--secondary-color);
    font-weight: bold;
} */

/* ========================================
   CALL-TO-ACTION BUTTON
   ======================================== */

/* Primary CTA button with brand colors */
.cta-btn {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            /* Brand yellow */
            var(--gold-accent) 100%
            /* Gold accent */
        );
    color: var(--primary-color-solid);
    /* Navy text */
    color: #140855;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* CTA button hover effect */
.cta-btn:hover {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.5);
    text-decoration: none;
    list-style: none;
}

/* Arrow icon animation */
.arrow {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.cta-btn:hover .arrow {
    transform: translateX(5px);
    color: var(--secondary-color);
}

/* ========================================
   MOBILE NAVIGATION TOGGLE
   ======================================== */

/* Hamburger menu button */
.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary-color);
    /* Brand yellow */
    background: transparent;
    border: 2px solid var(--secondary-color);
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: var(--secondary-color);
    color: var(--primary-color-solid);
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
}

/* Mobile CTA (hidden on desktop) */
.mobile-cta {
    display: none;
}

/* ========================================
   RESPONSIVE DESIGN - DESKTOP
   ======================================== */

@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
        /* Override Bootstrap collapse */
    }

    .nav-toggle {
        display: none;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ======================================== */

@media (max-width: 767px) {

    /* Hide navigation links by default on mobile */
    .nav-links {
        display: none;
    }

    /* Mobile menu when opened */
    .nav-links.show {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(180deg,
                var(--primary-color-solid) 0%,
                /* Brand navy */
                #3d3566 100%
                /* Lighter purple */
            );
        color: white;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(45, 40, 85, 0.3),
            inset 0 1px 0 rgba(244, 208, 63, 0.3);
        border-top: 3px solid var(--secondary-color);
        animation: mobileMenuSlide 0.3s ease;
    }

    /* Mobile menu slide animation */
    @keyframes mobileMenuSlide {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile nav items */
    .nav-links.show .nav-item {
        color: white;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(244, 208, 63, 0.2);
    }

    .nav-links.show .nav-item:hover {
        color: var(--secondary-color);
        background: rgba(244, 208, 63, 0.1);
        padding-left: 1rem;
        border-radius: 8px;
    }

    .nav-links.show .nav-item::after {
        display: none;
        /* Hide underline on mobile */
    }

    /* Mobile dropdown */
    .nav-links.show .dropdown-toggle {
        color: white;
    }

    .nav-links.show .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
    }

    .nav-links.show .dropdown-menu a {
        color: white;
        margin: 0.25rem 0;
    }

    .nav-links.show .dropdown-menu a:hover {
        background: rgba(244, 208, 63, 0.2);
        transform: translateX(8px);
    }

    /* Show mobile toggle button */
    .nav-toggle {
        display: block;
    }

    /* Hide desktop CTA on mobile */
    .nav-cta {
        display: none;
    }

    /* Show mobile CTA */
    .mobile-cta {
        display: block;
        margin-top: 1rem;
    }

    .mobile-cta .cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    /* Adjust container padding */
    .nav-container {
        padding: 0 1rem;
    }

    /* Adjust logo size */
    .nav-logo img {
        height: 40px;
    }
}

/* ========================================
   SMALL MOBILE DEVICES
   ======================================== */

@media (max-width: 480px) {
    .educare-nav {
        padding: 0.75rem 0;
    }

    .nav-logo img {
        height: 36px;
    }

    .nav-toggle {
        font-size: 1.3rem;
        padding: 0.5rem 0.7rem;
    }

    .nav-links.show {
        padding: 1rem;
    }

    .cta-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

/* Focus states for keyboard navigation */
.nav-item:focus,
.dropdown-toggle:focus,
.cta-btn:focus,
.nav-toggle:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    .nav-item,
    .nav-item::after,
    .cta-btn,
    .dropdown-menu,
    .nav-toggle,
    .nav-links.show {
        animation: none;
        transition: none;
    }
}







/* ========================================
   FOOTER SECTION - EDUCARE BRAND
   ======================================== */

/* Main footer with brand navy gradient */
footer {
    background: linear-gradient(180deg,
            var(--primary-color-solid) 0%,
            /* Brand navy */
            #3d3566 50%,
            /* Mid-tone purple */
            var(--primary-color-solid) 100%
            /* Back to navy */
        );
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 0 1rem;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    border-top: 4px solid var(--secondary-color);
    /* Yellow accent border */
}

/* Optional: Add subtle pattern overlay */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%,
            rgba(244, 208, 63, 0.08) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 70%,
            rgba(244, 208, 63, 0.05) 0%,
            transparent 50%);
    pointer-events: none;
}

/* ========================================
   FOOTER CONTAINER & LAYOUT
   ======================================== */

/* Two-column grid layout */
.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   FOOTER LOGO & DESCRIPTION
   ======================================== */

/* Company logo/name */
.footer-logo h2 {
    color: var(--text-white);
    /* Brand white */
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Company description */
.footer-logo p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 300px;
    line-height: 1.7;
}

/* ========================================
   FOOTER LINKS SECTION
   ======================================== */

/* Links grid container */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Link column heading */
.link-column h3 {
    color: var(--text-white);
    /* Brand white */
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
    padding-bottom: 12px;
}

/* Yellow underline accent */
.link-column h3::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg,
            var(--secondary-color) 0%,
            /* Brand yellow */
            var(--gold-accent) 100%
            /* Gold accent */
        );
    bottom: 0;
    left: 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(244, 208, 63, 0.4);
}

/* Link list */
.link-column ul {
    list-style: none;
    padding: 0;
}

.link-column ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

/* Individual links */
.link-column ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-weight: 400;
}

/* Link hover effect */
.link-column ul li a:hover {
    color: var(--secondary-color);
    /* Brand yellow */
    padding-left: 8px;
    transform: translateX(3px);
}

/* Optional: Add arrow on hover */
.link-column ul li a:hover::before {
    content: "â†’";
    position: absolute;
    left: -5px;
    color: var(--secondary-color);
    font-weight: bold;
    opacity: 0;
    animation: arrowSlide 0.3s forwards;
}

@keyframes arrowSlide {
    from {
        opacity: 0;
        left: -10px;
    }

    to {
        opacity: 1;
        left: -5px;
    }
}

/* ========================================
   FOOTER BOTTOM BAR
   ======================================== */

/* Bottom copyright section */
.footer-bottom {
    border-top: 1px solid rgba(244, 208, 63, 0.2);
    /* Yellow tint border */
    padding: 20px 5%;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Copyright text */
.footer-bottom p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* ========================================
   FOOTER POLICIES LINKS
   ======================================== */

/* Policy links container */
.footer-policies {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Policy links */
.footer-policies a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Policy link hover */
.footer-policies a:hover {
    color: var(--secondary-color);
    /* Brand yellow */
    text-decoration: none;
    list-style: none;
}

/* Underline animation on hover */
.footer-policies a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-policies a:hover::after {
    width: 100%;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    /* Navigation adjustments */
    .nav-links ul li {
        padding: 0.5rem 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    /* Footer layout changes */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo p {
        max-width: 100%;
    }

    .process-step {
        flex-direction: column;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .process-step::after {
        display: none;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */

@media (max-width: 576px) {

    /* Mobile navigation */
    .nav-links {
        position: fixed;
        background: var(--primary-color-solid);
        height: 100vh;
        width: 250px;
        color: var(--text-white);
        top: 0;
        right: -250px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        border-left: 3px solid var(--secondary-color);
    }

    .nav-links ul {
        padding: 30px;
    }

    .nav-links ul li {
        display: block;
        margin: 25px 0;
    }

    nav .fas {
        display: block;
        color: var(--secondary-color);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding-top: 80px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Single column footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .link-column {
        text-align: center;
    }

    .link-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-policies {
        margin-top: 10px;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    footer {
        padding: 2rem 0 1rem;
    }

    .footer-logo h2 {
        font-size: 1.6rem;
    }
}

/* ========================================
   EXTRA SMALL DEVICES
   ======================================== */

@media (max-width: 360px) {
    .footer-container {
        padding: 0 3%;
    }

    .footer-bottom {
        padding: 15px 3%;
    }

    .link-column h3 {
        font-size: 1.1rem;
    }
}




/***TEAM SECTION***/
/* Team Section - Matching design principles from rest of frontend */
.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.team-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.team-section .section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.team-section .section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.team-card:hover::before {
    opacity: 0.05;
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.03);
    opacity: 0.95;
}

.team-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: var(--bg-color);
    font-size: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.team-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.team-position {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.team-details {
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.detail-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 18px;
    font-size: 0.9rem;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.specialty-tag {
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
    color: var(--bg-color);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.specialty-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}



/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.team-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.team-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Destinations Section */
.destinations {
    background-color: var(--bg-light);
}

.destinations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.destination-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.destination-info {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.info-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.explore-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.explore-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

/**IELTS***/

.ielts-page {
    padding: 2rem;
    color: #333;
}

.ielts-content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 100px;
}

.main-content {
    flex: 2;
    min-width: 300px;
}

.inquire-form {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.section {
    /* border: 2px solid #360383; */
    border-radius: 12px;
    padding: 1.5rem;
}

h3 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    padding-left: 0.5rem;
}

.date {
    font-size: 0.9rem;
    color: #555;
}

ul li,
ol li {
    margin-bottom: 0.5rem;
}

form input,
form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 2px solid #360383;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
}

form button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 2px solid;
    border-radius: 12px;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    color: white;
    background-color: var(--primary-color);
}

/* Responsive stacking on small screens */
@media (max-width: 768px) {
    .ielts-content-wrapper {
        flex-direction: column;
    }
}

/**Page Not Found**/
/* Animated background particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 15px;
    height: 15px;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 25px;
    height: 25px;
    left: 30%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 18px;
    height: 18px;
    left: 40%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    width: 22px;
    height: 22px;
    left: 50%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    width: 16px;
    height: 16px;
    left: 60%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    width: 24px;
    height: 24px;
    left: 70%;
    animation-delay: 2.5s;
}

.particle:nth-child(8) {
    width: 19px;
    height: 19px;
    left: 80%;
    animation-delay: 4.5s;
}

.particle:nth-child(9) {
    width: 21px;
    height: 21px;
    left: 90%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10%,
    90% {
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.container {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 600px;
    padding: 2rem;
}

.error-code {
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    line-height: 1;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.error-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    /* color: white; */
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.error-message {
    font-size: clamp(1rem, 2vw, 1.2rem);
    /* color: rgba(255, 255, 255, 0.8); */
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.btn-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        justify-content: center;
    }
}

/* Glass morphism effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Pulse animation for 404 */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
    .search-form {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .form-control {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
    }
}

.events-section {
    padding: 1px 1rem;
    background-color: #f8fafc;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* For exactly 3 columns on larger screens */
@media (min-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.event-header {
    position: relative;
    background: var(--primary-color);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.date-badge {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 60px;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #4a5568;
    letter-spacing: 0.5px;
}

.event-type {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.event-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.events-section-wrapper {
    margin-top: 100px;
    padding: 4rem 1rem;
    background-color: #f8fafc;
}

.event-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.event-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-section {
    margin-bottom: 1.5rem;
}

.benefits-title {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    color: #4a5568;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.benefits-list li::before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #059669;
}

.spots-remaining {
    font-size: 0.875rem;
    color: #dc2626;
}

.register-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.register-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .event-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
}

/* ========================================
   GOOGLE REVIEWS SECTION - EDUCARE BRAND
   ======================================== */

/* Main section with brand gradient background */
.google-reviews-section {
    padding: 2px 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            var(--accent-light) 50%,
            /* Brand light cream */
            rgba(254, 245, 212, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

/* Optional: Add subtle pattern overlay */
.google-reviews-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%,
            rgba(244, 208, 63, 0.08) 0%,
            transparent 50%);
    pointer-events: none;
}

/* ========================================
   SECTION HEADER
   ======================================== */

/* Header container */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Main section title with brand colors */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color-solid);
    /* Brand navy */
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Optional: Add yellow underline accent */
/* .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--secondary-color) 0%,
        var(--gold-accent) 100%
    );
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(244, 208, 63, 0.4);
} */

/* Section subtitle */
.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-top: 1.5rem;
}

/* ========================================
   GOOGLE BUSINESS INFO CARD
   ======================================== */

/* Premium business info card */
.google-business-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            /* Brand navy */
            #3d3566 100%
            /* Lighter purple */
        );
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 40px rgba(45, 40, 85, 0.25),
        0 0 30px rgba(244, 208, 63, 0.15);
    /* Navy + yellow shadows */
    border: 2px solid rgba(244, 208, 63, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Animated background effect */
.google-business-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 30%,
            rgba(244, 208, 63, 0.15) 0%,
            transparent 60%);
    pointer-events: none;
}

/* ========================================
   BUSINESS LOGO
   ======================================== */

/* Logo circle */
.business-logo {
    width: 80px;
    height: 80px;
    background: var(--text-white);
    /* White background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color-solid);
    /* Navy icon */
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
    border: 3px solid var(--secondary-color);
    /* Yellow border */
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.business-logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.5);
}

/* ========================================
   BUSINESS DETAILS
   ======================================== */

/* Business name */
.business-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Rating container */
.business-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

/* Star icons */
.stars {
    color: var(--secondary-color);
    /* Brand yellow */
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Rating score number */
.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    /* Brand yellow */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Total reviews count */
.total-reviews {
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
}

/* Google logo text */
.google-logo {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Business address */
.business-address {
    font-size: 0.95rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   REVIEWS GRID
   ======================================== */

/* Grid container for review cards */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   REVIEW CARD
   ======================================== */

/* Individual review card */
.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(45, 40, 85, 0.08);
    /* Brand navy shadow */
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    transform: translateY(0);
}

/* Card hover effect with brand colors */
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(45, 40, 85, 0.15),
        0 0 20px rgba(244, 208, 63, 0.2);
    /* Navy + yellow glow */
    border-color: var(--secondary-color);
    /* Yellow border */
}

/* ========================================
   REVIEW HEADER
   ======================================== */

/* Header with avatar and info */
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Reviewer avatar circle */
.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            /* Brand yellow */
            var(--gold-accent) 100%
            /* Gold accent */
        );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-solid);
    /* Navy text */
    font-weight: 700;
    font-size: 1.2rem;
    overflow: hidden;
    border: 2px solid rgba(244, 208, 63, 0.3);
    box-shadow: 0 3px 10px rgba(244, 208, 63, 0.3);
    transition: all 0.3s ease;
}

/* Avatar image if present */
.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Avatar hover effect */
.review-card:hover .reviewer-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.5);
}

/* ========================================
   REVIEWER INFO
   ======================================== */

/* Reviewer name */
.reviewer-info h4 {
    font-weight: 600;
    color: var(--primary-color-solid);
    /* Brand navy */
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

/* Review date */
.review-date {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 400;
}

/* ========================================
   REVIEW RATING
   ======================================== */

/* Rating display */
.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Star rating */
.review-rating .stars {
    color: var(--secondary-color);
    /* Brand yellow */
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(244, 208, 63, 0.3);
}

/* ========================================
   REVIEW TEXT
   ======================================== */

/* Review content text */
.review-text {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

/* Optional: Add quote mark decoration */
.review-text::before {
    content: '"';
    position: absolute;
    left: -5px;
    top: -10px;
    font-size: 3rem;
    color: var(--secondary-color);
    /* Brand yellow */
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ========================================
   GOOGLE BADGE
   ======================================== */

/* Google verification badge */
.google-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--secondary-color);
    /* Brand yellow */
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.review-card:hover .google-badge {
    transform: scale(1.1) rotate(5deg);
    color: var(--gold-accent);
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .google-business-info {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .business-details h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */

@media (max-width: 576px) {
    .google-reviews-section {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .google-business-info {
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .business-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .business-details h3 {
        font-size: 1.3rem;
    }

    .rating-score {
        font-size: 1.3rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .reviews-grid {
        gap: 1rem;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .reviewer-info h4 {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }
}

/* ========================================
   ANIMATION ENHANCEMENTS
   ======================================== */

/* Fade-in animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation for multiple cards */
.review-card:nth-child(1) {
    animation-delay: 0.1s;
}

.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.review-card:nth-child(3) {
    animation-delay: 0.3s;
}

.review-card:nth-child(4) {
    animation-delay: 0.4s;
}

.review-card:nth-child(5) {
    animation-delay: 0.5s;
}

.review-card:nth-child(6) {
    animation-delay: 0.6s;
}

.review-card:nth-child(7) {
    animation-delay: 0.7s;
}

.review-card:nth-child(8) {
    animation-delay: 0.8s;
}

.review-card:nth-child(9) {
    animation-delay: 0.9s;
}



/* Event Modal**/
/* Simple Event Modal */
.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-modal-content {
    background: white;
    width: 400px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.event-modal-header {
    position: relative;
    padding: 20px 20px 0 20px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #000;
}

.event-modal-body {
    padding: 0 20px 20px 20px;
}

.event-modal-title {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #333;
    font-weight: 600;
}

.event-type-badge {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 10px;
}

.event-key-details {
    margin-bottom: 20px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.event-detail-item i {
    width: 16px;
    color: #999;
}

.event-content-section h3 {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.event-description p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.attendance-section {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.attendance-section h3 {
    font-size: 16px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.attendance-section>p {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.attendance-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
    font-weight: 500;
}

.form-group input {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
}

.confirm-attendance-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.confirm-attendance-btn:hover {
    background: #0056b3;
}

.success-message {
    text-align: center;
    padding: 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
}

.success-message h4 {
    font-size: 16px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.success-message p {
    font-size: 14px;
    margin: 0;
}

/**leadCaptureModal**/

/* Modal overlay */
.lead-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    overflow-y: auto;
    padding: 40px 20px;
}

/* Modal content */
.lead-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f9faff 100%);
    max-width: 480px;
    margin: auto;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    animation: modalSlideUp 0.4s ease-out;
}

/* Close button */
.lead-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--neutral-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lead-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

/* Header */
.lead-modal-header {
    text-align: center;
    padding: 40px 30px 20px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.lead-modal-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--neutral-color);
}

/* Body */
.lead-modal-body {
    padding: 30px;
}

/* Trust indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.trust-indicators div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success-color);
    font-size: 14px;
    font-weight: 500;
}

/* Form */
#leadCaptureForm div {
    margin-bottom: 20px;
}

#leadCaptureForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

#leadCaptureForm input,
#leadCaptureForm select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e5e9;
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
    background: white;
}

#leadCaptureForm input:focus,
#leadCaptureForm select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

/* Privacy notice */
.privacy-notice {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 13px;
    color: var(--neutral-color);
    line-height: 1.4;
}

.privacy-notice i {
    color: var(--primary-color);
    margin-top: 2px;
    font-size: 14px;
}

/* Submit button */
#leadCaptureForm button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

#leadCaptureForm button:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

/* Success state */
.lead-success {
    display: none;
    text-align: center;
    padding: 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 0.6s ease-out;
}

.success-icon i {
    font-size: 32px;
    color: white;
}

.lead-success h3 {
    color: var(--success-color);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.lead-success p {
    color: var(--neutral-color);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
}

.success-box {
    background: #d4edda;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    color: #155724;
    text-align: left;
}

/* Animations */
@keyframes modalSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Client Details Full-Width Tab System */
.content .container-fluid {
    padding: 0;
}

.nav-tabs-custom {
    border-bottom: 3px solid var(--primary-color-solid);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.nav-tabs-custom .nav-item {
    margin-bottom: 0;
}

.nav-tabs-custom .nav-link {
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 500;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
}

.nav-tabs-custom .nav-link:hover {
    border: none;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color-solid);
    transform: translateY(-2px);
}

.nav-tabs-custom .nav-link.active {
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            #3b82f6 100%);
    color: white;
    border: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.nav-tabs-custom .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color-solid);
}

.nav-tabs-custom .nav-link i {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-tabs-custom .nav-link.active i,
.nav-tabs-custom .nav-link:hover i {
    opacity: 1;
}

.nav-tabs-custom .badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color-solid);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.nav-tabs-custom .nav-link.active .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Footer Logo Image Styling */
.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
    max-width: 200px;
}



/* ========================================
   Blog Hero Section (Featured Image + Title)
   ======================================== */
.blog-hero-section {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 221, 51, 0.8) 0%, rgba(13, 8, 48, 0.8) 100%);
    background-size: cover;
    background-position: center center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 50px 0;
    /* Adjust padding for spacing */
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.blog-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Slightly darker overlay for contrast */
}

.blog-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.blog-hero-section .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: 6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.blog-hero-section .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-top: 1rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Blog Card Styles (Individual Blog Posts)
   ======================================== */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
    /* Blue border on hover */
}

.blog-card .card-title {
    font-weight: 600;
    color: #2d3748;
    font-size: 1.2rem;
    line-height: 1.4;
    min-height: 2.8rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.blog-card .card-title:hover {
    color: #2563eb;
    /* Hover effect for title */
}

.blog-card .card-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    background-color: #2563eb;
    color: #fff;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* ========================================
   Blog CTA Section (Call to Action)
   ======================================== */
.blog-cta-section {
    background-color: #f8fafc;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    margin-top: 40px;
}

.blog-cta-section h2 {
    color: #2d3748;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* ========================================
   Media Queries for Responsiveness
   ======================================== */

/* Mobile: Hero Section Adjustment */
@media (max-width: 768px) {
    .blog-hero-section {
        min-height: 400px;
        padding: 40px 20px;
    }

    .blog-hero-section .hero-title {
        font-size: 2.2rem;
        margin-top: 4rem;
    }

    .blog-hero-section .hero-subtitle {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .blog-cta-section h2 {
        font-size: 1.5rem;
    }
}

/* Small Mobile: Further adjustment for small screens */
@media (max-width: 480px) {
    .blog-hero-section {
        min-height: 350px;
        padding: 30px 15px;
    }

    .blog-hero-section .hero-title {
        font-size: 1.8rem;
        margin-top: 3rem;
    }

    .blog-hero-section .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
        margin-top: 1rem;
    }

    .blog-card .card-title {
        font-size: 1rem;
    }

    .blog-card .card-text {
        font-size: 0.9rem;
    }

    .blog-cta-section h2 {
        font-size: 1.3rem;
    }
}






/* Lead Modal Styles */
.lead-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    overflow-y: auto;
    padding: 20px;
}

.lead-modal-content {
    background: white;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lead-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    z-index: 1;
    transition: all 0.3s;
}

.lead-modal-header {
    padding: 30px 30px 20px;
    text-align: center;
}

.lead-modal-header p {
    font-size: 1.1rem;
    color: #2d3748;
    margin: 0;
}

.lead-modal-body {
    padding: 0 30px 30px;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.trust-indicators div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    color: #495057;
}

.trust-indicators i {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 5px;
}

#leadCaptureForm div {
    margin-bottom: 15px;
}

#leadCaptureForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2d3748;
    font-size: 0.9rem;
}

#leadCaptureForm input,
#leadCaptureForm select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

#leadCaptureForm input:focus,
#leadCaptureForm select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.privacy-notice {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: #e7f3ff;
    border-radius: 8px;
    margin-bottom: 20px;
}

.privacy-notice i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.privacy-notice p {
    font-size: 0.8rem;
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

#leadCaptureForm button {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

#leadCaptureForm button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.lead-success {
    display: none;
    text-align: center;
    padding: 30px 0;
}

.lead-success .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-success .success-icon i {
    font-size: 40px;
    color: white;
}

.lead-success h3 {
    color: #2d3748;
    margin-bottom: 15px;
}

.lead-success p {
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-hero-section .hero-title {
        font-size: 2rem;
    }

    .blog-card .card-title {
        min-height: auto;
    }
}

/* ===================================
   PROFESSIONAL ABOUT US PAGE STYLES
   =================================== */

/* Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(135deg,
            #1e3a8a 0%,
            var(--primary-color-solid) 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(30, 58, 138, 0.9) 0%,
            rgba(37, 99, 235, 0.8) 100%);
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%,
            rgba(255, 215, 0, 0.1) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 80%,
            rgba(255, 215, 0, 0.08) 0%,
            transparent 50%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

/* Intro Section */
.about-intro {
    padding: 80px 0;
    background: #ffffff;
}

.about-intro-content {
    display: grid;
    gap: 60px;
}

.about-intro-text h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.4;
    font-family: inherit;
}

.about-intro-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color-solid);
}

.about-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.about-stat-label {
    display: block;
    font-size: 0.9375rem;
    color: #64748b;
    font-weight: 500;
}

/* Mission & Vision Section */
.about-mission-vision {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-vision-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-vision-col {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-vision-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.mission-vision-content {
    padding: 40px;
}

.mission-vision-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-vision-icon i {
    font-size: 1.75rem;
    color: white;
}

.mission-vision-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.mission-vision-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

/* Why Choose Us Section */
.about-why-choose {
    padding: 80px 0;
    background: white;
}

.about-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.about-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-section-header p {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.6;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color-solid);
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, 0.1) 0%,
            rgba(30, 58, 138, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-feature-card:hover .about-feature-icon {
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            #1e40af 100%);
}

.about-feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color-solid);
    transition: all 0.3s ease;
}

.about-feature-card:hover .about-feature-icon i {
    color: white;
}

.about-feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.about-feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg,
            #1e3a8a 0%,
            var(--primary-color-solid) 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 50%,
            rgba(255, 215, 0, 0.12) 0%,
            transparent 50%),
        radial-gradient(circle at 70% 70%,
            rgba(255, 215, 0, 0.1) 0%,
            transparent 50%);
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

.about-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.about-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 1.0625rem;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.about-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.about-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: #ffdc33;
    color: #1e293b;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 2.25rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p {
        font-size: 1.125rem;
    }

    .about-intro {
        padding: 60px 0;
    }

    .about-intro-text h2 {
        font-size: 1.75rem;
    }

    .about-mission-vision {
        padding: 60px 0;
    }

    .mission-vision-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-why-choose {
        padding: 60px 0;
    }

    .about-section-header {
        margin-bottom: 40px;
    }

    .about-section-header h2 {
        font-size: 1.75rem;
    }

    .about-cta {
        padding: 60px 0;
    }

    .about-cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .about-hero-content h1 {
        font-size: 1.75rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .about-intro-text h2 {
        font-size: 1.5rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-stat-item {
        padding: 24px 16px;
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .mission-vision-content {
        padding: 30px 24px;
    }

    .mission-vision-content h3 {
        font-size: 1.25rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-feature-card {
        padding: 24px;
    }

    .about-section-header h2,
    .about-cta-content h2 {
        font-size: 1.5rem;
    }

    .about-cta-btn {
        padding: 14px 32px;
        font-size: 0.9375rem;
    }
}

/* ==================== SOCIAL MEDIA LINKS ==================== */
.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
    order: 2;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-link:hover {
    background: var(--primary-color-solid);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.footer-social .social-twitter:hover {
    background: #000000;
}

.footer-social .social-instagram:hover {
    background: linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
}

.footer-social .social-facebook:hover {
    background: #1877f2;
}

.footer-social .social-linkedin:hover {
    background: #0077b5;
}

.footer-social .social-youtube:hover {
    background: #ff0000;
}

.footer-social .social-tiktok:hover {
    background: #000000;
}

.footer-social .social-link span {
    margin-left: 8px;
    font-size: 0.9rem;
}

/* Contact Section Social Links */
.contact-social {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.contact-social .contact-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color-solid);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-social .contact-social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.contact-social .contact-social-twitter:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

.contact-social .contact-social-instagram:hover {
    background: linear-gradient(45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%);
    color: white;
    border-color: #bc1888;
}

.contact-social .contact-social-facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.contact-social .contact-social-linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.contact-social .contact-social-youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

.contact-social .contact-social-tiktok:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}

/* Responsive adjustments for social links */
@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center;
    }

    .footer-social {
        order: 1;
        margin-bottom: 16px;
        width: 100%;
        justify-content: center;
    }

    .footer-bottom p {
        order: 2;
        width: 100%;
        text-align: center;
    }

    .footer-policies {
        order: 3;
        width: 100%;
    }

    .contact-social .contact-social-link {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}



/* ========================================
   COURSES PAGE - EDUCARE BRAND STYLES
   ======================================== */

/* ========================================
   MAIN PAGE CONTAINER
   ======================================== */

.courses-page {
    width: 100%;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f8f9fa 50%,
            var(--accent-light) 100%);
    min-height: 100vh;
}






/* ========================================
   HERO SECTION
   ======================================== */

/* Hero with brand gradient background */
.courses-hero {
    position: relative;
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            #3d3566 50%,
            var(--primary-color-solid) 100%) !important;
    padding: 4rem 0 !important;
    overflow: hidden;
}

/* Animated background effects */
.courses-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%,
            rgba(244, 208, 63, 0.15) 0%,
            transparent 60%),
        radial-gradient(circle at 70% 60%,
            rgba(249, 202, 36, 0.1) 0%,
            transparent 60%);
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Wave divider at bottom */
.courses-hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" d="M0,50 C150,100 350,0 600,50 C850,100 1050,0 1200,50 L1200,120 L0,120 Z"/></svg>') no-repeat;
    background-size: cover;
}

/* Hero content positioning */
.courses-hero .container {
    position: relative;
    z-index: 1;

}

/* ========================================
   HERO TYPOGRAPHY
   ======================================== */

/* Main heading */
.courses-hero h1 {
    color: var(--text-white) !important;
    color: #000;
    font-weight: 700 !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem !important;
    animation: fadeInDown 0.8s ease;
    /* margin-top: 2rem; */
}

/* Decorative underline for heading */
.courses-hero h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    margin-top: 15px;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(244, 208, 63, 0.5);
}

/* Lead paragraph */
.courses-hero .lead {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease 0.3s backwards;
}

/* ========================================
   HERO SECTION - PREMIUM LARGE SCREEN
   ======================================== */

/* Hero with brand gradient background */
.courses-hero {
    position: relative;
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            #3d3566 50%,
            var(--primary-color-solid) 100%) !important;
    padding: 6rem 0 8rem 0 !important;
    overflow: hidden;
    min-height: 400px;
}

/* Animated background effects */
.courses-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%,
            rgba(244, 208, 63, 0.2) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 70%,
            rgba(249, 202, 36, 0.15) 0%,
            transparent 50%),
        radial-gradient(circle at 50% 50%,
            rgba(244, 208, 63, 0.08) 0%,
            transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Floating particles effect */
.courses-hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23f8f9fa" d="M0,50 C200,90 400,10 600,50 C800,90 1000,10 1200,50 L1200,120 L0,120 Z"/></svg>') no-repeat;
    background-size: cover;
    z-index: 2;
}

/* Hero content positioning */
.courses-hero .container {
    position: relative;
    z-index: 3;
}

/* Add decorative elements */
.courses-hero .row {
    position: relative;
}

/* Decorative yellow accent line on left */
.courses-hero .row::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 120px;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--secondary-color) 20%,
            var(--gold-accent) 80%,
            transparent 100%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.6);
    animation: slideDown 2s ease infinite;
}

@keyframes slideDown {

    0%,
    100% {
        transform: translateY(-60%);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-40%);
        opacity: 1;
    }
}

/* ========================================
   HERO TYPOGRAPHY
   ======================================== */

/* Main heading with enhanced styling */
.courses-hero h1 {
    color: var(--text-white) !important;
    font-weight: 700 !important;
    font-size: 3.5rem !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
        0 2px 10px rgba(244, 208, 63, 0.3);
    margin-bottom: 2rem !important;
    animation: fadeInDown 0.8s ease;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    /* margin-top: 12px; */
}

/* Glow effect on heading */
.courses-hero h1::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: var(--secondary-color);
    filter: blur(20px);
    opacity: 0.5;
}

/* Decorative underline for heading */
.courses-hero h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 50%,
            var(--secondary-color) 100%);
    margin-top: 20px;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.6),
        0 0 30px rgba(244, 208, 63, 0.4);
    animation: expandLine 1.5s ease 0.5s backwards;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 120px;
        opacity: 1;
    }
}

/* Lead paragraph with enhanced spacing */
.courses-hero .lead {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.25rem !important;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease 0.5s backwards;
    max-width: 600px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Add highlight to key words in lead text */
.courses-hero .lead strong {
    color: var(--secondary-color);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(244, 208, 63, 0.5);
}

/* ========================================
   BREADCRUMB ENHANCEMENTS FOR LARGE SCREENS
   ======================================== */

/* Enhanced breadcrumb positioning */
/* .courses-hero .col-lg-4 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
} */

/* Breadcrumb with enhanced glassmorphism */
/* .courses-hero .breadcrumb {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(244, 208, 63, 0.15) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 30px;
    border-radius: 50px;
    margin-bottom: 0 !important;
    border: 2px solid rgba(244, 208, 63, 0.5);
    box-shadow: 0 10px 40px rgba(45, 40, 85, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 30px rgba(244, 208, 63, 0.2);
    animation: fadeInRight 1s ease 0.8s backwards;
    position: relative;
    overflow: hidden;
} */

/* Shimmer effect */
/* .courses-hero .breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
} */

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */

/* Floating shapes in background */
.courses-hero .container::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,
            rgba(244, 208, 63, 0.15) 0%,
            transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.courses-hero .container::after {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle,
            rgba(249, 202, 36, 0.2) 0%,
            transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
}

/* ========================================
   ENTRANCE ANIMATIONS
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE - MAINTAIN MOBILE STYLES
   ======================================== */

@media (max-width: 1199px) {

    /* Adjust padding for medium screens */
    .courses-hero {
        padding: 5rem 0 6rem 0 !important;
    }

    .courses-hero h1 {
        font-size: 3rem !important;
    }

    .courses-hero .lead {
        font-size: 1.15rem !important;
    }
}

@media (max-width: 991px) {

    /* Tablet adjustments */
    .courses-hero {
        padding: 4rem 0 5rem 0 !important;
    }

    .courses-hero h1 {
        font-size: 2.5rem !important;
    }

    .courses-hero .lead {
        font-size: 1.1rem !important;
    }

    .courses-hero h1::after {
        width: 100px;
    }

    /* Hide decorative left line */
    .courses-hero .row::before {
        display: none;
    }

    /* Center breadcrumb */
    .courses-hero .col-lg-4 {
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    /* Mobile - keep existing mobile styles */
    .courses-hero {
        padding: 3rem 0 4rem 0 !important;
        min-height: 300px;
    }

    .courses-hero h1 {
        font-size: 2rem !important;
        text-align: center;
    }

    .courses-hero h1::after {
        margin-left: auto;
        margin-right: auto;
        width: 80px;
    }

    .courses-hero .lead {
        font-size: 1rem !important;
        text-align: center;
    }

    .courses-hero .breadcrumb {
        padding: 12px 20px;
    }

    /* Hide floating decorative elements */
    .courses-hero .container::before,
    .courses-hero .container::after {
        display: none;
    }
}

@media (max-width: 575px) {

    /* Small mobile */
    .courses-hero {
        padding: 2.5rem 0 3.5rem 0 !important;
    }

    .courses-hero h1 {
        font-size: 1.75rem !important;
    }

    .courses-hero .lead {
        font-size: 0.95rem !important;
    }

    .courses-hero::after {
        height: 60px;
    }
}

/* ========================================
   LARGE DESKTOP ENHANCEMENTS
   ======================================== */

@media (min-width: 1400px) {

    /* Extra large screens - maximize impact */
    .courses-hero {
        padding: 8rem 0 10rem 0 !important;
        min-height: 500px;
    }

    .courses-hero h1 {
        font-size: 4rem !important;
    }

    .courses-hero .lead {
        font-size: 1.35rem !important;
        max-width: 700px;
    }

    .courses-hero h1::after {
        width: 140px;
        height: 6px;
    }

    .courses-hero .breadcrumb {
        padding: 18px 35px;
        font-size: 1.05rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {

    .courses-hero::before,
    .courses-hero .row::before,
    .courses-hero .container::before,
    .courses-hero .container::after,
    .courses-hero .breadcrumb::before {
        animation: none;
    }

    .courses-hero h1,
    .courses-hero .lead,
    .courses-hero .breadcrumb {
        animation: none;
        opacity: 1;
        transform: none;
    }
}









/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */

/* Breadcrumb container */
.courses-hero .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    background: red;
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    margin-bottom: 0 !important;
    border: 1px solid rgba(244, 208, 63, 0.3);
    animation: fadeInRight 1s ease 0.5s backwards;
}

/* Breadcrumb links */
.courses-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7) !important;
    color: red;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.courses-hero .breadcrumb-item a:hover {
    color: var(--secondary-color) !important;
    text-shadow: 0 2px 8px rgba(244, 208, 63, 0.5);
}

/* Active breadcrumb */
.courses-hero .breadcrumb-item.active {
    color: var(--text-white) !important;
    font-weight: 600;
}

/* Breadcrumb separator */
.courses-hero .breadcrumb-item+.breadcrumb-item::before {
    content: "â€º";
    color: var(--secondary-color) !important;
    font-size: 1.2rem;
    font-weight: 700;
}




/* ========================================
   PREMIUM BREADCRUMB NAVIGATION - EDUCARE
   ======================================== */

/* Breadcrumb container with glassmorphism effect */
.courses-hero .breadcrumb {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(244, 208, 63, 0.1) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 14px 25px;
    border-radius: 50px;
    margin-bottom: 0 !important;
    border: 2px solid rgba(244, 208, 63, 0.4);
    box-shadow: 0 8px 32px rgba(45, 40, 85, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(244, 208, 63, 0.15);
    animation: fadeInRight 1s ease 0.5s backwards;
    position: relative;
    overflow: hidden;
}

/* Animated shimmer effect */
.courses-hero .breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Breadcrumb items container */
.courses-hero .breadcrumb-item {
    position: relative;
    z-index: 1;
}

/* ========================================
   BREADCRUMB LINKS
   ======================================== */

/* Breadcrumb link styling */
.courses-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 4px 8px;
    border-radius: 6px;
    position: relative;
    display: inline-block;
}

/* Underline animation effect */
.courses-hero .breadcrumb-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(244, 208, 63, 0.6);
}

/* Link hover effect */
.courses-hero .breadcrumb-item a:hover {
    color: var(--secondary-color) !important;
    background: rgba(244, 208, 63, 0.15);
    text-shadow: 0 2px 10px rgba(244, 208, 63, 0.6);
    transform: translateY(-2px);
}

.courses-hero .breadcrumb-item a:hover::after {
    width: 80%;
}

/* ========================================
   ACTIVE BREADCRUMB
   ======================================== */

/* Active/current page breadcrumb */
.courses-hero .breadcrumb-item.active {
    color: var(--text-white) !important;
    font-weight: 700;
    background: rgba(244, 208, 63, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(244, 208, 63, 0.3);
}

/* ========================================
   BREADCRUMB SEPARATOR
   ======================================== */

/* Custom separator between items */
.courses-hero .breadcrumb-item+.breadcrumb-item::before {
    content: "â€º";
    color: var(--secondary-color) !important;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0 8px;
    text-shadow: 0 2px 6px rgba(244, 208, 63, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

/* Add home icon to first breadcrumb item */
.courses-hero .breadcrumb-item:first-child a::before {
    /* content: "ðŸ "; */
    margin-right: 6px;
    font-size: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.courses-hero .breadcrumb-item:first-child a:hover::before {
    transform: scale(1.2) rotate(-10deg);
}

/* Add folder icon to middle items */
.courses-hero .breadcrumb-item:not(:first-child):not(:last-child) a::before {
    /* content: "ðŸ“"; */
    margin-right: 6px;
    font-size: 0.9rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.courses-hero .breadcrumb-item:not(:first-child):not(:last-child) a:hover::before {
    transform: scale(1.15);
}

/* Add document icon to last item */
.courses-hero .breadcrumb-item.active::before {
    /* content: "ðŸ“„"; */
    margin-right: 6px;
    font-size: 0.9rem;
    display: inline-block;
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade in from right animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse animation for separator */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* ========================================
   HOVER EFFECT FOR ENTIRE BREADCRUMB
   ======================================== */

/* Glow effect on breadcrumb hover */
.courses-hero .breadcrumb:hover {
    border-color: rgba(244, 208, 63, 0.6);
    box-shadow: 0 8px 32px rgba(45, 40, 85, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(244, 208, 63, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* ========================================
   MOBILE RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {

    /* Adjust breadcrumb for mobile */
    .courses-hero .breadcrumb {
        padding: 12px 18px;
        font-size: 0.9rem;
        border-radius: 40px;
    }

    /* Smaller link padding */
    .courses-hero .breadcrumb-item a {
        padding: 3px 6px;
        font-size: 0.85rem;
    }

    /* Smaller active item */
    .courses-hero .breadcrumb-item.active {
        padding: 3px 10px;
        font-size: 0.85rem;
    }

    /* Smaller separator */
    .courses-hero .breadcrumb-item+.breadcrumb-item::before {
        font-size: 1.1rem;
        padding: 0 5px;
    }

    /* Hide icons on small screens (optional) */
    .courses-hero .breadcrumb-item a::before,
    .courses-hero .breadcrumb-item.active::before {
        display: none;
    }
}

@media (max-width: 576px) {

    /* Stack breadcrumb vertically if needed */
    .courses-hero .breadcrumb {
        padding: 10px 15px;
    }

    .courses-hero .breadcrumb-item a {
        font-size: 0.8rem;
    }

    .courses-hero .breadcrumb-item.active {
        font-size: 0.8rem;
    }

    /* Even smaller separator */
    .courses-hero .breadcrumb-item+.breadcrumb-item::before {
        font-size: 1rem;
        padding: 0 4px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .courses-hero .breadcrumb {
        background: white;
        border: 1px solid #ddd;
        box-shadow: none;
        backdrop-filter: none;
    }

    .courses-hero .breadcrumb-item a {
        color: #333 !important;
    }

    .courses-hero .breadcrumb-item.active {
        background: #f0f0f0;
        color: #000 !important;
    }

    .courses-hero .breadcrumb::before {
        display: none;
    }
}


















/* ========================================
   MAIN CONTENT CONTAINER
   ======================================== */

.courses-page .container {
    position: relative;
    z-index: 1;
}

/* Content padding */
.courses-page>.container {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* ========================================
   COURSE CARDS (General Styling)
   ======================================== */

/* Course card container */
.course-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 40, 85, 0.08);
    position: relative;
    overflow: hidden;
}

/* Decorative accent bar */
.course-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    transition: height 0.3s ease;
}

/* Card hover effects */
.course-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(45, 40, 85, 0.15),
        0 0 25px rgba(244, 208, 63, 0.2);
    transform: translateY(-5px);
}

.course-card:hover::before {
    height: 100%;
}

/* Course card title */
.course-card .card-title {
    color: var(--primary-color-solid);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.course-card:hover .card-title {
    color: var(--secondary-color);
}

/* Course card text */
.course-card .card-text {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ========================================
   COURSE META INFORMATION
   ======================================== */

/* Meta info container */
.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

/* Individual meta badge */
.course-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: linear-gradient(135deg,
            rgba(244, 208, 63, 0.1) 0%,
            rgba(249, 202, 36, 0.05) 100%);
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color-solid);
    font-weight: 500;
    transition: all 0.3s ease;
}

.course-meta-item:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.course-meta-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.course-meta-item:hover i {
    color: var(--primary-color-solid);
}

/* ========================================
   COURSE ACTION BUTTONS
   ======================================== */

/* Button container */
.course-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Primary course button */
.btn-course-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    color: var(--primary-color-solid);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.btn-course-primary:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

/* Secondary course button */
.btn-course-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-course-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color-solid);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

/* Button icons */
.btn-course-primary i,
.btn-course-secondary i {
    transition: transform 0.3s ease;
}

.btn-course-primary:hover i,
.btn-course-secondary:hover i {
    transform: scale(1.1);
}

/* ========================================
   FILTER SIDEBAR
   ======================================== */

/* Sidebar container */
.courses-sidebar {
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(45, 40, 85, 0.1);
    position: sticky;
    top: 100px;
}

/* Sidebar heading */
.courses-sidebar h3,
.courses-sidebar h4 {
    color: var(--primary-color-solid);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

/* Filter form elements */
.courses-sidebar .form-label {
    color: var(--primary-color-solid);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.courses-sidebar .form-control,
.courses-sidebar .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.courses-sidebar .form-control:focus,
.courses-sidebar .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.15);
    outline: none;
}

/* Filter button */
.btn-filter {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    border: 2px solid var(--secondary-color);
    color: var(--primary-color-solid);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.btn-filter:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

/* ========================================
   COURSE LIST VIEW
   ======================================== */

/* List container */
.courses-list {
    display: grid;
    gap: 20px;
}

/* Course list item */
.course-list-item {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 40, 85, 0.08);
}

.course-list-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(45, 40, 85, 0.15),
        0 0 25px rgba(244, 208, 63, 0.2);
    transform: translateY(-3px);
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
}

.page-link {
    border: 2px solid #e5e7eb;
    color: var(--primary-color-solid);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color-solid);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    border-color: var(--secondary-color);
    color: var(--primary-color-solid);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

/* ========================================
   LOADING STATE
   ======================================== */

.courses-loading {
    text-align: center;
    padding: 60px 20px;
}

.courses-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(244, 208, 63, 0.2);
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   EMPTY STATE
   ======================================== */

.courses-empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg,
            rgba(244, 208, 63, 0.05) 0%,
            #f8f9fa 100%);
    border-radius: 16px;
    border: 2px dashed rgba(244, 208, 63, 0.3);
}

.courses-empty-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.courses-empty-state h3 {
    font-size: 1.5rem;
    color: var(--primary-color-solid);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.courses-empty-state p {
    color: #6c757d;
    font-size: 1rem;
}

/* ========================================
   FEATURED BADGE
   ======================================== */

.course-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    color: var(--primary-color-solid);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(244, 208, 63, 0.6);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Card entrance animation */
.course-card,
.course-list-item {
    animation: fadeIn 0.5s ease forwards;
}

/* Stagger animation */
.course-card:nth-child(1),
.course-list-item:nth-child(1) {
    animation-delay: 0.1s;
}

.course-card:nth-child(2),
.course-list-item:nth-child(2) {
    animation-delay: 0.2s;
}

.course-card:nth-child(3),
.course-list-item:nth-child(3) {
    animation-delay: 0.3s;
}

.course-card:nth-child(4),
.course-list-item:nth-child(4) {
    animation-delay: 0.4s;
}

.course-card:nth-child(5),
.course-list-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */

@media (max-width: 992px) {

    /* Hero section */
    .courses-hero {
        padding: 13rem 0 !important;
    }

    .courses-hero h1 {
        font-size: 2rem !important;
        margin-top: 4rem;
    }

    .courses-hero .lead {
        font-size: 1rem;
    }

    /* Breadcrumb */
    .courses-hero .breadcrumb {
        margin-top: 20px;
        justify-content: flex-start !important;
    }

    /* Sidebar */
    .courses-sidebar {
        position: static;
        margin-top: 30px;
    }

    /* Course list */
    .course-list-item {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */

@media (max-width: 768px) {

    /* Hero section */
    .courses-hero {
        padding: 2.5rem 0 !important;
        text-align: center;
    }

    .courses-hero h1 {
        font-size: 1.75rem !important;
    }

    .courses-hero h1::after {
        margin-left: auto;
        margin-right: auto;
    }

    .courses-hero .lead {
        font-size: 0.95rem;
    }

    /* Breadcrumb */
    .courses-hero .breadcrumb {
        justify-content: center !important;
    }

    .courses-hero .col-lg-4 {
        text-align: center !important;
        margin-top: 20px;
    }

    /* Content */
    .courses-page>.container {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Course card */
    .course-card {
        padding: 20px;
    }

    .course-card .card-title {
        font-size: 1.1rem;
    }

    /* Meta info */
    .course-meta {
        gap: 10px;
    }

    .course-meta-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    /* Actions */
    .course-actions {
        flex-direction: column;
    }

    .btn-course-primary,
    .btn-course-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Sidebar */
    .courses-sidebar {
        padding: 20px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */

@media (max-width: 576px) {

    /* Hero */
    .courses-hero {
        padding: 2rem 0 !important;
    }

    .courses-hero h1 {
        font-size: 1.5rem !important;
    }

    .courses-hero .lead {
        font-size: 0.9rem;
    }

    /* Breadcrumb */
    .courses-hero .breadcrumb {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    /* Card */
    .course-card {
        padding: 15px;
    }

    /* Empty state */
    .courses-empty-state {
        padding: 3rem 1.5rem;
    }

    .courses-empty-icon {
        font-size: 3rem;
    }

    /* Pagination */
    .page-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {

    .courses-hero,
    .courses-sidebar,
    .course-actions,
    .pagination-wrapper {
        display: none !important;
    }

    .course-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .courses-page {
        background: white;
    }
}




/* ========================================
   INSTITUTE & COURSE SEARCH PAGE - EDUCARE BRAND
   ======================================== */

/* ========================================
   PAGE HERO SECTION
   ======================================== */

/* Hero banner with overlay */
.institutes-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            #3d3566 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.institutes-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%,
            rgba(244, 208, 63, 0.15) 0%,
            transparent 60%);
}

.institutes-hero h1 {
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Decorative underline */
.institutes-hero h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(244, 208, 63, 0.5);
}

/* Wave divider */
.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" d="M0,50 C150,100 350,0 600,50 C850,100 1050,0 1200,50 L1200,120 L0,120 Z"/></svg>') no-repeat;
    background-size: cover;
}

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */

.breadcrumb-container {
    background: #2a2a2a;
    padding: 20px 0;
    margin-bottom: 40px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--gold-accent);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   MAIN CONTENT CONTAINER
   ======================================== */

.course-results-container {
    padding: 40px 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f8f9fa 50%,
            var(--accent-light) 100%);
    min-height: 70vh;
}

/* ========================================
   RESULTS HEADER
   ======================================== */

.results-header {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(45, 40, 85, 0.08);
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 30px;
}

.results-header h2 {
    color: var(--primary-color-solid);
    font-weight: 700;
    margin-bottom: 5px;
}

.results-header .text-muted {
    color: #6b7280 !important;
    font-size: 0.9rem;
}

/* ========================================
   TOP CONTENT ALERT
   ======================================== */

.alert-info {
    background: linear-gradient(135deg,
            rgba(244, 208, 63, 0.1) 0%,
            rgba(249, 202, 36, 0.05) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    color: var(--primary-color-solid);
    padding: 20px;
}

/* ========================================
   COURSE CARD STYLES
   ======================================== */

.course-card {
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
    position: relative;
}

/* Decorative accent */
.course-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    transition: height 0.3s ease;
}

.course-card:hover::before {
    height: 100%;
}

.course-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(45, 40, 85, 0.12),
        0 0 20px rgba(244, 208, 63, 0.15);
    transform: translateY(-4px);
}

/* Card title */
.course-card .card-title {
    color: var(--primary-color-solid);
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.course-card:hover .card-title {
    color: var(--secondary-color);
}

/* University name */
.course-card .text-muted {
    color: #6b7280 !important;
}

.course-card .fa-university {
    color: var(--secondary-color);
}

/* ========================================
   BADGES & TAGS
   ======================================== */

.badge.text-bg-light {
    background: linear-gradient(135deg,
            rgba(244, 208, 63, 0.1) 0%,
            rgba(249, 202, 36, 0.05) 100%);
    border: 1px solid var(--secondary-color);
    color: var(--primary-color-solid);
    padding: 8px 15px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.badge.text-bg-light:hover {
    background: var(--secondary-color);
    color: var(--primary-color-solid);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.badge .fa-graduation-cap {
    color: var(--secondary-color);
}

/* ========================================
   BUTTONS
   ======================================== */

/* Main action button */
.btn-sub-main {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    color: var(--primary-color-solid);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.btn-sub-main:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

/* Bookmark button */
.btn-link {
    color: #9ca3af;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* More link */
.course-card a.text-decoration-none {
    color: var(--primary-color-solid);
    transition: all 0.3s ease;
    font-weight: 500;
}

.course-card a.text-decoration-none:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.course-card .fa-external-link-alt {
    color: var(--secondary-color);
}

/* ========================================
   SIDEBAR FILTER CARD
   ======================================== */

.card.mt-8-lg {
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(45, 40, 85, 0.1);
    position: sticky;
    top: 100px;
    background: white;
}

.card-body {
    padding: 25px;
}

/* Filter heading */
.card h5,
.card h4 {
    color: var(--primary-color-solid);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

/* Filter form inputs */
.form-control,
.form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.15);
    outline: none;
}

.form-label {
    color: var(--primary-color-solid);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Apply filters button */
.btn-primary {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    border: 2px solid var(--secondary-color);
    color: var(--primary-color-solid);
    font-weight: 600;
    padding: 12px 30px;
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

/* ========================================
   EMPTY STATE
   ======================================== */

.text-center.py-5 {
    background: white;
    border-radius: 16px;
    padding: 60px 30px !important;
    border: 2px dashed #e5e7eb;
}

.text-center.py-5 .fa-search {
    color: var(--secondary-color) !important;
    opacity: 0.3 !important;
}

.text-center.py-5 h5 {
    color: var(--primary-color-solid);
    font-weight: 600;
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination {
    gap: 8px;
}

.page-link {
    border: 2px solid #e5e7eb;
    color: var(--primary-color-solid);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color-solid);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    border-color: var(--secondary-color);
    color: var(--primary-color-solid);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

/* ========================================
   MODAL STYLES
   ======================================== */

.modal-content {
    border-radius: 16px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 40px rgba(45, 40, 85, 0.2);
}

.modal-header {
    background: linear-gradient(135deg,
            var(--primary-color-solid) 0%,
            #3d3566 100%);
    border-bottom: 3px solid var(--secondary-color);
    border-radius: 16px 16px 0 0;
}

.modal-header .close {
    color: white;
    opacity: 1;
    text-shadow: none;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.modal-header .close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-body h5 {
    color: var(--primary-color-solid);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

/* Modal form styling */
.modal-body .form-control,
.modal-body .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.15);
}

/* Submit button */
.btn-submit-yellow {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    border: 2px solid var(--secondary-color);
    color: var(--primary-color-solid);
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit-yellow:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.5);
}

/* ========================================
   INSTITUTE CARDS (FROM SECOND IMAGE)
   ======================================== */

.institute-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 40, 85, 0.08);
    position: relative;
    overflow: hidden;
}

.institute-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(244, 208, 63, 0.1) 0%,
            transparent 100%);
    transition: width 0.3s ease;
}

.institute-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(45, 40, 85, 0.15),
        0 0 25px rgba(244, 208, 63, 0.2);
    transform: translateY(-5px);
}

.institute-card:hover::before {
    width: 100%;
}

/* Institute logo */
.institute-logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.institute-card:hover .institute-logo {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

.institute-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Institute details */
.institute-details {
    flex: 1;
}

.institute-details h5 {
    color: var(--primary-color-solid);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 12px;
}

.institute-location {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.institute-location i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.institute-courses {
    color: var(--primary-color-solid);
    font-weight: 500;
}

.institute-courses i {
    color: var(--secondary-color);
}

/* Institute action buttons */
.institute-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-view-institute {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    color: var(--primary-color-solid);
    border: 2px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.btn-view-institute:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-view-courses {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-courses:hover {
    background: var(--secondary-color);
    color: var(--primary-color-solid);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .card.mt-8-lg {
        position: static;
        margin-top: 30px !important;
    }
}

@media (max-width: 768px) {
    .institutes-hero h1 {
        font-size: 2rem;
    }

    .course-results-container {
        padding: 20px 0;
    }

    .course-card .card-body {
        padding: 20px !important;
    }

    .institute-card {
        flex-direction: column;
        text-align: center;
    }

    .institute-logo {
        margin: 0 auto;
    }

    .institute-details h5 {
        border-left: none;
        border-top: 4px solid var(--secondary-color);
        padding-left: 0;
        padding-top: 12px;
    }

    .institute-actions {
        justify-content: center;
    }

    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .institutes-hero h1 {
        font-size: 1.6rem;
    }

    .btn-sub-main,
    .btn-view-institute,
    .btn-view-courses {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .institute-actions {
        flex-direction: column;
    }

    .institute-actions button {
        width: 100%;
    }
}

/* ========================================
   LOADING ANIMATION
   ======================================== */

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.loading-skeleton {
    background: linear-gradient(90deg,
            #f0f0f0 25%,
            #e0e0e0 50%,
            #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border-radius: 8px;
}

/* ========================================
   STUDY IN PAGE - EDUCARE BRAND STYLES
   ======================================== */

/* ========================================
   MAIN CONTAINER
   ======================================== */

.study-in-page-container {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
}

/* ========================================
   COUNTRY INFO SECTION WITH TABS
   ======================================== */

/* Main info section card */
.country-info-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    position: relative;
}

/* Decorative accent */
.country-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color, #2563eb);
}

.info-tabs-modern {
    width: 100%;
}

/* ========================================
   TAB NAVIGATION
   ======================================== */

/* Tab navigation bar */
.nav-tabs-custom {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    background: #ffffff;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.nav-tabs-custom .nav-item {
    flex: 1;
    min-width: 120px;
}

/* Individual tab button */
.nav-tabs-custom .nav-link {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

/* Tab hover effect */
.nav-tabs-custom .nav-link:hover {
    color: var(--primary-color, #2563eb);
    background: #f8f9fa;
}

/* Active tab styling */
.nav-tabs-custom .nav-link.active {
    color: var(--primary-color, #2563eb);
    background: #ffffff;
    border-bottom-color: var(--primary-color, #2563eb);
    font-weight: 600;
}

/* Animated underline indicator */
.nav-tabs-custom .nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color, #2563eb);
    transition: width 0.3s ease;
}

.nav-tabs-custom .nav-link.active::after {
    width: 100%;
}

/* ========================================
   TAB CONTENT
   ======================================== */

/* Content container */
.tab-content-modern {
    background: #ffffff !important;
    padding: 2rem;
}

/* Content wrapper with rich text styling */
.tab-content-modern .content-wrapper {
    line-height: 1.7;
    color: #4b5563 !important;
    font-size: 1rem;
}

/* ========================================
   CONTENT TYPOGRAPHY
   ======================================== */

/* Main headings */
.tab-content-modern .content-wrapper h2,
.tab-content-modern .content-wrapper h3,
.tab-content-modern .content-wrapper h4 {
    color: #1f2937 !important;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* H2 with bottom border */
.tab-content-modern .content-wrapper h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

/* H3 with left accent bar */
.tab-content-modern .content-wrapper h3 {
    font-size: 1.25rem;
    padding-left: 0.75rem;
    position: relative;
}

.tab-content-modern .content-wrapper h3::before {
    content: '';
    position: absolute;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color, #2563eb);
    border-radius: 2px;
}

/* H4 styling */
.tab-content-modern .content-wrapper h4 {
    font-size: 1.1rem;
    color: #374151 !important;
}

/* Paragraphs */
.tab-content-modern .content-wrapper p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4b5563 !important;
}

/* ========================================
   LISTS STYLING
   ======================================== */

/* Custom list styling */
.tab-content-modern .content-wrapper ul,
.tab-content-modern .content-wrapper ol {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

/* List items with card design */
.tab-content-modern .content-wrapper li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    color: #4b5563 !important;
}

/* List item hover effect */
.tab-content-modern .content-wrapper li:hover {
    background: #f1f5f9;
    transform: translateX(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* List item icon */
.tab-content-modern .content-wrapper li::before {
    content: "â€¢";
    color: var(--primary-color, #2563eb);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Strong/bold text */
.tab-content-modern .content-wrapper strong {
    color: #1f2937 !important;
    font-weight: 600;
}

/* Links in content */
.tab-content-modern .content-wrapper a {
    color: var(--primary-color, #2563eb);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.tab-content-modern .content-wrapper a:hover {
    color: #1d4ed8;
    border-bottom-color: var(--primary-color, #2563eb);
}

/* ========================================
   RESULTS HEADER
   ======================================== */

.results-header {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color, #2563eb);
}

.results-count h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937 !important;
    margin-bottom: 0.25rem;
}

.results-count p {
    color: #6b7280 !important;
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   UNIVERSITY CARDS GRID
   ======================================== */

/* COMMENTED OUT - REPLACED WITH .uni-card-enhanced
.university-results-grid {
    display: grid;
    gap: 1.5rem;
}

.university-card-modern {
    background: #ffffff !important;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
    position: relative;
}

.university-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color, #2563eb);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.university-card-modern:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color, #2563eb);
}

.university-card-modern:hover::before {
    opacity: 1;
}
*/

/* COMMENTED OUT OLD STYLES - REPLACED WITH .uni-card-enhanced
.university-card-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
}

.university-logo-section {
    background: #f8f9fa;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e9ecef;
    position: relative;
}

.logo-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.university-card-modern:hover .logo-wrapper {
    transform: scale(1.02);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.university-info-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.university-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937 !important;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.university-card-modern:hover .university-header h3 {
    color: var(--primary-color, #2563eb);
}

.university-meta-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280 !important;
    font-size: 0.9rem;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.meta-item:hover {
    background: #e9ecef;
}

.meta-item i {
    color: var(--primary-color, #2563eb);
    font-size: 0.9rem;
}

.meta-item strong {
    color: #1f2937 !important;
    font-weight: 600;
}

.university-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary-action {
    background: var(--primary-color, #2563eb);
    color: white;
    border-color: var(--primary-color, #2563eb);
}

.btn-primary-action:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.btn-secondary-action {
    background: transparent;
    color: var(--primary-color, #2563eb);
    border-color: #e9ecef;
}

.btn-secondary-action:hover {
    background: #f8f9fa;
    border-color: var(--primary-color, #2563eb);
    transform: translateY(-1px);
}
*/

/* Button icons */
.btn-action i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.btn-action:hover i {
    transform: scale(1.05);
}

/* ========================================
   NO RESULTS STATE
   ======================================== */

.no-results-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #d1d5db;
}

.no-results-icon {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.no-results-state h4 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.no-results-state p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 6px;
}

.page-link {
    border: 1px solid #e5e7eb;
    color: #4b5563;
    border-radius: 6px;
    padding: 8px 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: #f8f9fa;
    border-color: var(--primary-color, #2563eb);
    color: var(--primary-color, #2563eb);
}

.page-item.active .page-link {
    background: var(--primary-color, #2563eb);
    border-color: var(--primary-color, #2563eb);
    color: white;
}

/* ========================================
   SIDEBAR
   ======================================== */

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */

@media (max-width: 992px) {

    /* Stack card layout */
    .university-card-inner {
        grid-template-columns: 1fr;
    }

    .university-logo-section {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 1.5rem;
    }

    .logo-wrapper {
        height: 120px;
    }

    /* Static sidebar on tablet */
    .sidebar-sticky {
        position: static;
        margin-top: 2rem;
    }

    /* Adjust tab sizes */
    .nav-tabs-custom .nav-item {
        min-width: 100px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .study-in-page-container {
        padding: 20px 0;
    }

    /* Tab navigation */
    .nav-tabs-custom .nav-link {
        padding: 1rem;
        font-size: 0.875rem;
    }

    /* Tab content */
    .tab-content-modern {
        padding: 1.5rem;
    }

    .tab-content-modern .content-wrapper h2 {
        font-size: 1.4rem;
    }

    .tab-content-modern .content-wrapper h3 {
        font-size: 1.2rem;
    }

    /* University meta */
    .university-meta-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Action buttons */
    .university-actions {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
        justify-content: center;
    }

    /* Results header */
    .results-header {
        padding: 20px;
    }

    .results-count h2 {
        font-size: 1.4rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */

@media (max-width: 576px) {

    /* Tab content */
    .tab-content-modern {
        padding: 1.25rem;
    }

    .tab-content-modern .content-wrapper h2 {
        font-size: 1.3rem;
    }

    .tab-content-modern .content-wrapper h3 {
        font-size: 1.1rem;
    }

    /* University info */
    .university-info-section {
        padding: 1.5rem;
    }

    .university-header h3 {
        font-size: 1.15rem;
    }

    /* Stack tabs vertically */
    .nav-tabs-custom {
        flex-direction: column;
    }

    .nav-tabs-custom .nav-item {
        width: 100%;
    }

    /* Adjust logo size */
    .logo-wrapper {
        height: 100px;
    }

    /* Meta items full width */
    .meta-item {
        width: 100%;
        justify-content: center;
    }

    /* No results */
    .no-results-state {
        padding: 3rem 1.5rem;
    }

    .no-results-icon {
        font-size: 3rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.university-card-modern {
    animation: fadeIn 0.5s ease forwards;
}

/* Stagger animation for multiple cards */
.university-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.university-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.university-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.university-card-modern:nth-child(4) {
    animation-delay: 0.4s;
}

.university-card-modern:nth-child(5) {
    animation-delay: 0.5s;
}

/* Shimmer loading effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {

    .university-actions,
    .sidebar-sticky,
    .pagination-wrapper {
        display: none;
    }

    .university-card-modern {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}





/* ========================================
   STUDY IN COUNTRY PAGE - EDUCARE BRAND
   ======================================== */

/* ========================================
   PAGE HERO SECTION
   ======================================== */

.study-hero {
    position: relative;
    min-height: 350px;
    background: linear-gradient(135deg,
            rgba(45, 40, 85, 0.85) 0%,
            rgba(61, 53, 102, 0.9) 100%),
        url('your-background-image.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
}

/* Animated background overlay */
.study-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%,
            rgba(244, 208, 63, 0.15) 0%,
            transparent 60%),
        radial-gradient(circle at 70% 60%,
            rgba(249, 202, 36, 0.1) 0%,
            transparent 60%);
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Wave divider */
.study-hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%232a2a2a" d="M0,50 C200,90 400,10 600,50 C800,90 1000,10 1200,50 L1200,120 L0,120 Z"/></svg>') no-repeat;
    background-size: cover;
}

/* Hero title */
.study-hero h1 {
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin: 0;
}

/* Decorative underline */
.study-hero h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(244, 208, 63, 0.5);
}

/* ========================================
   BREADCRUMB SECTION
   ======================================== */

.breadcrumb-section {
    background: #2a2a2a;
    padding: 20px 0;
    position: relative;
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--gold-accent);
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "â€º";
    color: var(--secondary-color);
    font-size: 1.2rem;
    padding: 0 10px;
}

/* ========================================
   MAIN CONTAINER
   ======================================== */

.study-in-page-container {

    padding: 40px 0;
    min-height: 100vh;
}

/* ========================================
   COUNTRY INFO TABS SECTION
   ======================================== */

.country-info-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 3rem;
    border: 3px solid var(--secondary-color);
    position: relative;
}

/* Top accent bar */
.country-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 50%,
            var(--secondary-color) 100%);
    box-shadow: 0 2px 10px rgba(244, 208, 63, 0.5);
}

/* ========================================
   TAB NAVIGATION
   ======================================== */

.nav-tabs-custom {
    display: flex;
    border-bottom: 3px solid rgba(244, 208, 63, 0.3);
    background: linear-gradient(135deg,
            var(--accent-light) 0%,
            #ffffff 100%);
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.nav-tabs-custom .nav-item {
    flex: 1;
    min-width: 150px;
}

.nav-tabs-custom .nav-link {
    width: 100%;
    padding: 1.5rem 2rem;
    border: none;
    background: transparent;
    color: var(--primary-color-solid);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 4px solid transparent;
    cursor: pointer;
}

.nav-tabs-custom .nav-link:hover {
    color: var(--secondary-color);
    background: rgba(244, 208, 63, 0.1);
}

.nav-tabs-custom .nav-link.active {
    color: var(--primary-color-solid);
    background: #ffffff;
    border-bottom-color: var(--secondary-color);
    font-weight: 700;
    box-shadow: 0 -4px 15px rgba(244, 208, 63, 0.2);
}

/* Tab content */
.tab-content-modern {
    background: #ffffff;
    padding: 3rem;
}

.content-wrapper {
    line-height: 1.8;
    color: #4a5568;
}

.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
    color: var(--primary-color-solid);
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.content-wrapper h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.75rem;
    display: inline-block;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--secondary-color);
}

.content-wrapper p {
    margin-bottom: 1.25rem;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.content-wrapper li {
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg,
            rgba(244, 208, 63, 0.05) 0%,
            #f8f9fa 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.content-wrapper li:hover {
    background: rgba(244, 208, 63, 0.15);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.2);
}

/* ========================================
   RESULTS HEADER
   ======================================== */

.results-header {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.results-count h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color-solid);
    margin-bottom: 0.5rem;
}

.results-count p {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

/* ========================================
   UNIVERSITY CARDS
   ======================================== */

.university-results-grid {
    display: grid;
    gap: 2rem;
}

.university-card-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    overflow: hidden;
    position: relative;
}

/* Top accent */
.university-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.university-card-modern:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 50px rgba(244, 208, 63, 0.3),
        0 0 40px rgba(244, 208, 63, 0.2);
    transform: translateY(-8px);
}

.university-card-modern:hover::before {
    opacity: 1;
}

/* Card layout */
.university-card-inner {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 0;
}

/* Logo section */
.university-logo-section {
    background: linear-gradient(135deg,
            var(--accent-light) 0%,
            #ffffff 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 3px solid rgba(244, 208, 63, 0.3);
}

.logo-wrapper {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 15px rgba(45, 40, 85, 0.1);
    transition: all 0.3s ease;
}

.university-card-modern:hover .logo-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(244, 208, 63, 0.4);
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* University info */
.university-info-section {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.university-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color-solid);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.university-card-modern:hover .university-header h3 {
    color: var(--secondary-color);
}

/* Meta info */
.university-meta-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 10px 18px;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(244, 208, 63, 0.2);
    transform: translateY(-2px);
}

.meta-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.meta-item span {
    color: #6c757d;
    font-size: 0.95rem;
}

.meta-item strong {
    color: var(--primary-color-solid);
    font-weight: 700;
}

/* Action buttons */
.university-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-action {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    color: var(--primary-color-solid);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.btn-primary-action:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 208, 63, 0.4);
}

.btn-secondary-action {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary-action:hover {
    background: var(--secondary-color);
    color: var(--primary-color-solid);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

/* ========================================
   SIDEBAR FILTER
   ======================================== */

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.filter-card {
    background: white;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.filter-card h4 {
    color: var(--primary-color-solid);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.form-label {
    color: var(--primary-color-solid);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.15);
    outline: none;
}

/* ========================================
   NO RESULTS STATE
   ======================================== */

.no-results-state {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 20px;
    border: 3px dashed rgba(244, 208, 63, 0.4);
}

.no-results-icon {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    opacity: 0.3;
}

.no-results-state h4 {
    font-size: 1.75rem;
    color: var(--primary-color-solid);
    margin-bottom: 1rem;
    font-weight: 700;
}

.no-results-state p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 10px;
}

.page-link {
    border: 2px solid var(--secondary-color);
    color: var(--primary-color-solid);
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color-solid);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            var(--gold-accent) 100%);
    border-color: var(--secondary-color);
    color: var(--primary-color-solid);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 992px) {
    .study-hero h1 {
        font-size: 2.5rem;
    }

    .university-card-inner {
        grid-template-columns: 1fr;
    }

    .university-logo-section {
        border-right: none;
        border-bottom: 3px solid rgba(244, 208, 63, 0.3);
        padding: 2rem;
    }

    .logo-wrapper {
        height: 140px;
    }

    .sidebar-sticky {
        position: static;
        margin-top: 2rem;
    }

    .nav-tabs-custom .nav-link {
        padding: 1.25rem 1.5rem;
    }

    .tab-content-modern {
        padding: 2rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .study-hero {
        min-height: 250px;
        padding: 3rem 0;
    }

    .study-hero h1 {
        font-size: 2rem;
    }

    .study-in-page-container {
        padding: 20px 0;
    }

    .results-header {
        padding: 20px;
    }

    .results-count h2 {
        font-size: 1.5rem;
    }

    .university-info-section {
        padding: 1.5rem;
    }

    .university-header h3 {
        font-size: 1.25rem;
    }

    .university-meta-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .university-actions {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
    }

    .nav-tabs-custom {
        flex-direction: column;
    }

    .nav-tabs-custom .nav-item {
        width: 100%;
    }

    .tab-content-modern {
        padding: 1.5rem;
    }

    .content-wrapper h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */

@media (max-width: 576px) {
    .study-hero h1 {
        font-size: 1.75rem;
    }

    .logo-wrapper {
        height: 120px;
    }

    .university-header h3 {
        font-size: 1.1rem;
    }

    .btn-action {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .filter-card {
        padding: 20px;
    }

    .no-results-state {
        padding: 3rem 1.5rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.university-card-modern {
    animation: fadeIn 0.6s ease forwards;
}

.university-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.university-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.university-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.university-card-modern:nth-child(4) {
    animation-delay: 0.4s;
}



/* ========================================
   BLOG PAGE STYLES
   ======================================== */

/* ========================================
   Header Section (Featured Image + Title)
   ======================================== */
.header-listing-details {
    position: relative;
    height: 400px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
}

.header-listing-details h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-listing-details .d-flex {
    font-size: 1rem;
}

.header-listing-details .d-flex i {
    margin-right: 5px;
}

.header-listing-details .d-flex span {
    font-weight: 500;
}

/* ========================================
   Main Blog Content
   ======================================== */
.blog-content {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #333;
    margin-top: 30px;
    /* font-family: 'Roboto', sans-serif; */
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    font-weight: 700;
    color: #0f172a;
}

.blog-content p {
    margin-bottom: 1.25rem;
}

.blog-content ul,
.blog-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* ========================================
   Share Section
   ======================================== */
.blog-content .mt-5 {
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
}

.blog-content .mt-5 h4 {
    font-weight: 600;
    font-size: 1.25rem;
    color: #333;
}

.blog-content .mt-5 .d-flex {
    gap: 15px;
}

/* ========================================
   Related Articles Section
   ======================================== */
.related-articles h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}

.related-articles .card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-articles .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.related-articles .card img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: cover;
    height: 180px;
}

.related-articles .card-body {
    padding: 20px;
}

.related-articles .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.related-articles .card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.related-articles .btn-outline-primary {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.related-articles .btn-outline-primary:hover {
    background-color: #2563eb;
    color: white;
}

/* ========================================
   Sidebar Section
   ======================================== */
.details-widget {
    background-color: #f8f9fd;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.details-widget .widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.details-widget ul {
    list-style-type: none;
    padding-left: 0;
}

.details-widget ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.details-widget ul li a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.details-widget ul li a:hover {
    color: #0f172a;
}



/* General Button Styles */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    font-size: 0.9rem;
    /* Default size */
    text-decoration: none;
    border: none;
}

/* Primary Button Color */
.btn-primary {
    background: var(--clr-primary);
    color: white;
    border: 1px solid #2563eb;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--clr-primary);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

/* Adjusting the .btn-lg class to make it smaller */
.btn-lg {
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 3px;
    width: 300px;
    border: none;
}

/* ========================================
   ENHANCED UNIVERSITY CARDS - MODERN DESIGN
   ======================================== */

.university-results-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.uni-card-enhanced {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.uni-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uni-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: #d1d5db;
}

.uni-card-enhanced:hover::before {
    opacity: 1;
}

.uni-card-content {
    display: flex;
    align-items: stretch;
}

/* Logo Area */
.uni-logo-area {
    flex: 0 0 240px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e7eb;
    position: relative;
}

.uni-logo-frame {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #f3f4f6;
}

.uni-card-enhanced:hover .uni-logo-frame {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    border-color: #dbeafe;
    transform: scale(1.03);
}

.uni-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Info Area */
.uni-info-area {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.uni-main-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.uni-title-link {
    text-decoration: none;
    display: block;
}

.uni-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.uni-title-link:hover .uni-title {
    color: #2563eb;
}

/* Meta Row */
.uni-meta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.uni-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.875rem;
    color: #4b5563;
    transition: all 0.2s ease;
}

.uni-meta-badge:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.uni-meta-icon {
    width: 14px;
    height: 14px;
    color: #2563eb;
    flex-shrink: 0;
}

.uni-meta-badge strong {
    color: #111827;
    font-weight: 700;
}

/* Actions Row */
.uni-actions-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.uni-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1;
}

.uni-btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.uni-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.uni-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.uni-btn-primary:active {
    transform: translateY(0);
}

.uni-btn-secondary {
    background: #ffffff;
    color: #2563eb;
    border-color: #2563eb;
}

.uni-btn-secondary:hover {
    background: #eff6ff;
    border-color: #1d4ed8;
    color: #1d4ed8;
    transform: translateY(-2px);
}

.uni-btn-secondary:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .uni-card-content {
        flex-direction: column;
    }

    .uni-logo-area {
        flex: 0 0 auto;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 1.5rem;
    }

    .uni-logo-frame {
        height: 140px;
    }

    .uni-info-area {
        padding: 1.5rem;
    }

    .uni-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .uni-actions-row {
        flex-direction: column;
    }

    .uni-btn {
        width: 100%;
    }

    .uni-meta-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .uni-meta-badge {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Animation for cards appearing */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.uni-card-enhanced {
    animation: fadeInUp 0.5s ease-out backwards;
}

.uni-card-enhanced:nth-child(1) {
    animation-delay: 0.05s;
}

.uni-card-enhanced:nth-child(2) {
    animation-delay: 0.1s;
}

.uni-card-enhanced:nth-child(3) {
    animation-delay: 0.15s;
}

.uni-card-enhanced:nth-child(4) {
    animation-delay: 0.2s;
}

.uni-card-enhanced:nth-child(5) {
    animation-delay: 0.25s;
}


/* ========================================
   LATEST NEWS WIDGET - SIDEBAR
   ======================================== */

.latest-news-widget {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.latest-news-widget .widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.latest-news-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.news-card-widget {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.news-card-widget:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-card-widget:first-child {
    padding-top: 0;
}

.news-card-widget:hover {
    transform: translateX(4px);
}

.news-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
    cursor: pointer;
}

.news-card-widget:hover .news-title {
    color: #2563eb;
}

.news-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.news-icon {
    width: 14px;
    height: 14px;
    color: #9ca3af;
    flex-shrink: 0;
}

.news-date {
    font-size: 0.8125rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .latest-news-widget {
        margin-top: 1.5rem;
    }
}


/* Latest News Widget Link Wrapper */
.news-card-widget-link {
    text-decoration: none;
    display: block;
}

.news-card-widget-link:hover {
    text-decoration: none;
}

.no-news-message {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    padding: 1rem;
    margin: 0;
}
