:root {
    --primary-color: #005145;
    --secondary-color: #f8d249;
    --accent-color: #fde37d;
    --secondary-color-rgb: 248, 210, 73;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --gradient-1: linear-gradient(135deg, #005145 0%, #003d33 100%);
    --gradient-2: linear-gradient(135deg, #f8d249 0%, #d5ae1c 100%);
    --gradient-3: linear-gradient(135deg, #005145 0%, #f8d249 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background: #fff;
}

body.lead-modal-open {
    overflow: hidden;
}

body.aos-disabled [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.floating-cta .btn {
    box-shadow: 0 12px 30px rgba(0, 81, 69, 0.25);
}

.floating-cta-hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.floating-whatsapp {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 0 20px 20px 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4),
        0 0 40px rgba(37, 211, 102, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    text-decoration: none;
    animation: whatsappPulse 2.5s ease-in-out infinite;
    overflow: hidden;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: whatsappShine 3s ease-in-out infinite;
    pointer-events: none;
}

.floating-whatsapp::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 0 20px 20px 0;
    background: linear-gradient(135deg, #25D366, #128C7E, #25D366);
    background-size: 200% 200%;
    z-index: -1;
    animation: whatsappBorderGlow 3s ease-in-out infinite;
    opacity: 0.6;
}

.floating-whatsapp:hover {
    color: white;
    transform: translateY(-50%) translateX(10px) scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6),
        0 0 60px rgba(37, 211, 102, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.4);
    border-radius: 0 25px 25px 0;
    text-decoration: none;
}

.floating-whatsapp:hover::after {
    opacity: 1;
    animation: whatsappBorderGlow 1s ease-in-out infinite;
}

.floating-whatsapp i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-whatsapp:hover i {
    transform: scale(1.15) rotate(15deg);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4),
            0 0 40px rgba(37, 211, 102, 0.2),
            inset 0 2px 8px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6),
            0 0 60px rgba(37, 211, 102, 0.4),
            inset 0 2px 10px rgba(255, 255, 255, 0.4);
    }
}

@keyframes whatsappShine {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 0;
    }
}

@keyframes whatsappBorderGlow {

    0%,
    100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }

    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

/* Hide navbar WhatsApp button on mobile/tablet - already handled by d-none d-lg-block, but adding extra safety */
@media (max-width: 991.98px) {

    .nav-whatsapp-btn,
    .nav-item.d-none.d-lg-block {
        display: none !important;
    }
}

.hero-limited-offer {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 999px;
    border: 2px solid rgba(var(--secondary-color-rgb), 0.45);
    background: linear-gradient(135deg, rgba(0, 81, 69, 0.96) 0%, rgba(0, 61, 51, 0.92) 100%);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 81, 69, 0.4), 0 6px 20px rgba(0, 0, 0, 0.4);
    gap: 10px;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 11;
}

.hero-limited-offer i {
    font-size: 1.15rem;
    color: var(--secondary-color);
}

.hero-limited-offer strong {
    font-weight: 700;
    color: var(--secondary-color);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #005145 0%, #003d33 100%);
}

/* Loading state - show solid background until images load */
.hero-section.hero-loading .hero-slider {
    opacity: 0;
    transition: opacity 0.6s ease-in;
}

/* After loading - show images */
.hero-section:not(.hero-loading) .hero-slider {
    opacity: 1;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-color: #005145;
    will-change: opacity;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 81, 69, 0.5) 0%, rgba(0, 61, 51, 0.7) 100%);
    transition: background 0.5s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Ensure first slide is visible on initial load */
.hero-slider .hero-slide:first-child {
    opacity: 1;
    z-index: 1;
}

/* When slider is initialized, let active class take precedence */
.hero-section:not(.hero-loading) .hero-slide:first-child:not(.active) {
    opacity: 0;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(var(--secondary-color-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--secondary-color-rgb), 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 15;
}

@media (max-width: 768px) {
    .slider-controls {
        padding: 0 15px;
    }
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(var(--secondary-color-rgb), 0.5);
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    padding: 20px 15px;
}

/* Text shadow for better readability on all text elements */
.hero-content-wrapper * {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure content is always visible even during loading */
.hero-section.hero-loading .hero-content-wrapper {
    visibility: visible;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 11;
}

.navbar {
    background: #005145 !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-contact-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-contact-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(248, 210, 73, 0.95) 0%, rgba(213, 174, 28, 0.95) 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-contact-btn i {
    font-size: 1.1rem;
}

.nav-contact-btn:hover,
.nav-contact-btn:focus {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.nav-contact-menu {
    padding: 0.5rem;
    border-radius: 14px;
    border: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    min-width: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.nav-contact-item {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-contact-item+.nav-contact-item {
    margin-top: 0.35rem;
}

.nav-contact-item:hover,
.nav-contact-item:focus {
    background: rgba(0, 81, 69, 0.08);
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 2px rgba(0, 81, 69, 0.15);
    color: var(--primary-color) !important;
}

/* Navbar WhatsApp Button */
.nav-whatsapp-btn {
    width: 44px;
    height: 44px;
    margin-left: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35),
        0 0 20px rgba(37, 211, 102, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    animation: navWhatsappPulse 3s ease-in-out infinite;
}

.nav-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-whatsapp-btn:hover::before {
    width: 120%;
    height: 120%;
}

.nav-whatsapp-btn i {
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-whatsapp-btn:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5),
        0 0 35px rgba(37, 211, 102, 0.3),
        inset 0 1px 5px rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.nav-whatsapp-btn:hover i {
    transform: scale(1.15) rotate(15deg);
}

.nav-whatsapp-btn:focus {
    outline: 2px solid rgba(37, 211, 102, 0.5);
    outline-offset: 3px;
    color: white;
    text-decoration: none;
}

@keyframes navWhatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35),
            0 0 20px rgba(37, 211, 102, 0.15),
            inset 0 1px 3px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45),
            0 0 30px rgba(37, 211, 102, 0.25),
            inset 0 1px 4px rgba(255, 255, 255, 0.35);
    }
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border-color: rgba(var(--secondary-color-rgb), 0.5);
}

.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%28248, 210, 73, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-section .btn-lg {
    padding: 18px 50px;
    font-size: 1.15rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7),
        0 6px 30px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInUpHighlight 1.5s ease-out;
    position: relative;
    z-index: 11;
    letter-spacing: -0.5px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    color: rgba(255, 255, 255, 0.98);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
    position: relative;
    z-index: 11;
}

@keyframes fadeInUpHighlight {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed textGlow animation - using solid color for better visibility */

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.98;
    font-weight: 500;
    animation: fadeInUp 1.8s ease-out 0.3s both;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 4px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 11;
    color: rgba(255, 255, 255, 0.98);
}

/* Special Offer Highlight */
.special-offer-highlight {
    position: relative;
    display: inline-block;
    margin: 30px 0;
    padding: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(248, 210, 73, 0.96) 0%, rgba(255, 196, 86, 0.95) 45%, rgba(255, 148, 56, 0.92) 100%);
    box-shadow: 0 14px 38px rgba(255, 148, 56, 0.35),
        0 0 42px rgba(248, 210, 73, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.65);
    overflow: hidden;
    animation: specialOfferPulse 2s ease-in-out infinite, specialOfferSlideIn 1s ease-out;
    transform: scale(1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 11;
}

.special-offer-highlight:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 52px rgba(255, 148, 56, 0.38),
        0 0 56px rgba(248, 210, 73, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

@keyframes specialOfferPulse {

    0%,
    100% {
        box-shadow: 0 14px 38px rgba(255, 148, 56, 0.32),
            0 0 42px rgba(248, 210, 73, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }

    50% {
        box-shadow: 0 18px 52px rgba(255, 148, 56, 0.38),
            0 0 56px rgba(248, 210, 73, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

@keyframes specialOfferSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.special-offer-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 35px;
    z-index: 2;
}

.special-offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d33 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 81, 69, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
    animation: iconRotate 3s ease-in-out infinite;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.special-offer-highlight:hover .special-offer-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 81, 69, 0.6),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

@keyframes iconRotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.special-offer-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.special-offer-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #5a3b00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 8px rgba(255, 255, 255, 0.35);
    animation: textShimmer 2s ease-in-out infinite;
}

.special-offer-message {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a2b00;
    text-shadow: 0 3px 12px rgba(255, 255, 255, 0.45);
    line-height: 1.3;
}

@keyframes textShimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.special-offer-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    animation: shineMove 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive for Special Offer */
@media (max-width: 768px) {
    .special-offer-highlight {
        margin: 20px 0;
        border-radius: 15px;
    }

    .special-offer-content {
        flex-direction: column;
        gap: 15px;
        padding: 20px 25px;
        text-align: center;
    }

    .special-offer-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .special-offer-label {
        font-size: 0.95rem;
    }

    .special-offer-message {
        font-size: 1.1rem;
    }
}

.btn-primary-custom {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(var(--secondary-color-rgb), 0.4);
}

.btn-primary-custom:hover {
    background: #d5ae1c;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--secondary-color-rgb), 0.5);
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Registration Form */
.registration-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
}

.form-control,
.form-select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 81, 69, 0.1);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-check-label {
    color: var(--dark-color) !important;
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* Highlighted Heading for Important Sections */
.highlighted-heading-wrapper {
    display: inline-block;
    margin-bottom: 25px;
}

.highlighted-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
}

.highlighted-heading::after {
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Card Styles */
.program-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.program-card-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.program-card-content .program-icon {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.program-card-content .program-title {
    margin-bottom: 15px;
    flex-shrink: 0;
}

.program-card-content .course-examples {
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.program-card-content .program-list {
    margin: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 0;
}

.cards-scroll-area {
    position: relative;
    margin: 0 clamp(-2rem, -6vw, -3rem);
    padding: 0 clamp(1rem, 3vw, 2.75rem) clamp(2.5rem, 6vw, 3.25rem);
    overflow: visible;
}

.cards-scroll-track {
    --cards-min-width: 280px;
    --cards-peek: clamp(120px, 18vw, 200px);
    --cards-gap: clamp(1.25rem, 3vw, 2rem);
    --cards-inline-padding: clamp(1rem, 3vw, 2.5rem);
    --cards-visible: 2.4;
    display: flex;
    align-items: stretch;
    gap: var(--cards-gap);
    overflow-x: auto;
    padding-left: var(--cards-inline-padding);
    padding-right: calc(var(--cards-inline-padding) + var(--cards-peek));
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    scroll-snap-type: x proximity;
    scroll-padding-left: var(--cards-inline-padding);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.cards-scroll-track::-webkit-scrollbar {
    display: none;
}

.cards-scroll-track>* {
    scroll-snap-align: start;
    flex: 0 0 calc(100% / var(--cards-visible));
    min-width: var(--cards-min-width);
    max-width: calc(100% / var(--cards-visible));
    align-self: stretch;
    display: flex;
}

.cards-scroll-track::after {
    content: '';
    display: block;
    flex: 0 0 var(--cards-peek);
    min-width: var(--cards-peek);
    height: 1px;
}

.programs-scroll-wrapper {
    --cards-min-width: 320px;
    --cards-peek: clamp(150px, 22vw, 260px);
    --cards-visible: 2.5;
}

.cards-scroll-controls {
    display: inline-flex;
    gap: 0.5rem;
}

.cards-scroll-controls button {
    border: none;
    border-radius: 999px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark-color);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cards-scroll-controls button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
}

.cards-scroll-controls button:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .cards-scroll-controls {
        margin-top: 0.25rem;
    }
}

.ranking-scroll-area {
    --cards-min-width: 260px;
    --cards-peek: clamp(130px, 20vw, 210px);
    --cards-visible: 2.8;
}

.courses-scroll-area {
    --cards-min-width: 340px;
    --cards-peek: clamp(170px, 24vw, 260px);
    --cards-gap: clamp(1.5rem, 4vw, 2.5rem);
    --cards-visible: 1.9;
}

.services-scroll-area {
    --cards-min-width: 280px;
    --cards-peek: clamp(130px, 22vw, 210px);
    --cards-visible: 2.6;
}

/* Smooth scrolling for services track */
.services-scroll-track {
    scroll-behavior: auto;
    scroll-snap-type: none !important;
    /* Disable snap for auto-scroll */
}

/* Smooth scrolling for programs track */
.programs-track {
    scroll-behavior: auto;
    scroll-snap-type: none !important;
    /* Disable snap for auto-scroll */
}

.credentials-row {
    position: relative;
}

.about-section {
    background: #f8f9fa;
}

.about-header .section-title {
    margin-bottom: 20px;
}

.about-description {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.about-promise {
    margin: clamp(2rem, 5vw, 3rem) auto;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 81, 69, 0.95) 0%, rgba(0, 61, 51, 0.95) 100%);
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 81, 69, 0.2);
    max-width: 960px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-promise::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(248, 210, 73, 0.25), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(248, 210, 73, 0.2), transparent 55%);
    pointer-events: none;
}

.about-promise-content {
    position: relative;
    z-index: 2;
}

.about-promise-content h3 {
    font-size: clamp(1.6rem, 3vw, 1.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-promise-content p {
    margin: 0;
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.about-cards-wrapper {
    position: relative;
}

/* Desktop: 4 columns grid */
@media (min-width: 992px) {
    .about-cards-wrapper .about-cards-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(1.5rem, 4vw, 2.2rem);
    }

    .about-cards-wrapper .about-cards-carousel.owl-carousel {
        display: grid !important;
    }

    .about-cards-wrapper .about-cards-carousel .owl-stage-outer,
    .about-cards-wrapper .about-cards-carousel .owl-stage,
    .about-cards-wrapper .about-cards-carousel .owl-item {
        transform: none !important;
        width: 100% !important;
        position: static !important;
    }

    .about-cards-wrapper .about-cards-carousel .owl-dots {
        display: none !important;
    }
}

/* Mobile/Tablet: Owl Carousel */
@media (max-width: 991.98px) {
    .about-cards-wrapper {
        margin: 0 clamp(-1rem, -3vw, -1.5rem);
        padding: 0 clamp(0.75rem, 3vw, 1.5rem) clamp(1.5rem, 4vw, 2rem);
    }

    .about-cards-wrapper .about-cards-carousel .owl-item {
        padding: 0 10px;
    }
}

.about-card {
    background: white;
    border-radius: 18px;
    padding: clamp(1.5rem, 3.4vw, 2rem);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 81, 69, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.about-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    transition: all 0.35s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(0, 81, 69, 0.18);
    border-color: rgba(248, 210, 73, 0.35);
}

.about-card:hover::after {
    border-color: rgba(248, 210, 73, 0.35);
}

.about-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(248, 210, 73, 0.25), rgba(0, 81, 69, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.35s ease;
}

.about-card:hover .about-icon {
    background: var(--gradient-1);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 81, 69, 0.35);
}

.about-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.about-card-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-carousel-wrapper .item {
    padding: 10px;
}

.testimonials-carousel-wrapper .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.testimonials-carousel-wrapper .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(0, 81, 69, 0.3);
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonials-carousel-wrapper .owl-dot.active span {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 1199.98px) {
    .cards-scroll-area {
        margin: 0 clamp(-1.5rem, -4vw, -2rem);
        padding: 0 clamp(0.75rem, 2.5vw, 2rem) clamp(2.25rem, 5vw, 3rem);
    }

    .programs-scroll-wrapper {
        --cards-min-width: 300px;
        --cards-peek: clamp(120px, 20vw, 200px);
    }

    .courses-scroll-area {
        --cards-min-width: 320px;
        --cards-peek: clamp(140px, 22vw, 220px);
    }
}

@media (max-width: 991.98px) {
    .credentials-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: none;
        /* Disable snap for auto-scroll */
        gap: clamp(1.25rem, 4vw, 1.75rem);
        padding-bottom: clamp(1rem, 3vw, 1.5rem);
        scroll-padding-left: clamp(0.75rem, 4vw, 1.5rem);
    }

    .credentials-row::-webkit-scrollbar {
        display: none;
    }

    .credentials-row .credential-col {
        flex: 0 0 clamp(260px, 58vw, 320px);
        max-width: clamp(260px, 58vw, 320px);
        scroll-snap-align: start;
    }

    .cards-scroll-track {
        --cards-peek: clamp(100px, 22vw, 160px);
        --cards-visible: 2.2;
    }

    .programs-scroll-wrapper {
        --cards-min-width: 280px;
        --cards-peek: clamp(110px, 25vw, 180px);
        --cards-visible: 2.4;
    }

    .courses-scroll-area {
        --cards-min-width: clamp(300px, 55vw, 340px);
        --cards-peek: clamp(120px, 28vw, 200px);
        --cards-visible: 1.7;
    }

    .services-scroll-area {
        --cards-min-width: clamp(260px, 48vw, 300px);
        --cards-visible: 2.2;
    }

}

@media (max-width: 767.98px) {
    .about-promise {
        margin: clamp(1.5rem, 6vw, 2.5rem) auto;
        padding: clamp(1.25rem, 5vw, 2rem);
    }

    .about-description {
        font-size: 1rem;
    }

    .cards-scroll-area {
        margin: 0 clamp(-1rem, -3vw, -1.25rem);
        padding: 0 clamp(0.75rem, 4vw, 1.5rem) clamp(2rem, 5vw, 2.5rem);
    }

    .cards-scroll-track {
        --cards-gap: clamp(1rem, 4vw, 1.5rem);
        --cards-peek: clamp(80px, 28vw, 140px);
        --cards-visible: 1.8;
    }

    .programs-scroll-wrapper {
        --cards-min-width: clamp(240px, 70vw, 280px);
        --cards-peek: clamp(90px, 30vw, 140px);
        --cards-visible: 2.1;
    }

    .courses-scroll-area {
        --cards-min-width: clamp(260px, 78vw, 320px);
        --cards-peek: clamp(90px, 32vw, 140px);
        --cards-visible: 1.5;
    }

    .services-scroll-area {
        --cards-min-width: clamp(240px, 72vw, 290px);
        --cards-peek: clamp(85px, 30vw, 130px);
        --cards-visible: 1.9;
    }

}

@media (max-width: 575.98px) {
    .about-card {
        padding: clamp(1.25rem, 6vw, 1.75rem);
    }

    .about-promise-content h3 {
        font-size: 1.5rem;
    }

    .about-promise-content p {
        font-size: 1rem;
    }

    .credentials-row {
        scroll-padding-left: clamp(0.5rem, 6vw, 1rem);
    }

    .credentials-row .credential-col {
        flex: 0 0 clamp(220px, 80vw, 260px);
        max-width: clamp(220px, 80vw, 260px);
    }

    .cards-scroll-area {
        margin: 0;
        padding: 0 0 clamp(1.5rem, 6vw, 2rem);
    }

    .cards-scroll-track {
        --cards-gap: clamp(0.75rem, 4vw, 1.25rem);
        --cards-peek: clamp(60px, 26vw, 90px);
        padding-left: clamp(0.5rem, 4vw, 1rem);
        padding-right: calc(clamp(0.5rem, 4vw, 1rem) + var(--cards-peek));
        scroll-padding-left: clamp(0.5rem, 4vw, 1rem);
        --cards-visible: 1.4;
    }

    .programs-scroll-wrapper {
        --cards-min-width: 82vw;
        --cards-peek: clamp(60px, 28vw, 85px);
        --cards-visible: 1.6;
    }

    .courses-scroll-area {
        --cards-min-width: 88vw;
        --cards-peek: clamp(55px, 24vw, 80px);
        --cards-visible: 1.3;
    }

    .services-scroll-area {
        --cards-min-width: 84vw;
        --cards-peek: clamp(55px, 26vw, 85px);
        --cards-visible: 1.5;
    }

}

/* Removed top dark line on hover - as per requirements */
.program-card::before {
    display: none;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* All icons use same MyMate color scheme */
.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: var(--secondary-color);
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.program-card:hover .program-title {
    color: var(--primary-color);
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.program-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.program-card:hover .program-list li {
    color: var(--primary-color);
}

.program-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    top: 10px;
}

.program-list li strong {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.program-card:hover .program-list li strong {
    color: var(--primary-color);
}

.program-card:hover .program-list li::before {
    color: var(--primary-color);
}

/* Ensure Apply Now buttons align properly */
.program-card .btn {
    margin-top: auto;
    align-self: stretch;
    transition: all 0.3s ease;
}

.program-card:hover .btn-primary-custom {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(0, 81, 69, 0.4);
}

.program-card:hover .btn-primary-custom:hover {
    background: #003d33 !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 81, 69, 0.5);
}

/* Consistent font alignment for course examples - single line alignment */
.course-examples {
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 2.8rem;
    display: block;
    white-space: normal;
    word-wrap: break-word;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.program-card:hover .course-examples {
    color: var(--primary-color) !important;
}

@media (max-width: 991.98px) {
    .program-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767.98px) {
    .program-card {
        padding: 25px 20px;
    }
}

@media (max-width: 575.98px) {
    .program-card {
        padding: 20px 15px;
    }
}

/* Top Courses Section - Background with Fade Effect */
.courses-section {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.courses-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/courses-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeInBackground 2s ease-in-out forwards;
    z-index: 0;
}

.courses-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 81, 69, 0.85) 0%, rgba(0, 61, 51, 0.75) 50%, rgba(var(--secondary-color-rgb), 0.6) 100%);
    z-index: 1;
}

.courses-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(var(--secondary-color-rgb), 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 81, 69, 0.3) 0%, transparent 50%);
    z-index: 2;
    animation: gradientShiftCourses 8s ease-in-out infinite;
}

@keyframes fadeInBackground {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientShiftCourses {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.9;
    }
}

.courses-section .container {
    position: relative;
    z-index: 3;
}

.courses-section .section-title {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.courses-section .section-title::after {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(var(--secondary-color-rgb), 0.8) 100%);
}

/* Top Courses Section - Two Column Layout */
.course-column-card {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(var(--secondary-color-rgb), 0.4);
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: slideUpFade 1s ease-out;
}

.course-column-card:hover {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(var(--secondary-color-rgb), 0.6);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.degree-courses {
    border-color: rgba(0, 81, 69, 0.6);
}

.degree-courses:hover {
    border-color: rgba(0, 81, 69, 0.8);
}

.vocational-courses {
    border-color: rgba(var(--secondary-color-rgb), 0.4);
}

.vocational-courses:hover {
    border-color: rgba(var(--secondary-color-rgb), 0.7);
}

.course-column-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(var(--secondary-color-rgb), 0.3);
}

.course-column-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--primary-color), #003d33);
    border: 2px solid var(--secondary-color);
    animation: popIn 1.2s ease-out 0.3s both;
    box-shadow: 0 10px 30px rgba(0, 81, 69, 0.3);
}

.course-column-card:hover .course-column-icon {
    transform: rotate(360deg) scale(1.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(var(--secondary-color-rgb), 0.5);
}

.degree-courses .course-column-icon {
    background: linear-gradient(135deg, var(--primary-color), #003d33);
    border-color: rgba(var(--secondary-color-rgb), 0.6);
}

.vocational-courses .course-column-icon {
    background: linear-gradient(135deg, rgba(var(--secondary-color-rgb), 0.9), rgba(213, 174, 28, 0.9));
    border-color: rgba(var(--secondary-color-rgb), 0.8);
}

.course-column-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.degree-courses .course-column-title {
    color: white;
}

.vocational-courses .course-column-title {
    color: white;
}

.course-column-subtitle {
    font-size: 1rem;
    color: rgba(var(--secondary-color-rgb), 0.9);
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    padding: 14px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(var(--secondary-color-rgb), 0.2);
    transition: all 0.3s ease;
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list li:hover {
    padding-left: 8px;
    color: var(--secondary-color);
}

.course-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(var(--secondary-color-rgb), 0.5));
    animation: pulse-glow 3s ease-in-out infinite;
}

.degree-courses .course-list li i {
    color: rgba(var(--secondary-color-rgb), 0.9);
    filter: drop-shadow(0 2px 5px rgba(var(--secondary-color-rgb), 0.5));
}

.vocational-courses .course-list li i {
    color: rgba(var(--secondary-color-rgb), 0.9);
    filter: drop-shadow(0 2px 5px rgba(var(--secondary-color-rgb), 0.5));
}

.course-list li:hover i {
    transform: scale(1.3);
    filter: drop-shadow(0 0 10px rgba(var(--secondary-color-rgb), 0.8));
}

.course-list li span {
    flex: 1;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.course-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(var(--secondary-color-rgb), 0.5);
}

.vocational-courses .course-list li strong {
    color: rgba(var(--secondary-color-rgb), 0.95);
    text-shadow: 0 2px 10px rgba(var(--secondary-color-rgb), 0.5);
}

.course-list li:hover span {
    color: white;
}

.course-guidance-note {
    font-size: 1rem;
    color: white;
    font-style: italic;
    margin: 0;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.course-guidance-note:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-guidance-note i {
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 5px rgba(var(--secondary-color-rgb), 0.5));
}

/* Service Cards Section - Smaller Font */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 81, 69, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-3);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.3;
    flex-shrink: 0;
}

.service-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service CTA Section */
.service-cta-wrapper {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.service-cta-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.service-dropdown {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-dropdown:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 81, 69, 0.1);
}

/* Credential Card Styles */
.credential-card {
    height: 100%;
    display: flex;
}

/* Universities Section */
.universities-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.universities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(var(--secondary-color-rgb), 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* University Owl Carousel */
.university-carousel {
    padding: 50px 20px;
    position: relative;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    max-width: 100%;
}

.university-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.university-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.university-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.university-card:hover .university-image img {
    transform: scale(1.05);
}

.university-logo {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background: white;
    border-radius: 0;
}

.university-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.university-card:hover .university-logo img {
    transform: scale(1.1);
}

/* Owl Carousel Navigation Styling - Only Dots */
.university-carousel {
    position: relative;
}

.university-carousel .owl-nav {
    display: none !important;
}

.university-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.university-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(0, 81, 69, 0.3);
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.university-carousel .owl-dot.active span {
    background: var(--primary-color);
    transform: scale(1.2);
}



/* Journey Path Section */
.process-section {
    position: relative;
    overflow: hidden;
}

.journey-path {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.journey-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.journey-step:last-child .step-connector {
    display: none;
}

/* Icon Wrapper */
.step-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #003d33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 81, 69, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(0, 81, 69, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 10px 40px rgba(var(--secondary-color-rgb), 0.5);
        transform: scale(1.05);
    }
}

.journey-step:hover .step-icon {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, var(--secondary-color), #d5ae1c);
    color: var(--primary-color);
}

.step-connector {
    width: 4px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 10px 0;
    position: relative;
    animation: connectorGrow 1.5s ease-out forwards;
    transform-origin: top;
}

@keyframes connectorGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.step-connector::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Step Card */
.step-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    flex: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--secondary-color-rgb), 0.1) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.journey-step:hover .step-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 81, 69, 0.15);
    border-left-width: 8px;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.step-badge {
    background: linear-gradient(135deg, var(--primary-color), #003d33);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 81, 69, 0.3);
}

.step-timeline {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(var(--secondary-color-rgb), 0.15);
    padding: 6px 15px;
    border-radius: 20px;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.step-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(0, 81, 69, 0.1), rgba(var(--secondary-color-rgb), 0.1));
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.feature-tag i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

.journey-step:hover .feature-tag {
    background: linear-gradient(135deg, var(--primary-color), #003d33);
    color: white;
    transform: translateY(-2px);
}

.journey-step:hover .feature-tag i {
    color: var(--secondary-color);
}

/* Why Australia Section - Redesigned */
.why-australia-section {
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.why-australia-section .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
}

.why-australia-section .row.align-items-center {
    align-items: stretch;
    margin: 0 !important;
    display: flex;
}

.why-australia-section .col-lg-6 {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.why-australia-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex: 1 1 auto;
}

.why-australia-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 81, 69, 0.1) 0%, rgba(var(--secondary-color-rgb), 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.why-australia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.1);
    display: block;
    flex-shrink: 0;
}

.why-australia-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.15) contrast(1.15);
}


/* Right Side Content */
.why-australia-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    flex: 1 1 auto;
    min-height: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 81, 69, 0.15);
}

.feature-item:hover::before {
    transform: scaleY(1);
}


.feature-details {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d33 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Australian icons styling */
.australia-icon {
    background: var(--gradient-1);
}

.feature-item:hover .feature-icon-small {
    transform: rotate(10deg) scale(1.1);
    background: var(--gradient-3);
}

.feature-title-new {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.feature-desc {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    flex: 1;
}

/* Old Feature Box Styles (backup) */
.feature-box {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Testimonial */
.testimonial-box {
    background: linear-gradient(135deg, #005145 0%, #003d33 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 81, 69, 0.3);
    position: relative;
    margin-top: 50px;
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1rem;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-1);
    color: white;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-toggle-wrapper {
    margin: 25px 0;
    text-align: center;
}

.faq-toggle-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(0, 81, 69, 0.2);
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 81, 69, 0.08);
}

.faq-toggle-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 12px 30px rgba(0, 81, 69, 0.2);
}

.faq-toggle-btn.is-expanded i {
    transform: rotate(180deg);
}

.faq-toggle-btn i {
    transition: transform 0.3s ease;
}

#faqExtraWrapper {
    display: none;
}

@media (max-width: 768px) {
    .faq-toggle-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
}

/* FAQ CTA Box */
.faq-cta-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
}

.faq-cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 81, 69, 0.15);
    border-color: var(--secondary-color);
}

.faq-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.faq-cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.faq-cta-box .btn {
    min-width: 200px;
}

/* Responsive for FAQ CTA */
@media (max-width: 768px) {
    .faq-cta-box {
        padding: 30px 20px;
    }

    .faq-cta-text {
        font-size: 1.1rem;
    }

    .faq-cta-content {
        gap: 15px;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {

    /* Reduce vertical gaps between sections on mobile/tablet */
    .section-padding {
        padding: 50px 0;
    }

    /* Override universities section custom padding for mobile */
    .universities-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .hero-title {
        font-size: 2rem;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8),
            0 4px 25px rgba(0, 0, 0, 0.6),
            0 1px 3px rgba(0, 0, 0, 0.9);
    }

    .hero-subtitle {
        font-size: 1rem;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .hero-limited-offer {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .highlighted-heading {
        font-size: 1.8rem;
    }

    .registration-form {
        padding: 30px 20px;
    }

    .floating-cta {
        bottom: 70px;
        right: 20px;
    }

    /* University Carousel Mobile */
    .university-carousel {
        padding: 30px 15px;
        border-radius: 0;
    }

    .university-card {
        margin: 0 5px;
    }

    .university-image {
        height: 150px;
    }

    .university-logo {
        min-height: 80px;
        padding: 15px;
    }

    .university-logo img {
        max-height: 50px;
    }

    /* Slider Controls Mobile */
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Why Australia Section Mobile */
    .why-australia-image {
        width: 100%;
        height: 300px;
        min-height: 300px;
        max-height: 350px;
        overflow: hidden;
    }

    .why-australia-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .why-australia-section .row.align-items-center {
        grid-template-columns: 1fr;
    }

    .why-australia-section .col-lg-6 {
        width: 100%;
    }

    .why-australia-content {
        min-height: auto;
        padding: 40px 20px;
    }

    .feature-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .feature-details {
        gap: 15px;
    }

    .feature-icon-small {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .feature-desc {
        font-size: 0.95rem;
    }

    .overlay-badge h3 {
        font-size: 1.8rem;
    }

    .overlay-badge p {
        font-size: 1rem;
    }

    .overlay-badge i {
        font-size: 3rem;
    }

    /* Journey Path Mobile */
    .journey-step {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .step-icon-wrapper {
        flex-direction: row;
        width: 100%;
        align-items: center;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-connector {
        width: 100%;
        height: 3px;
        margin: 0 15px;
        flex: 1;
    }

    .step-connector::before {
        width: 8px;
        height: 8px;
    }

    .step-card {
        padding: 25px;
        border-left-width: 3px;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .step-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .step-timeline {
        font-size: 0.75rem;
    }

    /* Admissions Section Mobile Fixes */
    .program-card {
        padding: 30px 20px;
    }

    .program-list li {
        font-size: 0.9rem;
        padding: 8px 0;
        padding-left: 22px;
    }

    .program-card .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .program-title {
        font-size: 1.3rem;
    }

    .course-examples {
        font-size: 0.9rem;
        min-height: auto;
        line-height: 1.4;
    }

    /* Ensure consistent button alignment on mobile */
    #admissions .program-card {
        display: flex;
        flex-direction: column;
    }

    #admissions .program-card .btn {
        margin-top: auto;
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Responsive for Service Cards */
@media (max-width: 768px) {
    .service-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.8rem;
    }

    .service-cta-wrapper {
        padding: 20px;
    }

    .service-cta-label {
        font-size: 0.95rem;
    }
}

/* Fees Section - Compact Block */
.fees-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.fees-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fees-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.fees-list li:last-child {
    border-bottom: none;
}

.fees-list li:hover {
    padding-left: 10px;
}

.fees-list li i {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.fees-list li:hover i {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-3);
}

.fees-item-content {
    flex: 1;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    padding-top: 8px;
}

.fees-item-content strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

/* Fees Section Image Styling */
.fees-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.fees-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fees-image-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 81, 69, 0.4);
}

.fees-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
    min-height: 400px;
}

.fees-image-container:hover .fees-image {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.15);
}

.fees-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 81, 69, 0.4) 0%, rgba(0, 61, 51, 0.6) 50%, rgba(var(--secondary-color-rgb), 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    padding: 30px;
}

.fees-image-container:hover .fees-image-overlay {
    background: linear-gradient(135deg, rgba(0, 81, 69, 0.5) 0%, rgba(0, 61, 51, 0.7) 50%, rgba(var(--secondary-color-rgb), 0.4) 100%);
}

.fees-badge {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(var(--secondary-color-rgb), 0.5);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUpFade 1s ease-out;
    max-width: 350px;
}

.fees-image-container:hover .fees-badge {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(var(--secondary-color-rgb), 0.7);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.fees-badge i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(var(--secondary-color-rgb), 0.6));
    animation: pulse-glow 3s ease-in-out infinite;
}

.fees-badge h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.fees-badge p {
    font-size: 1rem;
    color: rgba(var(--secondary-color-rgb), 0.95);
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive for Fees Section */
@media (max-width: 768px) {
    .fees-card {
        padding: 30px 20px;
    }

    .fees-list li {
        padding: 15px 0;
        gap: 15px;
    }

    .fees-list li i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .fees-item-content {
        font-size: 0.95rem;
        padding-top: 5px;
    }

    .fees-item-content strong {
        font-size: 1rem;
    }

    .fees-image-wrapper {
        min-height: 300px;
        margin-top: 30px;
    }

    .fees-image {
        min-height: 300px;
    }

    .fees-badge {
        padding: 25px 20px;
        max-width: 100%;
    }

    .fees-badge i {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .fees-badge h4 {
        font-size: 1.3rem;
    }

    .fees-badge p {
        font-size: 0.95rem;
    }
}

/* Registration Form Styles */
.country-code-select {
    font-size: 0.9rem;
}


#formSuccess {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive for Registration Form */
@media (max-width: 768px) {
    .country-code-select {
        font-size: 0.85rem;
        max-width: 100px !important;
    }
}

/* Terms & Conditions Modal Styles */
.terms-modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.terms-modal-header {
    background: var(--gradient-1);
    color: white;
    border-bottom: 3px solid var(--secondary-color);
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
}

.terms-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--secondary-color-rgb), 0.2) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.terms-modal-header .modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.terms-modal-header .modal-title i {
    color: var(--secondary-color);
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 5px rgba(var(--secondary-color-rgb), 0.5));
}

.terms-modal-header .btn-close {
    position: relative;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.terms-modal-header .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.terms-modal-body {
    padding: 40px;
    background: white;
    max-height: 70vh;
    overflow-y: auto;
}

.terms-modal-body::-webkit-scrollbar {
    width: 10px;
}

.terms-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.terms-modal-body::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

.terms-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.terms-content {
    color: #333;
    line-height: 1.8;
}

.terms-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--secondary-color);
    position: relative;
}

.terms-intro::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-1);
}

.terms-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.terms-main-title::before,
.terms-main-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.terms-subtitle {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

.terms-section {
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 81, 69, 0.03) 0%, rgba(var(--secondary-color-rgb), 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(var(--secondary-color-rgb), 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.terms-section:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 81, 69, 0.1);
    border-left-width: 6px;
}

.terms-section:hover::before {
    opacity: 1;
}

.terms-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.terms-number {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 81, 69, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.terms-section:hover .terms-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 25px rgba(var(--secondary-color-rgb), 0.5);
    background: var(--gradient-3);
}

.terms-section-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    position: relative;
}

.terms-section-header h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.terms-section:hover .terms-section-header h4::after {
    width: 100%;
}

.terms-section-content {
    position: relative;
    z-index: 1;
}

.terms-section-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.terms-section-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-section-content ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(0, 81, 69, 0.1);
    transition: all 0.3s ease;
}

.terms-section-content ul li:last-child {
    border-bottom: none;
}

.terms-section-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 25px;
    height: 25px;
    background: var(--gradient-1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 81, 69, 0.2);
    transition: all 0.3s ease;
}

.terms-section-content ul li:hover {
    padding-left: 40px;
    color: var(--primary-color);
}

.terms-section-content ul li:hover::before {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 4px 15px rgba(var(--secondary-color-rgb), 0.5);
    background: var(--gradient-3);
}

.terms-section-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.refund-section {
    background: linear-gradient(135deg, rgba(var(--secondary-color-rgb), 0.1) 0%, rgba(0, 81, 69, 0.05) 100%);
    border-left-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-left-width: 6px;
}

.refund-section .terms-section-header {
    margin-bottom: 25px;
}

.refund-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-right: 10px;
    filter: drop-shadow(0 2px 5px rgba(var(--secondary-color-rgb), 0.5));
    animation: pulse-glow 3s ease-in-out infinite;
}

.refund-policy-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 81, 69, 0.1);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.refund-policy-item:last-child {
    margin-bottom: 0;
}

.refund-policy-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 81, 69, 0.15);
    border-left-width: 6px;
}

.refund-policy-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.refund-policy-item h5 i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.refund-policy-item ul {
    margin-top: 15px;
}

.terms-modal-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 2px solid var(--secondary-color);
    padding: 20px 30px;
    justify-content: center;
}

.terms-modal-footer .btn {
    min-width: 180px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Quick Lead Modal */
.lead-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lead-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.lead-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
}

.lead-modal-dialog {
    position: relative;
    width: min(480px, 92vw);
    background: linear-gradient(135deg, rgba(0, 81, 69, 0.95) 0%, rgba(0, 61, 51, 0.98) 100%);
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 25px 50px rgba(0, 81, 69, 0.35);
    overflow: hidden;
    transform: translateY(30px) scale(0.98);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.lead-modal.is-open .lead-modal-dialog {
    transform: translateY(0) scale(1);
}

.lead-modal::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(var(--secondary-color-rgb), 0.45) 0%, transparent 65%);
    top: -80px;
    right: -90px;
    z-index: -1;
    animation: modalGlow 8s ease-in-out infinite;
}

.lead-modal::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    bottom: -70px;
    left: -60px;
    z-index: -1;
    animation: modalGlow 6s ease-in-out infinite reverse;
}

@keyframes modalGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.lead-modal-header {
    text-align: center;
    margin-bottom: 28px;
    color: white;
}

.lead-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.lead-modal-badge i {
    color: var(--secondary-color);
}

.lead-modal-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: white;
}

.lead-modal-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.lead-modal-form .form-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 6px;
}

.lead-modal-field {
    margin-bottom: 18px;
}

.lead-modal-field .form-control {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.lead-modal-field .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lead-modal-field .form-control:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--secondary-color-rgb), 0.25);
}

.lead-modal-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.lead-modal-consent .form-check-input {
    margin-top: 4px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.lead-modal-consent .form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.lead-modal-consent .form-check-label {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9) !important;
}

.lead-modal-consent .form-check-label a {
    color: var(--secondary-color) !important;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.lead-modal-consent .form-check-label a:hover {
    color: rgba(var(--secondary-color-rgb), 0.8) !important;
    text-decoration: underline;
}

.lead-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lead-modal-close:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lead-modal .btn {
    padding: 12px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.lead-modal-success {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.lead-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 12px 25px rgba(var(--secondary-color-rgb), 0.35);
}

.lead-success-title {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.lead-success-message {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 576px) {
    .lead-modal-dialog {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .lead-modal-title {
        font-size: 1.4rem;
    }

    .lead-modal-consent {
        font-size: 0.8rem;
    }

    .lead-modal-consent .form-check-input {
        margin-top: 6px;
    }
}

/* Responsive for Terms Modal */
@media (max-width: 768px) {
    .terms-modal-body {
        padding: 25px 20px;
        max-height: 65vh;
    }

    .terms-modal-header {
        padding: 20px;
    }

    .terms-modal-header .modal-title {
        font-size: 1.4rem;
    }

    .terms-intro {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .terms-main-title {
        font-size: 1.4rem;
    }

    .terms-section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .terms-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .terms-section-header h4 {
        font-size: 1.2rem;
    }

    .terms-section-content ul li {
        padding: 10px 0 10px 30px;
        font-size: 0.9rem;
    }

    .refund-policy-item {
        padding: 20px;
    }

    .refund-policy-item h5 {
        font-size: 1.1rem;
    }

    .terms-modal-footer {
        padding: 15px 20px;
    }

    .terms-modal-footer .btn {
        min-width: 150px;
        font-size: 1rem;
        padding: 10px 25px;
    }
}

/* International Telephone Input Custom Styling */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    border-radius: 0.375rem 0 0 0.375rem;
}

.iti__selected-flag {
    padding: 0 15px 0 10px;
    background-color: #f8f9fa;
    border-radius: 0.375rem 0 0 0.375rem;
    transition: background-color 0.15s ease-in-out;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
    background-color: #e9ecef;
}

.iti__country-list {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    max-height: 250px;
    margin-top: 2px;
}

.iti__country {
    padding: 8px 10px;
    transition: background-color 0.15s ease-in-out;
}

.iti__country:hover {
    background-color: #f8f9fa;
}

.iti__country.iti__highlight {
    background-color: #ffa500 !important;
    color: white;
}

.iti__flag-box {
    margin-right: 8px;
}

.iti__country-name {
    margin-right: 6px;
    color: #495057;
}

.iti__dial-code {
    color: #6c757d;
    font-weight: 500;
}

#phone {
    padding-left: 90px;
}

/* Quick Lead Modal phone input padding */
#quickLeadMobile {
    padding-left: 90px !important;
}

.iti__selected-dial-code {
    font-weight: 600;
    color: #333;
}

/* Ensure input field aligns properly */
.iti__tel-input {
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.75rem 0.75rem 0.75rem 90px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Quick Lead Modal specific styling for ITI input */
.lead-modal-field .iti__tel-input {
    padding-left: 90px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    border-radius: 12px !important;
}

.lead-modal-field .iti__tel-input:focus {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(var(--secondary-color-rgb), 0.25) !important;
}

.lead-modal-field .iti__selected-flag {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px 0 0 12px !important;
}

.lead-modal-field .iti__selected-flag:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.iti__tel-input:focus {
    border-color: #ffa500;
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
    outline: 0;
}

.iti__tel-input.is-invalid {
    border-color: #dc3545;
}

.iti__tel-input.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Search in country dropdown */
.iti__search-input {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    font-size: 0.9rem;
}

.iti__search-input:focus {
    border-color: #ffa500;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .iti__country-list {
        max-width: 300px;
    }

    #phone {
        padding-left: 85px;
    }

    .iti__tel-input {
        padding-left: 85px;
    }

    /* Quick Lead Modal phone input mobile padding */
    #quickLeadMobile {
        padding-left: 85px !important;
    }

    .lead-modal-field .iti__tel-input {
        padding-left: 85px !important;
    }
}

/* Highlights Section */
/* Highlights Section */
.highlights-section {
    background: #004d40;
    /* Darker shade of primary color */
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-container {
    display: grid;
    place-items: center;
    /* Centers items horizontally and vertically */
    min-height: 40px;
    width: 100%;
    position: relative;
}

.highlight-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    display: flex;
    /* Changed to flex but controlled by visibility/opacity */
    align-items: center;
    justify-content: center;
    grid-area: 1 / 1;
    /* All items stack in the same grid cell */
    width: 100%;
    text-align: center;
    gap: 10px;
    pointer-events: none;
    /* Prevent clicks on invisible items */
}

.highlight-item i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.highlight-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

.highlight-item.exit {
    opacity: 0;
    transform: translateY(-20px);
    z-index: 0;
}

@media (max-width: 768px) {
    .highlight-item {
        font-size: 1rem;
        padding: 0 15px;
    }
}