@import url("https://fonts.googleapis.com/css?family=Montserrat");

/* === SOURCE: variable.css === */
/* =========== VARIABLES =========== */
:root {
    --red-orange-color-wheel: #FFB703;
    --ultramarine-blue: #0062ff;
    --lavender-blue: #d2dafe;
    --oxford-blue: #050e38;
    --light-gray: #cccccc;
    --sonic-silver: #787878;
    --blue-crayola: #0d6dfd;
    --cultured: #f2f3f7;
    --white: #ffffff;

    --fs-1: 38px;
    --fs-2: 35px;
    --fs-3: 30px;
    --fs-4: 22px;
    --fs-5: 20px;
    --fs-6: 15px;

    --fw-5: 500;
    --fw-6: 600;
    --fw-7: 700;
    --fw-8: 800;
    --fw-9: 900;

    --px: 15px;
    --py: 80px;

    --default-transition: 0.25s ease;
}

/* === SOURCE: style.css === */
/* =========== VARIABLES =========== */



/* =========== RESET =========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.title-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.title-wrapper h2 {
    font-size: 40px;
    white-space: nowrap;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    font: inherit;
}

img,
span,
a,
ion-icon {
    display: block;
}

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

html {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--red-orange-color-wheel);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ultramarine-blue);
}

/* =========== COMPONENT =========== */

.btn {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    font-weight: var(--fw-5);
    border-radius: 8px;
    color: var(--white);
    padding: 20px 45px;
    text-transform: uppercase;
    overflow: hidden;
}

.btn .btn-text {
    position: relative;
    z-index: 5;
}

.btn-primary,
.btn-secondary .square {
    background: var(--red-orange-color-wheel);
}

.btn .square {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: var(--default-transition);
}

.btn:hover .square {
    right: -2px;
    width: 102%;
    height: 102%;
}

.btn-primary .square,
.btn-secondary {
    background: var(--oxford-blue);
}

/* =========== REUSED CSS =========== */

.section-subtitle {
    color: var(--ultramarine-blue);
    font-weight: var(--fw-7);
    text-transform: uppercase;
}

.section-text {
    color: var(--sonic-silver);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    line-height: 1.6;
}

.section-title {
    font-size: var(--fs-2);
    font-weight: var(--fw-8);
    color: var(--oxford-blue);
    line-height: 1.3;
}

/* Locations Grid Section */
/* Locations Grid Section - 5 Columns with Proper Margins */
.locations-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    width: 100%;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
    /* Maintain proper left-right margins */
}

.locations-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #0062ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.locations-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* 5-column grid with proper spacing */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    /* Good spacing between cards */
    perspective: 1000px;
    width: 100%;
}

/* Compact cards with proper margins */
.location-card {
    background: white;
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Simple hover effect without hiding */
.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 98, 255, 0.15);
    border-color: #0062ff;
}

.location-icon {
    font-size: 20px;
    color: #0062ff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.2);
    color: #00d4ff;
}

.location-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover .location-name {
    color: #0062ff;
}

/* Responsive design maintaining margins */
@media (max-width: 1400px) {
    .locations-container {
        padding: 0 30px;
    }
}

@media (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .locations-container {
        padding: 0 25px;
    }

    .locations-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .locations-section {
        padding: 40px 0;
    }

    .locations-container {
        padding: 0 20px;
    }

    .location-card {
        padding: 12px 8px;
        min-height: 85px;
    }

    .location-name {
        font-size: 0.9rem;
    }

    .location-icon {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .locations-container {
        padding: 0 15px;
    }

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

    .locations-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .location-card {
        min-height: 80px;
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
}

/* =========== FOOTER =========== */
.footer-logo img {
    width: 60px;
    /* adjust size */
    height: 60px;
    /* make it square */
    border-radius: 50%;
    /* makes it circular */
    object-fit: cover;
    /* keeps image ratio and crops excess */
    border: 2px solid #fff;
    /* optional border */
}

.footer-profile {
    display: flex;
    align-items: center;
}

.footer-text {
    margin-left: 10px;
    text-align: justify;
    margin-bottom: 5px;
    max-width: 100%;
    /* full width in container */
    font-size: 14px;
    /* adjust size */
    line-height: 1.4em;
    /* controls line spacing */
}

@media (max-width: 768px) {

    /* tablet */
    .footer-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    /* mobile */
    .footer-text {
        font-size: 12px;
    }
}

.footer-name {
    font-weight: bold;
    font-size: 16px;
    margin-top: 10%;
}

.footer-role {
    font-size: 14px;
    color: gray;
}

/* =========== MAIN =========== */

.container {
    background: var(--white);
    max-width: 1440px;
    margin: auto;
    overflow: hidden;
}

.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    max-width: 1440px !important;
    background: hsla(0, 0%, 100%, 0.9) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    backdrop-filter: blur(15px) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 6px var(--px) !important;
    /* Reduced from 10px to 6px */
    height: 100px !important;
    /* Fixed smaller height */
    box-shadow: 0 10px 20px -5px hsla(0, 0%, 8%, 0.03) !important;
    z-index: 10000 !important;
    /* Ensure above overlay (9998) */
}

.navbar-nav {
    position: absolute;
    background: var(--white);
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px -5px hsla(0, 0%, 8%, 0.25);
    padding: 20px 0;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    transform-origin: top;
    transform: scaleY(0);
    pointer-events: none;
    transition: var(--default-transition);
}

.nav-item a {
    padding: 15px;
    font-size: var(--fs-5);
    font-weight: var(--fw-6);
    font-family: 'Montserrat', sans-serif;
    color: var(--oxford-blue);
    transition: var(--default-transition);
}

.nav-item:not(:last-child) a {
    border-bottom: 1px solid hsla(0, 0%, 8%, 0.1);
}

.nav-item a:hover {
    color: var(--red-orange-color-wheel);
    background: hsla(0, 0%, 98%, 1);
}

.navbar-nav.active {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: all;
}



.navbar .btn {
    display: none;
}

.nav-toggle-btn {
    background: var(--red-orange-color-wheel);
    width: 44px;
    /* Slightly smaller toggle */
    height: 26px;
    /* Slightly smaller toggle */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.nav-toggle-btn span {
    background: var(--white);
    width: 26px;
    height: 2px;
    transition: var(--default-transition);
}

.nav-toggle-btn.active .one {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle-btn.active .two {
    display: none;
}

.nav-toggle-btn.active .three {
    transform: rotate(-45deg) translate(2px, -2px);
}


/* =========== HOME =========== */

.home {
    position: relative;
    margin-top: 70px;
    padding: var(--py) var(--px);
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -400px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #0062ff4d, transparent 70%);
}

.home::after {
    content: '';
    position: absolute;
    top: 100px;
    right: -400px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, hsla(15, 100%, 55%, 0.3), transparent 70%);
}

.home .deco-shape {
    position: absolute;
}

.home .shape-1 {
    top: 14%;
    left: 8%;
}

.home .shape-2 {
    top: 600px;
    left: 30px;
}

.home .shape-3 {
    top: 25%;
    right: 0;
}

.home .shape-4 {
    top: 570px;
    right: 110px;
}

.home-left {
    margin-bottom: 60px;
}

.home-left,
.home-right {
    position: relative;
    z-index: 10;
}

.home .section-subtitle {
    text-align: center;
    margin-bottom: 25px;
}

.main-heading {
    color: var(--oxford-blue);
    font-size: var(--fs-1);
    font-weight: var(--fw-9);
    line-height: 1.2;
    margin-bottom: 48px;
    text-align: center;
}

.underline-img {
    display: inline-block;
    position: relative;
}

.typing-container {
    position: relative;
    height: 1.2em;
    display: flex;
    align-items: center;
}

/* 👇 This creates a hidden "ghost" that keeps space reserved */
.typing-container::before {
    content: "Greatness";
    /* Longest word */
    visibility: hidden;
    display: block;
}

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.arrow {
    margin-left: 8px;
    /* Moves arrow to the right */
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    list-style: none;
    width: 240px;
    top: 100%;
    left: 0;
    border-radius: 5px;
}

.dropdown-menu li {
    padding: 8px 12px;
}

.dropdown-menu li a {
    color: black;
    display: flex;
    justify-content: center;
    /* Align text and arrow */
    align-items: center;
}

/* Show dropdown on hover (Direct children only) */
/* DESKTOP HOVER LOGIC ONLY (Prevent Mobile Sticky Hover) */
@media (min-width: 992px) {

    /* Show dropdown on hover (Direct children only) */
    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    /* DOUBLE LOCK: Ensure nested menus stay hidden until their trigger is hovered */
    .dropdown-menu .dropdown-menu {
        display: none !important;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: block !important;
    }
}

/* Submenu Styling */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Align text and arrow */
}

.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: white;
    list-style: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 240px;
}

/* Show submenu on hover */
/* Show submenu on hover */
.dropdown-submenu:hover .submenu {
    display: block;
    left: 100%;
    top: 0;
    margin-top: -10px;
    /* Align slightly up */
}

/* Ensure submenu overrides dropdown-menu styles on Desktop */
.dropdown-menu .submenu {
    left: 100% !important;
    top: 0 !important;
}

@media screen and (max-width: 768px) {
    .dropdown-toggle {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    .dropdown-toggle .arrow {
        display: inline-block;
        margin-left: 5px;
    }
}

.typing-animation::after {
    content: "";
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid black;
    position: absolute;
    left: 0;
    top: 0;
    animation: typing 6s steps(1, end) infinite, blinkCursor 0.5s step-end infinite;
}


.underline-img img {
    position: absolute;
    bottom: -5px;
    /* adjust */
    left: 0;
    width: 100%;
}

/* Keyframes: keep yours as-is */


.home .section-text {
    max-width: 500px;
    text-align: justify;
    margin: auto;
    margin-bottom: 30px;
}

.home-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.home-right .img-box {
    position: relative;
}

.home-right .img-box img {
    position: absolute;
}

.home-right .img-box .banner-img {
    position: relative;
    width: auto;
    max-width: 100%;

    margin: auto;
}

.home-right .background-shape {
    width: auto;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    /* z-index: 1; */
}

.home-right .icon-1 {
    top: 200px;
    left: 20px;
}

.home-right .icon-2,
.home-right .icon-3 {
    display: none;
}

.home-right .icon-4 {
    top: 60px;
    right: 20px;
    filter: drop-shadow(0 8px 30px hsla(350, 100%, 68%, 0.5));
}

.icon-1,
.icon-2,
.icon-3,
.icon-4 {
    filter: drop-shadow(0 10px 20px hsla(0, 0%, 0%, 0.2));
    z-index: 5;
}

/* =========== COURSE CATEGORY =========== */
.category {
    padding: var(--py) var(--px);
}

.category .section-subtitle {
    text-align: center;
    margin-bottom: 15px;
}

.category .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.category .course-item-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.course-category-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid hsl(0, 0%, 67%);
    border-radius: 8px;
    padding: 25px;
    transition: var(--default-transition);
}

.course-category-item:hover {
    background: var(--red-orange-color-wheel);
    border-color: var(--red-orange-color-wheel);
    box-shadow: 0 10px 50px -20px var(--red-orange-color-wheel);
}

.category-icon {
    width: 50px;
}

.category-icon.hover,
.course-category-item:hover .category-icon.default {
    display: none;
}

.category-icon.default,
.course-category-item:hover .category-icon.hover {
    display: block;
}

.category-title a {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
}

.category-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: var(--sonic-silver);
    font-size: var(--fs-6);
}

.course-category-item:hover .category-title a,
.course-category-item:hover .category-subtitle {
    color: var(--white);
}

/* =========== Form =========== */
/* =========== Form =========== */
.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-header h2 {
    margin: 0;
}

.quote-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.quote-image {
    flex: 1 1 350px;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.quote-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.quote-form {
    flex: 1 1 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px;
    border-radius: 16px;
    color: #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.quote-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #0062ff);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.quote-form h2 {
    margin-bottom: 10px;
    color: #1e293b;
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    background: linear-gradient(90deg, #0062ff, #0062ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-form p {
    font-size: 15px;
    margin-bottom: 25px;
    color: #64748b;
    text-align: center;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    outline: none;
    font-size: 15px;
    background: white;
    color: #334155;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0062ff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234f46e5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

.submit-btn {
    background: linear-gradient(135deg, #0062ff 0%, #6397ea 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::after {
    left: 100%;
}

.error {
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    display: block;
    font-weight: 500;
    animation: shake 0.5s ease-in-out;
}

.contact-number a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 50px;
    color: #0369a1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #bae6fd;
}

.contact-number a:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.1);
}

.contact-number img {
    width: 24px;
    height: 24px;
    filter: hue-rotate(180deg) saturate(1.5);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .quote-section {
        padding: 15px;
        gap: 30px;
    }

    .quote-form {
        padding: 25px;
    }

    .quote-form h2 {
        font-size: 24px;
    }

    .submit-btn {
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .quote-form {
        padding: 20px;
        border-radius: 12px;
    }

    .quote-form h2 {
        font-size: 22px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .contact-number a {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* =========== ABOUT =========== */

.about {
    padding: var(--py) var(--px);
    background: var(--cultured);
    overflow: hidden;
}

.about-left .img-box {
    position: relative;
}

.about-left img {
    position: absolute;
}

.about-bg,
.about-img {
    width: auto;
    max-width: 100%;
    margin: auto;
}

.about-left .about-img {
    position: relative;
    z-index: 2;
}

.about-left .icon-1 {
    top: 130px;
    right: 0;
    z-index: 5;
}

.about-left .icon-2 {
    display: none;
}

.about-right {
    padding-top: 50px;
}

.about-right .section-subtitle {
    margin-bottom: 10px;
}

.about-right .section-title {
    margin-bottom: 30px;
}

.about-right .section-text {
    margin-bottom: 20px;
}

.about-ul {
    margin-bottom: 40px;
}

.about-ul li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-ul ion-icon {
    font-size: 30px;
    color: var(--red-orange-color-wheel);
}

.about-ul p {
    color: var(--oxford-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    font-weight: var(--fw-5);
    line-height: 1.6;
    text-align: left;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Hide stats on screens smaller than 1024px */
@media (max-width: 1023px) {
    .stats-container {
        display: none;
    }
}

/* Show stats only on laptops (min-width: 1024px) */
@media (min-width: 1024px) {
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 1200px;
        /* margin: 20px auto; */
        padding: 20px;
        /* margin-top: -55px; */
    }

    .stat-box {
        background-color: #050e38;
        color: white;
        padding: 66px;
        text-align: center;
        border-radius: 10px;
        position: relative;
        clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%);
    }

    .stat-box:hover {
        background-color: #FFB703;
        color: black;
    }

    .stat-box i {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 28px;
        font-weight: bold;
        font-family: 'Montserrat', sans-serif;
        ;
    }

    .stat-text {
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
    }
}

.about-ul li:not(:last-child) {
    margin-bottom: 30px;
}

/* =========== COURSE =========== */
.course {
    padding: var(--py) var(--px);
}

.clients {
    text-align: center;
    padding: 50px 20px;
    background: #f5f5f5;
    /* Light background */
}

/* .section-subtitle {
    font-size: 18px;
    color: #FFB703;
    text-transform: uppercase;
} */

.section-title {
    font-size: 48px !important;
    font-weight: bold;
    margin-bottom: 20px;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: red;
    margin: 0 auto 30px;
    border-radius: 5px;
}

.swiper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}


.swiper-slide img {
    max-width: 100%;
    height: 150px;
    /* Increased logo size */
    object-fit: contain;
}

.course .section-subtitle {
    margin-bottom: 15px;
    color: #FFB703;
}

.course .section-title {
    margin-bottom: 60px;
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.course-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 50px hsla(0, 0%, 0%, 0.1);
    overflow: hidden;
}

.course-banner {
    position: relative;
    overflow: hidden;
}

.course-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default-transition);
}

.course-card:hover .course-banner img {
    transform: scale(1.05);
}

.course-banner .course-tag-box {
    position: absolute;
    bottom: 20px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.course-banner .badge-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
}

.course-banner .orange {
    background: var(--red-orange-color-wheel);
}

.course-banner .blue {
    background: var(--ultramarine-blue);
}

.course-card .course-content {
    padding: 30px;
    padding-bottom: 20px;
}

.course-card .card-title {
    margin-bottom: 20px;
}

.course-card .card-title a {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    line-height: 1.3;
    transition: var(--default-transition);
}

.course-card:hover .card-title a {
    color: var(--red-orange-color-wheel);
}

.course-card .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-card .border-bottom {
    margin-bottom: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.course-card .author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card .author-img {
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 20px hsla(0, 0%, 0%, 0.2);
}

.course-card .author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
    transition: var(--default-transition);
}

.course-card .author-name:hover {
    color: var(--oxford-blue);
}

.course-card .rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card .rating ion-icon {
    font-size: 20px;
    color: hsl(45, 100%, 51%);
}

.course-card .enrolled p,
.course-card .rating p {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
}

.course-card .course-price {
    color: var(--red-orange-color-wheel);
    font-size: 20px;
    font-weight: var(--fw-7);
}

.course-card .enrolled {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card .icon-user {
    background: hsl(138, 59%, 91%);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.course .btn-primary {
    display: block;
    margin: auto;
}

/* =========== EVENT =========== */

.event {
    padding: var(--py) var(--px);
    background: var(--cultured);
}

.event-left {
    position: relative;
    max-width: max-content;
    margin-bottom: 50px;
}

.event .banner-img {
    width: auto;
    max-width: 100%;
    border-radius: 8px;
}

.event .play {
    position: absolute;
    bottom: 100px;
    right: 0;
    padding: 30px 40px;
    background: var(--red-orange-color-wheel);
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px hsla(64, 100%, 50%, 0.7);
}

.event .play-icon {
    border-radius: 50%;
    box-shadow: 0 0 0 15px transparent;
}

.event .play ion-icon {
    display: block;
    color: var(--white);
    font-size: 70px;
    margin: -8px;
}

.event .play p {
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    color: var(--white);
}

.event .section-subtitle {
    margin-bottom: 15px;
}

.event .section-title {
    margin-bottom: 30px;
}

.event-card-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
    border-right: 5px solid transparent;
    transition: var(--default-transition);
}

.event-card .content-left {
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 25px;
    box-shadow: 0 16px 0 -15px var(--light-gray);
}

.event-card .day {
    font-size: var(--fs-3);
    font-weight: var(--fw-7);
    color: var(--blue-crayola);
}

.event-card .month {
    font-size: var(--fs-6);
    font-weight: var(--fw-5);
    color: var(--blue-crayola);
}

.event .schedule {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.event .schedule p {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
}

.event .schedule .time {
    padding-right: 20px;
    margin-right: 20px;
    box-shadow: 4px 0 0 -3px var(--light-gray);
}

.event-card .event-name {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    line-height: 1.6;
    text-align: center;
    transition: var(--default-transition);
}

.event-card:hover {
    border-color: var(--red-orange-color-wheel);
}

.event-card:hover .event-name {
    color: var(--red-orange-color-wheel);
}

/* =========== FEATURES =========== */
.features {
    background: var(--oxford-blue);
}

.features-left {
    padding: var(--py) var(--px);
}

.features .section-subtitle {
    margin-bottom: 15px;
}

.features .section-title {
    color: var(--white);
    margin-bottom: 30px;
}

.features-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.features-item:not(:last-child) {
    margin-bottom: 30px;
}

.features-item .item-icon-box {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.features-item .blue {
    background: hsl(222, 87%, 56%);
}

.features-item .pink {
    background: hsl(336, 73%, 50%);
}

.features-item .purple {
    background: hsl(265, 83%, 44%);
}

.features-item .wrapper {
    max-width: calc(100% - 85px);
}

.features-item .item-title {
    color: var(--white);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    margin-bottom: 10px;
}

.features-item .item-text {
    font-family: 'Montserrat', sans-serif;
    color: hsl(231, 100%, 94%);
    font-size: var(--fs-6);
    line-height: 1.6;
}

.features-right {
    height: 500px;
}

.features-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========== INSTRUCTOR =========== */
.instructor {
    padding: var(--py) var(--px);
}

.instructor .section-subtitle {
    text-align: center;
    margin-bottom: 15px;
}

.instructor .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
}

.instructor-card {
    background: hsl(220, 33%, 97%);
    padding: 20px;
    padding-bottom: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--default-transition);
}

.instructor-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
}

.instructor-img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.instructor-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default-transition);
}

.instructor-card:hover .instructor-img-box img {
    transform: scale(1.1);
}

.instructor-card .social-link {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: var(--default-transition);
}

.instructor-card .social-link a {
    background: var(--ultramarine-blue);
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: var(--default-transition);
}

.instructor-card .social-link a:hover {
    background: var(--red-orange-color-wheel);
}

.instructor-card:hover .social-link {
    bottom: 20px;
}

.instructor-name {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    margin-bottom: 10px;
    transition: var(--default-transition);
}

.instructor-card:hover .instructor-name {
    color: var(--red-orange-color-wheel);
}

.instructor-title {
    color: var(--ultramarine-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
}

/* =========== TESTIMONIAL =========== */
/* ========== GLOBAL RESET FOR TESTIMONIAL CONTAINER ========== */
.testimonial-container * {
    box-sizing: border-box;
}

/* ========== BODY STYLING ========== */
.testimonial-body {
    background-color: #eee;
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 10px;
}

/* ========== MAIN CONTAINER ========== */
.testimonial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    background-color: #fff;
    color: #333;
    border-radius: 15px;
    margin: 20px auto;
    padding: 50px 80px;
    width: 800px;
    min-height: 430px;
    position: relative;
    transition: all 0.3s ease;
}

/* ========== STARS ========== */
.stars {
    font-size: 14px;
}

/* ========== TESTIMONIAL TEXT ========== */
.testimonial {
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: 900;
    height: 100%;
    line-height: 28px;
    margin: 0;
}

/* ========== USER INFO ========== */
.user {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.user .user-image {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    object-fit: cover;
}

.user .user-details {
    text-align: center;
}

.user .username {
    margin: 0;
    font-size: 14px;
}

.user .role {
    margin: 0;
    font-size: 12px;
}

/* ========== PROGRESS DOTS ========== */
.progress-dots {
    display: flex;
    gap: 5px;
}

.progress-dot {
    width: 5px;
    height: 5px;
    background-color: #eee;
    border-radius: 50%;
}

.progress-dot.active {
    background-color: #555;
}

/* ========== NAVIGATION BUTTONS ========== */
.testimonials-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    font-size: 10px;
    cursor: pointer;
    transition: 0.1s ease;
}

.testimonials-btn:hover {
    background-color: #eee;
}

#testimonials-btn-prev {
    left: 25px;
}

#testimonials-btn-next {
    right: 25px;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Phones */
@media (max-width: 600px) {
    .testimonial-container {
        width: 95%;
        padding: 30px 20px;
        min-height: auto;
    }

    .testimonial {
        font-size: 14px;
        line-height: 22px;
    }

    .stars {
        font-size: 12px;
    }

    .testimonials-btn {
        width: 25px;
        height: 25px;
        font-size: 8px;
    }
}

/* Tablets */
@media (min-width: 601px) and (max-width: 992px) {
    .testimonial-container {
        width: 90%;
        padding: 40px 40px;
    }

    .testimonial {
        font-size: 15px;
        line-height: 24px;
    }
}

/* Laptops / Large Screens */
@media (min-width: 993px) {
    .testimonial-container {
        width: 800px;
    }
}

/* =========== TESTIMONIAL =========== */

/* ===== Base Styles ===== */
.testimonials {
    padding: var(--py) var(--px);
    background: var(--cultured);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.testimonials-left {
    flex: 1 1 350px;
}

.testimonials-right {
    flex: 1 1 500px;
    overflow: hidden;
    position: relative;
    padding-top: 20px;
}

.testimonials .section-subtitle {
    margin-bottom: 15px;
}

.testimonials .section-title {
    margin-bottom: 30px;
}

.section-text {
    margin-bottom: 20px;
    color: var(--sonic-silver);
}

/* ===== Slider ===== */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: stretch;
    /* Make all cards same height */
}

.testimonials-card {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 15px 30px hsla(0, 0%, 0%, 0.1);
    height: 350px;
    /* Fixed height to avoid jump */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.testimonials-card.active {
    display: flex;
}

.testimonials .quote-img {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 1;
    opacity: 0.1;
    width: 50px;
}

.testimonials-text {
    color: var(--sonic-silver);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    line-height: 1.6;
    margin-bottom: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.client-detail {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.client-detail .client-name {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    line-height: 1.2;
    font-weight: var(--fw-7);
    margin-bottom: 5px;
}

.star-rating {
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
    display: inline-block;
    background: linear-gradient(90deg, #eac408, #FFC107);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.client-detail .client-title {
    color: #000000;
    font-size: var(--fs-6);
}

/* ===== Buttons ===== */
.testimonial-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-btn {
    background: var(--white);
    border: 1px solid var(--sonic-silver);
    padding: 8px 12px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: var(--red-orange-color-wheel);
    color: var(--white);
    border-color: var(--red-orange-color-wheel);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .testimonials {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-left {
        order: 1;
        margin-bottom: 20px;
    }

    .testimonials-right {
        order: 2;
    }

    .testimonial-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .testimonials-card {
        padding: 20px;
        height: auto;
        /* Let it expand naturally on very small screens */
    }

    .testimonials .quote-img {
        width: 35px;
        bottom: 20px;
        right: 20px;
    }

    .testimonials-text {
        font-size: 14px;
    }
}


/* =========== BLOG =========== */

.blog {
    padding: var(--py) var(--px) 250px;
}

.blog .section-subtitle {
    text-align: center;
    margin: 15px;
}

.blog .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
    overflow: hidden;
}

.blog-banner-box {
    overflow: hidden;
}

.blog-banner-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default-transition);
}

.blog-card:hover .blog-banner-box img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
    padding-bottom: 20px;
}

.blog-title {
    padding-bottom: 25px;
    border-radius: 1px solid var(--light-gray);
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    transition: var(--default-transition);
}

.blog-card:hover .blog-title a {
    color: var(--red-orange-color-wheel);
}

.blog-content .wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.blog-content .wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--light-gray);
    width: 1px;
    height: 15px;
}

.blog-publish-date,
.blog-comment {
    display: flex;
    align-items: center;
    gap: 10px;
}

:is(.blog-publish-date, .blog-comment) a {
    color: var(--sonic-silver);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    transition: var(--default-transition);
}

:is(.blog-publish-date, .blog-comment) a:hover {
    color: var(--oxford-blue);
}

/* =========== CONTACT =========== */
.contact-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

/* Make the whole phone icon & number clickable */
.contact-number a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    /* keep same white color */
}

.contact-number a:hover {
    color: #ffcc00;
    /* change color on hover */
}

.contact-number img {
    width: 60px;
    height: 60px;
    margin-right: 0px;
    margin-left: -12px;
}


.contact {
    position: relative;
}

.contact-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--ultramarine-blue);
    width: calc(100% - var(--px));
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-card-bg {
    position: absolute;
    width: auto;
    max-width: 100%;
    top: -2px;
    left: -2px;
}

.contact-card h2 {
    position: relative;
    font-size: 30px;
    color: var(--white);
    font-weight: var(--fw-8);
    text-align: center;
}

.contact .btn-primary {
    justify-self: center;
}

.view-more-container {
    text-align: center;
    margin-top: 20px;
}

/* =========== FOOTER =========== */

.footer {
    background-color: #050e38;
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    margin-top: 20px;
    color: #ccc;
    font-size: 15px;
}

.footer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-profile h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #ff4444;
    text-transform: uppercase;
}

.footer-profile span {
    font-size: 14px;
    color: #aaa;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact i {
    color: #ffbb33;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li {
    color: #ccc;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ccc;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 15px;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 var(--px);
        gap: 30px;
    }

    .footer {
        padding: 40px 0 0;
    }
}

/* =========== GLOBAL SUCCESS POP-UP =========== */
.global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.global-success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 400px;
    width: 90%;
}

.global-success-modal.active,
.global-overlay.active {
    display: block;
    opacity: 1;
}

.global-success-modal.active {
    transform: translate(-50%, -50%) scale(1);
}

/* Checkmark Animation */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #7ac142;
    stroke-width: 3;
    fill: none;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.global-success-modal h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.global-success-modal p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.global-success-close {
    background: linear-gradient(135deg, #0062ff, #004ecc);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 98, 255, 0.3);
    width: 100%;
}

.global-success-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 98, 255, 0.4);
}

.quote-section-modern {
    padding: 100px 5% 120px 5%;
    /* Added extra bottom padding for spacing */
    position: relative;
    /* Removed overflow:hidden to prevent shadow clipping at the bottom */
    /* Removed gradient to match site background */
}

.quote-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content */
.quote-content {
    flex: 1;
    max-width: 500px;
}

.sub-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 98, 255, 0.08);
    color: #0062ff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(0, 98, 255, 0.1);
}

.modern-heading {
    font-size: 3.2rem;
    /* Reverted to 3.2rem per previous state */
    line-height: 1.15;
    color: #050e38;
    /* Oxford Blue */
    font-weight: 800;
    /* Extra bold */
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.modern-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Contact Block */
.contact-highlight-modern {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #ffffff;
    padding: 15px 25px 15px 15px;
    /* balanced padding */
    border-radius: 20px;
    /* softer */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* very soft shadow */
    width: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-highlight-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 98, 255, 0.1);
}

/* Professional Blinking Animation - HIGHLY VISIBLE */


.icon-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0062ff, #2979ff) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    /* Force Blinking Animation with !important */
    animation: pulse-force 1s infinite ease-in-out !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 98, 255, 0.4);
}

.icon-circle:hover {
    animation-play-state: paused !important;
    transform: scale(1.12) !important;
    box-shadow: 0 0 35px 12px rgba(0, 98, 255, 1) !important;
}

.contact-text span {
    display: block;
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.phone-link-modern {
    font-size: 1.5rem;
    font-weight: 800;
    color: #050e38;
    font-family: 'Montserrat', sans-serif;
}

/* Premium Form Card */
/* Premium Form Card */
.quote-form-card {
    flex: 1;
    max-width: 550px;
    background: #ffffff;
    /* Reduced bottom padding to balance with button margin */
    padding: 50px 50px 40px 50px;
    border-radius: 30px;
    /* Real border for crisp definition */
    border: 1px solid #e5e7eb;
    /* Balanced shadow: reduced vertical offset, even spread */
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #050e38;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 0px;
}

/* Removed the underline for a cleaner look, or use a smaller one */
.form-title::after {
    display: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    /* more breathing room */
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group.full-width,
.form-action.full-width {
    grid-column: span 2;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #050e38;
    margin-left: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input {
    width: 100%;
    max-width: 100%;
    /* Ensure inputs don't overflow */
    padding: 16px 20px;
    border: 2px solid #eaebf0;
    /* Very subtle border */
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fcfcfd;
    box-sizing: border-box;
    /* Include padding in width calculation */
}

.input-group input:focus {
    border-color: #0062ff;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 98, 255, 0.08);
    /* Glow on focus */
    outline: none;
}

.input-group input::placeholder {
    color: #b0bac9;
}

.error-msg {
    color: #ff3b30;
    font-size: 0.75rem;
    margin-top: 4px;
    margin-left: 2px;
}

/* Premium Button */
.btn-modern-submit {
    width: 100%;
    min-width: 280px;
    /* Ensure button is wide enough for text */
    padding: 20px 30px;
    /* Increased horizontal padding */
    /* Gradient */
    background: linear-gradient(135deg, #0062ff 0%, #0050d5 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 98, 255, 0.25);
    margin-top: 15px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    /* Prevent text from wrapping */
}

.btn-modern-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 98, 255, 0.35);
    background: linear-gradient(135deg, #0056e0 0%, #0044b8 100%);
}

.btn-modern-submit i {
    transition: transform 0.3s ease;
}

.btn-modern-submit:hover i {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1024px) {
    .quote-wrapper {
        flex-direction: column;
        gap: 60px;
        align-items: stretch;
    }

    .quote-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .contact-highlight-modern {
        margin: 0 auto;
    }

    .quote-form-card {
        max-width: 100%;
        padding: 40px 30px;
    }

    .quote-section-modern {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .modern-heading {
        font-size: 1.9rem;
        /* Reduced from 2.8rem to fit on 2 lines */
    }

    .form-grid {
        grid-template-columns: 1fr;
        /* Force single column on mobile */
        gap: 15px;
        /* Reduce gap slightly for mobile */
    }

    .input-group.full-width,
    .form-action.full-width {
        grid-column: span 1;
        /* Reset span for single column */
    }

    .quote-form-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    /* Force "Request a Quote" to single line */
    .form-header h3 {
        font-size: 1.4rem;
        white-space: nowrap;
    }

    /* Mobile override for Section Titles */
    .section-title {
        font-size: 28px !important;
    }
}

/* =========== GLOBAL TYPOGRAPHY REFINEMENTS =========== */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Update inputs in other areas if needed to match */
input,
button,
select,
textarea {
    font-family: inherit;
}

/* =========== FLOATING WHATSAPP BUTTON =========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.my-float {
    margin-top: 1px;
}

/* Pulse Animation */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* MOBILE FIXES FOR PHONE SECTION */
@media (max-width: 768px) {
    .contact-highlight-modern {
        flex-direction: row;
        /* Keep it side-by-side */
        align-items: center;
        justify-content: flex-start;
        padding: 15px;
        width: 100%;
    }

    .icon-circle {
        min-width: 55px !important;
        /* Force circle shape */
        min-height: 55px !important;
        /* Force circle shape */
        width: 55px !important;
        height: 55px !important;
        flex-shrink: 0 !important;
        /* Prevent squishing */
        margin-right: 15px;
        font-size: 22px !important;
    }

    .contact-text {
        text-align: left;
        flex: 1;
        /* Take remaining space */
        min-width: 0;
        /* Allow text truncation if needed */
    }

    .phone-link-modern {
        font-size: 1.25rem !important;
        /* Slightly smaller for mobile */
        white-space: nowrap !important;
        /* Force one line */
        display: block;
    }
}

/* Utility: Mobile only Line Break */
.mobile-only-br {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only-br {
        display: block;
    }
}

@media (max-width: 380px) {

    /* For vary small phones */
    .phone-link-modern {
        font-size: 1.1rem !important;
    }

    .icon-circle {
        min-width: 50px !important;
        min-height: 50px !important;
        width: 50px !important;
        height: 50px !important;
    }
}

/* === SOURCE: about.css === */
/* =========== VARIABLES =========== */




/* =========== RESET =========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    font: inherit;
}

img,
span,
a,
ion-icon {
    display: block;
}

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

html {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--red-orange-color-wheel);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ultramarine-blue);
}

/* =========== COMPONENT =========== */

.btn {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    font-weight: var(--fw-5);
    border-radius: 8px;
    color: var(--white);
    padding: 20px 45px;
    text-transform: uppercase;
    overflow: hidden;
}

.btn .btn-text {
    position: relative;
    z-index: 5;
}

.btn-primary,
.btn-secondary .square {
    background: var(--red-orange-color-wheel);
}

.btn .square {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: var(--default-transition);
}

.btn:hover .square {
    right: -2px;
    width: 102%;
    height: 102%;
}

.btn-primary .square,
.btn-secondary {
    background: var(--oxford-blue);
}

/* =========== REUSED CSS =========== */

.section-subtitle {
    color: var(--ultramarine-blue);
    font-weight: var(--fw-7);
    text-transform: uppercase;
}

.section-text {
    color: var(--sonic-silver);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    line-height: 1.6;
}

.section-title {
    font-size: var(--fs-2);
    font-weight: var(--fw-8);
    color: var(--oxford-blue);
    line-height: 1.3;
}

/* =========== MAIN =========== */



.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    max-width: 1440px !important;
    background: hsla(0, 0%, 100%, 0.9) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    backdrop-filter: blur(15px) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 6px var(--px) !important;
    /* Reduced from 10px to 6px */
    height: 100px !important;
    /* Fixed smaller height */
    box-shadow: 0 10px 20px -5px hsla(0, 0%, 8%, 0.03) !important;
    z-index: 100 !important;
}

.navbar-nav {
    position: absolute;
    background: var(--white);
    top: calc(100% + 40px);
    left: 30px;
    right: 30px;
    text-align: center;
    box-shadow: 0 10px 30px -5px hsla(0, 0%, 8%, 0.25);
    padding: 30px;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.nav-item a {
    padding: 10px !important;
    font-size: var(--fs-5);
    font-weight: var(--fw-6);
    font-family: 'Montserrat', sans-serif;
    color: var(--oxford-blue);
    transition: var(--default-transition);
}

.nav-item:not(:last-child) a {
    border-bottom: 1px solid hsla(0, 0%, 8%, 0.1);
}

.nav-item a:hover {
    color: var(--red-orange-color-wheel) !important;
    background: transparent !important;
}

.navbar-nav.active {
    animation: menuPopup 0.5s ease forwards;
    pointer-events: all;
}

@keyframes menuPopup {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.1);
    }

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

.navbar .btn {
    display: none;
}

.nav-toggle-btn {
    background: var(--red-orange-color-wheel);
    width: 44px;
    /* Slightly smaller toggle */
    height: 26px;
    /* Slightly smaller toggle */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.nav-toggle-btn span {
    background: var(--white);
    width: 26px;
    height: 2px;
    transition: var(--default-transition);
}

.nav-toggle-btn.active .one {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle-btn.active .two {
    display: none;
}

.nav-toggle-btn.active .three {
    transform: rotate(-45deg) translate(2px, -2px);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.arrow {
    margin-left: 8px;
    /* Moves arrow to the right */
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    list-style: none;
    width: 240px;
    top: 100%;
    left: 0;
    border-radius: 5px;
}

.dropdown-menu li {
    padding: 8px 12px;
}

.dropdown-menu li a {
    color: black;
    display: flex;
    justify-content: center;
    /* Align text and arrow */
    align-items: center;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Submenu Styling */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Align text and arrow */
}

.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: white;
    list-style: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 240px;
}

/* Show submenu on hover */
.dropdown-submenu:hover .submenu {
    display: block;
}

@media screen and (max-width: 768px) {
    .dropdown-toggle {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    .dropdown-toggle .arrow {
        display: inline-block;
        margin-left: 5px;
    }
}

/* =========== HOME =========== */

.home {
    position: relative;
    margin-top: 70px;
    padding: var(--py) var(--px);
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -400px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, hsla(217, 100%, 50%, 0.3), transparent 70%);
}

.home::after {
    content: '';
    position: absolute;
    top: 100px;
    right: -400px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, hsla(15, 100%, 55%, 0.3), transparent 70%);
}

.home .deco-shape {
    position: absolute;
}

.home .shape-1 {
    top: 14%;
    left: 8%;
}

.home .shape-2 {
    top: 600px;
    left: 30px;
}

.home .shape-3 {
    top: 25%;
    right: 0;
}

.home .shape-4 {
    top: 570px;
    right: 110px;
}

.home-left {
    margin-bottom: 60px;
}

.home-left,
.home-right {
    position: relative;
    z-index: 10;
}

.home .section-subtitle {
    text-align: center;
    margin-bottom: 25px;
}

.main-heading {
    color: var(--oxford-blue);
    font-size: var(--fs-1);
    font-weight: var(--fw-9);
    line-height: 1.2;
    margin-bottom: 48px;
    text-align: center;
}

.underline-img {
    display: inline-block;
    position: relative;
}

.underline-img img {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
}

.home .section-text {
    max-width: 500px;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
}

.home-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.home-right .img-box {
    position: relative;
}

.home-right .img-box img {
    position: absolute;
}

.home-right .img-box .banner-img {
    position: relative;
    width: auto;
    max-width: 100%;

    margin: auto;
}

.home-right .background-shape {
    width: auto;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    /* z-index: 1; */
}

.home-right .icon-1 {
    top: 200px;
    left: 20px;
}

.home-right .icon-2,
.home-right .icon-3 {
    display: none;
}

.home-right .icon-4 {
    top: 60px;
    right: 20px;
    filter: drop-shadow(0 8px 30px hsla(350, 100%, 68%, 0.5));
}

.icon-1,
.icon-2,
.icon-3,
.icon-4 {
    filter: drop-shadow(0 10px 20px hsla(0, 0%, 0%, 0.2));
    z-index: 5;
}

/* =========== COURSE CATEGORY =========== */
.category {
    padding: var(--py) var(--px);
}

.category .section-subtitle {
    text-align: center;
    margin-bottom: 15px;
}

.category .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.category .course-item-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.course-category-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid hsl(0, 0%, 67%);
    border-radius: 8px;
    padding: 25px;
    transition: var(--default-transition);
}

.course-category-item:hover {
    background: var(--red-orange-color-wheel);
    border-color: var(--red-orange-color-wheel);
    box-shadow: 0 10px 50px -20px var(--red-orange-color-wheel);
}

.category-icon {
    width: 50px;
}

.category-icon.hover,
.course-category-item:hover .category-icon.default {
    display: none;
}

.category-icon.default,
.course-category-item:hover .category-icon.hover {
    display: block;
}

.category-title a {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
}

.category-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: var(--sonic-silver);
    font-size: var(--fs-6);
}

.course-category-item:hover .category-title a,
.course-category-item:hover .category-subtitle {
    color: var(--white);
}


/* =========== ABOUT =========== */

.about {
    padding: var(--py) var(--px);
    background: var(--cultured);
    overflow: hidden;
}

.about-left .img-box {
    position: relative;
}

.about-left img {
    position: absolute;
}

.about-bg,
.about-img {
    width: auto;
    max-width: 100%;
    margin: auto;
}

.about-left .about-img {
    position: relative;
    z-index: 2;
}

.about-left .icon-1 {
    top: 130px;
    right: 0;
    z-index: 5;
}

.about-left .icon-2 {
    display: none;
}

.about-right {
    padding-top: 50px;
}

.about-right .section-subtitle {
    margin-bottom: 10px;
}

.about-right .section-title {
    margin-bottom: 30px;
}

.about-right .section-text {
    margin-bottom: 20px;
}

.about-ul {
    margin-bottom: 40px;
}

.about-ul li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-ul ion-icon {
    font-size: 30px;
    color: var(--red-orange-color-wheel);
}

.about-ul p {
    color: var(--oxford-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    font-weight: var(--fw-5);
    line-height: 1.6;
    text-align: left;
}

.about-ul li:not(:last-child) {
    margin-bottom: 30px;
}

/* =========== COURSE =========== */
.course {
    padding: var(--py) var(--px);
}

.course .section-subtitle {
    margin-bottom: 15px;
}

.course .section-title {
    margin-bottom: 60px;
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.course-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 50px hsla(0, 0%, 0%, 0.1);
    overflow: hidden;
}

.course-banner {
    position: relative;
    overflow: hidden;
}

.course-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default-transition);
}

.course-card:hover .course-banner img {
    transform: scale(1.05);
}

.course-banner .course-tag-box {
    position: absolute;
    bottom: 20px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.course-banner .badge-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
}

.course-banner .orange {
    background: var(--red-orange-color-wheel);
}

.course-banner .blue {
    background: var(--ultramarine-blue);
}

.course-card .course-content {
    padding: 30px;
    padding-bottom: 20px;
}

.course-card .card-title {
    margin-bottom: 20px;
}

.course-card .card-title a {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    line-height: 1.3;
    transition: var(--default-transition);
}

.course-card:hover .card-title a {
    color: var(--red-orange-color-wheel);
}

.course-card .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-card .border-bottom {
    margin-bottom: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.course-card .author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card .author-img {
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 20px hsla(0, 0%, 0%, 0.2);
}

.course-card .author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
    transition: var(--default-transition);
}

.course-card .author-name:hover {
    color: var(--oxford-blue);
}

.course-card .rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card .rating ion-icon {
    font-size: 20px;
    color: hsl(45, 100%, 51%);
}

.course-card .enrolled p,
.course-card .rating p {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
}

.course-card .course-price {
    color: var(--red-orange-color-wheel);
    font-size: 20px;
    font-weight: var(--fw-7);
}

.course-card .enrolled {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-card .icon-user {
    background: hsl(138, 59%, 91%);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.course .btn-primary {
    display: block;
    margin: auto;
}

/* =========== EVENT =========== */

.event {
    padding: var(--py) var(--px);
    background: var(--cultured);
}

.event-left {
    position: relative;
    max-width: max-content;
    margin-bottom: 50px;
}

.event .banner-img {
    width: auto;
    max-width: 100%;
    border-radius: 8px;
}

.event .play {
    position: absolute;
    bottom: 100px;
    right: 0;
    padding: 30px 40px;
    background: var(--red-orange-color-wheel);
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px hsla(64, 100%, 50%, 0.7);
}

.event .play-icon {
    border-radius: 50%;
    box-shadow: 0 0 0 15px transparent;
}

.event .play ion-icon {
    display: block;
    color: var(--white);
    font-size: 70px;
    margin: -8px;
}

.event .play p {
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    color: var(--white);
}

.event .section-subtitle {
    margin-bottom: 15px;
}

.event .section-title {
    margin-bottom: 30px;
}

.event-card-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
    border-right: 5px solid transparent;
    transition: var(--default-transition);
}

.event-card .content-left {
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 25px;
    box-shadow: 0 16px 0 -15px var(--light-gray);
}

.event-card .day {
    font-size: var(--fs-3);
    font-weight: var(--fw-7);
    color: var(--blue-crayola);
}

.event-card .month {
    font-size: var(--fs-6);
    font-weight: var(--fw-5);
    color: var(--blue-crayola);
}

.event .schedule {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.event .schedule p {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
}

.event .schedule .time {
    padding-right: 20px;
    margin-right: 20px;
    box-shadow: 4px 0 0 -3px var(--light-gray);
}

.event-card .event-name {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    line-height: 1.6;
    text-align: center;
    transition: var(--default-transition);
}

.event-card:hover {
    border-color: var(--red-orange-color-wheel);
}

.event-card:hover .event-name {
    color: var(--red-orange-color-wheel);
}

/* =========== FEATURES =========== */
.features {
    background: var(--oxford-blue);
}

.features-left {
    padding: var(--py) var(--px);
}

.features .section-subtitle {
    margin-bottom: 15px;
}

.features .section-title {
    color: var(--white);
    margin-bottom: 30px;
}

.features-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.features-item:not(:last-child) {
    margin-bottom: 30px;
}

.features-item .item-icon-box {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.features-item .blue {
    background: hsl(222, 87%, 56%);
}

.features-item .pink {
    background: hsl(336, 73%, 50%);
}

.features-item .purple {
    background: hsl(265, 83%, 44%);
}

.features-item .wrapper {
    max-width: calc(100% - 85px);
}

.features-item .item-title {
    color: var(--white);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    margin-bottom: 10px;
}

.features-item .item-text {
    font-family: 'Montserrat', sans-serif;
    color: hsl(231, 100%, 94%);
    font-size: var(--fs-6);
    line-height: 1.6;
}

.features-right {
    height: 500px;
}

.features-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========== INSTRUCTOR =========== */
.instructor {
    padding: var(--py) var(--px);
}

.instructor .section-subtitle {
    text-align: center;
    margin-bottom: 15px;
}

.instructor .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
}

.instructor-card {
    background: hsl(220, 33%, 97%);
    padding: 20px;
    padding-bottom: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--default-transition);
}

.instructor-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
}

.instructor-img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.instructor-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default-transition);
}

.instructor-card:hover .instructor-img-box img {
    transform: scale(1.1);
}

.instructor-card .social-link {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: var(--default-transition);
}

.instructor-card .social-link a {
    background: var(--ultramarine-blue);
    color: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: var(--default-transition);
}

.instructor-card .social-link a:hover {
    background: var(--red-orange-color-wheel);
}

.instructor-card:hover .social-link {
    bottom: 20px;
}

.instructor-name {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    margin-bottom: 10px;
    transition: var(--default-transition);
}

.instructor-card:hover .instructor-name {
    color: var(--red-orange-color-wheel);
}

.instructor-title {
    color: var(--ultramarine-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
}

/* =========== TESTIMONIAL =========== */

.testimonials {
    padding: var(--py) var(--px);
    background: var(--cultured);
}

.testimonials .section-subtitle {
    margin-bottom: 15px;
}

.testimonials .section-title {
    margin-bottom: 30px;
}

testimonials-right {
    padding: 50px 15px 0;
}

.testimonials-card {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 15px 30px hsla(0, 0%, 0%, 0.1);
}

.testimonials .quote-img {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 1;
}

.testimonials-text {
    color: var(--sonic-silver);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonials-client {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.client-img-box {
    border: 2px solid var(--red-orange-color-wheel);
    border-radius: 8px;
    padding: 10px;
}

.client-img-box img {
    border-radius: 8px;
}

.client-detail .client-name {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    line-height: 1.2;
    font-weight: var(--fw-7);
    margin-bottom: 5px;
}

.client-detail .client-title {
    color: var(--red-orange-color-wheel);
    font-size: var(--fs-6);
}

/* =========== BLOG =========== */

.blog {
    padding: var(--py) var(--px) 250px;
}

.blog .section-subtitle {
    text-align: center;
    margin: 15px;
}

.blog .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
    overflow: hidden;
}

.blog-banner-box {
    overflow: hidden;
}

.blog-banner-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default-transition);
}

.blog-card:hover .blog-banner-box img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
    padding-bottom: 20px;
}

.blog-title {
    padding-bottom: 25px;
    border-radius: 1px solid var(--light-gray);
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--oxford-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-7);
    transition: var(--default-transition);
}

.blog-card:hover .blog-title a {
    color: var(--red-orange-color-wheel);
}

.blog-content .wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.blog-content .wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--light-gray);
    width: 1px;
    height: 15px;
}

.blog-publish-date,
.blog-comment {
    display: flex;
    align-items: center;
    gap: 10px;
}

:is(.blog-publish-date, .blog-comment) a {
    color: var(--sonic-silver);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    transition: var(--default-transition);
}

:is(.blog-publish-date, .blog-comment) a:hover {
    color: var(--oxford-blue);
}

/* =========== CONTACT =========== */

.contact {
    position: relative;
}

.contact-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--ultramarine-blue);
    width: calc(100% - var(--px));
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-card-bg {
    position: absolute;
    width: auto;
    max-width: 100%;
    top: -2px;
    left: -2px;
}

.contact-card h2 {
    position: relative;
    font-size: 30px;
    color: var(--white);
    font-weight: var(--fw-8);
    text-align: center;
}

.contact .btn-primary {
    justify-self: center;
}


/* =========== FOOTER =========== */

footer {
    background: var(--oxford-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 220px var(--px) 80px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    color: var(--lavender-blue);
    margin-bottom: 35px;
    line-height: 1.6;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link a {
    background: hsla(0, 0%, 100%, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: var(--default-transition);
}

.social-link a:hover {
    background: var(--red-orange-color-wheel);
}

.social-link ion-icon {
    font-size: 20px;
    color: var(--white);
}

.grid-item .item-heading {
    font-size: var(--fs-4);
    color: var(--white);
    margin-bottom: 25px;
}

.grid-item .list-item:not(:last-child) {
    margin-bottom: 10px;
}

.grid-item .list-item a {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    color: var(--lavender-blue);
    font-size: var(--fs-6);
    transition: var(--default-transition);
}

.grid-item .list-item a:hover {
    transform: translateX(10px);
    color: var(--red-orange-color-wheel);
}

.grid-item .wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.grid-item .wrapper input {
    width: 100%;
    padding: 20px 30px;
    padding-right: 70px;
    color: var(--oxford-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-6);
    border: none;
    outline: none;
}

.grid-item .send-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 62px;
    height: 62px;
    background: var(--red-orange-color-wheel);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--default-transition);
}

.grid-item .send-btn ion-icon {
    font-size: 25px;
    color: var(--white);
}

.grid-item .send-btn:hover {
    background: var(--ultramarine-blue);
}

.copyright {
    background: hsl(231, 90%, 8%);
    text-align: center;
    color: var(--lavender-blue);
    font-size: var(--fs-6);
    font-family: 'Montserrat', sans-serif;
    padding: 15px var(--py);
    line-height: 1.7;
}

.copyright a {
    display: inline-block;
    color: var(--red-orange-color-wheel);
    transition: var(--default-transition);
}

.copyright a:hover {
    color: var(--ultramarine-blue);
}

/* =========== FLOATING WHATSAPP BUTTON =========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.my-float {
    margin-top: 1px;
}

/* Pulse Animation */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* =========== FOOTER (From Global Style) =========== */
.footer {
    background-color: #050e38;
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    margin-top: 20px;
    color: #ccc;
    font-size: 15px;
}

.footer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-profile h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #ff4444;
    text-transform: uppercase;
}

.footer-profile span {
    font-size: 14px;
    color: #aaa;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact i {
    color: #ffbb33;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li {
    color: #ccc;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ccc;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 15px;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 var(--px);
        gap: 30px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .about-section,
    .values-section,
    .timeline-section,
    .leadership-section,
    .cta-section {
        padding: 80px 20px;
    }

    .hero-section {
        padding: 140px 20px 80px;
    }
}

/* === SOURCE: domestic.css === */


/* ===== VARIABLES ===== */
:root {
    --primary: #2c5aa0;
    --primary-dark: #1e3a6e;
    --secondary: #f8c300;
    --accent: #e63946;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 12px;
    --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #3a6bc5 100%);
    --gradient-secondary: linear-gradient(135deg, #f8c300 0%, #ffd700 100%);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    max-width: 100vw;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    background: #ffffff;
    max-width: 1440px;
    margin: auto;
    overflow: hidden;
}

/* ===== ANIMATED BACKGROUND ELEMENTS ===== */
.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.floating-box {
    position: absolute;
    background: rgba(44, 90, 160, 0.05);
    border-radius: 20px;
    /* animation: floatAround 20s infinite linear; */
}

.floating-box:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-box:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.floating-box:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 20s;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes floatAround {

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

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(40px, 0) rotate(180deg);
    }

    75% {
        transform: translate(20px, 20px) rotate(270deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) rotate(-5deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px) rotate(5deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(44, 90, 160, 0.4), 0 0 30px rgba(44, 90, 160, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(44, 90, 160, 0.6), 0 0 40px rgba(44, 90, 160, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }

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

    80% {
        opacity: 1;
        transform: scale(0.95);
    }

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

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

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

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

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

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent
    }

    50% {
        border-color: var(--secondary)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== MAIN SECTION STYLES ===== */
.exim-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 25px;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

/* ===== LEFT FORM BOX ===== */
.exim-left-box {
    flex: 1;
    min-width: 320px;
    max-height: fit-content;
    align-self: flex-start;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 35px;
    margin-right: 30px;
    margin-bottom: 30px;
    animation: fadeInLeft 1s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.exim-left-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.exim-left-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(44, 90, 160, 0.03) 50%, transparent 70%);
    z-index: -1;
    /* animation: shimmer 3s infinite linear; */
    background-size: 200% auto;
}

.exim-left-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    background-size: 200% 100%;
    /* animation: shimmer 2s infinite linear; */
}

.form-main-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.5s both;

    text-align: left;
}

.form-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    animation: slideInRight 1s ease-out 0.8s both;
}

.form-sub-title {
    color: var(--gray);
    font-size: 1.5rem;
    margin-bottom: 35px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    position: relative;
}

/* ===== FORM STYLES ===== */
.exim-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.exim-form label {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.exim-form label::before {
    content: '→';
    margin-right: 8px;
    color: var(--secondary);
    font-weight: bold;
    transition: var(--transition);
}

.exim-form input {
    padding: 16px 20px;
    margin-bottom: 25px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(248, 249, 250, 0.8);
    position: relative;
}

.exim-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.15);
    transform: translateY(-3px);
}

.exim-form input::placeholder {
    color: #adb5bd;
    transition: var(--transition);
}

.exim-form input:focus::placeholder {
    color: transparent;
}

.done-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 1.1s both;
    /* Removed pulseGlow */
    letter-spacing: 1px;
}

.done-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.done-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(44, 90, 160, 0.4);
}

.done-btn:hover::before {
    left: 100%;
}

.done-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(248, 195, 0, 0.05) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary);
    animation: fadeInUp 0.8s ease-out 1.3s both;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="%232c5aa0" stroke-width="0.5" stroke-dasharray="5,5"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.contact-title {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    padding: 10px;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(10px);
}

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

.contact-item ion-icon {
    color: var(--primary);
    font-size: 1.6rem;
    margin-right: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact-item ion-icon:nth-child(1) {
    animation-delay: 0s;
}

.contact-item ion-icon:nth-child(2) {
    animation-delay: 1s;
}

.contact-item ion-icon:nth-child(3) {
    animation-delay: 2s;
}

.contact-item span {
    color: var(--dark);
    line-height: 1.6;
    font-weight: 500;
}

.phones {
    line-height: 1.8 !important;
}

/* ===== RIGHT CONTENT ===== */
.exim-right-row {
    flex: 2;
    min-width: 320px;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.images-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.images-row img {
    flex: 1;
    min-width: 280px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out 0.7s both;
    filter: brightness(0.95);
    transform-style: preserve-3d;
}

.images-row img:nth-child(2) {
    animation-delay: 0.9s;
}

.images-row img:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
    z-index: 2;
}

/* ===== COMPANY INFO ===== */
.company-info {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.company-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(44, 90, 160, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.company-info p {
    margin-bottom: 25px;
    text-align: justify;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.company-why-title {
    color: var(--primary);
    margin: 35px 0 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 1.3s both;

    text-align: left;
}

.company-why-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    animation: slideInRight 1s ease-out 1.5s both;
}

.list-with-image {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.list-with-image ul {
    flex: 1;
    min-width: 280px;
    list-style-type: none;
}

.list-with-image ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark);
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out forwards;
}

.list-with-image ul li:nth-child(1) {
    animation-delay: 1.7s;
}

.list-with-image ul li:nth-child(2) {
    animation-delay: 1.9s;
}

.list-with-image ul li:nth-child(3) {
    animation-delay: 2.1s;
}

.list-with-image ul li:nth-child(4) {
    animation-delay: 2.3s;
}

.list-with-image ul li:nth-child(5) {
    animation-delay: 2.5s;
}

.list-with-image ul li:nth-child(6) {
    animation-delay: 2.7s;
}

.list-with-image ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    background: var(--gradient-primary);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(44, 90, 160, 0.3);
    transition: var(--transition);
}

.list-with-image ul li:hover::before {
    transform: scale(1.2) rotate(15deg);
    background: var(--gradient-secondary);
    color: var(--primary);
}

.image-container {
    flex: 1;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    animation: fadeInRight 0.8s ease-out 1.7s both;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(44, 90, 160, 0.1) 50%, transparent 70%);
    z-index: 1;
    /* animation: shimmer 3s infinite linear; */
    background-size: 200% auto;
    pointer-events: none;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
    filter: sepia(0.2);
}

.image-container:hover img {
    transform: scale(1.05);
    filter: sepia(0);
}

/* ===== SPECIAL EFFECTS ===== */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(44, 90, 160, 0.4);
    transform: scale(0);
    animation: ripple 0.8s linear;
    pointer-events: none;
}

.typing-text {
    overflow: hidden;
    border-right: 3px solid var(--secondary);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
    width: 0;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

.counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-block;
    animation: bounceIn 1s ease-out;
}

/* ===== LOADING ANIMATION ===== */
.loading-spinner {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-indicator:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.6);
}

/* =========== PAGE TITLE ABOVE CONTENT =========== */
.exim-page-title {
    width: 100%;
    text-align: center;
    margin-top: 130px;
    margin-bottom: 40px;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #222;
}

/* ========================================= */
/* =========== LOCATIONS SECTION =========== */
/* ========================================= */
.locations-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    width: 100%;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
}

.locations-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #0062ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.locations-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* 5-column grid with proper spacing */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    perspective: 1000px;
    width: 100%;
}

/* Compact cards with proper margins */
.location-card {
    background: white;
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 98, 255, 0.15);
    border-color: #0062ff;
}

.location-icon {
    font-size: 20px;
    color: #0062ff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.2);
    color: #00d4ff;
}

.location-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover .location-name {
    color: #0062ff;
}

/* =========== RESPONSIVE STYLES =========== */
@media (max-width: 1200px) {
    .exim-left-box {
        margin-right: 0;
    }

    .exim-section {
        flex-direction: column;
    }

    .images-row img {
        height: 250px;
    }

    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .locations-container {
        padding: 0 25px;
    }

    .locations-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .exim-section {
        padding: 0 15px;
        margin: 20px auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .exim-left-box,
    .exim-right-row {
        min-width: 0;
        width: 100%;
        margin-right: 0;
    }

    .exim-left-box,
    .company-info {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-main-title {
        font-size: 2rem;
        text-align: left;
    }

    .form-sub-title {
        font-size: 1.3rem;
    }

    .company-why-title {
        font-size: 1.5rem;
        text-align: left;
    }

    .images-row {
        flex-direction: column;
        width: 100%;
    }

    .images-row img {
        width: 100%;
        min-width: 0;
        height: auto;
        max-width: 100%;
    }

    .list-with-image {
        flex-direction: column;
    }

    .contact-item ion-icon {
        font-size: 1.4rem;
    }

    .done-btn {
        padding: 16px;
        font-size: 1.1rem;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .locations-section {
        padding: 40px 0;
    }

    .locations-container {
        padding: 0 20px;
    }

    .location-card {
        padding: 12px 8px;
        min-height: 85px;
    }

    .location-name {
        font-size: 0.9rem;
    }

    .location-icon {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .form-main-title {
        font-size: 1.8rem;

        text-align: left;
    }

    .exim-form input,
    .done-btn {
        padding: 14px 16px;
    }

    .images-row img {
        height: 200px;
    }

    .contact-info {
        padding: 20px;
    }

    .company-info p {
        font-size: 0.95rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .locations-container {
        padding: 0 15px;
    }

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

    .locations-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .location-card {
        min-height: 80px;
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
}

/* =========== FOOTER (From Global Style) =========== */
.footer {
    background-color: #050e38;
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    margin-top: 20px;
    color: #ccc;
    font-size: 15px;
}

.footer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-profile h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #ff4444;
    text-transform: uppercase;
}

.footer-profile span {
    font-size: 14px;
    color: #aaa;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact i {
    color: #ffbb33;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li {
    color: #ccc;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ccc;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 15px;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 var(--px);
        gap: 30px;
    }

    .footer {
        padding: 40px 0 0;
    }
}

/* =========== FLOATING WHATSAPP BUTTON =========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.my-float {
    margin-top: 1px;
}

/* Pulse Animation */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* === SOURCE: media_queries.css === */
/* =========== MEDIA QUERIES =========== */

@media (min-width: 375px) {
  /* =========== VARIABLE =========== */

  :root {
    --fs-1: 50px;
    --fs-2: 45px;
    --fs-7: 18px;

    --px: 30px;
  }

  .section-subtitle {
    font-size: var(--fs-7);
  }

  /* =========== HOME =========== */

  .home-right .icon-1 {
    top: 250px;
  }

  .home-right .icon-2 {
    display: block;
    top: 370px;
    right: 50px;
  }

  .home-right .icon-3 {
    display: block;
    top: 450px;
    left: 0;
  }

  .home-right .icon-4 {
    width: 60px;
    top: 150px;
    right: 50px;
  }

  /* =========== ABOUT =========== */
  .about-left .icon-1 {
    top: 150px;
  }

  .about-left .icon-2 {
    display: block;
    top: 270px;
    right: 0;
  }
}

@media (min-width: 575px) {

  /* =========== VARIABLE =========== */
  :root {
    --px: 40px;
  }

  /* =========== HOME =========== */
  .home .shap-1 img {
    width: 100px;
  }

  .home .shap-3 img {
    width: 250px;
  }

  /* =========== ABOUT =========== */
  .about-left .icon-1 {
    top: 200px;
  }

  .about-left .icon-2 {
    top: 350px;
  }

  /* =========== EVENT =========== */
  .event .play {
    right: -20px;
  }

  .event-card {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .event-card .content-left {
    width: 100px;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-right: 15px;
    margin-right: 25px;
    box-shadow: 1px 0 0 0 var(--light-gray);
  }

  .event .schedule {
    justify-content: start;
    margin-bottom: 5px;
  }

  .event-card .event-name {
    text-align: left;
  }

  /* =========== CONTACT =========== */

  .contact h2 {
    font-size: 37px;
  }
}

@media (min-width: 767px) {

  /* =========== VARIABLE =========== */

  :root {

    --fs-1: 60px;
    --fs-2: 50px;
    --fs-7: 20px;

    --px: 60px;

  }

  /* =========== CATEGORY, COURSE, INSTRUCTOR, BLOG, FOOTER =========== */

  .category .course-item-group,
  .course-grid,
  .instructor-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }



  /* =========== EVENT =========== */

  .event .play {
    right: -100px;
  }



  /* =========== CONTACT =========== */

  .contact-card {
    padding: 40px 60px;
  }

}

@media (min-width: 850px) {

  /* =========== VARIABLE =========== */
  :root {
    --px: 140px;
  }
}


@media (min-width: 992px) {

  /* =========== VARIABLE =========== */

  :root {

    --fs-5: 16px;

    --px: 30px;
    --py: 120px;

  }



  /* =========== HEADER =========== */

  .navbar {
    padding: 20px var(--px);
  }

  .navbar-nav {
    background: transparent;
    position: static;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: 20px;
    width: auto;
    border-radius: 0;
    text-align: left;
  }

  .nav-item:not(:last-child) a {
    border-bottom: none;
  }

  .nav-toggle-btn {
    display: none;
  }

  .navbar .btn {
    display: block;
  }



  /* =========== HOME =========== */

  .home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .home::before {
    top: -100px;
    left: -300px;
  }

  .home::after {
    top: 0;
  }

  .home-left {
    margin-bottom: 0;
  }

  .home .section-subtitle,
  .main-heading,
  .home .section-text {
    text-align: left;
  }

  .home .section-text {
    margin: 0 0 30px;
  }

  .home-btn-group {
    justify-content: start;
  }



  /* =========== ABOUT =========== */

  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
  }

  .about-left {
    margin-left: -70px;
  }

  .about-left img {
    max-width: unset;
  }

  .about-right {
    padding-top: 0;
  }



  /* =========== COURSE =========== */

  .course {
    position: relative;
  }

  .course .section-subtitle,
  .course .section-title {
    max-width: 600px;
  }

  .course-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 0;
  }

  .course .btn-primary {
    position: absolute;
    top: 130px;
    right: var(--px);
  }



  /* =========== EVENT =========== */

  .event {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: center;
  }

  .event-left {
    margin-bottom: 0;
  }

  .event .play {
    right: -10px;
  }



  /* =========== FEATURE =========== */

  .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .features-right {
    height: auto;
  }



  /* =========== TESTIMONIALS =========== */

  .testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }



  /* =========== BLOG =========== */

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }



  /* =========== CONTACT =========== */

  .contact-card {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card h2 {
    text-align: left;
  }

  .contact .btn-primary {
    justify-self: end;
    align-self: center;
  }



  /* =========== FOOTER =========== */

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }

}

@media (min-width: 1200px) {

  /* =========== VARIABLE =========== */

  :root {

    --fs-1: 70px;
    --fs-2: 55px;
    --fs-3: 40px;
    --fs-4: 25px;
    --fs-7: 22px;

    --px: 120px;

  }



  /* =========== HOME =========== */

  .home-left {
    padding-bottom: var(--py);
  }

  .home .section-text {
    font-size: 18px;
  }



  /* =========== CATEGORY =========== */

  .category .course-item-group {
    grid-template-columns: repeat(3, 1fr);
  }



  /* =========== EVENT =========== */

  .event {
    grid-template-columns: 1fr 1fr;
  }



  /* =========== INSTRUCTOR =========== */

  .instructor-grid {
    grid-template-columns: repeat(4, 1fr);
  }



  /* =========== CONTACT =========== */

  .contact-card h2 {
    font-size: 45px;
  }

}

/* =========================================
   MOBILE NAVIGATION SIDEBAR & ACCORDION
   ========================================= */

/* GLOBAL: Hide overlay on desktop to prevent it becoming a flex item in navbar */
.nav-overlay {
  display: none !important;
}

@media (max-width: 992px) {

  /* 1. Sidebar Styling */
  .navbar-nav {
    position: fixed;
    top: 0;
    left: auto !important;
    /* Override style.css left:0 */
    right: -320px;
    /* Hidden by default */
    width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 80px 20px 40px;
    /* Top padding for close area */
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0s 0.4s;
    /* Delay visibility on close */
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    border-radius: 20px 0 0 20px;
    visibility: hidden;
    /* Hide to prevent interaction when closed */
  }

  .navbar-nav.active {
    right: 0;
    /* Slide in */
    visibility: visible;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0s;
    /* No delay on open */
  }

  /* 2. Overlay Styling (Mobile Only) */
  .nav-overlay {
    display: block !important;
    /* Enable on mobile */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* 3. Items Styling - Force Column */
  .navbar-nav .nav-item {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex !important;
    flex-direction: column !important;
    /* Stack link and dropdown VERTICALLY */
    align-items: flex-start !important;
    /* Align to left */
  }

  .nav-item a {
    display: block;
    width: 100%;
    /* Full width for link */
    padding: 15px 10px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    justify-content: space-between;
  }

  .nav-item a:hover {
    background: rgba(0, 98, 255, 0.05);
    color: #0062ff;
    border-radius: 8px;
  }

  /* 4. Dropdown / Accordion Styling - UNIFIED CLEAN STYLE */
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    display: none !important;
    width: 100% !important;
    background: #ffffff !important;
    /* Unified White Background */
    box-shadow: none !important;
    /* Remove shadow for flat, clean look */
    border: none;
    padding: 5px 0 5px 0 !important;
    /* Tighter vertical padding */
    margin: 0 !important;
    border-radius: 0;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    z-index: 1;
  }

  /* Active State */
  .navbar-nav .dropdown-menu.active {
    display: block !important;
    animation: slideDown 0.3s ease-out;
  }

  /* Level 2 Items (Inside first dropdown) */
  .dropdown-menu>li>a {
    padding-left: 30px !important;
    /* Clear indentation */
    font-size: 15px;
    color: #444;
    /* Slightly softer black */
    background: transparent !important;
  }

  /* Level 3 items (Nested) */
  .navbar-nav .dropdown-menu .dropdown-menu {
    background: #ffffff !important;
    /* Keep White */
    padding-left: 0 !important;
    /* Reset padding, apply to links instead */
  }

  .navbar-nav .dropdown-menu .dropdown-menu>li>a {
    padding-left: 50px !important;
    /* Deep indentation */
    font-size: 14px;
    color: #666;
    /* Even softer for hierarchy */
    border-left: 3px solid transparent;
    /* Align marker */
  }

  /* Hover/Active for Submoduls */
  .dropdown-menu a:active,
  .dropdown-menu a:focus,
  .dropdown-menu a:hover {
    color: #0062ff !important;
    background: rgba(0, 98, 255, 0.03) !important;
  }

  /* Ensure List Items Stack Vertically */
  .dropdown-menu li {
    border-bottom: none;
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .dropdown-menu a {
    width: 100%;
    padding: 12px 20px;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    /* Very subtle separator */
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }

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

  /* Arrow Rotation */
  .dropdown-toggle .arrow {
    transition: transform 0.3s ease;
  }

  .dropdown-toggle.active .arrow {
    transform: rotate(180deg);
  }

  /* 5. Professional Hamburger Icon (Already existing structure, enhancing animation) */
  .nav-toggle-btn {
    z-index: 10000;
    /* Ensure above overlay */
    position: relative;
  }

  /* 6. Fix Navbar Blur Overlay Issue */
  .navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
    /* Solid white */
  }

  /* 7. 'Unique & Great' Premium Hamburger (Inverted Morph) */
  .nav-toggle-btn {
    z-index: 10001;
    background: #ffffff !important;
    /* Clean White Base */
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    /* Tighter gap for modern look */
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy Scale */
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    -webkit-tap-highlight-color: transparent;
  }

  /* Hover Effect */
  .nav-toggle-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 98, 255, 0.2);
    transform: translateY(-2px);
  }

  /* Lines */
  .nav-toggle-btn span {
    background-color: #0062ff !important;
    /* Brand Blue Lines */
    height: 2.5px !important;
    width: 26px !important;
    border-radius: 4px;
    transition: all 0.4s ease;
    transform-origin: center;
  }

  /* ACTIVE STATE: The 'Great' Transformation */
  .nav-toggle-btn.active {
    background: #0062ff !important;
    /* Invert to Brand Blue */
    box-shadow: 0 5px 20px rgba(0, 98, 255, 0.4);
    /* Glowing Blue Shadow */
    gap: 0;
    /* Collapse gap for X */
  }

  .nav-toggle-btn.active span {
    background-color: #ffffff !important;
    /* Lines turn White */
  }

  .nav-toggle-btn.active .one {
    transform: translateY(0) rotate(45deg);
    /* Perfect Center Rotations */
    position: absolute;
  }

  .nav-toggle-btn.active .two {
    opacity: 0;
    transform: scale(0);
  }

  .nav-toggle-btn.active .three {
    transform: translateY(0) rotate(-45deg);
    /* Perfect Center Rotations */
    position: absolute;
  }
}

/* === SOURCE: animation.css === */
/* =========== ANIMATION =========== */

.drop-anim {
  animation: drop 2.5s infinite;
}

@keyframes drop {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }

}

.smooth-zigzag-anim-1 {
  animation: smooth-zigzag-1 5s linear infinite;
}

@keyframes smooth-zigzag-1 {

  0%,
  100% {
    transform: translate(0);
  }

  25% {
    transform: translate(10px, 10px);
  }

  50% {
    transform: translate(5px, 5px);
  }

  75% {
    transform: translate(10px, -5px);
  }

}

.smooth-zigzag-anim-2 {
  animation: smooth-zigzag-2 5s linear infinite;
}

@keyframes smooth-zigzag-2 {

  0%,
  100% {
    transform: translate(0);
  }

  25% {
    transform: translate(-10px, -10px);
  }

  50% {
    transform: translate(-5px, -5px);
  }

  75% {
    transform: translate(-10px, 5px);
  }

}

.smooth-zigzag-anim-3 {
  animation: smooth-zigzag-3 5s linear infinite;
}

@keyframes smooth-zigzag-3 {

  0%,
  100% {
    transform: translate(0);
  }

  25% {
    transform: translate(-7px, -7px);
  }

  50% {
    transform: translate(-14px, -14px);
  }

  75% {
    transform: translate(-7px, -7px);
  }

}

.pulse-anim {
  animation: pulse 3s linear infinite;
}

@keyframes pulse {

  0%,
  70% {
    box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 1);
  }

  100% {
    box-shadow: 0 0 0 15px transparent;
  }

}

