/* ================================================
   AITRIFEX - Premium Modern Theme
   Full Style CSS with Root Colors
   ================================================ */

:root {
    --primary: #dfb652; 
    --primary-hover: #cea337;
    --secondary: #1f2c26;
    --secondary-hover: #2a3d35;
    --dark: #0f1419;
    --light: #f8f9fa;
    --gray: #e9ecef;
    --gray-dark: #6c757d;
    --text: #111827;
    --text-light: #6b7280;
    --white: #ffffff;
    --success: #10b981;
    --info: #3b82f6;
    --light: #ffffff;
    --card-special: #f5f5f5;
    --btn-primary: linear-gradient(to bottom, #f7d781 0%, #d3a13b 100%);
    --btn-primary-hover: linear-gradient(to bottom, #fdebb3 0%, #e3b95f 100%);
    --general-gradient: linear-gradient(135deg, #d4a01e, #e6b429);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow: auto;
}

body {
    font-family: 'Cinzel', serif; 
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden !important;
    line-height: 1.6;
}

p, span, li, a {
    font-family: 'Montserrat', sans-serif !important;
}
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.text-secondary {
    color: var(--secondary) !important;
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */

.navbar {
    background: var(--white) !important;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.nav{
    display: flex;
    gap: 15px;
}
.navbar-brand {
    color: var(--primary) !important;
    font-weight: 800;
    font-size: 1.4rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.navbar-brand img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.navbar-brand:hover {
    opacity: 0.85;
}

/* Navigation Links */
.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* Underline Effect - Only for Non-Dropdown Links */
.nav-item:not(.dropdown) .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-item:not(.dropdown) .nav-link:hover::after {
    width: 60%;
}

/* Active Menu Item */
.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.nav-item:not(.dropdown) .nav-link.active::after {
    width: 60%;
}

/* ================================================
   DROPDOWN STYLING - DESKTOP
   ================================================ */

/* Dropdown Container */
.navbar .dropdown {
    position: relative;
}

/* Dropdown Menu */
.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 240px;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    background-color: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(1, 34, 79, 0.15);
}

.navbar .dropdown-menu.show {
    display: block;
}

/* Dropdown Items */
.navbar .dropdown-item {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 0.75rem 1.5rem;
    clear: both;
    font-weight: 500;
    color: var(--text-light);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.navbar .dropdown-item i {
    color: var(--secondary);
    font-size: 0.9rem;
    width: 20px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    color: var(--secondary);
    background-color: rgba(223, 182, 82, 0.1);
    border-left-color: var(--secondary);
}

.navbar .dropdown-item:active {
    color: var(--primary);
    background-color: var(--secondary);
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
}

/* Desktop Hover Dropdown */
@media (max-width: 786px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   BUTTONS
   ================================================ */

.btn-primary {
    background: var(--btn-primary) !important;
    border: 1px solid #b8860b !important;
    color: #000000 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 8px; 
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    
}

.btn-secondary {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    font-family: 'Montserrat', sans-serif;
    color: var(--light) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 2rem;
    border-radius: 8px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    
}

.btn-light {
    background-color: var(--light) !important;
    border-color: var(--white) !important;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark) !important;
    font-weight: 600;
    border-radius: 8px; 
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    
    
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #f7d781 0%, #c09236 100%) !important;
    border-color: var(--primary-hover) !important;
    font-family: 'Montserrat', sans-serif;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover) !important;
    border-color: var(--secondary-hover) !important;
    font-family: 'Montserrat', sans-serif;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 34, 79, 0.25);
}

.btn-light:hover {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    font-family: 'Montserrat', sans-serif;
    color: var(--light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 179, 15, 0.25);
}

.btn-outline-primary {
    color: var(--dark) !important;
    border: 1px solid var(--dark) !important;
    border-color: var(--dark) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 8px; 
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    
}

.btn-outline-primary:hover {
    background-color: var(--dark) !important;
    color: var(--white) !important;
    font-family: 'Montserrat', sans-serif;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-outline-light {
    color: var(--white) !important;
    border-color: var(--white) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 2rem;

}

.btn-outline-light:hover {
    background-color: var(--white) !important;
    color: var(--secondary) !important;
    font-family: 'Montserrat', sans-serif;
    border-color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-plain {
    color: var(--secondary) !important;
    border: 1px solid var(--gray) !important;
}

.btn-plain:hover {
    color: var(--text-light) !important;
}


/* ================================================
   NAVBAR TOGGLE BUTTON
   ================================================ */

.navbar-toggler {
    border-color: var(--primary);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(1, 34, 79, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(1, 34, 79, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================================================
   NAVBAR STICKY
   ================================================ */

.navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(1, 34, 79, 0.12);
}

/* ================================================
   MOBILE NAVIGATION - COMPLETE FIX
   ================================================ */

@media (max-width: 991px) {
    /* Logo Size */
    .navbar-brand img {
        height: 50px;
    }
    
    /* Collapse Menu */
    .navbar-collapse {
        margin-top: 1rem;
        padding-bottom: 1rem;
    }
    
    /* Navigation Items - Left Aligned */
    .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Navigation Links Mobile */
    .nav-link {
        padding: 0.75rem 1rem !important;
        width: 100%;
        text-align: left;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Remove hover underline on mobile */
    .nav-item:not(.dropdown) .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background-color: rgba(1, 34, 79, 0.05);
        border-radius: 6px;
    }
    
    /* Dropdown Container Mobile */
    .navbar .dropdown {
        width: 100%;
    }
    
    /* Dropdown Arrow Mobile */
    .dropdown .nav-link .dropdown-arrow {
        display: inline-block !important;
        margin-left: auto;
    }
    
    /* Dropdown Menu Mobile */
    .navbar .dropdown-menu {
        position: static;
        float: none;
        background-color: var(--light);
        margin-left: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
        border: 1px solid var(--gray);
        box-shadow: none;
    }
    
    /* Dropdown Items Mobile */
    .navbar .dropdown-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-left: 3px solid transparent;
    }
    
    .navbar .dropdown-item:hover {
        background-color: rgba(223, 182, 82, 0.15);
        border-left-color: var(--secondary);
    }
    
    /* Join Now Button Mobile */
    .nav-item.ms-lg-2 {
        margin-left: 0 !important;
        margin-top: 1rem;
        width: 100%;
    }
    
    .nav-item.ms-lg-2 .btn {
        width: 100%;
        text-align: center;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand img {
        height: 45px;
    }
}

/* ================================================
   1. HERO SECTION
   ================================================ */

/* Hero Section */
        .hero-section {
            position: relative;
            min-height: 600px;
            background: linear-gradient(135deg, rgba(245, 240, 230, 0.85), rgba(235, 225, 210, 0.85)),
                url('../images/map.svg');
            background-repeat: no-repeat;
            
            align-items: center;
            padding: 80px 0;
            overflow: hidden;
        }
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px; 
    background: linear-gradient(to bottom, transparent,rgba(255, 255, 255, 0.3),rgba(255, 255, 255, 0.7),#ffffff);
    z-index: 2;
    pointer-events: none;
}
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(218, 165, 32, 0.1), transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(184, 134, 11, 0.1), transparent 50%);
            pointer-events: none;
        }

        .container-hero {
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
      /* CTA Buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        /* Hero Content */
        .hero-content {
            text-align: center;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
            letter-spacing: -1px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .hero-subtitle {
            font-size: 1.75rem;
            color: var(--dark);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.4;
        }

    
        /* Feature Cards */
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 160, 30, 0.2);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 2.5rem;
        }

        .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, #d4a01e, #e6b429);
            color: white;
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, #d4a01e, #e6b429);
            color: white;
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, #d4a01e, #e6b429);
            color: white;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--dark);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.25rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-hero {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .feature-cards {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content > * {
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-title {
            animation-delay: 0.1s;
        }

        .hero-subtitle {
            animation-delay: 0.2s;
        }

        .hero-buttons {
            animation-delay: 0.3s;
        }

        .feature-cards {
            animation-delay: 0.4s;
        }
/* ================================================
   2. PROGRAMS SECTION
   ================================================ */

.programs-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark);
    max-width: 600px;
    margin: 0 auto;
    display: inline;
}

.powered-tag{
    display: inline;
}

.program-card {
    background: var(--white) !important;
    border: 1px solid var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(1, 34, 79, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.program-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(1, 34, 79, 0.12);
    transform: translateY(-8px);
}

.program-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-img {
    transform: scale(1.1);
}

.program-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.program-tag {
    background: var(--primary);
    color: var(--dark);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.program-tag.bg-secondary {
    background: var(--secondary);
    color: var(--primary);
}

.program-tag.bg-success {
    background: var(--success);
    color: var(--white);
}

.program-content {
    padding: 2rem;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.program-icon.bg-secondary {
    background: var(--secondary);
    color: var(--primary);
}

.program-icon.bg-info {
    background: var(--info);
    color: var(--white);
}

.program-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.program-content p {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.program-features li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.9rem;
}

.program-features i {
    color: var(--success);
    margin-right: 0.5rem;
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary);
}

/* ================================================
   AN OFFICIAL EVENTS PARTNER OF SECTION - UPDATED
   ================================================ */

.partner-logos-section-1 {
    background-color: #fdfdfd !important;
    margin: 50px 0px;
}

.partner-label-1 {
    font-size: 1.1rem;
    white-space: nowrap;
}

.partner-item-1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img-1 {
    max-height: 40px; 
    width: auto;
    transition: all 0.3s ease;
}

.logo-img-1:hover {
    filter: grayscale(0%); 
    opacity: 1;
    transform: scale(1.05);
}

.main-logo-1 {
    max-height: 45px; 
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-label-1 {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    .logo-img-1 {
        max-height: 25px; 
    }

    .gap-4-1 {
        gap: 1.5rem !important;
    }
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Premium shine overlay - NO BLUR */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.about-image-wrapper:hover::before {
    opacity: 1;
}

.about-image-wrapper:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.about-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 10px 30px -10px var(--primary) !important;
    filter: brightness(1.1) saturate(1.1);
}

.section-title-2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark) !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}



/* Responsive Design */
@media (max-width: 991px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
}

@media (max-width: 575px) {
    .about-features .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ================================================
   4. TESTIMONIAL SECTION - 3 Column Grid
   ================================================ */

.testimonial-section {
    padding: 6rem 0;
    background: var(--secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>') repeat;
    opacity: 0.05;
}

.testimonial-section .container-lg {
    position: relative;
    z-index: 1;
}

.section-badge-light {
    display: inline-block;
    background: rgba(223, 182, 82, 0.2);
    color: var(--secondary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid var(--secondary);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(223, 182, 82, 0.3);
    border-color: var(--secondary);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary) !important;
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 0.2rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: auto;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray);
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    flex-shrink: 0;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}



/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-card {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 4rem 0;
    }

    .testimonial-card {
        padding: 1.75rem;
        min-height: 350px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .row.g-4 {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.5rem;
        min-height: 320px;
    }

    .quote-icon {
        font-size: 2rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}


/* ================================================
 WHY CHOOSE SECTION - ENHANCED 4 CARDS
   ================================================ */

.why-choose-us {
    background-color: #f8f9fa;
    padding: 8rem !important;
}

.why-choose-us .card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.why-choose-us .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Halka background icon ke liye */
.why-choose-us .icon-box {
    width: 70px; 
    height: 70px; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #d4a01e, #e6b429);
    color: #ffffff;
    transition: all 0.3s ease;
}

/* ================================================
   EVENTS SECTION
   ================================================ */

.events-section-courses {
    background: var(--light);
    padding: 8rem !important;
}

.events-section {
    background: var(--light);
}

.event-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary);
    color: var(--primary);
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.event-month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.event-image {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

.event-content {
    padding: 1.5rem;
}

.event-category {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.event-category.bg-secondary {
    background: var(--secondary);
    color: var(--primary);
}

.event-category.bg-success {
    background: var(--success);
}

.event-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.event-meta span {
    display: flex;
    align-items: center;
}

.event-meta i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

/* ================================================
   7. STATS SECTION (MODERNIZED)
   ================================================ */

.stats-section {
    padding: 6rem 0; 
background: linear-gradient(to bottom, #fbeaa2 0%,#e1b845 100%);
    position: relative;
    overflow: hidden;
}

/* Background pattern from the first snippet */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.stat-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1; /* Ensures text stays above the pattern */
}

/* Float effect on hover */
.stat-item:hover {
    transform: translateY(-8px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    /* Soft glowing shadow */
    box-shadow: 0 8px 25px rgba(223, 182, 82, 0.3); 
}

/* Scale and Rotate effect on hover */
.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(360deg);
}

.stat-item h3 {
    font-size: 3.2rem; /* Matches .stat-number */
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-bar {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
}





/* ================================================
   ABOUT PAGE STYLES
   ================================================ */

/* About Hero Section */
.about-hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero-badge-2 {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-stats-mini {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-mini-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-mini-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.about-hero-image {
    position: relative;
}

.hero-badge-float {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.hero-badge-float i {
    font-size: 1.5rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: var(--white);
}

.mission-card {
    background: var(--card-special);
    padding: 3rem;
    border-radius: 16px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(1, 34, 79, 0.1);
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--general-gradient);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}



.mission-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.mission-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--text);
    font-weight: 500;
}

.mission-list i {
    color: var(--success);
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Our Story Section */
.our-story-section {
    padding: 6rem 0;
    background: var(--light);
}

.story-image-wrapper {
    position: relative;
}

.story-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--general-gradient);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.story-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-milestones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.milestone-item {
    background: var(--card-special);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--dark);
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.milestone-desc {
    font-size: 0.95rem;
    color: var(--text);
    font-family: 'Montserrat', sans-serif !important;
}

/* What We Do Section */
.what-we-do-section {
    padding: 6rem 0;
    background: var(--white);
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 160, 30, 0.2);
    height: 100%;
}

.service-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(1, 34, 79, 0.1);
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--general-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.service-icon.bg-secondary {
    background: var(--secondary);
    color: var(--primary);
}

.service-icon.bg-success {
    background: var(--success);
    color: var(--white);
}

.service-icon.bg-info {
    background: var(--info);
    color: var(--white);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f7e6a4 0%, var(--primary) 30%, #f8f1d9 100%);
}

.section-badge-light {
    display: inline-block;
    background: rgba(223, 182, 82, 0.2);
    color: var(--secondary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid var(--secondary);
}

.value-card {
    background: rgb(1 34 79 / 8%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(223, 182, 82, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    color: var(--secondary);
    
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .story-milestones {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-section,
    .mission-vision-section,
    .our-story-section,
    .what-we-do-section,
    .values-section,
    .team-preview-section {
        padding: 4rem 0;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-stats-mini {
        gap: 1rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .about-cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-cta-section .btn {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ================================================
   CONTACT PAGE STYLES
   ================================================ */

/* Contact Hero Section */
.contact-hero-section {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, rgba(245, 240, 230, 0.85), rgba(235, 225, 210, 0.85)),url('../images/map.svg');
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>') repeat;
    opacity: 0.1;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Main Section */
.contact-main-section {
    padding: 6rem 0;
    background: var(--white);
}

/* Contact Information */
.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(223, 182, 82, 0.1);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--general-gradient);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.contact-info-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--secondary);
}

/* Social Links */
.contact-social-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray);
}

.contact-social-links h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.social-icons-contact {
    display: flex;
    gap: 1rem;
}

.social-icons-contact a {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-icons-contact a:hover {
    background: var(--primary-hover);
    color: var(--secondary);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(1, 34, 79, 0.1);
    border: 2px solid var(--gray);
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif !important;
}
.form-check-label{
    font-family: 'Montserrat', sans-serif !important;
}

.contact-input {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif !important;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(223, 182, 82, 0.25);
    outline: none;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .contact-input {
    padding-right: 3rem;
}

.input-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-size: 1.1rem;
}

textarea.contact-input {
    resize: vertical;
    min-height: 150px;
}

select.contact-input {
    cursor: pointer;
}

/* Submit Button */
.contact-form button[type="submit"] {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* Alert Messages */
.alert {
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

/* Map Section */
.contact-map-section {
    padding: 4rem 0;
    background: var(--light);
}

.map-wrapper {
    box-shadow: 0 8px 30px rgba(1, 34, 79, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fbeaa2 0%,#e1b845 100%);
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.15rem !important;
    color: var(--dark);
    margin-bottom: 2rem;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-wrapper {
        position: static;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 4rem 0 2rem;
    }

    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-main-section {
        padding: 4rem 0;
    }

    .contact-section-title {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .contact-map-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 1.8rem;
    }

    .contact-info-item {
        padding: 1rem;
    }

    .social-icons-contact a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ================================================
   WORKSHOPS PAGE STYLES
   ================================================ */

/* Featured Workshop Section */
/* Featured Workshop Section */
.featured-workshop-section {
    padding: 4rem 0;
    background: var(--light);
}

.featured-workshop-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(1, 34, 79, 0.15);
    height: 600px;
}

.featured-workshop-card .row {
    height: 100%;
}

.featured-workshop-card .col-lg-6:first-child {
    height: 100%;
    padding: 0;
}

.featured-workshop-card .col-lg-6:last-child {
    padding: 0;
}

.featured-workshop-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.workshop-badge-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    z-index: 10;
}

.featured-workshop-content {
    padding: 3rem;
}

.workshop-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
}

.meta-item i {
    color: var(--primary);
}

.workshop-type-badge {
    display: inline-block;
    background: rgba(223, 182, 82, 0.15);
    color: var(--secondary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid var(--secondary);
}

.featured-workshop-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.featured-workshop-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .featured-workshop-card {
        height: auto;
    }
    
    .featured-workshop-image {
        min-height: 350px;
    }

    .featured-workshop-content {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .featured-workshop-content {
        padding: 1.5rem;
    }

    .featured-workshop-content h2 {
        font-size: 1.5rem;
    }
}


   /* ================================================
   WEBINARS PAGE - COMPLETE STYLES
   ================================================ */

/* Hero Section */
.webinars-hero-section {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #f7e6a4 0%, var(--primary) 30%, #f8f1d9 100%);
    position: relative;
    overflow: hidden;
}

.webinars-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>') repeat;
    opacity: 0.1;
}

.webinars-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin: 1rem 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.webinars-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* ================================================
   UPCOMING WEBINARS SECTION
   ================================================ */
.upcoming-webinars-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Webinar Card */
.webinar-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(1, 34, 79, 0.1);
    transition: all 0.4s ease;
    border: 2px solid var(--gray);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.webinar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(1, 34, 79, 0.18);
    border-color: var(--secondary);
}

.webinar-card.featured {
    border-color: var(--secondary);
    box-shadow: 0 6px 30px rgba(223, 182, 82, 0.3);
}

.webinar-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.live-badge {
    background: #ef4444;
    color: var(--white);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.featured-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.webinar-icon-wrapper {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: center;
}

.webinar-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.webinar-card:hover .webinar-icon {
    transform: scale(1.1) rotate(5deg);
}

.webinar-icon {
    background: var(--primary);
}

.webinar-content {
    padding: 1.5rem 2rem;
    flex-grow: 1;
    text-align: center;
}

.webinar-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.webinar-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.webinar-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.webinar-meta span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

.webinar-meta i {
    color: var(--secondary);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.webinar-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--gray);
}

.btn-join-webinar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1.5rem;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-join-webinar:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 34, 79, 0.4);
}

/* ================================================
   REPLAY LIBRARY SECTION
   ================================================ */
.replay-library-section {
    padding: 5rem 0;
    background: var(--light);
}

.section-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Replay Card */
.replay-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(1, 34, 79, 0.1);
    transition: all 0.4s ease;
    border: 2px solid var(--gray);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.replay-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(1, 34, 79, 0.18);
    border-color: var(--secondary);
}

.replay-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.replay-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.replay-card:hover .replay-thumbnail img {
    transform: scale(1.1);
}

.replay-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 34, 79, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.replay-card:hover .replay-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.replay-card:hover .play-button {
    transform: scale(1.1);
}

.replay-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

.replay-content {
    padding: 1.75rem;
    flex-grow: 1;
}

.replay-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.replay-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.replay-meta span {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.replay-meta i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.replay-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.replay-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--gray);
}

.btn-watch-replay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-watch-replay:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 182, 82, 0.4);
}


/* ================================================
   WEBINAR CTA SECTION
   ================================================ */
.webinar-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #073266 0%, #0a3d7a 100%);;
    color: var(--primary);
}

.webinar-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.webinar-cta-section p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.webinar-cta-section .btn-outline-light {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.webinar-cta-section .btn-outline-light:hover {
    background: var(--primary);
    color: var(--white);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.webinar-card,
.replay-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.webinar-card:nth-child(1),
.replay-card:nth-child(1) { animation-delay: 0.1s; }

.webinar-card:nth-child(2),
.replay-card:nth-child(2) { animation-delay: 0.2s; }

.webinar-card:nth-child(3),
.replay-card:nth-child(3) { animation-delay: 0.3s; }


   /* ================================================
   JOIN PAGE - MEMBERSHIP RADIO BUTTON STYLES
   ================================================ */

.membership-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.membership-option {
    position: relative;
}

.membership-option .form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.membership-label {
    cursor: pointer;
    display: block;
    margin: 0;
    height: 100%;
}

.membership-card {
    background: var(--white);
    border: 3px solid var(--gray);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.membership-card.premium {
    border-color: var(--secondary);
}

.premium-badge {
    position: absolute;
    top: -12px;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.membership-option .form-check-input:checked + .membership-label .membership-card {
    border-color: var(--secondary);
    background: rgba(223, 182, 82, 0.05);
    box-shadow: 0 8px 25px rgba(223, 182, 82, 0.25);
    transform: translateY(-5px);
}

.membership-header {
    text-align: center;
    margin-bottom: 1rem;
}

.membership-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.membership-card.premium .membership-icon {
    color: var(--secondary);
}

.membership-header h5 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.membership-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray);
}

.membership-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.membership-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    flex-grow: 1;
}

.membership-features li {
    display: flex;
    align-items: flex-start;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
}

/* Free Membership - Cross Icons (Red) */
.membership-card:not(.premium) .membership-features i {
    color: #ef4444;
    margin-right: 0.75rem;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Premium Membership - Check Icons (Green) */
.membership-card.premium .membership-features i {
    color: var(--success);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Radio Button Custom Indicator */
.membership-option .form-check-input:checked + .membership-label .membership-card::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 10;
}

/* Form Check Label */
.form-check-label {
    color: var(--text);
    font-size: 0.95rem;
}

.form-check-label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.form-check-label a:hover {
    color: var(--secondary);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .membership-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .membership-card {
        padding: 1.5rem;
    }

    .membership-icon {
        font-size: 2.5rem;
    }

    .membership-price {
        font-size: 2rem;
    }

    .membership-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .membership-card {
        padding: 1.25rem;
    }

    .membership-header h5 {
        font-size: 1.1rem;
    }

    .membership-price {
        font-size: 1.8rem;
    }

    .membership-features li {
        font-size: 0.8rem;
    }
}



/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 992px) {
    .webinars-hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .webinars-hero-section {
        padding: 4rem 0 2.5rem;
    }

    .webinars-hero-title {
        font-size: 2rem;
    }

    .upcoming-webinars-section,
    .replay-library-section {
        padding: 3rem 0;
    }

    .webinar-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .webinar-cta-section h2 {
        font-size: 1.75rem;
    }

    .webinar-cta-section .btn {
        width: 100%;
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .webinars-hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .webinar-content h4,
    .replay-content h4 {
        font-size: 1.2rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}



/* ================================================
   POLICIES PAGES - COMBINED STYLES
   Privacy Policy, Terms of Service, Cookie Policy
   ================================================ */

/* ================================================
   POLICY HERO SECTION
   ================================================ */
.policy-hero-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f7e6a4 0%, var(--primary) 30%, #f8f1d9 100%);
    position: relative;
    overflow: hidden;
}

.policy-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>') repeat;
    opacity: 0.1;
}

.policy-badge {
    display: inline-block;
    background: rgba(223, 182, 82, 0.2);
    color: var(--secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.policy-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.policy-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ================================================
   POLICY CONTENT SECTION
   ================================================ */
.policy-content-section {
    padding: 5rem 0;
    background: var(--white);
}

.policy-content-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(1, 34, 79, 0.08);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--gray);
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--secondary);
}

.policy-subsection-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.policy-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-text a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-text a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
}

.policy-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 0.9rem;
}

.policy-list li strong {
    color: var(--primary);
    font-weight: 700;
}

.policy-list li a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.policy-list li a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ================================================
   POLICY ALERT BOX
   ================================================ */
.policy-alert {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.policy-alert i {
    color: #ef4444;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.policy-alert p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

/* Info Alert Variant */
.policy-alert.info {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: var(--info);
}

.policy-alert.info i {
    color: var(--info);
}

/* ================================================
   POLICY CONTACT BOX
   ================================================ */
.policy-contact-box {
    background: var(--light);
    border: 2px solid var(--secondary);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.policy-contact-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.policy-contact-box p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-contact-box p:last-child {
    margin-bottom: 0;
}

.policy-contact-box i {
    color: var(--secondary);
    font-size: 1.1rem;
    width: 20px;
}

.policy-contact-box a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.policy-contact-box a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ================================================
   COOKIE TABLE STYLES
   ================================================ */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--primary);
}

.cookie-table thead th {
    color: var(--white);
    font-weight: 700;
    text-align: left;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
}

.cookie-table tbody tr {
    border-bottom: 1px solid var(--gray);
}

.cookie-table tbody tr:last-child {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: rgba(223, 182, 82, 0.05);
}

.cookie-table tbody td {
    padding: 1rem 1.5rem;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary);
}

/* ================================================
   RELATED POLICIES SECTION
   ================================================ */
.related-policies-section {
    padding: 5rem 0;
    background: var(--light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.policy-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.policy-card {
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.policy-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(1, 34, 79, 0.15);
    transform: translateY(-5px);
}

.policy-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.policy-card:hover .policy-card-icon {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.policy-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.policy-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.policy-arrow {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-card:hover .policy-arrow {
    color: var(--primary);
}

.policy-arrow i {
    transition: transform 0.3s ease;
}

.policy-card:hover .policy-arrow i {
    transform: translateX(5px);
}

/* ============================================
   PARTNERS SECTION/PAGE
   ============================================ */
.partners-premium-section {
    background: var(--white) !important;
    position: relative;
    overflow: hidden;
}

.partners-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 1;
}

.partners-showcase {
    padding: 1rem 0;
    position: relative;
}

.partner-items {
    --logo-gap: 3rem;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.partner-item:hover {
    transform: translateY(-10px);
}

.partner-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 100px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.partner-item:hover .partner-logo-wrapper {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(212, 160, 30, 0.15);
    transform: scale(1.05);
}

.logo-img {
    max-height: 60px;
    max-width: 140px;
    width: auto;
    height: auto;
    filter: grayscale(0.3) contrast(1.2);
    transition: all 0.4s ease;
    object-fit: contain;
}

.partner-item:hover .logo-img {
    filter: grayscale(0) contrast(1.1) brightness(1.05);
}

.main-logo {
    max-height: 70px !important;
    filter: grayscale(0) !important;
}

.partner-highlight-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary), gold);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(212, 160, 30, 0.4);
    animation: pulse-gold 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes pulse-gold {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.partner-label {
    margin-top: 1.5rem;
    font-size: 0.90rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif !important;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-label {
    color: var(--primary);
    opacity: 1;
}

.impact-stat-card {
    background: var(--white);
    border-radius: 24px;
    padding: 8.5rem 2rem;
    text-align: center;
    height: 100%;
    border: 2px solid rgba(212, 160, 30, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.impact-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--general-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.impact-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(212, 160, 30, 0.2);
    border-color: var(--primary);
}

.impact-stat-card:hover::before {
    transform: scaleX(1);
}

.impact-stat-card.featured {
    background: linear-gradient(145deg, var(--white), rgba(212, 160, 30, 0.03));
    border-color: rgba(212, 160, 30, 0.2);
}

.stat-icon-circle {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--general-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 12px 30px rgba(212, 160, 30, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}



.stat-counter {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
    background: var(--dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
}


.stat-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-family: 'Cinzel', serif;
}

.stat-progress {
    height: 4px;
    background: rgba(212, 160, 30, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--general-gradient);
    border-radius: 2px;
    transition: width 2s ease-out;
    box-shadow: 0 0 10px rgba(212, 160, 30, 0.5);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .partner-logo-wrapper { width: 140px; height: 90px; }
    .logo-img { max-height: 50px; }
    .main-logo { max-height: 60px !important; }
    .stat-counter { font-size: 3rem; }
}

@media (max-width: 768px) {
    .partner-item { padding: 1rem; }
    .partner-logo-wrapper { width: 120px; height: 80px; }
    .logo-img { max-height: 45px; }
    .stat-counter { font-size: 2.5rem; }
}

@media (max-width: 576px) {
    .partners-showcase { padding: 2rem 0; }
    .partner-logo-wrapper { width: 100px; height: 70px; }
    .stat-counter { font-size: 2.2rem; }
}


/* ================================================
   LEARNING PATHS PAGE CODE
   ================================================ */

.learning-paths-1-section {
    background: var(--white);
}

.learning-paths-1-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(1, 34, 79, 0.08);
    transition: all 0.3s ease;
}


/* Title */
.learning-paths-1-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.learning-paths-1-title i {
    color: var(--primary);
    font-size: 1.6rem;
}

/* Blocks */
.learning-paths-1-block h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
   font-family: 'Montserrat', sans-serif !important;
}


.learning-paths-1-block strong {
    color: var(--dark);
    font-weight: 700;
}

   /* ============================================
   CERTIFICATE PAGE
   ============================================ */

.preview-section {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}


@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Icon box styling */
 .rounded-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--general-gradient);
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(253, 149, 13, 0.1);
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .certificate-frame {
        transform: none; /* Mobile pe rotation hata di */
        margin-top: 30px;
    }
}
    .impact-stat-card-1{
    background: var(--white);
    border-radius: 24px;
    padding: 8.5rem 2rem 4.0rem 2rem !important;
    text-align: center;
    height: 100%;
    border: 2px solid rgba(212, 160, 30, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);


    }
    .impact-stat-card-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--general-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.impact-stat-card-1:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(212, 160, 30, 0.2);
    border-color: var(--primary);
}

.impact-stat-card-1:hover::before {
    transform: scaleX(1);
}

.impact-list{
       text-align: left;
    }
    
/* ============================================
   HOW IT WORKS SECTION STYLING
   ============================================ */

/* Numbers ka style (01, 02, 03) */
.display-4.text-light {
    font-size: 5rem;
    font-weight: 900 !important;
    background: linear-gradient(to bottom, #e1b845 0%,#fbeaa2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

/* Card hover effect */
.how-it-works-item {
    transition: transform 0.3s ease, shadow 0.3s ease;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.how-it-works-item:hover {
    transform: translateY(-10px);
}

.how-it-works-item:hover .display-4.text-light {
    background: linear-gradient(to bottom, #fbeaa2 0%,#e1b845 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

/* Heading ka style */
.how-it-works-item h5 {
    color: var(--primary-color); /* Aapka theme color */
    font-weight: 700;
    margin-top: 10px;
    position: relative;
}

/* Steps ke darmiyan line (Optional: Tablet/Desktop ke liye) */
@media (min-width: 768px) {
    .how-it-works-item::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -15%;
        width: 30%;
        border-top: 2px dashed #dee2e6;
        z-index: -1;
    }
    .col-md-4:last-child .how-it-works-item::after {
        display: none;
    }
}

/* ================================================
   STUDENTS PAGE CODE
   ================================================ */

.title-short-s{
    font-size: 1.7rem;
}

.title-short-s-1{
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
}


/* Who This Path Is For Chips */
.target-chip {
    padding: 12px 24px;
    background: var(--btn-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif !important;
}

.target-chip:hover {
    background: linear-gradient(to bottom, #f7d781 0%, #c09236 100%) !important;
    transform: translateY(-3px);
}

/* Learning Level Cards */
.level-card {
background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 160, 30, 0.2);
    height: 100%;
}

.level-card:hover {
   border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(1, 34, 79, 0.1);
    transform: translateY(-10px);
}

.level-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--btn-primary);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif !important;
    
}

.level-indicator {
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif !important;
}


@media (max-width: 768px) {
    .display-5 { font-size: 2rem; }
}

    /* Infinite Skills Slider Styling */
    .skills-slider-section { padding: 60px 0; background: #f8fafc; overflow: hidden; position: relative; }
    .skills-track { display: flex; width: calc(250px * 14); animation: scrollSkills 40s linear infinite; }
    .skills-group { display: flex; gap: 30px; padding-right: 30px; }
    .skill-box { 
        width: 230px; background: #fff; padding: 20px; border-radius: 15px; 
        box-shadow: 0 10px 25px rgba(0,0,0,0.05); display: flex; align-items: center; 
        gap: 15px; flex-shrink: 0; border: 1px solid #eef2f7; transition: 0.3s;
    }
    .skill-box:hover { transform: translateY(-5px); border-color: var(--primary-color); }
    .skill-box i { font-size: 2rem; }
    @keyframes scrollSkills {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-260px * 7)); }
    }

    /* Roadmap Section */
    .road-map-heading {
        font-size: 1.5rem;
    }
    .display-4444444{
        font-size: 2rem;
    }

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    .learning-paths-1-title {
        font-size: 1.5rem;
    }

    .learning-paths-1-block h5 {
        font-size: 1.1rem;
    }

    .learning-paths-1-block p,
    .learning-paths-1-block ul li {
        font-size: 0.9rem;
    }
}


/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 992px) {
    .policy-hero-title {
        font-size: 2.8rem;
    }

    .policy-section-title {
        font-size: 1.7rem;
    }

    .policy-subsection-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .policy-hero-section {
        padding: 4rem 0 3rem;
    }

    .policy-hero-title {
        font-size: 2.2rem;
    }

    .policy-hero-subtitle {
        font-size: 1rem;
    }

    .policy-content-section {
        padding: 3rem 0;
    }

    .policy-content-wrapper {
        padding: 2rem 1.5rem;
    }

    .policy-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .policy-section-title {
        font-size: 1.5rem;
        padding-left: 0.75rem;
    }

    .policy-subsection-title {
        font-size: 1.1rem;
    }

    .policy-text {
        font-size: 0.95rem;
    }

    .policy-list li {
        font-size: 0.95rem;
        padding-left: 1.75rem;
    }

    .policy-contact-box {
        padding: 1.5rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table thead th,
    .cookie-table tbody td {
        padding: 0.75rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .policy-card {
        padding: 2rem;
    }

    .policy-card-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .policy-hero-title {
        font-size: 1.8rem;
    }

    .policy-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .policy-content-wrapper {
        padding: 1.5rem 1rem;
    }

    .policy-section-title {
        font-size: 1.3rem;
    }

    .policy-alert {
        padding: 1rem;
        gap: 0.75rem;
    }

    .policy-alert i {
        font-size: 1.2rem;
    }

    .policy-contact-box {
        padding: 1.25rem;
    }

    .policy-contact-box h4 {
        font-size: 1.1rem;
    }

    .policy-contact-box p {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-table thead th,
    .cookie-table tbody td {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }

    .policy-card {
        padding: 1.5rem;
    }

    .policy-card h4 {
        font-size: 1.2rem;
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {
    .policy-hero-section,
    .related-policies-section {
        display: none;
    }

    .policy-content-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .policy-section {
        page-break-inside: avoid;
    }

    .policy-alert {
        border: 1px solid #ef4444;
    }
}




/* ================================================
   FOOTER - WHITE DESIGN
   ================================================ */

.footer-white {
    background-color: var(--white);
    border-top: 3px solid var(--secondary);
    padding: 0;
}

.footer-logo img {
    max-width: 240px !important;
    height: auto;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif !important;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links li a:hover {
    color: var(--primary-hover);
    padding-left: 8px;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links li a:hover::before {
    width: 5px;
}
/* Footer Logo Link */
.footer-logo a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
}

/* Footer Brand Link in Copyright */
.footer-brand-link {
    color: var(--primary-hover);
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s ease;
}

.footer-brand-link:hover {
    color: var(--secondary);
}

.footer-brand-link strong {
    font-weight: 800;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--secondary);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--secondary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--secondary-hover);
    transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray);
    margin-top: 2rem;
}

.footer-bottom p {
    color: var(--text);
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links li a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: var(--primary-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-white {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bottom {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0 !important;
    }

    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-image-container img {
        margin-top: 2rem;
    }

    .floating-element {
        display: none;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .about-main-image {
        grid-row: auto;
        height: 300px;
    }

    .about-secondary-image {
        height: 200px;
    }

    .about-stats-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }

    .why-content {
        padding-top: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .newsletter-form .form-control {
        border-radius: 50px !important;
        margin-bottom: 1rem;
        width: 100%;
    }

    .newsletter-form .btn {
        border-radius: 50px !important;
        width: 100%;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.3rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .trust-item h4 {
        font-size: 1.3rem;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.min-vh-90 {
    min-height: 90vh;
}

.position-relative {
    position: relative;
}

.gap-3 {
    gap: 1rem;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-lg {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

/* ================================================
   SCROLLBAR STYLING
   ================================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* ================================================
   SCROLL TO TOP BUTTON - FIXED VERSION
   ================================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(1, 34, 79, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-hover);
    color: var(--dark);
    border: 2px solid var(--primary-hover);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(223, 182, 82, 0.7);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.scroll-to-top i {
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1rem;
    }
}



