/* ========================================
   Navbar Styles
======================================== */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: 0.3s ease;
}

/* .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;

    background: linear-gradient(90deg,
            rgba(55, 0, 90, 0.92) 0%,
            rgba(76, 29, 149, 0.88) 50%,
            rgba(37, 99, 235, 0.88) 100%);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
} */

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.2rem 0;
    position: relative;
}

/* Logo */
.nav-logo img {
    max-width: 200px;
    height: 55px;
    object-fit: contain;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.45rem;
}

.nav-menu>li>a {
    display: block;
    padding: 0.35rem 1.3rem 0.35rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 40px;
    transition: 0.3s ease;
    color: #fff;
}

.nav-menu li a i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.thankyou-header .nav-menu li a {
    color: #000;
}

/* CTA */
.nav-btn {
    border-radius: 40px;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    font-weight: 700;
}

/* Toggle Button */
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    color: #fff;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.thankyou-header .nav-toggle i {
    color: #000;
}

/* Hide Mobile CTA on Desktop */
.mobile-cta {
    display: none;
}

/* dropdown */

/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

/* Show on hover */
.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

/* Inner layout */
.mega-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Column */
.mega-column {
    flex: 1;
}

/* Heading */
.mega-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c73d2;
}

/* Links */
.mega-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #737373;
    font-weight: 400;
    transition: 0.3s;
}

/* Icon Style */
.mega-column a i {
    font-size: 16px;
    color: #6b7aa1;
    width: 20px;
}

/* Hover */
.mega-column a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.mega-column a:hover i {
    color: var(--secondary);
}

.mega-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #f5f5f5 transparent;
}


/* ========================================
   Mobile
======================================== */
@media (max-width: 991px) {

    .navbar {
        gap: 1rem;
    }

    .desktop-btn {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
        padding: 1rem;
        border-radius: 18px;
        background: rgba(10, 14, 30, 0.88);
        backdrop-filter: blur(14px);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);

        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .nav-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        width: 100%;
        padding: 0.9rem 1rem;
        border-radius: 12px;
        color: #fff;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: rgba(255, 255, 255, 0.12);
    }

    .mobile-cta {
        display: block;
        margin-top: 0.5rem;
    }

    .mobile-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        display: none;
    }

    .mega-menu.show {
        display: block;
    }
}

@media (max-width: 991px) {

    .mega-menu::before {
        display: none;
    }

    /* Remove hover behavior on mobile */
    .dropdown:hover .mega-menu {
        opacity: 0;
        visibility: hidden;
        top: 120%;
    }

    /* Active dropdown */
    .dropdown.active .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    /* Fix mega menu layout */
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        display: none;
        padding: 15px;
        margin-top: 5px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
    }

    /* Stack columns */
    .mega-container {
        flex-direction: column;
        gap: 20px;
    }

    /* Headings */
    .mega-column h4 {
        color: #fff;
        font-size: 16px;
    }

    /* Links */
    .mega-column a {
        color: #ddd;
        font-size: 14px;
    }

    /* Arrow rotation */
    .dropdown.active>a i {
        transform: rotate(180deg);
        transition: 0.3s;
    }
}

@media (max-width: 576px) {

    .navbar {
        padding: 1rem 0;
    }

    .nav-logo img {
        height: 42px;
        max-width: 160px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }

    .nav-menu {
        top: calc(100% + 10px);
        padding: 0.8rem;
    }

    .nav-menu li a {
        font-size: 0.95rem;
        padding: 0.8rem 0.9rem;
    }
}


/* =========================================================
   ULTRA PREMIUM DARK FOOTER
========================================================= */

.footer {
    position: relative;

    padding: 110px 0 0;

    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(95, 10, 135, 0.22),
            transparent 30%),

        radial-gradient(circle at bottom right,
            rgba(44, 115, 210, 0.18),
            transparent 30%),

        linear-gradient(135deg,
            #050816 0%,
            #0b1020 45%,
            #111827 100%);

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}

/* =========================================
   GRID OVERLAY
========================================= */

.footer::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image:
        radial-gradient(circle at center,
            rgba(0, 0, 0, 1),
            transparent 85%);

    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
   FOOTER TOP
========================================================= */

.footer-top {
    margin-bottom: 70px;
}

.footer-main-card {
    position: relative;

    padding: 45px;

    border-radius: 36px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.03));

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35);
}

/* =========================================
   BRAND
========================================= */

.footer-logo {
    width: 180px;

    margin-bottom: 28px;
}

.footer-desc {
    max-width: 500px;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 17px;
    line-height: 1.9;

    margin-bottom: 32px;
}

/* =========================================
   CONTACT CARDS
========================================= */

.footer-contact-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 35px;
}

.footer-contact-card {
    position: relative;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 20px;

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.06);

    transition: all 0.4s ease;
}

.footer-contact-card:hover {
    transform: translateY(-6px);

    background:
        rgba(255, 255, 255, 0.08);

    box-shadow:
        0 20px 40px rgba(95, 10, 135, 0.18);
}

.footer-contact-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    color: #fff;

    font-size: 22px;

    flex-shrink: 0;

    box-shadow:
        0 14px 30px rgba(95, 10, 135, 0.25);
}

.footer-contact-card span {
    display: block;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 13px;

    margin-bottom: 4px;
}

.footer-contact-card a {
    color: #fff;

    font-size: 16px;
    font-weight: 600;

    transition: 0.3s ease;
}

.footer-contact-card a:hover {
    color: #9ecbff;
}


/* =========================================================
   FOOTER MAP IMAGE
========================================================= */

.footer-map-image {
    position: relative;

    width: 100%;
    height: 100%;

    /* min-height: 420px; */

    border-radius: 34px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.03));

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

/* MAP IMAGE */

.footer-map-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: inherit;
    
    padding: 30px;

    filter:
        drop-shadow(0 0 20px rgba(95, 10, 135, 0.12));
}

/* =========================================================
   LOCATION MARKER
========================================================= */

.map-location {
    position: absolute;

    top: 62%;
    left: 78%;

    transform: translate(-50%, -50%);

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #ff2d55;

    box-shadow:
        0 0 0 10px rgba(255, 45, 85, 0.15),
        0 0 25px rgba(255, 45, 85, 0.55);

    animation: mapPulse 2s infinite ease;
}

/* INNER DOT */

.map-location span {
    position: absolute;

    inset: 5px;

    border-radius: 50%;

    background: #fff;
}

/* PULSE */

@keyframes mapPulse {

    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 0 0 rgba(255, 45, 85, 0.45),
            0 0 20px rgba(255, 45, 85, 0.35);
    }

    70% {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow:
            0 0 0 20px rgba(255, 45, 85, 0),
            0 0 35px rgba(255, 45, 85, 0.55);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 0 0 rgba(255, 45, 85, 0),
            0 0 20px rgba(255, 45, 85, 0.35);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .footer-map-image{
        min-height: 340px;
    }

    .map-location{
        top: 64%;
        left: 78%;
    }
}

@media(max-width:575px){

    .footer-map-image{
        min-height: 280px;
        border-radius: 24px;
    }

    .footer-map-image img{
        padding: 20px;
    }

    .map-location{
        width: 18px;
        height: 18px;
    }

    .map-location span{
        inset: 4px;
    }
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links-wrapper {
    padding-top: 60px;
}

.footer-links-col h4 {
    position: relative;

    color: #fff;

    font-size: 20px;
    font-weight: 800;

    margin-bottom: 28px;

    padding-bottom: 14px;
}

.footer-links-col h4::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 55px;
    height: 4px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));
}

.footer-links-col ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-links-col li {
    margin-bottom: 16px;
}

.footer-links-col a {
    position: relative;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 15px;
    font-weight: 500;

    transition: all 0.35s ease;
}

.footer-links-col a::before {
    content: "";

    position: absolute;
    left: -18px;
    top: 50%;

    width: 0;
    height: 2px;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    transform: translateY(-50%);

    transition: 0.35s ease;
}

.footer-links-col a:hover {
    color: #fff;

    padding-left: 16px;
}

.footer-links-col a:hover::before {
    width: 12px;
}

/* =========================================
   SOCIALS
========================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 35px;
}

.footer-socials a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    color: #fff;

    font-size: 18px;

    transition: all 0.4s ease;
}

.footer-socials a:hover {
    transform:
        translateY(-8px)
        rotate(-5deg);

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    box-shadow:
        0 20px 40px rgba(95, 10, 135, 0.30);
}

/* =========================================
   BOTTOM BAR
========================================= */

.footer-bottom {
    margin-top: 50px;

    padding: 28px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.footer-bottom-links a {
    color:
        rgba(255, 255, 255, 0.55);

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .footer-main-card {
        padding: 35px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-wrapper .row {
        gap: 40px 0;
    }
}

@media (max-width: 767px) {

    .footer {
        padding-top: 80px;
    }

    .footer-main-card {
        padding: 28px;
        border-radius: 28px;
    }

    .footer-map {
        height: 220px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }
}


/* ========================================
   Consultation Form
======================================== */

.hero-form {
    background-color: #e7e7e7;
    padding: 32px 20px;
    border-radius: 17px;
    text-align: center;
}

.ban-form {
    font-size: 25px;
    font-weight: 700;
}

.Contact-Form {
    /* padding: 20px 40px; */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Contact-Form label {
    color: #212D3A;
    float: left;
}

.Contact-Form input,
.Contact-Form textarea {
    padding: 6px 10px;
    background-color: #F5F8FA;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgb(149 148 148);
    color: var(--medium-gray);
    line-height: 22px;
    word-break: normal;
    transition: 0.3s;
}

.Contact-Form input:hover,
.Contact-Form textarea:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 1px solid #03227a;
}

.Contact-Form .btn-container {
    display: flex;
    justify-content: start;
    margin-top: 20px;
}

.Contact-Form button {
    color: #fff;
    background-color: #03227a;
    border: none;
    border-radius: 5px;
    padding: 5px 35px;
    transition: all 0.3s ease-in-out;
}

.Contact-Form button:hover {
    transform: translateY(-2px);
    background-color: #03227a;
}

.Contact-Form small {
    float: left;
}

.Contact-Form p {
    text-align: start;
}

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
    padding-left: 90px !important;
}

.error {
    color: red;
    font-size: 14px;
}

input.error-border,
textarea.error-border {
    border: 1px solid red;
}


/* Contact Form New */

.thank-content {
    padding: 60px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thank-content h1 {
    font-size: 56px;
    margin-bottom: 30px;
}

.thank-content p {
    text-align: center;
}


.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #25D366;
}

.checkbox-wrapper span {
    text-align: start;
}


/* ========================================
   Services Section
======================================== */

/* Card */
.service-card {
    background: #f3f3f3;
    padding: 30px 22px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: 0.3s ease;
}

/* Icon */
.service-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 18px;

    background: linear-gradient(var(--secondary), var(--primary));
}

/* Title */
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Text */
.service-card p {
    font-size: 15px;
    color: #555;
}

/* Hover */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}



/* ========================================
   Quote Modal
======================================== */

.quote-modal .modal-dialog {
    max-width: 1200px;
}

.quote-modal .modal-content {
    border-radius: 28px;
    overflow: hidden;
    border: none;
    background: #fff;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Background Shape
======================================== */

.form-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    width: 100%;
    height: 400px;

    background-color: #c9e8f5;

    border-top-left-radius: 28px;
    border-top-right-radius: 28px;

    z-index: 0;
}

/* ========================================
   Close Button
======================================== */

.custom-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.custom-close i {
    color: #fff;
    font-size: 16px;
}

.custom-close:hover {
    background: linear-gradient(var(--secondary), var(--primary));
    transform: translateY(-3px);
}

/* ========================================
   Left Section
======================================== */

.quote-left {
    position: relative;
    z-index: 2;

    height: 100%;

    padding: 60px;

    display: flex;
    flex-direction: column;
}

/* Top */

.top-content h2 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
    font-family: var(--font-primary);
}

.top-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #4b5563;
    max-width: 580px;
}

/* Bottom */

.bottom-content {
    margin-top: 140px;
}

.bottom-content h3 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
    font-family: var(--font-primary);
}

/* ========================================
   Right Form
======================================== */

#quoteModal .form-part2-container {
    position: relative;
    z-index: 2;
    margin: 40px;
    padding: 40px;
    border: 1px solid #111;
    border-radius: 18px;
    background-color: #fff;
}

#quoteModal .form-part2-container h4 {
    text-align: center;
    margin-bottom: 20px;
}

/* ========================================
   Sponsor Infinite Slider
======================================== */

.sponsor-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

/* Track */

.slider-track {
    display: flex;
    align-items: center;

    width: max-content;

    animation: scroll 40s linear infinite;
}

/* Pause Hover */

.sponsor-slider:hover .slider-track {
    animation-play-state: paused;
}

/* Item */

.sponsor {
    flex: 0 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 35px;
}

/* Logo */

.sponsor-card img {
    max-width: 140px;
    width: 100%;

    object-fit: contain;

    opacity: 0.8;

    transition: 0.3s ease;
}

.sponsor-card img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Animation */

@keyframes scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========================================
   Large Tablet
======================================== */

@media (max-width: 1199px) {

    .quote-left {
        padding: 45px;
    }

    .top-content h2 {
        font-size: 44px;
    }

    .bottom-content h3 {
        font-size: 40px;
    }

    .top-content p {
        font-size: 16px;
    }

    .bottom-content {
        margin-top: 120px;
    }

    #quoteModal .form-part2-container {
        margin: 30px;
        padding: 30px;
    }
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 991px) {

    .quote-modal .modal-dialog {
        margin: 1rem;
    }

    .quote-modal .modal-content {
        border-radius: 22px;
    }

    .form-bg {
        height: 300px;
    }

    .quote-left {
        padding: 35px 30px 10px;
    }

    .top-content h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .top-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .bottom-content {
        margin-top: 80px;
    }

    .bottom-content h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    #quoteModal .form-part2-container {
        margin: 0 30px 30px;
        padding: 30px 25px;
    }

    .sponsor {
        padding: 0 20px;
    }

    .sponsor-card img {
        max-width: 110px;
    }
}

/* ========================================
   Mobile
======================================== */

@media (max-width: 767px) {

    .quote-modal .modal-dialog {
        margin: 0.7rem;
    }

    .quote-modal .modal-content {
        border-radius: 18px;
    }

    .form-bg {
        display: none;
    }

    .quote-left {
        padding: 25px 20px 0;
    }

    .top-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .top-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .bottom-content {
        margin-top: 45px;
    }

    .bottom-content h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    #quoteModal .form-part2-container {
        margin: 20px;
        padding: 25px 20px;
        border-radius: 14px;
    }

    .custom-close {
        width: 36px;
        height: 36px;

        top: 10px;
        right: 10px;
    }

    .custom-close i {
        font-size: 14px;
    }

    .slider-track {
        animation-duration: 14s;
    }

    .sponsor {
        padding: 0 14px;
    }

    .sponsor-card img {
        max-width: 90px;
    }
}

/* ========================================
   Small Mobile
======================================== */

@media (max-width: 480px) {

    .top-content h2 {
        font-size: 24px;
    }

    .bottom-content h3 {
        font-size: 20px;
    }

    #quoteModal .form-part2-container {
        margin: 15px;
        padding: 20px 15px;
    }

    .sponsor-card img {
        max-width: 75px;
    }
}

/* =========================================
   PREMIUM WHATSAPP FLOAT BUTTON
========================================= */

.wa-float{

    position:fixed;

    right:24px;
    bottom:24px;

    width:68px;
    height:68px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #25d366 0%,
            #1ebe5d 50%,
            #128c7e 100%
        );

    color:#fff;

    font-size:32px;

    text-decoration:none;

    z-index:99999;

    overflow:hidden;

    isolation:isolate;

    backdrop-filter:blur(10px);

    box-shadow:
        0 10px 30px rgba(37,211,102,.30),
        0 0 0 1px rgba(255,255,255,.08) inset,
        inset 0 2px 6px rgba(255,255,255,.25);

    animation:
        waFloat 4s ease-in-out infinite;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

/* =========================================
   OUTER GLOW RING
========================================= */

.wa-float::before{

    content:"";

    position:absolute;

    inset:-12px;

    border-radius:inherit;

    background:
        radial-gradient(
            circle,
            rgba(37,211,102,.45),
            transparent 70%
        );

    animation:
        waPulse 2.8s linear infinite;

    z-index:-2;
}

/* =========================================
   SHIMMER LIGHT
========================================= */

.wa-float::after{

    content:"";

    position:absolute;

    top:-120%;
    left:-40%;

    width:60%;
    height:300%;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255,255,255,.55),
            transparent
        );

    transform:rotate(25deg);

    animation:
        waShine 4s linear infinite;

    z-index:1;
}

/* =========================================
   ICON
========================================= */

.wa-float i{

    position:relative;

    z-index:2;

    animation:
        waIconBounce 2.5s ease-in-out infinite;
}

/* =========================================
   HOVER
========================================= */

.wa-float:hover{

    transform:
        translateY(-8px)
        scale(1.08)
        rotate(-4deg);

    box-shadow:
        0 22px 50px rgba(37,211,102,.45),
        0 0 40px rgba(37,211,102,.35);
}

/* =========================================
   TOOLTIP
========================================= */

.wa-tooltip{

    position:absolute;

    right:84px;

    background:
        rgba(15,15,15,.92);

    color:#fff;

    padding:12px 16px;

    border-radius:14px;

    font-size:14px;
    font-weight:600;

    white-space:nowrap;

    backdrop-filter:blur(12px);

    border:
        1px solid rgba(255,255,255,.08);

    opacity:0;
    visibility:hidden;

    transform:
        translateX(14px);

    transition:.35s ease;
}

.wa-float:hover .wa-tooltip{

    opacity:1;
    visibility:visible;

    transform:
        translateX(0);
}

/* =========================================
   FLOATING ANIMATION
========================================= */

@keyframes waFloat{

    0%,
    100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }
}

/* =========================================
   PULSE GLOW
========================================= */

@keyframes waPulse{

    0%{
        transform:scale(.8);
        opacity:.7;
    }

    70%{
        transform:scale(1.5);
        opacity:0;
    }

    100%{
        transform:scale(1.5);
        opacity:0;
    }
}

/* =========================================
   ICON BOUNCE
========================================= */

/* @keyframes waIconBounce{

    0%,
    100%{
        transform:translateY(0);
    }

    20%{
        transform:translateY(-3px);
    }

    40%{
        transform:translateY(2px);
    }

    60%{
        transform:translateY(-2px);
    }
} */

/* =========================================
   SHINE EFFECT
========================================= */

@keyframes waShine{

    0%{
        left:-60%;
    }

    100%{
        left:160%;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .wa-float{

        width:60px;
        height:60px;

        right:18px;
        bottom:18px;

        font-size:28px;
    }

    .wa-tooltip{
        display:none;
    }
}



/* ========================================
   TECHNOLOGY STACK
======================================== */

/* Tabs override */
.tech-tabs {
    gap: 1rem;
    border-bottom: none;
    justify-content: center;
}

.tech-tabs .tab {
    border: none;
    background: #e5e7eb;
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Active tab */
.tech-tabs .tab.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
}

/* Hover */
.tech-tabs .tab:hover {
    transform: translateY(-2px);
}

.mob-tech-card {
    background-color: #e8f2ff;
    padding: 17px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease-in;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    height: 111px;
}

/* IMAGE WRAPPER */
.mob-tech-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out 0.1s;
}

/* IMAGE */
.mob-tech-img img {
    max-width: 50px;
    object-fit: contain;
    padding-bottom: 5px;
}

/* TEXT */
.mob-tech-img p {
    font-size: 13px;
    margin: 0;
    text-align: center;
    font-weight: 300;
    color: #000;
    transition: all 0.3s ease-in-out;
}

/* HOVER EXACT COPY */
.mob-tech-card:hover {
    box-shadow: rgb(0 0 0 / .5) 20px 20px 30px;
    transform: scale(1.1);
}

.mob-tech-card:hover .mob-tech-img {
    transform: scale(1.5) translateY(-20px);
}

.mob-tech-card:hover .mob-tech-img img {
    animation: bouncing 0.5s 0.3s;
}

.mob-tech-card:hover .mob-tech-img p {
    font-size: 10px;
}

/* BOUNCING ANIMATION (EXACT) */
@keyframes bouncing {
    from, to {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(.9, 1.1);
    }
    50% {
        transform: scale(1.1, .9);
    }
    75% {
        transform: scale(.95, 1.05);
    }
}