﻿:root {
    --navy: #212529;
    --navy-mid: #343a40;
    --blue: #E31E24;
    --accent: #E31E24;
    --accent2: #cc1b20;
    --white: #ffffff;
    --offwhite: #f8f9fa;
    --light-gray: #e9ecef;
    --text: #212529;
    --text-muted: #6c757d;
    --border: #e0e0e0;
    --card-bg: #ffffff;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* Placement Logo Carousel Styles */
.placementSwiper {
    padding: 20px 0;
}

.logo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-slide img {
    max-width: 160px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-slide img {
        max-width: 120px;
    }
}

/* START */

#home {
    padding: 0;
}

/* Swiper Custom Styling */
.hero-slider {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--offwhite);
    overflow: hidden;
}

.hero-slider img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px !important;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--accent) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.1);
}

.cadd-col {
    color: #e3302e;
}

.synergy-col {
    color: #2b6aab;
}



/* END */

.topbar {
    background: var(--offwhite);
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-size: 12.5px;
    padding: 7px 0;
}

.topbar .inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.topbar a {
    color: var(--text-muted);
    text-decoration: none;
}

.topbar a:hover {
    color: var(--accent);
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar .pill {
    background: rgba(227, 30, 36, 0.1);
    color: var(--accent);
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .4px;
    animation: pulse-pill 2s infinite;
}

@keyframes pulse-pill {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(227, 30, 36, 0);
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(11, 31, 58, .09);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: #fff;
    letter-spacing: 1px;
}

.logo-text .t1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--text);
    letter-spacing: 1px;
}

.logo-text .t2 {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 7px;
    transition: background .2s, color .2s;
}

nav a:hover {
    background: var(--offwhite);
    color: var(--blue);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent2), var(--accent)) !important;
    color: #fff !important;
    padding: 9px 18px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(230, 51, 18, .25);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
}

.marquee-wrap {
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    padding: 14px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-item::after {
    content: '◆';
    opacity: .5;
    font-size: 8px;
}

section {
    padding: 80px 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--accent2);
}

.section-sub {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 580px;
}

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.about-img-placeholder .big-num {
    font-size: 72px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    font-family: 'Bebas Neue', cursive;
}

.about-badge-wrap {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--accent);
    color: #fff;
    border-radius: 14px;
    padding: 16px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(247, 148, 29, .4);
}

.about-badge-wrap .num {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    line-height: 1;
}

.about-badge-wrap .lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: .9;
}

.about-list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.about-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.course-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    opacity: 0;
    transition: opacity .3s;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.course-card:hover::before {
    opacity: 1;
}

.course-card>* {
    position: relative;
    z-index: 1;
}

.course-card:hover .course-name,
.course-card:hover .course-desc {
    color: #fff;
}

.course-card:hover .course-tag {
    background: rgba(255, 255, 255, 0.397);
    color: #ffffff;
}

.course-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.course-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    transition: color .3s;
}

.course-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    transition: color .3s;
}

.course-tag {
    display: inline-block;
    background: var(--offwhite);
    color: var(--blue);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    border-radius: 50px;
    padding: 4px 12px;
    text-transform: uppercase;
    transition: all .3s;
}

.course-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 20px;
    color: var(--border);
    transition: color .3s;
}

.course-card:hover .course-arrow {
    color: rgba(255, 255, 255, .5);
}

.why {
    background: var(--white);
}

.why .section-title {
    color: var(--text);
}

.why .section-sub {
    color: var(--text-muted);
}

.why .section-tag {
    color: var(--accent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 28px;
    transition: background .25s, border-color .25s, transform .25s;
}

.why-card:hover {
    background: var(--white);
    border-color: rgba(227, 30, 36, .3);
    transform: translateY(-4px);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(230, 51, 18, .3), rgba(247, 148, 29, .3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.why-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.why-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.software-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
}

.sw-pill {
    background: var(--offwhite);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: all .22s;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sw-pill-s {
    background: var(--offwhite);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: all .22s;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sw-pill:hover {
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 51, 18, .25);
}

.sw-pill-s:hover {
    background: linear-gradient(135deg, #2b6aab, #7ba3cd);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 51, 18, .25);
}

.sw-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent2);
    flex-shrink: 0;
}

.sw-pill-s .dot-s {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2b6aab;
    flex-shrink: 0;
}

.sw-pill:hover .dot {
    background: rgba(255, 255, 255, .6);
}

.sw-pill-s:hover .dot-s {
    background: rgba(255, 255, 255, .6);
}

.stats-band {
    background: linear-gradient(135deg, var(--navy-mid), var(--blue));
    padding: 36px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .5px;
    margin-top: 4px;
}

.stat-divider {
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 10px auto 0;
}

.process {
    background: var(--offwhite);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 20px);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    color: #fff;
    font-family: 'Bebas Neue', cursive;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(230, 51, 18, .3);
}

.step-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

#testimonials {
    background: var(--offwhite);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

/* Video Testimonial Styling */
.video-card {
    padding: 15px !important; /* Slightly tighter padding for videos */
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.testi-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: #f7b731;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.testi-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.testi-role {
    font-size: 12px;
    color: var(--text-muted);
}

.contact {
    background: var(--white);
}

.contact .section-title {
    color: var(--text);
}

.contact .section-sub {
    color: var(--text-muted);
}

.contact .section-tag {
    color: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 48px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.c-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 18px;
}

.c-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(230, 51, 18, .3), rgba(247, 148, 29, .3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.c-card-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.c-card-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

.c-card-value a {
    color: var(--accent);
    text-decoration: none;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 32px;
}

.contact-form h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--light-gray);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 9px;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color .2s;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

/* .form-group select option {
    background: var(--navy);
} */

.map-placeholder {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 14px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.map-placeholder .map-pin {
    font-size: 32px;
}

.map-placeholder p {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
}

.map-placeholder a {
    color: var(--accent);
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

footer {
    background: #111111;
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, .45);
    font-size: 13.5px;
    line-height: 1.8;
    margin-top: 14px;
    margin-bottom: 20px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.social-links a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .45);
    font-size: 13.5px;
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-col ul li a::before {
    content: '› ';
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .3);
    font-size: 12.5px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--text);
    font-size: 22px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--accent);
}

.mobile-close {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 28px;
    color: var(--text);
    cursor: pointer;
    background: none;
    border: none;
}

#scrollTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 50;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(227, 30, 36, .25);
    display: none;
    align-items: center;
    justify-content: center;
}

#scrollTop.visible {
    display: flex;
}

.float-enquire {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 50;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(230, 51, 18, .4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-btn 3s ease-in-out infinite;
}

@keyframes float-btn {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

@media (max-width: 960px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-card {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    section {
        padding: 56px 0;
    }
}

@media (max-width: 680px) {
    .topbar {
        display: none;
    }
}

/* BANNER SECTION */
.banner-section {
    position: relative;
    width: 100%;
    height: 88vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 3;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 4;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 24px;
    padding: 16px;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.banner-nav:hover {
    background: var(--accent);
}

.banner-nav.prev {
    left: 20px;
}

.banner-nav.next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.banner-dot.active,
.banner-dot:hover {
    background: var(--accent);
}

@media (max-width: 992px) {
    .banner-content {
        justify-content: center;
    }

    .banner-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
}