/* ===== TOP BAR ===== */
.topbar-full {
    width: 100%;
    background: #020617;
    color: #ffffff;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* IMPORTANT */
}

/* LEFT TEXT */
.contact-btn {
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    transition: 0.3s;
}

.contact-btn:hover {
    color: #38bdf8;
}

/* DROPDOWN */
.contact-wrapper {
    position: relative;
}

.contact-dropdown {
    position: absolute;
    top: 35px;
    left: 0;

    background: #0f172a;
    padding: 16px;
    width: 260px;

    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);

    display: none;
    z-index: 9999;
}

.contact-dropdown p {
    margin: 6px 0;
    font-size: 13px;
}

.contact-dropdown a {
    color: #38bdf8;
    text-decoration: none;
}

/* SHOW */
.contact-wrapper.active .contact-dropdown {
    display: block;
}

/* SOCIAL */
.socials a {
    margin-left: 16px;
    color: #cbd5f5; 
    padding: 10px;  
    transition: 0.3s;
  
}

.socials a:hover {
    color: #38bdf8;
}

/* RIGHT SECTION */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* important */
}

/* ===== NAVBAR ===== */
.navbar-main {
    background: #ffffff;
    padding: 16px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* LOGO PREMIUM BOX */
/* LOGO PREMIUM BOX */
.logo-box {
    width: 184px;
    height: 84px;

    background: #f1f5f9;
    padding: 2px;

    border-radius: 10px;
    transition: background-color 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 184px;
}

.logo-box img {
    width: 180px;
    height: 80px;

    object-fit: contain;
    display: block;
}

.logo-box:hover {
    background: #ffffff;
}


/* NAV LINKS */
.nav-links a {
    margin-left: 25px;
    padding: 6px 12px;
    border-radius: 8px;

    text-decoration: none;
    color: #1e293b;
    font-weight: 500;

    transition: 0.3s;
}

/* PREMIUM HOVER BOX */
.nav-links a:hover {
    background: #eff6ff;
    color: #2563eb;
}

/* ACTIVE STYLE (OPTIONAL) */
.nav-links a.active {
    background: #2563eb;
    color: #ffffff;
}

/* ENQUIRY */
.btn-enquiry {
    background: #2563eb;
    color: #ffffff !important;
    padding: 6px 16px;
    border-radius: 20px;
}

.btn-enquiry:hover {
    background: #1d4ed8;
}


/* MOBILE */
.menu-btn {
    display: none;
}

@media (max-width:  768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;

    
        display: none;
        flex-direction: column;
        padding: 20px;

        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        font-size: 16px;
         padding: 12px 20px; 
        display: block;
    }

    .menu-btn {
        display: block;
        font-size: 26px;
        cursor: pointer;
    }
}

.marquee-bar {
    background: linear-gradient(90deg, #f1f5f9, #ffffff);
    padding: 8px 0;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 18s linear infinite;
}

.marquee-track span {
    font-size: 14px;
    font-weight: 500;
    color: #2563eb;
    display: inline-block;
    padding-right: 50px; 
    white-space: nowrap;
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .marquee-track span {
        font-size: 12px;
    }

    .marquee-track {
        animation-duration: 12s; /* faster on mobile */
    }
}


/* ================= NAVBAR DARK ================= */
body.dark-mode .navbar-main{
    background:#020617;
    box-shadow:0 5px 20px rgba(0,0,0,0.6);
}

/* LOGO BOX */
body.dark-mode .logo-box{
    background:#0f172a;
}

body.dark-mode .logo-box:hover{
    background:#1e293b;
}

/* NAV LINKS */
body.dark-mode .nav-links a{
    color:#ffffff;
}

/* HOVER */
body.dark-mode .nav-links a:hover{
    background:#0f172a;
    color:#38bdf8;
}

/* ACTIVE */
body.dark-mode .nav-links a.active{
    background:#2563eb;
    color:#ffffff;
}

/* ENQUIRY BTN */
body.dark-mode .btn-enquiry{
    background:linear-gradient(90deg,#2563eb,#38bdf8);
}

body.dark-mode .btn-enquiry:hover{
    background:linear-gradient(90deg,#1d4ed8,#0ea5e9);
}

/* MOBILE MENU */
body.dark-mode .nav-links{
    background:#020617;
}

/* ================= MARQUEE DARK ================= */
body.dark-mode .marquee-bar{
    background:#020617;
    border-top:1px solid #0f172a;
    border-bottom:1px solid #0f172a;
}

body.dark-mode .marquee-track span{
    color:#38bdf8;
}


/* ===== HERO SLIDER ===== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #0b1120;
}

/* SLIDER */

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* SLIDE */

.slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 1;

    transition: opacity .8s ease-in-out;
}

/* ACTIVE SLIDE */

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

/* PICTURE */

.slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

/* IMAGE */

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Only animate after page load */
.hero-slider.slider-ready .slide img {
    transform: scale(1.04);
    transition: transform 6s linear;
    will-change: transform;
}

.hero-slider.slider-ready .slide.active img {
    transform: scale(1);
}

/* OVERLAY */

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .10);
    z-index: 1;
}

/* CONTENT */

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

/* HEADINGS */

.slide-content h1,
.slide-content h2 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.1;
    margin-bottom: 22px;
    font-weight: 700;
}

/* TEXT */

.slide-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 580px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 600;

    transition:
        background-color .3s ease,
        transform .3s ease;
}

/* PRIMARY */

.primary-btn {
    background: #0d6efd;
    color: #fff;
}

.primary-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* SECONDARY */

.secondary-btn {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-2px);
}

/* DOTS */

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: center;
    gap: 10px;

    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, .5);

    cursor: pointer;

    transition:
        width .3s ease,
        background-color .3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 20px;
    background: #fff;
}

/* MOBILE */

@media (max-width: 768px) {

    .hero-slider {
        height: 420px;
    }

    .slide-content {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .slide-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .hero-slider {
        height: 390px;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 26px;
    }

    .slide-content p {
        font-size: 15px;
    }

}
/* ===== SECTION ===== */
.about-section {
    padding: 90px 0;
    background: #f5f7fb;
}

/* FORCE EQUAL HEIGHT */
.row.align-items-center {
    align-items: stretch !important;
}

/* COMMON BOX */
.about-box {
    width: 100%;
    height: 100%;
    min-height: 420px; /* SAME HEIGHT */

    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}

/* ===== LEFT IMAGE ===== */
.about-image {
    padding: 12px;
    background: #ffffff;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== RIGHT CONTENT ===== */
/* ===== RIGHT CONTENT BOX (FIXED) ===== */
.about-card {
    background: #ffffff;
    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    z-index: 1;
    border-radius: 16px;

    /* normal border */
    border: 1px solid rgba(37,99,235,0.2);

    /* subtle glow always visible */
    box-shadow:
        0 0 0 1px rgba(37,99,235,0.1),
        0 0 25px rgba(37,99,235,0.12),
        0 15px 40px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}





/* HEADING */
.about-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.about-card h2 span {
    color: #2563eb;
}

/* TEXT */
.about-desc {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

.about-sub {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

/* GRID */
.about-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
}

/* POINT */
.point {
    font-size: 13px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .about-box {
        min-height: auto;
    }

    .about-points-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-bottom: 20px;
    }
}
/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 70px 0;
    background: #f8fafc;
    overflow: hidden; /* FIX overflow glitch */
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0f172a;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.service-card{
    transform:
        perspective(1000px)
        rotateX(var(--rotateX,0deg))
        rotateY(var(--rotateY,0deg));
}

/* INNER */
.card-inner {
    position: relative;
    width: 100%;
    height: 240px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* FLIP */
.service-card:hover .card-inner {
     transform: translateY(-6px);
}

/* FRONT + BACK */
.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    padding: 20px;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    top: 0;
    left: 0;
}

/* FRONT */
.card-front {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border: 1px solid #ffffff;
    text-align: center;
    overflow: hidden;
}

/* TOP BORDER */
.card-front::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

/* ICON */
.card-front i {
    font-size: 32px;
    color: #2563eb;
    position: relative;
    margin-bottom: 10px;
}

/* ICON GLOW */
.card-front i::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* TEXT */
.card-front h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.card-front p {
    font-size: 13px;
    color: #64748b;
}

/* BACK */
.card-back {
    background: #0f172a;
    color: #ffffff;
    transform: rotateY(180deg);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* HOVER LIFT */
.service-card:hover {
    transform: translateY(-6px);
}

/* MOBILE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px){

    .service-card{
        transform:none !important;
    }

}

/* ================= ABOUT SECTION DARK ================= */
body.dark-mode .about-section{
    background:#020617;
}

/* IMAGE BOX */
body.dark-mode .about-image{
    background:#0f172a;
}

/* CONTENT BOX */
body.dark-mode .about-card{
    background:#0f172a;
    border:1px solid #1e293b;

    box-shadow:
        0 0 0 1px rgba(37,99,235,0.1),
        0 0 25px rgba(37,99,235,0.15),
        0 15px 40px rgba(0,0,0,0.6);
}

/* TEXT */
body.dark-mode .about-card h2{
    color:#ffffff;
}

body.dark-mode .about-card h2 span{
    color:#38bdf8;
}

body.dark-mode .about-desc{
    color:#cbd5f5;
}

body.dark-mode .about-sub{
    color:#94a3b8;
}

body.dark-mode .point{
    color:#ffffff;
}


/* ================= SERVICES DARK ================= */
body.dark-mode .services-section{
    background:#020617;
}

/* TITLE */
body.dark-mode .section-title{
    color:#ffffff;
}

/* FRONT CARD */
body.dark-mode .card-front{
    background:linear-gradient(145deg,#020617,#0f172a);
    border:1px solid #1e293b;
}

/* ICON */
body.dark-mode .card-front i{
    color:#38bdf8;
}

/* ICON GLOW */
body.dark-mode .card-front i::after{
    background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 70%);
}

/* TEXT */
body.dark-mode .card-front h4{
    color:#ffffff;
}

body.dark-mode .card-front p{
    color:#94a3b8;
}

/* BACK SIDE */
body.dark-mode .card-back{
    background:#020617;
    color:#ffffff;
}

/* HOVER EFFECT SAME BUT STRONGER */
body.dark-mode .service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,0.6);
}
/* ===== CTA SECTION ===== */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

/* WRAPPER */
.cta-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

/* LEFT SIDE */
.cta-left {
    flex: 1;
    color: #ffffff;
}

.cta-tag {
    font-size: 13px;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.cta-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-left h2 span {
    color: #38bdf8;
}

/* DESC */
.cta-desc {
    font-size: 15px;
    color: #cbd5f5;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* POINTS */
.cta-points {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.cta-points li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-points i {
    color: #38bdf8;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #38bdf8;
    color: #38bdf8;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #38bdf8;
    color: #0f172a;
}


/* ===== FORM BOX ===== */
.cta-form-box {
    flex: 1;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* FORM TITLE */
.cta-form-box h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

/* ROW */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* INPUT */
.cta-form-box input,
.cta-form-box select,
.cta-form-box textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    outline: none;

    background: rgba(255,255,255,0.15);
    color: #ffffff;
    font-size: 14px;
}

/* SELECT FIX */
.cta-form-box select {
    color: #ffffff;
}

.cta-form-box select option {
    color: #000;
}

/* TEXTAREA */
.cta-form-box textarea {
    height: 90px;
    margin-bottom: 15px;
}

/* BUTTON */
.cta-form-box button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s;
}

.cta-form-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(56,189,248,0.4);
}

/* NOTE */
.form-note {
    font-size: 12px;
    color: #cbd5f5;
    text-align: center;
    margin-top: 10px;
}


/* ===== MOBILE ===== */
@media (max-width: 991px) {
    .cta-wrapper {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .cta-left h2 {
        font-size: 26px;
    }
}

/* SECTION */
.showcase-section {
    padding: 70px 0;
    background: #f8fafc;
}

.showcase-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0f172a;
}

/* SLIDER */
.showcase-slider {
    position: relative;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    border-radius: 18px;
}

/* SLIDES */
.showcase-slide {
    display: none;
    position: relative;
}

.showcase-slide.active-slide {
    display: block;
}

/* IMAGE */
.showcase-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 18px;
}

/* TAG */
.showcase-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;

    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;

    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;

    backdrop-filter: blur(6px);
}

/* BUTTONS */
.showcase-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;
    border-radius: 50%;

    border: none;
    background: #dc2626;
    color: #ffffff;
    cursor: pointer;
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

.showcase-btn:hover {
    background: #b91c1c;
}

/* MOBILE */
@media (max-width: 768px) {
    .showcase-slide img {
        height: 220px;
    }
}

/* ================= SHOWCASE DARK ================= */
body.dark-mode .showcase-section{
    background:#020617;
}

/* TITLE */
body.dark-mode .showcase-title{
    color:#ffffff;
}

/* SLIDER CONTAINER */
body.dark-mode .showcase-slider{
    box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

/* IMAGE (slightly dim for better contrast) */
body.dark-mode .showcase-slide img{
    filter:brightness(0.85) contrast(1.05);
}

/* TAG */
body.dark-mode .showcase-tag{
    background:rgba(2,6,23,0.85);
    color:#ffffff;
    border:1px solid rgba(56,189,248,0.2);
}

/* BUTTONS */
body.dark-mode .showcase-btn{
    background:linear-gradient(135deg,#2563eb,#38bdf8);
    color:#ffffff;
}

body.dark-mode .showcase-btn:hover{
    background:linear-gradient(135deg,#1d4ed8,#0ea5e9);
}

/* SECTION */
.pricing-section {
    padding: 90px 0;
    background: #f8fafc;
}

.pricing-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0f172a;
}

/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.pricing-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;

    border: 1px solid #ffffff;
    transition: transform .3s ease, opacity .3s ease;
    position: relative;
}

/* HOVER */
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ACTIVE CARD (CENTER) */
.pricing-card.active {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(37,99,235,0.3);
}

/* BADGE */
.badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
}

/* PRICE */
.price {
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
}

/* SUBTITLE */
.subtitle {
    font-size: 14px;
    margin-bottom: 15px;
    color: #64748b;
}

/* ACTIVE TEXT FIX */
.pricing-card.active .subtitle {
    color: #e0f2fe;
}

/* LIST */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* BUTTON */
.price-btn {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #2563eb;
    background: transparent;
    color: #2563eb;
    cursor: pointer;
    transition: 0.3s;
}

.price-btn:hover {
    background: #2563eb;
    color: #ffffff;
}

/* PRIMARY BTN */
.price-btn.primary {
    background: #0f172a;
    color: #ffffff;
    border: none;
}

.price-btn.primary:hover {
    background: #020617;
}

/* MOBILE */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.active {
        transform: none;
    }
}


/* ================= PRICING DARK ================= */
body.dark-mode .pricing-section{
    background:#020617;
}

/* TITLE */
body.dark-mode .pricing-title{
    color:#ffffff;
}

/* CARD */
body.dark-mode .pricing-card{
    background:#0f172a;
    border:1px solid #1e293b;
    color:#ffffff;
}

/* HOVER */
body.dark-mode .pricing-card:hover{
    box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

/* ACTIVE CARD (KEEP PREMIUM) */
body.dark-mode .pricing-card.active{
    background:linear-gradient(135deg,#2563eb,#38bdf8);
    color:#fffff;
    box-shadow:0 25px 60px rgba(37,99,235,0.5);
}

/* BADGE */
body.dark-mode .badge{
    background:#020617;
    color:#38bdf8;
    border:1px solid #1e293b;
}

/* SUBTITLE */
body.dark-mode .subtitle{
    color:#94a3b8;
}

/* ACTIVE SUBTITLE */
body.dark-mode .pricing-card.active .subtitle{
    color:#e0f2fe;
}

/* LIST TEXT */
body.dark-mode .pricing-card ul li{
    color:#cbd5f5;
}

/* BUTTON */
body.dark-mode .price-btn{
    border:1px solid #38bdf8;
    color:#38bdf8;
}

body.dark-mode .price-btn:hover{
    background:#38bdf8;
    color:#020617;
}

/* PRIMARY BUTTON */
body.dark-mode .price-btn.primary{
    background:#38bdf8;
    color:#020617;
}

body.dark-mode .price-btn.primary:hover{
    background:#0ea5e9;
}
/* SECTION */
.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0f172a;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
/* TEAM CARD */
.team-card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    position: relative;

    border: 1px solid #ffffff;
   transition: transform .3s ease, opacity .3s ease;
}

/* PREMIUM BORDER (ALL SIDES GLOW) */
.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(120deg, #2563eb, #38bdf8, transparent);
    -webkit-mask: 
        linear-gradient(#ffffff 0 0) content-box, 
        linear-gradient(#ffffff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
   transition: transform .3s ease, opacity .3s ease;
}

/* SHOW BORDER ON HOVER */
.team-card:hover::before {
    opacity: 1;
}

/* HOVER LIFT */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* IMAGE ZOOM */
.team-card img {
    content-visibility: auto; /* Browser optimizes rendering of off-screen images */
    font-display: swap; /* Ensures text shows up if icons take time */
}

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

/* CURSOR GLOW EFFECT */
.team-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
    border-radius: 50%;
    pointer-events: none;

    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);

    opacity: 0;
    transition: opacity 0.3s;
}

/* SHOW GLOW */
.team-card:hover::after {
    opacity: 1;
}

/* IMAGE BOX */
.team-img {
    overflow: hidden;
    height: 260px;
}

/* IMAGE */
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  object-position: top;
}

/* ZOOM EFFECT */
.team-card:hover img {
    transform: scale(1.08);
}

/* INFO */
.team-info {
    padding: 18px;
}

.team-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 14px;
    color: #64748b;
}

/* ===== STAGGER ANIMATION ===== */
.reveal-team {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.reveal-team.show {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= TEAM DARK ================= */
body.dark-mode .team-section{
    background:#020617;
}

/* TITLE */
body.dark-mode .team-title{
    color:#ffffff;
}

/* CARD */
body.dark-mode .team-card{
    background:#0f172a;
    border:1px solid #1e293b;
}

/* HOVER SHADOW */
body.dark-mode .team-card:hover{
    box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

/* TEXT */
body.dark-mode .team-info h4{
    color:#ffffff;
}

body.dark-mode .team-info p{
    color:#94a3b8;
}

/* BORDER GLOW (STRONGER IN DARK) */
body.dark-mode .team-card::before{
    background:linear-gradient(120deg,#38bdf8,#2563eb,transparent);
}

/* CURSOR GLOW (MORE VISIBLE) */
body.dark-mode .team-card::after{
    background: radial-gradient(circle, rgba(56,189,248,0.35), transparent 70%);
}

/* SECTION */
.testimonial-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
    overflow: hidden;
}

.testimonial-title {
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 50px;
}

/* MARQUEE */
.testimonial-marquee {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.testimonial-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollTestimonial 25s linear infinite;
}

/* PAUSE ON HOVER */
.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

/* CARD */
.testimonial-card {
    width: 320px;
    flex-shrink: 0;

    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 25px;

    text-align: center;
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);
   transition: transform .3s ease, opacity .3s ease;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #2563eb;
    box-shadow: 0 15px 40px rgba(37,99,235,0.3);
}

/* IMAGE */
.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 3px solid #2563eb;
}

/* NAME */
.testimonial-card h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 3px;
}

/* LOCATION */
.testimonial-card span {
    font-size: 13px;
    color: #38bdf8;
    display: block;
    margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #cbd5f5;
    line-height: 1.5;
}

/* ANIMATION */
@keyframes scrollTestimonial {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-card {
        width: 260px;
    }
}

/* SECTION */
.logo-marquee-section {
    padding: 70px 0;
    background: #f8fafc;
    overflow: hidden;
}

/* TITLE */
.logo-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #0f172a;
}

/* MARQUEE */
.logo-marquee {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.logo-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: logoScroll 25s linear infinite;
}

/* PAUSE ON HOVER */
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

/* IMAGE STYLE */
.logo-track img {
    width: 120px;
    height: 120px;
    object-fit: contain;

    background: #ffffff;
    padding: 15px;
    border-radius: 12px;

    border: 1px solid #ffffff;

    transition: 0.3s;
}

/* HOVER EFFECT */
.logo-track img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ANIMATION */
@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* MOBILE */
@media (max-width: 768px) {
    .logo-track img {
        width: 90px;
        height: 90px;
    }
}

/* ================= LOGO MARQUEE DARK ================= */
body.dark-mode .logo-marquee-section{
    background:#020617;
}

/* TITLE */
body.dark-mode .logo-title{
    color:#ffffff;
}



/* FOOTER */
.main-footer {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #cbd5f5;
    padding-top: 60px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* BOX */
.footer-box h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* LOGO */
.footer-logo {
    width: 140px;
    margin-bottom: 10px;
}

/* SOCIAL */
.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;

    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ffffff;

    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: #ffffff;
}

/* CONTACT LINKS */
.footer-box a {
    color: #ffffff;
    text-decoration: none;
}

.footer-box a:hover {
    text-decoration: underline;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
}

/* BRAND BOX */
.brand-box {
    display: inline-block;
    margin-left: 5px;
    padding: 4px 10px;
    border-radius: 6px;

    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
}

.brand-box:hover {
    background: #1d4ed8;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 55px;
    height: 55px;
    border-radius: 50%;

    background: #25D366;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;

    z-index: 999;
    animation: pulse 1.5s infinite;
}

/* PULSE */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* MAIN FOOTER */
.footer-modern {
    background: linear-gradient(135deg, #020617, #0f172a);
    padding: 70px 0 0;
    color: #cbd5f5;
}

/* GRID */
.footer-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* INDIVIDUAL BOX */
.fbox {
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    padding: 25px;

    border: 1px solid rgba(37,99,235,0.25);

    transition: transform .3s ease, opacity .3s ease;
}

/* HOVER EFFECT (PREMIUM) */
.fbox:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 15px 40px rgba(37,99,235,0.2);
}

/* LOGO */
.f-logo{
    width:365px;
    height:auto;
    display:block;
    margin-bottom: 10px;
}
/* SOCIAL */
.f-social a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;

    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #ffffff;

    margin-right: 8px;
    transition: 0.3s;
}

.f-social a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

/* HEADINGS */
.fbox h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

/* TEXT */
.fbox p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* LINKS */
.fbox ul {
    list-style: none;
    padding: 0;
}

.fbox ul li {
    margin-bottom: 8px;
}

.fbox ul li a {
    color: #cbd5f5;
    text-decoration: none;
    position: relative;
}

/* HOVER LINE */
.fbox ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: 0.3s;
}

.fbox ul li a:hover::after {
    width: 100%;
}

.fbox ul li a:hover {
    color: #ffffff;
}

/* CONTACT LINKS */
.fbox a {
    color: #38bdf8;
}

/* BOTTOM */
.footer-bottom-modern {
    margin-top: 50px;
    padding: 18px;
    text-align: center;

    background: #020617;
    font-size: 14px;
}

/* BRAND BOX */
.brand-highlight {
    display: inline-block;
    padding: 3px 10px;
    margin-left: 6px;

    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;

    text-decoration: none;
}

.brand-highlight:hover {
    background: #1d4ed8;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-boxes {
        grid-template-columns: 1fr;
    }

    .fbox {
        text-align: center;
    }
}


/* MODAL BG */
.enquiry-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* BOX */
.enquiry-box {
    width: 360px;
    padding: 25px;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);

    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);

    position: relative;
}

/* CLOSE */
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* HEADER */
.enquiry-header {
    text-align: center;
    margin-bottom: 20px;
}

.enquiry-header img {
    width: 60px;
}

.enquiry-header h3 {
    margin-top: 8px;
    font-size: 20px;
}

/* INPUT */
.input-group {
    margin-bottom: 12px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* CAPTCHA */
.captcha-box {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #0f172a;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.captcha-box button {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 10px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}


/* ================= MODAL DARK ================= */

/* BACKGROUND OVERLAY (slightly stronger) */
body.dark-mode .enquiry-modal{
    background:rgba(0,0,0,0.75);
}

/* MODAL BOX */
body.dark-mode .enquiry-box{
    background:rgba(15,23,42,0.9); /* glass dark */
    backdrop-filter:blur(18px);

    border:1px solid #1e293b;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.7),
        0 0 25px rgba(56,189,248,0.15);
}

/* CLOSE BUTTON */
body.dark-mode .close-modal{
    color:#ffffff;
}

/* HEADER TEXT */
body.dark-mode .enquiry-header h3{
    color:#ffffff;
}

/* INPUT FIELDS */
body.dark-mode .input-group input,
body.dark-mode .input-group textarea{
    background:#020617;
    border:1px solid #1e293b;
    color:#ffffff;
}

/* PLACEHOLDER */
body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder{
    color:#64748b;
}

/* CAPTCHA */
body.dark-mode .captcha-box{
    background:#020617;
    border:1px solid #1e293b;
}

/* BUTTON */
body.dark-mode .submit-btn{
    background:linear-gradient(90deg,#2563eb,#38bdf8);
}

/* BUTTON HOVER */
body.dark-mode .submit-btn:hover{
    box-shadow:0 10px 25px rgba(56,189,248,0.4);
}
/* FLOAT BUTTON */
.enquiry-float {
    position: fixed;
    bottom: 90px;
    right: 20px;

    width: 55px;
    height: 55px;

    border-radius: 50%;
    border: none;

    background: linear-gradient(90deg, #2563eb, #38bdf8);
    color: #ffffff;

    font-size: 20px;
    cursor: pointer;

    box-shadow: 0 10px 25px rgba(37,99,235,0.4);

    z-index: 999;
}

/* HOVER */
.enquiry-float:hover {
    transform: scale(1.1);
}

/* ================ contact page  ================ */


/* ===== HERO ===== */
.contact-hero {
    height: 350px;
    background: url('../assets/images/slider/contactimg.webp') center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2,6,23,0.9), rgba(37,99,235,0.6));
}

.hero-content {
    position: relative;
    color: #ffffff;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.hero-content p {
    font-size: 16px;
    margin-top: 10px;
}


/* ===== STRIP ===== */
.contact-strip {
    background: #2563eb;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 15px;
}


/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 60px 0;
    background: #f8fafc;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;

    border: 1px solid #ffffff;
  transition: transform .3s ease, opacity .3s ease;
    height: 100%;
}

/* HOVER DARK */
.contact-card:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-card:hover h3,
.contact-card:hover h5,
.contact-card:hover h6,
.contact-card:hover p {
    color: #ffffff;
}

/* HEADINGS */
.contact-card h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

/* BLOCK */
.contact-block {
    margin-bottom: 15px;
}

/* INFO ROW */
.info-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.info-row i {
    font-size: 22px;
    color: #2563eb;
    transition: 0.3s;
}

/* ICON GLOW */
.contact-card:hover i {
    color: #38bdf8;
    text-shadow: 0 0 10px rgba(56,189,248,0.8);
}


/* ===== MAP ===== */
.map-section {
    padding: 60px 0;
    background: #f1f5f9;
}

.map-box {
    border-radius: 14px;
    overflow: hidden;

    border: 2px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(90deg, #2563eb, #38bdf8) border-box;

    box-shadow: 0 15px 40px rgba(37,99,235,0.2);
}

.map-box iframe {
    width: 100%;
    height: 450px;
    border: none;
}


/* ===== MOBILE ===== */
@media(max-width:768px) {
    .hero-content h1 {
        font-size: 28px;
    }
}
/* ================= CONTACT DARK ================= */
body.dark-mode .contact-section{
    background:#020617;
}

/* CARD BASE */
body.dark-mode .contact-card{
    background:#0f172a;
    border:1px solid #1e293b;
    color:#ffffff;
}

/* HOVER (STRONGER + PREMIUM) */
body.dark-mode .contact-card:hover{
    background:#020617;
    color:#ffffff;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.7),
        0 0 20px rgba(56,189,248,0.2);
}

/* TEXT */
body.dark-mode .contact-card h3,
body.dark-mode .contact-card h5,
body.dark-mode .contact-card h6{
    color:#ffffff;
}

body.dark-mode .contact-card p{
    color:#94a3b8;
}

/* ICON */
body.dark-mode .info-row i{
    color:#38bdf8;
}

/* ICON HOVER GLOW */
body.dark-mode .contact-card:hover i{
    color:#38bdf8;
    text-shadow:0 0 12px rgba(56,189,248,0.9);
}


/* ================= MAP DARK ================= */
body.dark-mode .map-section{
    background:#020617;
}

/* MAP BOX */
body.dark-mode .map-box{
    background:linear-gradient(#0f172a,#0f172a) padding-box,
               linear-gradient(90deg,#2563eb,#38bdf8) border-box;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.7),
        0 0 20px rgba(56,189,248,0.15);
}

/* ================= about  ================== */


/* ===== HERO ===== */
.about-hero {
    height: 320px;
    background: url('../assets/images/about/about.webp') center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.about-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2,6,23,0.9), rgba(37,99,235,0.6));
}

.about-hero-content {
    position: relative;
    text-align: center;
    color: #ffffff;
}

.about-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.about-hero-content p {
    margin-top: 10px;
    font-size: 16px;
}

/* ===== ABOUT SECTION ===== */
.about-main {
    padding: 70px 0;
    background: #f8fafc;
}

.about-row {
    align-items: stretch;
}

/* COMMON BOX */
.about-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    width: 100%;
    height: 100%;

    position: relative;
    border: 1px solid rgba(37,99,235,0.15);

    /* STATIC GLOW (always visible) */
    box-shadow:
        0 0 0 1px rgba(37,99,235,0.08),
        0 0 20px rgba(37,99,235,0.10),
        0 15px 40px rgba(0,0,0,0.05);

    transition: none; /* ❌ remove animation */
}

/* ❌ REMOVE ALL HOVER EFFECTS */
.about-box:hover {
    transform: none;
    box-shadow:
        0 0 0 1px rgba(37,99,235,0.08),
        0 0 20px rgba(37,99,235,0.10),
        0 15px 40px rgba(0,0,0,0.05);
}

/* REMOVE OLD GLOW BEFORE */
.about-box::before {
    display: none;
}

/* TEXT */
.about-box h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.about-box span {
    color: #2563eb;
}

.about-box p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* IMAGE BOX */
.img-box {
    padding: 0;
    overflow: hidden;
}

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

/* ===== WHY SECTION ===== */
.why-section {
    padding: 70px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.why-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;

    border: 1px solid #ffffff;
   transition: transform .3s ease, opacity .3s ease;
}

/* ICON */
.why-card i {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 10px;
    display: inline-block;
}

/* TEXT */
.why-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.why-card p {
    font-size: 13px;
    color: #64748b;
}

/* HOVER GLOW */
.why-card:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-5px);
}

.why-card:hover p {
    color: #cbd5f5;
}

.why-card:hover i {
    color: #38bdf8;
    text-shadow: 0 0 10px rgba(56,189,248,0.7);
}


/* ===== RESPONSIVE ===== */
@media(max-width:992px){
    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= ABOUT MAIN DARK ================= */
body.dark-mode .about-main{
    background:#020617;
}

/* ABOUT BOX */
body.dark-mode .about-box{
    background:#0f172a;
    border:1px solid #1e293b;

    box-shadow:
        0 0 0 1px rgba(56,189,248,0.08),
        0 0 25px rgba(56,189,248,0.15),
        0 15px 40px rgba(0,0,0,0.6);
}

/* TEXT */
body.dark-mode .about-box h2{
    color:#ffffff;
}

body.dark-mode .about-box span{
    color:#38bdf8;
}

body.dark-mode .about-box p{
    color:#cbd5f5;
}


/* ================= WHY SECTION DARK ================= */
body.dark-mode .why-section{
    background:#020617;
}

/* TITLE */
body.dark-mode .section-title{
    color:#ffffff;
}

/* CARD BASE */
body.dark-mode .why-card{
    background:#0f172a;
    border:1px solid #1e293b;
    color:#ffffff;
}

/* ICON */
body.dark-mode .why-card i{
    color:#38bdf8;
}

/* TEXT */
body.dark-mode .why-card p{
    color:#94a3b8;
}

/* HOVER (KEEP EFFECT BUT PREMIUM) */
body.dark-mode .why-card:hover{
    background:#020617;
    color:#ffffff;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.7),
        0 0 20px rgba(56,189,248,0.25);
}

/* HOVER TEXT */
body.dark-mode .why-card:hover p{
    color:#cbd5f5;
}

/* ICON GLOW */
body.dark-mode .why-card:hover i{
    color:#38bdf8;
    text-shadow:0 0 12px rgba(56,189,248,0.9);
}
/* ===== SECTION ===== */
/* ===== SECTION ===== */
.journey-stairs {
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
    overflow: hidden;
}

/* TITLE */
.journey-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 90px;
    color: #0f172a;
}

/* WRAPPER */
.stairs-wrapper {
    position: relative;
    width: 100%;
    height: 560px;
}

/* STEP CARDS */
.step-card {
    position: absolute;
    width: 260px;
    padding: 22px;

    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);

    border-radius: 16px;
    border: 1px solid rgba(37,99,235,0.15);

    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

/* PERFECT STAIR ALIGNMENT */
.step-1 { bottom: 10px; left: 2%; }
.step-2 { bottom: 100px; left: 20%; }
.step-3 { bottom: 190px; left: 38%; }
.step-4 { bottom: 280px; left: 56%; }
.step-5 { bottom: 370px; left: 74%; }

/* TEXT */
.year {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    color: #ffffff;
    border-radius: 20px;
    margin-bottom: 8px;
}

.step-card h4 {
    font-size: 17px;
    font-weight: 600;
}

.step-card p {
    font-size: 13px;
    color: #64748b;
}

/* HOVER */
.step-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 70px rgba(37,99,235,0.25);
}

/* ACTIVE CARD */
.step-card.active {
    transform: translateY(-14px) scale(1.06);
    box-shadow: 0 30px 80px rgba(37,99,235,0.35);
    border: 1px solid #2563eb;
}

/* DEPTH SHADOW */
.step-card::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 15px;
    width: 85%;
    height: 12px;
    background: rgba(0,0,0,0.08);
    filter: blur(10px);
    border-radius: 50%;
}

/* ===== PROGRESS LINE ===== */
.journey-progress-line {
    position: absolute;
    bottom: 12px;
    left: 2%;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    box-shadow: 0 0 12px rgba(37,99,235,0.5);
    transition: width 1.2s ease;
}

/* ARROW HEAD */
.journey-progress-line::after {
    content: "";
    position: absolute;
    right: -8px;
    top: -5px;
    border-left: 10px solid #38bdf8;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ===== MOVING DOT ===== */
.moving-dot {
    position: absolute;
    width: 14px;
    height: 14px;

    background: linear-gradient(90deg, #2563eb, #38bdf8);
    border-radius: 50%;

    box-shadow: 0 0 15px rgba(37,99,235,0.9),
                0 0 30px rgba(37,99,235,0.6);

   transition: transform .4s ease, opacity .4s ease;
    z-index: 10;
}

/* SCROLL ENTRY */
.reveal-step {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.reveal-step.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .stairs-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .step-card {
        position: relative;
        left: 0 !important;
        bottom: 0 !important;
        width: 100%;
    }

    .moving-dot,
    .journey-progress-line {
        display: none;
    }
}

/* ================= JOURNEY DARK ================= */
body.dark-mode .journey-stairs{
    background:linear-gradient(180deg,#020617,#020617);
}

/* TITLE */
body.dark-mode .journey-title{
    color:#ffffff;
}

/* STEP CARD */
body.dark-mode .step-card{
    background:rgba(15,23,42,0.85);
    backdrop-filter:blur(12px);

    border:1px solid #1e293b;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.6),
        0 0 20px rgba(56,189,248,0.12);
}

/* TEXT */
body.dark-mode .step-card h4{
    color:#ffffff;
}

body.dark-mode .step-card p{
    color:#94a3b8;
}

/* YEAR TAG */
body.dark-mode .year{
    background:linear-gradient(90deg,#2563eb,#38bdf8);
}

/* HOVER */
body.dark-mode .step-card:hover{
    transform:translateY(-12px) scale(1.05);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.7),
        0 0 25px rgba(56,189,248,0.25);
}

/* ACTIVE STEP */
body.dark-mode .step-card.active{
    border:1px solid #38bdf8;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.8),
        0 0 35px rgba(56,189,248,0.4);
}

/* DEPTH SHADOW (darker) */
body.dark-mode .step-card::after{
    background:rgba(0,0,0,0.6);
}

/* PROGRESS LINE */
body.dark-mode .journey-progress-line{
    background:linear-gradient(90deg,#2563eb,#38bdf8);
    box-shadow:0 0 18px rgba(56,189,248,0.6);
}

/* ARROW */
body.dark-mode .journey-progress-line::after{
    border-left:10px solid #38bdf8;
}

/* MOVING DOT */
body.dark-mode .moving-dot{
    background:linear-gradient(90deg,#2563eb,#38bdf8);

    box-shadow:
        0 0 20px rgba(56,189,248,1),
        0 0 40px rgba(56,189,248,0.6);
}

.theme-toggle{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#ffffff;
    font-size:20px;
    background:#2563eb;
}

.slide,
.team-card,
.service-card,
.showcase-slide,
.testimonial-card {
    will-change: transform, opacity;
    transform: translateZ(0);
}


/* ===== BOOTSTRAP CDN REPLACEMENT ===== */

.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}