:root {
    --primary-color: #043068;
    --accent-color: #ef4202;
    --secondary-color: #5c7c12;
    --light-bg: #f8f9fa;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    padding-top: 76px;
    /* Adjust based on navbar height */
}

a {
    text-decoration: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary-custom:hover {
    background-color: #03244d;
    border-color: #03244d;
    color: white;
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    font-weight: 600;
}

.btn-accent:hover {
    background-color: #b01a00;
    border-color: #b01a00;
    color: white;
}

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 0;
    margin-right: 20px;
}

.navbar-brand img {
    height: 65px;
    width: auto;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-right: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

footer a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff !important;
    margin-right: 12px;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 66, 2, 0.3);
}

footer h5 {
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
}

/* Hero Wrapper */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    /* Reduced height */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Slider as Background */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slick-slide,
.hero-slide-item {
    height: 600px;
    /* Match wrapper */
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slick-active .hero-bg-img {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 32, 68, 0.92);
    /* Darker overlay */
    z-index: 2;
}

/* Static Content Overlay (Foreground) */
.hero-static-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
}

/* Hero Typography */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.8s;
}

.hero-features {
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 1.1s;
}

.hero-features i {
    color: #4ade80;
    /* Bright Green Accent */
    filter: drop-shadow(0 0 5px rgba(74, 222, 128, 0.4));
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism Form Card */
.hero-form-card {
    background: rgb(255 255 255 / 77%);
    /* Glass effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    overflow: hidden;
}

.hero-form-card .card-header {
    background: rgba(4, 32, 68, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.hero-form-card .card-header h4 {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s;
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-form-card .form-label {
    color: rgb(30 30 30 / 90%);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-form-card .btn-accent {
    background: linear-gradient(135deg, #d51f00 0%, #ff5e3a 100%);
    border: none;
    box-shadow: 0 5px 15px rgba(213, 31, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-form-card .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(213, 31, 0, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-wrapper {
        min-height: auto;
        height: auto;
        padding-bottom: 60px;
        display: block;
        /* Stack on mobile */
    }

    .hero-slider,
    .hero-slide-item,
    .hero-slider .slick-slide {
        position: absolute;
        height: 100%;
        min-height: 100%;
    }

    .hero-static-content {
        position: relative;
        height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .d-flex.gap-3 {
        justify-content: center;
        margin-bottom: 50px;
    }
}


/* Slick Dots Customization */
.slick-dots {
    bottom: 30px;
}

.slick-dots li margin {
    margin: 0 5px;
}

.slick-dots li button:before {
    font-size: 14px;
    color: white;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--accent-color);
    opacity: 1;
}

/* Cards */

.card-title {
    color: var(--primary-color);
}

/* Section Padding */
section {
    padding: 60px 0;
}

.bg-light-custom {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.fa-phone-alt {
    display: inline-block;
    transform: rotate(108deg);
}

/* About Section Redesign */
.about-shape-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 48, 104, 0.1) 0%, rgba(213, 31, 0, 0.1) 100%);
    border-radius: 30px;
    z-index: 0;
    transform: rotate(-3deg);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
    border-left: 5px solid var(--accent-color);
}

.icon-box-sm {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bg-light-primary {
    background-color: rgba(4, 48, 104, 0.1);
}

.bg-light-accent {
    background-color: rgba(213, 31, 0, 0.1);
}

.btn-hover-lift {
    transition: all 0.3s ease;
}

.btn-hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(4, 48, 104, 0.2) !important;
    animation: pulse-glow 1.5s infinite;
}

@media (max-width: 991px) {
    .about-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px 15px;
    }

    .about-img-wrapper {
        margin-bottom: 30px;
    }

    /* Course Cards */
    .course-card {
        transition: all 0.3s ease;
        border-radius: 12px;
    }

    .course-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
    }

    .card-header-gradient {
        background: linear-gradient(135deg, var(--primary-color) 0%, #064b96 100%);
        position: relative;
        z-index: 1;
    }

    .header-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
        z-index: -1;
        opacity: 0.3;
    }

    .course-icon-bg {
        transition: transform 0.3s ease;
    }

    .course-card:hover .course-icon-bg {
        transform: scale(1.1) rotate(5deg);
    }

    .btn-outline-primary-custom {
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        transition: all 0.3s;
    }

    .btn-outline-primary-custom:hover {
        background: var(--primary-color);
        color: #fff;
        box-shadow: 0 5px 15px rgba(4, 48, 104, 0.2);
    }




    /* Ensure padding wrapper works for height */
    .slick-track {
        display: flex !important;
    }

    .slick-slide {
        height: auto !important;
    }

    /* Compact Course Cards */
    .course-card-compact {
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .course-card-compact:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    }

    .bg-gradient-primary {
        background: linear-gradient(90deg, var(--primary-color) 0%, #064b96 100%);
    }

    .icon-box-xs {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-icon-circle {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: var(--primary-color);
        transition: all 0.3s;
    }

    .btn-icon-circle:hover {
        background: var(--accent-color);
        transform: rotate(45deg);
        color: #fff;
    }

    .text-xs {
        font-size: 0.8rem;
    }


    /* Pulse Bloom Animation */
    @keyframes pulse-glow {
        0% {
            box-shadow: 0 0 0 0 rgba(213, 31, 0, 0.4);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(213, 31, 0, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(213, 31, 0, 0);
        }
    }

    .course-icon-modern {
        width: 50px;
        height: 50px;
        transition: all 0.3s ease;
    }


    .btn-link-custom {
        position: relative;
        transition: all 0.3s;
    }

    .btn-link-custom:hover {
        color: var(--accent-color) !important;
    }

    /* Horizontal Course Cards */
    .course-card-horizontal {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: #fff;
        border: none;
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border-radius: 16px;
        overflow: hidden;
    }

    .course-card-horizontal:hover {
        transform: translateY(-5px) translateX(5px);
        box-shadow: 0 20px 40px rgba(4, 48, 104, 0.15) !important;
        border-left-color: var(--accent-color);
    }

    .course-card-horizontal .bg-light-primary {
        background: linear-gradient(135deg, rgba(4, 48, 104, 0.08) 0%, rgba(4, 48, 104, 0.2) 100%);
        /* Slightly darker */
        transition: all 0.4s ease;
    }

    .course-card-horizontal:hover .bg-light-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, #042048 100%);
    }

    /* Red Accent Button */
    .btn-outline-accent {
        color: var(--accent-color);
        border: 2px solid var(--accent-color);
        background: transparent;
        transition: all 0.3s;
    }

    .btn-outline-accent:hover {
        background: var(--accent-color);
        color: #fff;
        box-shadow: 0 5px 15px rgba(213, 31, 0, 0.3);
    }

    .course-card-horizontal:hover .course-icon-modern {
        color: var(--accent-color) !important;
        transform: scale(1.1) rotate(10deg);
        background: #fff !important;
    }

    .course-card-horizontal:hover h4 {
        color: var(--accent-color) !important;
    }

    .transition-icon {
        transition: transform 0.3s ease;
    }

    .btn-hover-lift:hover .transition-icon {
        transform: translateX(5px);
    }

    .btn-link-custom:hover .transition-icon {
        transform: translateX(5px);
    }


}

/* Slider Custom Navigation (Moved to Global) */
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.slick-prev.custom-arrow {
    left: -20px;
}

.slick-next.custom-arrow {
    right: -20px;
}

/* Course Cards V2 (Moved to Global) */
.course-card-v2 {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.course-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.course-img-wrapper {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.course-card-v2 .btn-primary-custom {
    background-color: #2563eb;
    /* Royal Blue */
    border-color: #2563eb;
    transition: all 0.3s;
}

.course-card-v2 .btn-primary-custom:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.text-success {
    color: #10b981 !important;
    /* Emerald Green */
}

.custom-arrow i {
    color: #fff !important;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: #ef4202 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* Prominent shadow */
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    /* Larger icon size */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide default slick arrow pseudo-element */
/* Use Pseudo-elements for Icons */
.custom-arrow:before {
    display: none !important;
    content: '' !important;
}

.slick-prev.custom-arrow:before {
    content: '' !important;
}

.slick-next.custom-arrow:before {
    content: '' !important;
}

/* Enable inner elements: override slick defaults */
.custom-arrow i,
.slick-prev.custom-arrow i,
.slick-next.custom-arrow i {
    display: block !important;
    position: relative;
    z-index: 101;
    color: inherit;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 24px !important;
    line-height: normal !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.custom-arrow:hover {
    background: var(--primary-color);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slick-prev.custom-arrow {
    left: -40px;
    /* Moved further out */
}

.slick-next.custom-arrow {
    right: -40px;
    /* Moved further out */
}

.course-card-v2 {
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    /* For pseudo-elements */
}

/* Decorative Bottom Border */
.course-card-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #fbbf24);
    /* Blue to Yellow */
    transform: scaleX(1);
    /* Always visible */
    transform-origin: left;
    transition: transform 0.4s ease;
}

.course-card-v2:hover::after {
    transform: scaleX(1);
    /* Ensuring it stays */
    height: 6px;
    /* Slightly thicker on hover for feedback */
}

.course-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
    border-color: transparent;
}

.course-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

/* Course Card Image */
.course-card-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.course-card-v2:hover .course-card-img {
    transform: scale(1.08);
}

.course-card-v2 .card-body {
    padding: 1.5rem;
    position: relative;
    text-align: center;
}

.course-card-v2 .text-primary-custom {
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.course-price {
    text-align: center;
    margin: 0 auto;
}

/* Title Decorative Underline */
.course-card-v2 .text-warning {
    color: #fbbf24 !important;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    /* Spaced out stars */
}

.course-card-v2 .text-success {
    color: #059669 !important;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: rgba(5, 150, 105, 0.1);
    /* Subtle green bg */
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
}

.course-card-v2 .btn-primary-custom {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.course-card-v2 .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

/* Teaching Method Cards */
.teaching-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.teaching-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-color);
}

.teaching-card .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4202 0%, #ff6b35 100%);
    /* Orange Gradient */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(239, 66, 2, 0.3);
}

.teaching-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}


.training-method img {
    min-height: 470px;
}

/* Testimonial Section Redesign */
.testimonial-section {
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(42, 42, 42, 0.9), rgba(42, 42, 42, 0.9)), url('../images/testimonial-bg.png');
    /* Dark Overlay + Image */
    background-size: cover;
    background-position: center;
    opacity: 1;
    /* Full opacity since overlay is in background property */
    z-index: 0;
}

.heading-line {
    width: 60px;
    height: 4px;
    background-color: #ef4202;
    /* Red Accent */
    border-radius: 2px;
}

/* Ensure equal height in slick slider */
.testimonial-slider .slick-track {
    display: flex !important;
}

.testimonial-slider .slick-slide {
    height: auto !important;
    display: flex !important;
    justify-content: center;
}

.testimonial-slider .slick-slide>div {
    width: 100%;
    height: 100%;
}

.testimonial-card {
    border-bottom: 4px solid #ef4202;
    transition: transform 0.3s ease;
    height: 100%;
    /* Force full height */
    display: flex;
    flex-direction: column;
}

.testimonial-card p.card-text {
    flex-grow: 1;
    /* Push footer down */
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ef4202;
    font-size: 1.2rem;
    background-color: #fff0eb;
    /* Light red/orange tint */
}

/* Specific overrides for testimonial slider arrows if needed */
.testimonial-slider .custom-arrow {
    background: #fff;
    /* White background for dark section */
    color: #ef4202 !important;
    /* Red arrows */
}

/* FAQ & Inquiry Section */
.custom-accordion .accordion-button {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: none;
    padding: 1.2rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    /* White icon */
}

.custom-accordion .accordion-button::after {
    background-size: 1rem;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-body {
    padding: 1.5rem;
    background-color: #fff;
    line-height: 1.6;
}

.custom-accordion .accordion-item {
    border: none;
    overflow: hidden;
}

/* Form Styles */
.form-control,
.form-select {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(4, 48, 104, 0.1);
    background-color: #fff !important;
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

.text-danger {
    color: rgb(251 98 3) !important;
}

/* Why Choose Us - Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgb(0 0 0 / 11%);
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(239, 66, 2, 0.08);
    /* Light Accent */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: var(--accent-color);
    color: #fff;
    transform: rotateY(180deg);
}

.fa-phone-alt,
.fa-arrow-right {
    font-size: 1rem;
}

/* Compact Creative CTA */
.cta-compact-wrapper {
    background-color: var(--primary-color);
    border-radius: 40px 100px 40px 100px;
    /* Modern Asymmetrical Shape */
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.cta-compact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #064b96 60%, var(--accent-color) 100%);
    opacity: 0.95;
    z-index: 0;
}

.cta-compact-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hover-scale {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-cta {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border: 2px solid #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-whatsapp-cta:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 991px) {
    .cta-compact-wrapper {
        border-radius: 30px;
    }
}

.btn-white-custom {
    background: #fff;
    color: var(--primary-color) !important;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-white-custom:hover {
    background: #f8f9fa;
    color: var(--accent-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.max-width-600 {
    max-width: 600px;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 1.8rem;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite ease-in-out;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Back-to-Top Button */
.back-to-top {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: #fff !important;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    color: #fff !important;
    transform: translateY(-5px);
}


@media (max-width: 991px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 1.5rem;
    }
}

/* ========================================
   Stats Section Styling
   ======================================== */

/* Stats Section Background */
.stats-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

/* Glassmorphism Stat Card */
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Icon Circle */
.stat-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(243, 75, 4, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(243, 75, 4);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-circle {
    transform: rotate(360deg) scale(1.1);
    background: rgba(243, 75, 4, 0.3);
}

/* Icon Color */
.stat-icon-orange {
    color: rgb(243, 75, 4);
    font-size: 2rem;
}

/* Counter Number */
.stat-counter {
    color: rgb(243, 75, 4);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Counter Label */
.stat-label {
    color: rgb(243, 75, 4);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

/* Background Pattern Icons */
.stats-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.05;
}

.stats-bg-icon {
    position: absolute;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .stat-counter {
        font-size: 2.5rem;
    }

    .stat-icon-circle {
        width: 60px;
        height: 60px;
    }

    .stat-icon-orange {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* ========================================
   Enhanced Course Cards
   ======================================== */

.course-card-enhanced {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
}

.course-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.course-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.course-card-enhanced:hover .course-img-wrapper img {
    transform: scale(1.1);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white !important;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon-box i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon-box {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b35 100%);
}

/* Benefit Cards */
.benefit-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.benefit-icon {
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.2);
}

/* FAQ Accordion Styling */
.accordion-button {
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-radius: 12px !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(1) invert(0);
}

.accordion-item {
    border: none;
}

.accordion-body {
    background-color: white;
    border-radius: 0 0 12px 12px;
}

/* CTA Compact Wrapper */
.cta-compact-wrapper {
    position: relative;
    overflow: hidden;
}

.cta-compact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    z-index: 0;
}

.cta-compact-content {
    position: relative;
    z-index: 1;
}

.btn-whatsapp-cta {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
    transition: all 0.3s ease;
}

.btn-whatsapp-cta:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Success Badge Subtle */
.bg-success-subtle {
    background-color: rgba(16, 185, 129, 0.1);
}

.text-success {
    color: #10b981 !important;
}

/* ========================================
   Admissions Page Styling
   ======================================== */

/* Admission Step Cards */
.admission-step-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.admission-step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.step-icon-box {
    transition: transform 0.3s ease;
}

.admission-step-card:hover .step-icon-box {
    transform: scale(1.2);
}

/* Form Enhancements */
.input-group-text {
    background-color: #f3f4f6;
    border-right: none;
}

.input-group .form-control,
.input-group .form-select {
    border-left: none;
}

.input-group .form-control:focus,
.input-group .form-select:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.input-group:focus-within .input-group-text {
    background-color: #e5e7eb;
    border-color: var(--primary-color);
}

.input-group:focus-within .form-control,
.input-group:focus-within .form-select {
    border-color: var(--primary-color);
}

/* Eligibility Table */
.eligibility-table {
    border-collapse: separate;
    border-spacing: 0;
}

.eligibility-table thead th {
    background-color: #f3f4f6;
    color: var(--primary-color);
    font-weight: 700;
    border: none;
    padding: 12px;
}

.eligibility-table tbody tr {
    transition: all 0.2s ease;
}

.eligibility-table tbody tr:hover {
    background-color: #f9fafb;
    transform: scale(1.02);
}

.eligibility-table tbody td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

/* Why Choose Cards */
.why-choose-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    background: white !important;
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-choose-card .icon-wrapper {
    transition: transform 0.3s ease;
}

.why-choose-card:hover .icon-wrapper i {
    transform: scale(1.1);
    color: var(--accent-color) !important;
}

/* Info Color */
.bg-info {
    background-color: #3b82f6 !important;
}

.text-info {
    color: #3b82f6 !important;
}

/* Page Hero Responsive */
@media (max-width: 767px) {
    .page-hero {
        padding: 80px 0 60px !important;
    }

    .page-hero h1 {
        font-size: 2rem !important;
    }

    .page-hero .lead {
        font-size: 1rem;
    }
}

/* ========================================
   Enhanced Motivational Banner
   ======================================== */

.motivational-banner {
    transition: transform 0.3s ease;
}

.stat-box-enhanced {
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-box-enhanced:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon-circle {
    transition: all 0.3s ease;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

@media (max-width: 991px) {
    .motivational-banner {
        padding: 2rem !important;
    }

    .stat-box-enhanced {
        padding: 1.5rem !important;
    }
}

/* ========================================
   Contact Page - Split Layout
   ======================================== */

.bg-dark-custom {
    background-color: #0f172a;
    /* Dark blue/slate */
}

/* Social Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--accent-color) !important;
    transform: translateY(-3px);
}



/* Form Floating Enhancements */
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating>.form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.map-container:hover {
    filter: grayscale(0%) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .page-hero {
        padding: 80px 0 120px !important;
    }
}

/* Courses Page Custom Styles */
.page-hero-custom {
    padding: 60px 0 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.hero-deco-top {
    top: 10%;
    right: 5%;
    opacity: 0.1;
}

.hero-deco-bottom {
    bottom: 10%;
    left: 5%;
    opacity: 0.1;
}

.hero-icon-lg {
    font-size: 150px;
    color: white;
}

.hero-icon-md {
    font-size: 120px;
    color: white;
}

.course-img-custom {
    height: 300px;
    object-fit: cover;
}

.course-img-placeholder {
    height: 250px;
}

.gallery-section {
    padding: 60px 0 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
}

/* Contact Page Custom Styles */
.page-hero-contact {
    padding: 60px 0 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.contact-section-overlap {
    margin-top: 0;
    padding-bottom: 80px;
}

.contact-map-container {
    height: 400px;
    filter: grayscale(100%);
    transition: 0.3s;
}


.contact-message-box {
    height: 150px;
}

/* About Page Custom Styles */
.about-floating-badge {
    bottom: 20px;
    right: 20px;
    animation: float 3s ease-in-out infinite;
}

.about-lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
}

.mission-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #d51f00 0%, #ff6b35 100%);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.stats-icon-pos-1 {
    top: 10%;
    left: 10%;
}

.stats-icon-pos-2 {
    bottom: 15%;
    right: 15%;
}

.stats-icon-size-lg {
    font-size: 100px;
}

.stats-icon-size-md {
    font-size: 80px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Ensure consistent icon box size if not already defined globally or needs override */
.icon-box-sm {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bg-light-primary {
    background-color: rgba(30, 58, 138, 0.1);
}

.bg-light-accent {
    background-color: rgba(213, 31, 0, 0.1);
}


/* Fix for About Page Stats Section Contrast */
.stats-section .stat-icon-orange {
    color: #ffffff !important;
}

.stats-section .stat-counter,
.stats-section .stat-label {
    color: #ffffff !important;
}

.stats-section .stat-icon-circle {
    border-color: rgba(255, 255, 255, 0.3) !important;
}