/* --- Global Styles --- */
html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: rgba(251, 146, 60, 0.2);
    color: #ea580c;
}

/* --- Navbar Wrapper --- */
.custom-nav-wrapper {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    border: none;
    pointer-events: auto;
}

/* --- Glass Pill --- */
.nav-pill-container {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 10px 30px;
    min-width: 80%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

    /* 🔥 smooth but safe */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Scroll Effect (NO transform now) */
.scrolled-nav {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* --- Logo Sharpness Fix --- */
.nav-logo-img {
    height: 35px;
    /* Adjust as needed */
    width: auto;
    /* object-fit: contain; */
    /* image-rendering: -webkit-optimize-contrast; */
    /* Fixes blur */
    image-rendering: crisp-edges;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .nav-logo-img {
    transform: scale(1.05);
}

/* --- Nav Links --- */
.navbar-nav .nav-link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b !important;
    padding: 0 18px !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0f172a !important;
}

/* --- Get Started Button --- */
.btn-dark-pill {
    background: #0f172a;
    color: white !important;
    border: none;
    border-radius: 500px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-dark-pill:hover {
    color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

/* --- Mobile Menu & Hamburger --- */
.stylish-toggler {
    border: none;
    padding: 0;
    outline: none !important;
}

.toggler-bar {
    width: 22px;
    height: 2px;
    background: #0f172a;
    display: block;
    margin: 5px 0;
    transition: all 0.4s ease;
}

.stylish-toggler:not(.collapsed) .bar-top {
    transform: translateY(7px) rotate(45deg);
}

.stylish-toggler:not(.collapsed) .bar-mid {
    opacity: 0;
    transform: scaleX(0);
}

.stylish-toggler:not(.collapsed) .bar-bot {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .custom-nav-wrapper {
        pointer-events: auto;
        transform: none !important;
    }

    .nav-pill-container {
        width: 92%;
        border-radius: 20px;

        /* ❌ remove heavy blur on mobile */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        background: #ffffff;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 20px;
        border-radius: 16px;
        text-align: center;
        background: #ffffff;

        /* 🔥 smooth collapse */
        transition: height 0.25s ease;
    }

    .navbar-collapse.collapsing {
        transition: height 0.2s ease;
    }

    /* Gap between menu items */
    .navbar-nav .nav-item {
        margin-bottom: 12px;
    }

    .btn-dark-pill {
        margin-top: 10px;
        width: 100%;
    }
}

/* Spacer */
.content-spacer {
    padding: 180px 20px 100px;
    text-align: center;
}


/* =========================================
   HERO SECTION STYLES
   ========================================= */


.hero-section {
    position: relative;
    padding: 140px 0 120px 0;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* 🔥 MAIN FIX */
}

/* SHADE BASE */
.bg-shade {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    z-index: 0;
}

/* TOP LEFT SHADE */
.shade-tl {
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.6) 0%, rgba(251, 146, 60, 0.2) 40%, transparent 70%);
}

/* BOTTOM RIGHT SHADE */
.shade-br {
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.6) 0%, rgba(234, 88, 12, 0.2) 40%, transparent 70%);
}

/* FIXED BUTTON SIZE */
.hero-buttons-wrapper {
    margin-top: 20px;
}

/* --- Watermark Style --- */
.hero-watermark {
    position: absolute;
    bottom: -110px;
    /* Adjust this to show more/less of the text */
    left: 50%;
    transform: translateX(-50%);

    font-family: 'Raleway', sans-serif;
    font-size: 250px;
    font-weight: 900;
    text-transform: capitalize;
    line-height: 0.8;
    letter-spacing: 16px;

    /* Your Gradient Theme: Black to Light Gray */
    background: linear-gradient(to bottom, #0f172a 0%, #f1f1f1 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    padding-top: 10px;
    margin-top: 0px;
    margin-bottom: 40px;

    user-select: none;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
    white-space: nowrap;
}

/* --- Badge Style --- */
.innov-badge {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 50px;
    color: #fb923c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 11px 24px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.innov-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #fb923c;
    border-radius: 50%;
    margin-right: 12px;
}

/* --- Headings --- */
.hero-heading {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.hero-heading .main-text {
    color: #0f172a;
}

/* Updated range-to-blue gradient with proper curves */
.hero-heading .gradient-text {
    background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Hero Description --- */
.hero-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 650px;
    margin: 40px auto;
}

.hero-buttons-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Basic shared button styles (pichhle update se modified) */
.btn-dark-cta,
.btn-light-cta {
    min-width: 220px;
    /* 🔥 equal size */
    height: 56px;
    /* 🔥 better height */
    padding: 0 24px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
    ;
}

/* Updated Button Colors & Shadows like Image */
.btn-dark-cta {
    background: #0f172a;
    color: white !important;
    border: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.btn-dark-cta:hover {
    color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.btn-light-cta {
    background: #f8fafc;
    color: #0f172a !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.btn-light-cta:hover {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}


/* --- Responsiveness (Updated Mobile Fixes) --- */
@media (max-width: 1199px) {
    .hero-heading {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .hero-heading {
        font-size: 50px;
    }

    .hero-description {
        margin: 40px auto;
        max-width: 480px;
    }

    .hero-buttons-wrapper {
        margin: 0 auto;
    }

    .scroll-explore-wrapper {
        display: none !important;
    }

    .hero-watermark {
        font-size: 100px;
        bottom: -40px;
    }
}

@media (max-width: 575px) {
    .hero-heading {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-watermark {
        font-size: 44px;
        bottom: -8px;
        letter-spacing: 5px;
        margin-bottom: 0px;
        background: linear-gradient(to bottom, #000000 0%, #f1f1f1 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-buttons-wrapper {
        margin-bottom: -50px;
    }
}

/* Stats Section Styles */
.stats-section {
    background-color: #f8fafc;
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Soft image shadow */
    padding: 15px;
}

.stat-icon-img {
    width: 145%;
    height: auto;
    object-fit: contain;
}

.stat-number-text {
    font-size: 42px;
    font-weight: 800;
    color: #0c121e;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #475569 !important;
    /* Muted color from your theme */
    text-transform: uppercase;
}

/* =========================================
   EXPERTISE SECTION (Complete Styles)
   ========================================= */

.expertise-section-light {
    position: relative;
    background-color: #ffffff;
    /* Pure White Background */
    padding: 40px 0;
    overflow: hidden;
    color: #0f172a;
    /* Slate Dark for text */
}

/* --- Background Orange Shades (Soft Blobs) --- */
.expertise-shade {
    position: absolute;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.shade-tl {
    top: -5%;
    left: -10%;
}

.shade-br {
    bottom: -5%;
    right: -10%;
}

/* --- Heading & Badge Styles --- */
.expertise-badge-orange {
    display: inline-block;
    padding: 7px 20px;
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 50px;
    background-color: #fff;
    color: #fb923c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.section-title-dark {
    font-size: 55px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.text-dark {
    /* font-style: italic; */
    font-weight: 400;
    color: #475569;
}

.section-subtitle-dark {
    font-size: 17px;
    color: #475569;
    max-width: 680px;
    margin-top: 25px;
    line-height: 1.6;
}

/* --- 3D Glass Card Base --- */
.expertise-card-light {
    position: relative;
    padding: 45px;
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Glassmorphism Effect */
.glass-card {
    background-color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* 3D Hover Animation */
.glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 30px 60px rgba(251, 146, 60, 0.1),
        inset 0 1px 4px rgba(251, 146, 60, 0.4);
    /* Inner Orange Glow */
}

/* Large Card Specific Tweak */
.large-card-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(251, 146, 60, 0.02) 100%);
}

.service-icon-orange {
    font-size: 40px;
    color: #fb923c;
}

/* Icon Box Styling */
.icon-box-orange {
    width: 70px;
    height: 70px;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.2);

    transition: all 0.3s ease;
}

/* Hover Effect 🔥 */
.glass-card:hover .icon-box-orange {
    background: #fb923c;
}

.glass-card:hover .service-icon-orange {
    color: white;
}

.expertise-card-light h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.expertise-card-light .expertise-card-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.expertise-card-light p {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

/* --- Links --- */
.explore-link-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fb923c;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    margin-top: auto;
    /* Pushes link to bottom of card */
    padding-top: 25px;
    transition: all 0.3s ease;
}

.explore-link-orange:hover {
    color: #ea580c;
    gap: 15px;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .section-title-dark {
        font-size: 42px;
    }

    .expertise-card-light {
        padding: 35px;
        text-align: center;
    }

    .icon-box-orange {
        margin: 0 auto 25px;
    }

    .explore-link-orange {
        justify-content: center;
    }
}

/* =========================================
   TRANSFORMATION SECTION STYLES (Glass)
   ========================================= */

.transformation-section {
    position: relative;
    background-color: #ffffff;
    /* Pure White background */
    padding: 30px 0;
    overflow: hidden;
    /* min-height: 100vh; */
}

/* --- Background Orange Shades --- */
.trans-shade {
    position: absolute;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.shade-l {
    top: -5%;
    left: -10%;
}

.shade-r {
    bottom: -5%;
    right: -10%;
}

/* --- Main Glass Container (Main Card) --- */
.transformation-card {
    position: relative;
    padding: 60px 50px;
    border-radius: 40px;
    transition: all 0.4s ease;

    /* 3D Glass Look like image depth */
    background: rgba(255, 255, 255, 0.45);
    /* Semi-transparent white */
    border: 1px solid rgba(0, 0, 0, 0.04);
    /* Very thin slate border */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

/* Icon inside transformation section */
.logo-box-light {
    width: 80px;
    height: 80px;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.2);

    transition: all 0.3s ease;
}

/* Icon size */
.logo-box-light i {
    font-size: 42px;
    color: #fb923c;
}

/* Hover effect */
.transformation-card:hover .logo-box-light {
    background: #fb923c;
}

.transformation-card:hover .logo-box-light i {
    color: #fff;
}

.trans-heading {
    font-size: 52px;
    /* Large display font-size */
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #0f172a;
    /* Slate Dark */
}

.trans-description {
    font-size: 16px;
    font-weight: 400;
    color: #475569;
    /* Slate Gray */
    line-height: 1.6;
    max-width: 530px;
    letter-spacing: -0.01em;
}

/* --- Right Side Stats Cards --- */
.stat-glass-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 28px;
    min-width: 210px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Stats Glass Look like image depth */
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02),
        inset 0 1px 3px rgba(255, 255, 255, 0.9);
    z-index: 3;
}

/* Efficiency Card specific tweaks like image gradient */
.stat-glass-card.efficiency {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(251, 146, 60, 0.03) 100%);
}

.stat-glass-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.75);
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 25px 55px rgba(251, 146, 60, 0.1),
        inset 0 1px 3px rgba(251, 146, 60, 0.3);
    /* Orange Highlight on hover inset */
}

.stat-number {
    font-size: 40px;
    /* Big Display font-size */
    font-weight: 900;
    color: #0f172a;
    /* Slate Dark */
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    color: #cbd5e1;
    /* Slate-300 */
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Section Background */
.recent-projects {
    background-color: #fffefc;
    display: flex;
    /* Dark theme as per image */
    color: #0f172a;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

/* Titles */
.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.project-gradient {
    background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    color: #475569;
    max-width: 500px;
    font-size: 14px;
}

/* See All Button */
.btn-see-all {
    background: #0f172a;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-see-all:hover {
    color: #0f172a;
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

/* Project Cards */
.project-img-wrapper {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

/* Meta Tags (Date & Author) */
.project-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.meta-tag {
    background: #111827;
    /* Dark gray pill */
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    border: 1px solid #1f2937;
}

/* Icon Color inside Meta */
.meta-tag i {
    color: #fb923c;
    /* Orange accent */
    margin-right: 5px;
}

/* Link Title & Hover */
.project-link-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding-top: 10px;
    color: #0f172a;
    text-decoration: none;
    transition: 0.3s ease;
    line-height: 1.4;
}

.project-link-title:hover {
    color: #fb923c;
    /* Hover color changed to Orange */
    padding-left: 5px;
}

/* If you need specifically colored efficiency label like image may not needed to change */
/* .stat-label.efficiency-label {
    color: #cbd5e1;
} */

/* =========================================
   RESPONSIVE TRANSFORMATION
   ========================================= */

@media (max-width: 1199px) {
    .trans-heading {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .transformation-section {
        text-align: center;
    }

    .transformation-card {
        padding: 50px 30px;
    }

    .trans-heading {
        font-size: 38px;
    }

    .trans-description {
        margin: 25px auto;
        max-width: 480px;
    }

    .logo-box-light {
        margin: 0 auto 25px;
    }

    .trans-right .row {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 20px !important;
    }
}

@media (max-width: 575px) {
    .trans-heading {
        font-size: 32px;
    }

    .stat-glass-card {
        padding: 30px;
        min-width: 190px;
    }
}

/* Section Main Styles */
.work-section {
    background-color: #f8fafc;
    padding: 40px 0;
}

.work-title {
    font-size: 50px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    /* Modern feel ke liye letters thode close */
}

.work-gradient {
    /* Aapka provided gradient */
    background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);

    /* Text par apply karne ke liye properties */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Standard property for compatibility */
    display: inline-block;

    /* Optional: Subtle pop look */
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.05));
}

/* Card & Alignment: Isko Column kiya hai taake text neeche aaye */
.work-card {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* Number upar, text neeche */
    align-items: center;
    /* Sab kuch center mein */
    text-align: center;
    /* Text centering */
    transition: 0.4s ease;
}

/* BIG NUMBER: Position relative kar di taake ye space le */
.big-number {
    font-size: 150px;
    /* Size thoda aur bada kiya hai dominance ke liye */
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smooth pop effect */
    user-select: none;
    margin-bottom: -30px;

    /* --- 3D & BOLD LOOK --- */
    letter-spacing: -5px;
    /* Boldness badhane ke liye letters ko close kiya */
    text-shadow:
        1px 1px 0px #e2e8f0,
        2px 2px 0px #e2e8f0,
        3px 3px 0px #e2e8f0,
        4px 4px 0px #cbd5e1,
        /* Depth create karne ke liye layers */
        8px 12px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow for elevation */
}

/* Hover par 3D effect ko thoda aur enhance karne ke liye */
.work-card:hover .big-number {
    color: #ffedd5;
    transform: translateY(-15px) scale(1.05);
    /* Upar uthne wala effect */
    text-shadow:
        1px 1px 0px #fed7aa,
        2px 2px 0px #fed7aa,
        5px 10px 25px rgba(251, 146, 60, 0.2);
    /* Orange tint shadow on hover */
}

/* CONTENT AREA */
.work-content {
    position: relative;
    z-index: 2;
    padding-left: 0;
    /* Padding khatam kar di */
}

.work-content h5 {
    font-weight: 800;
    color: #0f172a;
    margin-top: 15px;
    font-size: 22px;
    margin-bottom: 5px;
}

.work-content .work-heading {
    font-weight: 800;
    color: #0f172a;
    margin-top: 15px;
    font-size: 22px;
    margin-bottom: 5px;
}

.work-content p {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}



.work-card:hover h5 {
    color: #fb923c;
}


/* Section Styles */
.partner-section {
    background-color: #f8fafc;
    padding: 30px 0;
    padding-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

/* Image Wrapper and Main Image */
.image-wrapper {
    position: relative;
    /* max-width: 480px; */
    /* Size to match image proportion */
    margin: 0 auto;
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    /* Rounded corners as per image */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* --- UPDATED GLASSMORPHISM CARD --- */
.stat-card {
    position: absolute;
    bottom: -13%;
    right: -5%;
    background: #eaeaea;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    z-index: 10;
}


.stat-number {
    font-weight: 800;
    font-size: 44px;
    /* Dominant look */
    margin: 0;
    line-height: 1;

    /* Exact Gradient from pichla prompt */
    background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1.2px;
    margin-top: 8px;
    margin-bottom: 0px !important;
    text-transform: uppercase;
}

/* Typography */
.partner-title {
    font-size: 46px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -1px;
}

.brand-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;

    /* Exact Gradient on brand name */
    background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 35px;
}

/* --- UPDATED LIST STYLES for Custom Icons --- */
.partner-list {
    list-style: none;
    padding: 0;
}

.partner-list li {
    display: flex;
    /* Aligns icon and text horizontally */
    align-items: flex-start;
    /* Keeps text aligned at the top */
    margin-bottom: 25px;
}

.partner-list li .custom-icon {
    width: 25px;
    /* Matches circle size in image */
    height: 25px;
    flex-shrink: 0;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Make placeholder circle */
    background-color: #f1f5f9;
    /* Subtle placeholder background */
    padding: 2px;
}

.partner-list li .custom-icon img {
    width: 100%;
    /* Makes your icon fit the circle */
    height: auto;
    object-fit: contain;
}

.partner-list li p {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-top: 1px;
    /* Subtle text vertical alignment fix */
}

/* Learn More Link (Hover as button) */
.learn-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smooth motion */
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.learn-more .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Hover effects (same as image requested logic) */
.learn-more:hover {
    color: #fb923c;
    /* border-bottom: 2px solid #fb923c; */
}

.learn-more:hover .arrow {
    transform: translateX(8px) scale(1.1);
    /* Interactive move */
}

.testimonial-section {
    background-color: #fffefb;
    padding: 30px 0;
    font-family: 'Inter', sans-serif;
}

/* Header Styling */
.client-voice-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.voice-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.2);

    transition: all 0.3s ease;
}

/* Icon */
.voice-icon-orange {
    font-size: 20px;
    color: #fb923c;
}

/* Hover Effect 🔥 */
.client-voice-header:hover .voice-icon-box {
    background: #fb923c;
}

.client-voice-header:hover .voice-icon-orange {
    color: #fff;
}


.header-text {
    font-weight: 700;
    color: #475569;
    letter-spacing: 1.5p;
    font-size: 32px;
    text-transform: uppercase;
}

.client-voice-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.voice-icon {
    width: 20px;
    height: 20px;
}

/* .header-text {
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    font-size: 14px;
} */

/* SWIPER SMOOTHNESS - IMPORTANT */
.swiper-wrapper {
    /* Is se movement linear aur smooth rehti hai */
    transition-timing-function: linear !important;
}
.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}
.testimonial-card {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 45px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); */
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote {
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    font-size: 16px;
}

.client-role {
    color: #94a3b8;
    font-size: 13px;
    margin: 0;
}

.faq-section {
    background-color: #ffffff;
    padding: 30px 0;
}

.faq-title {
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Icon Box */
.info-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.2);

    transition: all 0.3s ease;
}

/* Icon */
.faq-icon-orange {
    font-size: 20px;
    color: #fb923c;
}

/* Hover Effect 🔥 */
.faq-title:hover .info-icon-box {
    background: #fb923c;
}

.faq-title:hover .faq-icon-orange {
    color: #fff;
}

/* Accordion Item */
.faq-item {
    background: #f8fafc;
    /* Image matching color */
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

/* FAQ Button */
.faq-btn {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
}

.faq-chevron {
    color: #fb923c;
    /* Orange arrow */
    transition: transform 0.3s ease;
}

/* Arrow rotation when active */
.faq-btn.active .faq-chevron {
    transform: rotate(90deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body.show {
    max-height: 200px;
    /* Adjust based on content */
}

.faq-content {
    padding: 0 30px 25px 30px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.faq-body.open {
    padding-bottom: 25px;
    max-height: 200px;
    /* Expands smoothly */
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* =========================================
CONTACT SECTION STYLING
=========================================
*/

.contact-section {
    background-color: #ffffff;
    padding: 30px 0;
    font-family: 'Inter', sans-serif;
}

/* Main Wrapper Card */
.contact-container {
    background: #fffefb;
    /* Soft cream background from image */
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid #f9f4ee;
    overflow: hidden;
}

/* Typography */
.contact-title {
    font-size: 55px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.gradient-text {
    /* Orange to Purple gradient as seen in the mockup */
    background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-desc {
    color: #475569;
    font-size: 18px;
    max-width: 450px;
    line-height: 1.6;
}

/* Info Items (Email/LinkedIn) */
.contact-info-box {
    margin-top: 40px;
}

.info-item {
    transition: all 0.3s ease;
}

/* Icon Wrapper for <img> */
.icon-wrapper {
    background: #f1f5f9;
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    padding: 14px;
    /* Adjust this to control icon size */
}

.contact-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* ICON HOVER EFFECTS */
.info-item:hover .icon-wrapper {
    background: #fb923c;
    /* Turns orange on hover */
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(251, 146, 60, 0.2);
}

.info-item:hover .contact-icon-orange {
    color: #fff;
}

.info-item:hover .contact-icon-img {
    filter: brightness(0) invert(1);
    /* Makes dark icons white on hover */
}

.info-label {
    font-size: 11px;
    font-weight: 700;
    color: #47566a;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 2px;
}

.info-value {
    margin: 0;
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
}

.info-value a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.info-value a:hover {
    color: #ff7a18;
    /* tumhara theme color */
}

/* FORM STYLING */
.contact-form {
    background: transparent;
}

.form-control {
    background: #fdf5eb !important;
    /* Muted peach background from image */
    border: 2px solid transparent;
    padding: 18px 25px;
    border-radius: 16px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

/* INPUT HOVER & FOCUS EFFECTS */
.form-control:hover {
    background: #f9ead7 !important;
    /* Slightly darker on hover */
    transform: scale(1.01);
}

.form-control:focus {
    background: #ffffff !important;
    border-color: #fb923c;
    box-shadow: 0 10px 25px rgba(251, 146, 60, 0.08) !important;
}

/* Placeholder color */
.form-control::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

/* SUBMIT BUTTON */
.btn-send {
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    padding: 20px;
    border-radius: 18px;
    border: none;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-send:hover {
    color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.btn-send:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-title {
        font-size: 42px;
        text-align: center;
    }

    .contact-desc {
        text-align: center;
        margin: 0 auto;
    }

    .contact-container {
        border-radius: 30px;
        padding: 30px !important;
    }

    .contact-info-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


.graphy-footer {
    background-color: #fcfcfc;
    padding: 30px 0 0;
    /* Bottom padding kam rakhi hai watermark ke liye */
    position: relative;
    overflow: hidden;
    /* Taake bada text screen se bahar na nikle */
}

.footer-wrapper {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f1f1;
    position: relative;
    z-index: 2;
    /* Card watermark se upar rahega */
}

/* --- THE BIG WATERMARK TEXT --- */
.footer-watermark {
    font-size: 280px;
    /* Thora aur bada kiya taake impact aaye */
    font-weight: 900;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    text-transform: capitalize;
    line-height: 0.8;
    /* Line height kam ki taake gap na rahe */

    /* Gradient for Black Shade at Top */
    background: linear-gradient(to bottom, #0f172a 0%, #f1f1f1 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Position adjustment to show only half */
    padding-top: 40px;
    margin-top: -10px;
    /* Is value ko barhane se text aur neeche chala jayega */
    margin-bottom: -40px;
    /* Neeche ka extra space khatam karne ke liye */

    user-select: none;
    pointer-events: none;
    /* letter-spacing: -8px; */
    z-index: 1;
    opacity: 0.8;
    /* Thori transparency taake background mein ghul jaye */
}

/* Baaki styling wahi Graphy style hai */
.brand-logo {
    width: 300px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-left: 10px;
}

.brand-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    max-width: 380px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

/* Social icons with circular background and hover zoom */
.social-links a {
    color: #fff;
    /* icon color */
    font-size: 22px;
    background-color: #0f172a;
    /* dark circle background */
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /* circle shape */
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.2);
    /* zoom on hover */
    background-color: #f97316;
    /* change background on hover */
    color: #fff;
    /* icon color stays white */
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}


.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #000;
}

.footer-divider {
    margin: 40px 0 30px;
    border-color: #f1f1f1;
    opacity: 1;
}

.copyright {
    font-size: 13px;
    color: #666;
}

.copyright a{
    text-decoration: none;
    color: #666;
    font-size: 13px;
    transition: color 0.2s;
}

.copyright a:hover {
    color: #000;
}

.legal-links a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-watermark {
        font-size: 140px;
        margin-top: -20px;
        margin-bottom: -60px;
        letter-spacing: -6px;
    }
}


.tech-stack-section {
    background: #f8f9fa;
    padding: 30px 0;
}

/* Heading */
.tech-text {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 40px;
}

/* Wrapper */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Marquee */
.marquee {
    display: flex;
    width: max-content;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    align-items: center;
}

.marquee:hover {
    animation-play-state: paused;
}

/* Tech Item */
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    flex-shrink: 0;
}

/* Images */
.tech-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;

    /* 🔥 Black & White Effect */
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

/* Hover → Color */
.tech-item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Text */
.tech-item p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #475569;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .tech-text {
        font-size: 36px;
    }

    .marquee {
        gap: 2rem;
        animation-duration: 16s;
    }

    .tech-item img {
        width: 60px;
        height: 60px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .tech-text {
        font-size: 28px;
    }

    .marquee {
        gap: 1.5rem;
        animation-duration: 12s;
    }

    .tech-item img {
        width: 50px;
        height: 50px;
    }

    .tech-item p {
        font-size: 12px;
    }
}

/* Infinite Scroll */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.about-zb-section {
    position: relative;
    background-color: #f8fafc;
    padding: 40px 0;
    overflow: hidden;
}

.about-zb-section .about-shade-tl {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.about-zb-section .about-shade-br {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 35vw;
    height: 35vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* Badge */
.about-badge-orange {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid rgba(251, 146, 60, 0.25);
    border-radius: 50px;
    background: #fff;
    color: #fb923c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.about-dot {
    width: 6px;
    height: 6px;
    background: #fb923c;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

/* Title */
.about-main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.about-gradient-text {
    background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-light-text {
    font-weight: 400;
    color: #475569;
    font-size: 0.9em;
}

/* Description */
.about-desc {
    font-size: 22px;
    color: #475569;
    line-height: 1.75;
    max-width: 520px;
}


/* Image wrapper */
.about-img-wrapper {
    position: relative;
    display: inline-block;
    /* max-width: 500px; */
    margin: 0 auto;
}



.about-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    /* box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12); */
    position: relative;
    z-index: 3;
    transition: transform 0.4s ease;
    display: block;
}

.about-main-img:hover {
    transform: scale(1.02);
}



/* Floating cards */
.about-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    z-index: 5;
    backdrop-filter: blur(10px);
}

.float-card-left {
    bottom: 20%;
    left: -8%;
    animation: floatCard 3s ease-in-out infinite;
}

.float-card-right {
    top: 10%;
    right: -5%;
    animation: floatCard 3s ease-in-out infinite 1.5s;
}

.float-card-bottom {
    bottom: -4%;
    right: 12%;
    animation: floatCard 3s ease-in-out infinite 0.8s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.float-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card-icon i {
    font-size: 18px;
    color: #fb923c;
}

.float-card-number {
    font-size: 22px;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.float-card-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 3px 0 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .about-main-title {
        font-size: 36px;
        text-align: center;
    }

    .about-badge-orange {
        margin: 0 auto 20px;
    }

    .about-desc {
        text-align: center;
        margin: 0 auto 16px;
    }

    .about-feature-list li {
        justify-content: flex-start;
    }

    .d-flex.gap-3.mt-5 {
        justify-content: center;
    }

    .float-card-left {
        left: 0;
    }

    .float-card-right {
        right: 0;
    }

    .float-card-bottom {
        right: 5%;
    }
}

@media (max-width: 575px) {
    .about-main-title {
        font-size: 30px;
    }

    .about-main-img {
        height: 300px;
    }

    .about-float-card {
        padding: 10px 13px;
    }

    .float-card-number {
        font-size: 18px;
    }

    .about-img-frame {
        display: none;
    }
}

/* WhatsApp floating button with orange background */
.whatsapp-button {
    position: fixed;
    left: 20px;
    /* distance from left */
    bottom: 20px;
    /* distance from bottom */
    background-color: #ff6600;
    /* orange background */
    color: #fff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.2);
    background-color: #ff8533;
    /* slightly lighter orange on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}