/* =========================================
            GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&display=swap');

/* =========================================
            GLOBAL STYLES
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: #000;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
            SCROLLBAR
========================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#ff0000, #000000);
    border-radius: 20px;
}

/* =========================================
            NAVBAR
========================================= */

.navbar {
    background: transparent;
    backdrop-filter: blur(15px);
    padding: 15px 0;
    transition: 0.4s;
    color: black;
}

.navbar.scrolled {
    background: transparent;
    box-shadow: none;
    color: #000;
}

[data-nav-root] {
    --nav-link-color: #0f172a;
    --nav-link-hover-color: #dc2626;
}

[data-nav-root][data-nav-theme="dark"] {
    --nav-link-color: #ffffff;
    --nav-link-hover-color: #fecaca;
}

[data-nav-root] [data-nav-menu] a:not(.bg-gradient-to-r) {
    color: var(--nav-link-color) !important;
}

[data-nav-root] [data-nav-menu] a:not(.bg-gradient-to-r):hover {
    color: var(--nav-link-hover-color) !important;
}

.logo-img {
    height: 78px;
    transition: 0.4s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-logo-badge {
    display: block;
    width: auto;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    object-fit: contain;
    transition: 0.4s;
}

.nav-logo-badge:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.96);
}

.nav-link {
    color: #000000 !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: 0.4s;
}

.navbar.scrolled .nav-link {
    color: #000 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background: #ff0000;
    transition: 0.4s;
    border-radius: 20px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #ff0000 !important;
}

.main-btn {
    border: none;
    background: linear-gradient(135deg, #ff0000, #990000);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.25);
}

.main-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.45);
}

.outline-btn {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.outline-btn:hover {
    background: #fff;
    color: #000;
}

/* =========================================
            HERO SECTION
========================================= */

.hero {
    position: relative;
    min-height: 80vh;
    padding: 110px 0 40px;
    background: url('home bg.jpg.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero video,
.hero .hero-video,
.hero .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.9),
            rgba(255, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 40px;
    color: #ffffff;
    margin-bottom: 45px;
    font-weight: 500;
}

.hero h1 {
    font-size: 78px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

/* Tech-style hero title */
.hero-title{
    font-family: 'Orbitron', 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.6px;
    text-transform: none;
    display: inline-block;
    font-size: clamp(28px, 4.2vw, 56px);
    margin-top: -12px;
    line-height: 1.08;
}

@media (max-width: 768px) {
    .hero-title{
        font-size: clamp(20px, 6.5vw, 34px);
        margin-top: 0;
    }
}

.hero-tagline {
    color: #ff4d4d;
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
}

.hero p {
    color: #f1f1f1;
    line-height: 1.9;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 5px;
    margin-top: 35px;
    flex-wrap: nowrap;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.hero-buttons button {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-wrap: nowrap;
    }
}

/* Keep hero content on the left and glass-card anchored to the right */
.hero .container {
    max-width: 1200px;
    padding-left: 28px;
    padding-right: 28px;
    margin: 0 auto;
}
.hero .row {
    display: flex;
    align-items: center;
    gap: 28px;
}
.hero .col-lg-7 {
    flex: 0 0 60%;
    padding-right: 24px;
}
.hero .col-lg-5 {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
}
.hero-content {
    max-width: 640px;
    text-align: left;
    margin: 0;
    padding-left: 8px;
    padding-right: 8px;
}
.glass-card {
    max-width: 520px;
    width: 100%;
}

@media (max-width: 992px) {
    .hero .row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .hero .col-lg-7,
    .hero .col-lg-5 {
        flex: 1 1 auto;
        width: 100%;
    }
    .hero .col-lg-5 {
        justify-content: center;
    }
    .hero-content {
        text-align: center;
        padding-left: 12px;
        padding-right: 12px;
    }
    .glass-card {
        margin: 0 auto;
        width: min(92%, 560px);
    }
}

/* =========================================
            GLASS CARD
========================================= */

.glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 100, 130, 0.45);
    background: rgba(255, 182, 193, 0.18);

    border: 1px solid rgba(255, 100, 130, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 26px;
    padding: 32px;
    max-width: 460px;
    margin-left: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
    transition: transform 280ms ease;
}

.mini-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  
}

.mini-box i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #c48080a6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.mini-box h5 {
    color: #000;
    margin-bottom: 5px;
}

.mini-box p {
    color: #000;
    margin: 0;
}



/* =========================================
            PARTICLES
========================================= */

.hero-particles span {
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: float 15s linear infinite;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
}

.hero-particles span:nth-child(2) {
    left: 30%;
    animation-duration: 13s;
}

.hero-particles span:nth-child(3) {
    left: 50%;
    animation-duration: 16s;
}

.hero-particles span:nth-child(4) {
    left: 70%;
    animation-duration: 11s;
}

.hero-particles span:nth-child(5) {
    left: 90%;
    animation-duration: 14s;
}

@keyframes float {

    0% {
        transform: translateY(100vh) scale(0);
    }

    100% {
        transform: translateY(-100px) scale(1.5);
    }
}

/* =========================================
            SECTION TITLE
========================================= */

.section-title {
    text-align: center;
    margin-bottom: 24px;
}

.section-title h2 {
    font-size: 55px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 15%;
    bottom: -6px;
    width: 70%;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(to right, #ff0000, #000);
}

.section-title p {
    margin-top: 10px;
    color: #666;
    font-size: 18px;
}

/* =========================================
            ABOUT SECTION
========================================= */

.about-section {
    min-height: auto;
    padding: clamp(24px, 5vw, 72px) 0;
    background-color: #ffffff;
    background-image: url('border.jpg.jpeg');
    background-size: cover;
    background-position: center;
}

.about-section .section-title{
    margin-top: -8px;
    margin-bottom: 20px;
}

.about-section .section-title h2 {
    font-size: clamp(28px, 6vw, 55px);
}

.about-section .about-row {
    display: flex;
    align-items: stretch;
    gap: clamp(5px, 1vw, 10px);
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-section .about-image {
    flex: 0 0 100%;
    max-width: 200%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.who-card {
    width: 100%;
    max-width: 300px;
    background: #ffffff;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.35s ease;
    box-shadow: inset 0 -3em 3em rgba(255, 0, 0, 0.1),
                0 0 0 2px #ff0000,
                0.3em 0.3em 1em rgba(255, 0, 0, 0.3);
}

.who-card:hover {
    border-radius: 16px;
    transform: translateY(-4px);
}

.who-card img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    object-fit: cover;
}

.about-section .about-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: clamp(10px, 2vw, 12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-section .about-image img {
    width: 100%;
    height: 100%;
}

@media (min-width: 993px) {
    .about-section .about-row {
        flex-wrap: nowrap;
    }

    .about-section .about-image {
        flex: 0 0 45%;
        max-width: 45%;
        margin-bottom: 0;
    }

    .about-section .about-content {
        flex: 0 0 55%;
        max-width: 55%;
    }
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-tag {
    color: #ff0000;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: clamp(0.75rem, 2vw, 1rem);
}

.about-content h2 {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 800;
    margin: clamp(12px, 2vw, 18px) 0 clamp(8px, 1.5vw, 14px);
    line-height: 1.2;
}

.about-content h3 {
    font-size: clamp(22px, 4.5vw, 45px);
    font-weight: 800;
    margin: clamp(8px, 1.5vw, 10px) 0;
}

.about-content p {
    color: #222;
    font-size: 15px;
    line-height: 1.65;
    margin-top: 0;
    max-width: 50ch;
}

@media (max-width: 992px) {
    .about-content p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.6;
    }
    .about-section .about-image img{
        width:100%;
        max-width:100%;
    }
    .who-card{
        max-width: 100%;
    }
    .about-section .section-title{
        margin-top:0;
        margin-bottom:20px;
    }
}

.about-points {
    margin-top: 30px;
}

.point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    background: #fff5f5;
    padding: 16px;
    border-radius: 12px;
    transition: 0.4s;
}

.point:hover {
    transform: translateX(10px);
    background: #ffe6e6;
}

.point i {
    color: #ff0000;
    font-size: 20px;
}


/* =========================================
        VISION & MISSION (GLASSMORPHISM)
========================================= */

.vision-mission-section {
    padding: 120px 0;
    background: rgba(255, 237, 237, 0.486);
    border: #000;
    position: relative;
    overflow: hidden;
    color: black;
}

.vision-mission-section .vision-mission-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.vision-mission-section .vision-mission-row > div {
    flex: 1 1 45%;
    max-width: 45%;
}

.vision-mission-section .glass-vm-card {
    min-height: 100%;
}

@media (max-width: 992px) {
    .vision-mission-section .vision-mission-row > div {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* subtle glow background */
.vision-mission-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff0000 0%, transparent 70%);
    top: -200px;
    left: -150px;
    opacity: 0.25;
}

.vision-mission-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff0000 0%, transparent 70%);
    bottom: -150px;
    right: -120px;
    opacity: 0.2;
    color: black;
}

.glass-vm-card p {
    color: #000000;
}

/* GLASS CARD */
.glass-vm-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    padding: 45px;
    color: #000000;
    transition: 0.4s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* hover glow */
.glass-vm-card:hover {
    transform: translateY(-12px);
    border: 1px solid rgba(255, 0, 0, 0.4);
    box-shadow: 0 25px 60px rgba(255, 0, 0, 0.15);
}

/* icon */
.vm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000, #8b0000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
}

/* heading */
.glass-vm-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* text */
.glass-vm-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 16px;
}

/* floating animation (optional premium touch) */
@keyframes floatVM {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.glass-vm-card {
    animation: floatVM 6s ease-in-out infinite;
}


/* =========================================
            SERVICES
========================================= */
.services-section {
    padding: 90px 0;
    background: #f8f9fa;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.services-grid .glass-card {
    background: linear-gradient(135deg, #ff0000, #8b0000);
}

.services-grid .glass-card i {
    color: #fff;
}

/* CARD */
.glass-card {
    position: relative;
    padding: 28px;
    border-radius: 20px;

    background: linear-gradient(135deg, #f7f3f363, #8b00002c);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 2px solid rgba(255, 0, 0, 0.6);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    color: #000000;

    overflow: hidden;
    transition: 0.3s ease;

    min-height: 220px;
    cursor: pointer;
}

/* ICON */
.glass-card i {
    font-size: 46px;
    margin-bottom: 12px;
    color: #ff0000;
}

/* TITLE */
.glass-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

/* PARAGRAPH (ALWAYS VISIBLE) */
.glass-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 10px;
}

/* HOVER EFFECT (ONLY VISUAL, NO TEXT CHANGE) */
.glass-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 0, 0, 1);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.15);
}

/* LIGHT RED GLOW BACKGROUND */
.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(255, 0, 0, 0.08),
        transparent 70%
    );
    z-index: 0;
}

/* KEEP CONTENT ABOVE BACKGROUND */
.glass-card i,
.glass-card h4,
.glass-card p {
    position: relative;
    z-index: 2;
}

/* MOBILE */
@media (max-width: 768px) {
    .glass-card {
        min-height: auto;
    }
}


/* =========================================
            SALES SECTION
========================================= */

.sales-section {
    padding: 70px 0 90px;
    background-image: url('sales background.png');
    background-size: cover;
    background-position: center;
}

.sales-wrapper {
    width: 100%;
    min-height: 620px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sales-inner {
    position: relative;
    width: 100%;
    --card-w: 19rem;
    --card-h: 16rem;
    --btn-h: 3.25rem;
    --gap: 16px;
    height: calc(var(--card-h) + var(--btn-h) + 1.2rem);
    overflow: hidden;
}

.sales-card {
    position: absolute;
    top: 45%; /* moved up slightly */
    left: 0;
    width: var(--card-w);
    transform: translateY(-50%) translateX(calc(110vw + (var(--index) * var(--gap))));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    overflow: visible;
    box-shadow: none;
    animation: move-rtl 18s linear infinite;
    animation-delay: calc(var(--index) * 3s);
}

.sales-img {
    width: 100%;
    height: var(--card-h);
    max-height: var(--card-h);
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 18px;
    background: #fff;
    padding: 6px;
    box-sizing: border-box;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.sales-button {
    position: relative;
    width: 100%;
    min-width: 11.5rem;
    height: var(--btn-h);
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff0000, #8b0000);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sales-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(255, 0, 0, 0.24);
}

.sales-button:focus-visible {
    outline: 2px solid #ff0000;
    outline-offset: 3px;
}

.sales-button .span-mother {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.sales-button:hover .span-mother {
    position: absolute;
}

.sales-button:hover .span-mother span {
    transform: translateY(1.2em);
}

.sales-button .span-mother span {
    transition: 0.2s;
}

.sales-button .span-mother span:nth-child(2) { transition: 0.3s; }
.sales-button .span-mother span:nth-child(3) { transition: 0.4s; }
.sales-button .span-mother span:nth-child(4) { transition: 0.5s; }
.sales-button .span-mother span:nth-child(5) { transition: 0.6s; }
.sales-button .span-mother span:nth-child(6) { transition: 0.7s; }
.sales-button .span-mother span:nth-child(7) { transition: 0.8s; }
.sales-button .span-mother span:nth-child(8) { transition: 0.9s; }
.sales-button .span-mother span:nth-child(9) { transition: 1s; }
.sales-button .span-mother span:nth-child(10) { transition: 1.1s; }
.sales-button .span-mother span:nth-child(11) { transition: 1.2s; }
.sales-button .span-mother span:nth-child(12) { transition: 1.3s; }

.sales-button .span-mother2 {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.sales-button .span-mother2 span {
    transform: translateY(-1.2em);
    transition: 0.2s;
}

.sales-button:hover .span-mother2 span {
    transform: translateY(0);
}

.sales-button .span-mother2 span:nth-child(2) { transition: 0.3s; }
.sales-button .span-mother2 span:nth-child(3) { transition: 0.4s; }
.sales-button .span-mother2 span:nth-child(4) { transition: 0.5s; }
.sales-button .span-mother2 span:nth-child(5) { transition: 0.6s; }
.sales-button .span-mother2 span:nth-child(6) { transition: 0.7s; }
.sales-button .span-mother2 span:nth-child(7) { transition: 0.8s; }
.sales-button .span-mother2 span:nth-child(8) { transition: 0.9s; }
.sales-button .span-mother2 span:nth-child(9) { transition: 1s; }
.sales-button .span-mother2 span:nth-child(10) { transition: 1.1s; }
.sales-button .span-mother2 span:nth-child(11) { transition: 1.2s; }
.sales-button .span-mother2 span:nth-child(12) { transition: 1.3s; }

.sales-button .span-mother,
.sales-button .span-mother2 {
    line-height: 1;
}

.sales-button .span-mother span,
.sales-button .span-mother2 span {
    display: inline-block;
}

@keyframes move-rtl {
    0% {
        transform: translateY(-50%) translateX(calc(110vw + (var(--index) * var(--gap))));
    }
    100% {
        transform: translateY(-50%) translateX(calc(-150vw));
    }
}

.sales-wrapper:hover .sales-inner {
    animation-play-state: paused;
}

@media (max-width: 991.98px) {
    .sales-wrapper {
        min-height: 500px;
    }

    .sales-inner {
        --card-w: 13rem;
        --card-h: 11.5rem;
        --btn-h: 2.9rem;
        --gap: 150px;
    }
}

@media (max-width: 575.98px) {
    .sales-wrapper {
        min-height: 440px;
    }

    .sales-inner {
        --card-w: 9.5rem;
        --card-h: 8.5rem;
        --btn-h: 2.3rem;
        --gap: 220px;
    }
}

.review-section{
    padding:100px 0;
    background:#ffffff;
}

.section-title h2{
    font-size:34px;
    font-weight:700;
    text-align:center;
    color:#111;
}

.section-title p{
    text-align:center;
    color:#666;
    margin-top:8px;
}

/* SWIPER */
.reviewSwiper{
    padding:40px 10px;
}

.swiper-slide{
    display:flex;
    height:auto;
}

/* CARD */
.review-section{
    padding:100px 0;
    background:#ffffff;
}

/* TITLE */
.section-title h2{
    text-align:center;
    font-size:36px;
    font-weight:700;
}

.section-title p{
    text-align:center;
    color:#666;
}

/* RATING SUMMARY */
.review-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.rating-summary {
    flex: 0 0 auto;
    text-align: center;
    width: 100%;
    padding: 15px 0;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-number {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.counter {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff0000, #fa0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-max {
    font-size: 20px;
    font-weight: 700;
    color: #888;
}

.rating-stars {
    font-size: 30px;
    color: #ffd700;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.review-counter {
    font-weight: 700;
    color: #ff0000;
}

.rating-count {
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

/* GRID LAYOUT */
.review-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:15px;
    flex: 1;
    margin-top:25px;
}

/* GLASS CARD */
.review-card{
    background:linear-gradient(135deg, rgb(136, 3, 25), rgb(255, 3, 3));
    backdrop-filter:blur(15px);
    border:1px solid rgba(255, 105, 135, 0.2);
    border-radius:20px;
    padding:18px;
    text-align:left;
    box-shadow:0 15px 40px rgba(255, 105, 135, 0.12);
    transition:0.4s;
    display: flex;
    flex-direction: column;
}

/* HOVER EFFECT */
.review-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(255, 105, 135, 0.2);
}

/* REVIEWER INFO */
.reviewer-info {
    margin-bottom: 12px;
}

.reviewer-info h5{
    margin:0 0 2px;
    font-size:20px;
    font-weight:700;
    color:#ffffff;
}

/* STARS */
.stars{
    color:#ffb703;
    margin-bottom:3px;
    font-size: 18px;
    margin-top: 0;
}

/* TEXT */
.review-card p{
    color:#ffffff;
    font-size:14px;
    line-height:1.4;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px){
    .review-container {
        flex-direction: column;
        gap: 40px;
    }

    .rating-summary {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px){
    .review-container {
        flex-direction: column;
        gap: 30px;
    }

    .rating-summary {
        width: 100%;
        max-width: 100%;
        padding: 40px 30px;
    }

    .counter {
        font-size: 42px;
    }

    .rating-stars {
        font-size: 24px;
    }
}

/* =========================================
            CONTACT SECTION
========================================= */

.contact-section {
    padding: 70px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.contact-section .contact-title{ font-size:28px; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.info-box:hover {
    transform: translateY(-10px);
}

.info-box i {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000, #990000);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.info-box h5 {
    font-weight: 700;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #f5f5f5;
    padding: 18px;
    border-radius: 12px;
    transition: 0.4s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #fff;
    border: 1px solid #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 18px;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form .main-btn.contact-btn {
    width: 100%;
    padding: 16px 0;
    border-radius: 999px;
    box-shadow: 0 18px 35px rgba(255, 77, 77, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.contact-form .main-btn.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 45px rgba(255, 77, 77, 0.32);
    filter: saturate(1.05);
}

@media (max-width: 992px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================
            FOOTER
========================================= */

footer {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 20px;
}

footer .container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

footer h4 {
    margin-bottom: 8px;
    font-weight: 700;
}

footer p {
    margin-bottom: 10px;
}

.footer-logo {
    height: 92px;
    margin: 0 auto 20px;
    display: block;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 18px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: #111;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 8px;
    transition: 0.4s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #ff0000;
    transform: translateY(-8px);
}

.copyright {
    margin-top: 30px;
    color: #aaa;
}

/* =========================================
        FINAL RESPONSIVE CSS
========================================= */

html,
body{
    overflow-x:hidden !important;
    width:100%;
    margin:0;
    padding:0;
}

/* GLOBAL */
img{
    max-width:100%;
    height:auto;
    display:block;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding-left:20px;
    padding-right:20px;
}

/* HERO */
.hero{
    min-height:100vh;
    padding:130px 0 80px;
    display:flex;
    align-items:center;
}

.hero .row{
    display:flex;
    align-items:center;
    gap:40px;
}

.hero-content{
    width:100%;
}

.hero h1{
    font-size:clamp(34px, 6vw, 78px);
    line-height:1.15;
}

.hero-tagline{
    font-size:clamp(16px, 2vw, 28px);
}

.hero p{
    font-size:16px;
    line-height:1.8;
}

.hero-buttons{
    display: block;
    flex-wrap:wrap;
    gap: 15px;
}

.glass-card{
    width:100%;
    max-width:450px;
        transform: none;
    }

@media (min-width: 993px) {
    .hero .glass-card {
        transform: translateY(-28px) !important;
    }
}

/* ABOUT */
.about-row{
    display:flex;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.about-image,
.about-content{
    flex:1 1 100%;
    max-width:100%;
}

.about-content h2{
    font-size:clamp(24px, 5vw, 48px);
}

.about-content p{
    max-width:100%;
}

/* SERVICES */
.services-row{
    display:grid !important;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

/* REVIEW */
.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* VISION */
.vision-mission-row{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

/* FOOTER */
footer{
    text-align:center;
}

.social-icons{
    justify-content:center;
    flex-wrap:wrap;
}

/* JUSTIFY FIX */
.justify-center{
    justify-content: flex-end;
    
}

/* =========================================
        TABLET
========================================= */

@media(max-width:992px){

    .hero{
        text-align:center;
        padding:140px 0 70px;
    }

    .hero .row{
        flex-direction:column;
    }

    .hero-buttons{
        justify-content:center;
    }

    .glass-card{
        margin-top:25px;
    }

    .section-title h2{
        font-size:38px;
    }
}

/* =========================================
        MOBILE
========================================= */

@media(max-width:768px){

    section{
        padding:70px 0 !important;
    }

    .hero{
        min-height:auto;
        padding-top:120px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero-tagline{
        font-size:16px;
    }

    .hero p{
        font-size:14px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .main-btn,
    .outline-btn{
        width:100%;
        max-width:280px;
    }

    .section-title h2{
        font-size:28px !important;
    }

    .section-title p{
        font-size:14px;
    }

    .about-content{
        text-align:center;
    }

    .glass-vm-card,
    .review-card,
    .service-card{
        padding:22px !important;
    }

    .sales-wrapper{
        min-height:420px;
    }

    .sales-inner{
        --w:150px;
        --h:210px;
        --translateZ:190px;
        --gap: 110px;
    }

    /* NAVBAR FIX - MOVE ITEMS TO RIGHT */
    .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        text-align: right;
    }

    .navbar-nav .nav-item {
        text-align: right;
    }

    .navbar-collapse {
        display: flex;
        justify-content: flex-end;
        text-align: right !important;
    }
}

/* =========================================
        SMALL MOBILE
========================================= */

@media(max-width:480px){

    .container{
        padding-left:14px;
        padding-right:14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero{
        padding-top:110px;
    }

    .hero h1{
        font-size:28px;
    }

    .section-title h2{
        font-size:24px !important;
    }

    .glass-card{
        padding:20px;
    }

    .mini-box{
        gap:12px;
    }

    .mini-box i{
        width:50px;
        height:50px;
        font-size:20px;
    }

    .footer-logo{
        height:60px;
    }

    footer p{
        font-size:13px;
    }
}

/* NAVBAR HAMBURGER FIX */
.navbar-toggler {
    margin-left: auto !important;
    display: block;
    position: relative;
    right: 0;
}

.navbar-header,
.navbar .container,
.navbar .container-fluid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .navbar {
        position: relative;
    }

    /* Mobile-only shared navbar styling: keep dropdown white and links black */
    [data-nav-root] [data-nav-menu] {
        background: #ffffff !important;
        border-color: rgba(0, 0, 0, 0.08) !important;
    }

    [data-nav-root] [data-nav-menu] a:not(.bg-gradient-to-r) {
        color: #000000 !important;
        transition: none !important;
    }

    [data-nav-root] [data-nav-menu] a:not(.bg-gradient-to-r):hover,
    [data-nav-root] [data-nav-menu] a:not(.bg-gradient-to-r):focus {
        color: #000000 !important;
        background: transparent !important;
    }

    [data-nav-root] [data-nav-menu] a.bg-gradient-to-r,
    [data-nav-root] [data-nav-menu] a .main-btn {
        color: #ffffff !important;
    }
}


/* =========================================
            FIX EXTRA FOOTER SPACE
========================================= */

/* FIX EXTRA TEXT BELOW FOOTER */

html,
body {
    width: 100%;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
}

footer {
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* REMOVE ANY EXTRA SPACE */
body::after,
body::before {
    display: none !important;
    content: none !important;
}

/* PREVENT OVERFLOW ELEMENTS */
* {
    max-width: 100%;
}

/* FIX SALES SECTION OVERFLOW */
.sales-wrapper {
    overflow: hidden !important;
}

/* REMOVE EXTRA BOTTOM SPACE */
body {
    display: block;
}

/* ===== FIX NAVBAR HAMBURGER CENTER ISSUE ===== */

.navbar .container,
.navbar .container-fluid {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    width: 100%;
}

/* Push hamburger to extreme right */
.navbar-toggler {
    margin-left: auto !important;
    position: relative;
    right: 0;
}

/* Prevent any center alignment */
.navbar {
    text-align: left !important;
}

@media (max-width: 768px) {
    .navbar .container,
    .navbar .container-fluid {
        justify-content: space-between !important;
    }

    .navbar-toggler {
        position: absolute !important;
        right: 15px !important;
        top: 15px !important;
    }

    .navbar {
        position: relative !important;
    }
}