@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0059a4;
    --primary-blue-dark: #004080;
    --secondary-green: #8dc63f;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #f4f7fb;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

    --font-heading: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'General Sans', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    z-index: -1;
    pointer-events: none;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

header .container {
    padding: 0 10px;
}


.nav-cta {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav ul li a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.main-nav ul li a:hover {
    color: var(--primary-blue);
}

.desktop-nav {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.menu-close {
    display: none;
}

/* Global Grid Background */
.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 89, 164, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 89, 164, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Hero Section Refined */
.hero {
    position: relative;
    padding: 80px 0 0px;
    background: #f8ffff;
    /* Light greenish-blue tint from reference */
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    flex-direction: row;
    /* Overriding previous flex */
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    border: 1px solid #e0f0f0;
    margin-bottom: 30px;
}

.hero-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-green);
    border-radius: 50%;
    margin-right: 10px;
}

.hero h1 {
    font-size: clamp(2rem, 10vw, 4rem);
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 span {
    font-style: italic;
    font-family: serif;
    /* Mimics the refined "made intelligent" look */
    font-weight: 400;
    color: var(--primary-blue);
    display: block;
}

.hero p {
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
    margin: 0 0 40px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: #0059a4;
    color: white;
    border: none;
    box-shadow: none;
}

.btn-primary::after {
    content: ' →';
    margin-left: 8px;
}

.btn-secondary {
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
}

.hero-checks {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-checks div::before {
    content: '✓';
    color: var(--secondary-green);
    background: #f0faf0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 8px;
    font-weight: 800;
}

/* Right Graphic */
.hero-graphic {
    position: relative;
    padding: 0 0 50px 0;
}

.hero-graphic img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.1));
    border-radius: 8px;

}

.offer-strip {
    background: var(--secondary-green);
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 60px;
    display: inline-block;
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px 50px;
    padding: 40px max(5%, calc((100% - 1200px) / 2));
    border-top: 1px solid #eee;
    width: 100%;
    background: transparent;
}

.trust-item {
    flex: 1 1 200px;
    max-width: 260px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-item span {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.2;
}

.trust-item label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Why Choose Us */
.why-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-green);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--secondary-green);
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    margin-bottom: 15px;
}

/* Services */
.service-section {
    padding: 100px 0;
}

.service-section:nth-child(even) {
    background: var(--bg-light);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hook {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.offering-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.offering-item {
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

.service-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-visual img {
    width: 100%;
    max-width: 100%;
    height: 640px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.service-visual img:hover {
    transform: scale(1.02);
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Contact Form */
.contact-form {
    padding: 40px;
    background: white;
    border-radius: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Pricing Grid */
.pricing-section {
    padding: 100px 0;
    background: #111;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

.pricing-card .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card .btn-secondary:hover {
    background: white;
    color: var(--text-dark);
}

.pricing-card.popular {
    border-color: var(--secondary-green);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 800;
    margin: 20px 0;
    color: var(--secondary-green);
}

/* Footer & Floating */
footer {
    padding: 80px 0 40px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    /* Slightly higher for mobile chrome */
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    /* Maximum z-index */
    transition: var(--transition);
}

/* Responsive */
@media (max-width: 991px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-checks {
        justify-content: center;
    }

    .service-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .offering-list {
        grid-template-columns: 1fr;
        justify-content: center;
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }


}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 90px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 89, 164, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #004682;
    transform: translateY(-5px);
}

/* Premium Enhancements */
.hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.1;
}


.offer-strip {
    background: var(--secondary-green);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    margin: 30px 0;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(141, 198, 63, 0.2);
    max-width: 100%;
}

.logo-carousel {
    overflow: hidden;
    padding: 40px 0;
    background: transparent;
    margin-bottom: 40px;
    position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    align-items: center;
}

.logo-track img {
    height: 45px;
    width: auto;
    margin: 0 50px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: var(--transition);
}

.logo-track img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Closing CTA */
.closing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0059a4 0%, #003d73 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.closing-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.closing-cta .container {
    position: relative;
    z-index: 1;
}

.closing-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    color: white;
}

.closing-cta > .container > p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-contact-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 20px 28px;
    color: white;
    transition: var(--transition);
    text-decoration: none;
    min-width: 240px;
    flex: 1;
    max-width: 320px;
}

.cta-contact-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.cta-contact-item .cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-contact-item .cta-icon i {
    font-size: 1.3rem;
    color: var(--secondary-green);
}

.cta-contact-item .cta-info {
    text-align: left;
}

.cta-contact-item .cta-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-bottom: 3px;
}

.cta-contact-item .cta-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
}

/* Form Styles */
.form-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

/* Pricing List */
.pricing-list {
    text-align: left;
    margin: 20px 0 30px;
    padding: 0;
    list-style: none;
}

.pricing-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #bbb;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-green);
    margin-top: 4px;
    flex-shrink: 0;
}



/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        width: 92%;
    }
}

@media (max-width: 991px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        order: 1;
    }

    .hero-graphic {
        order: 0;
        margin-bottom: 20px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-checks {
        justify-content: center;
    }

    .service-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .service-visual {
        order: -1;
    }

    .offering-list {
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header {
        padding: 9px 0;
        background: #ffffff;
        border-bottom: none;
    }

    header::before {
        display: none;
    }

    header .container {
        width: 100%;
        max-width: none;
        padding: 0 18px;
        justify-content: space-between;
        gap: 0;
    }

    .logo {
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .logo img {
        width: 176px;
        max-width: 48vw;
        height: auto;
    }

    .header-right {
        display: contents;
    }

    .desktop-nav {
        display: none;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 0;
        width: 44px;
        height: 44px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-size: 0.95rem;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        z-index: 2000;
        font-size: 1.8rem;
        line-height: 1;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 2.5rem;
        color: var(--text-dark);
        cursor: pointer;
        z-index: 10000;
        line-height: 1;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(15px);
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .main-nav ul li a {
        font-size: 1.8rem;
        font-family: var(--font-heading);
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .service-text h2 {
        font-size: 2.2rem;
    }

    .offering-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 400px;
        width: 100%;
        gap: 18px 34px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-section .service-text {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
        column-gap: 20px;
    }

    .service-section .service-text h2,
    .service-section .service-text .hook,
    .service-section .service-text p,
    .service-section .offering-list {
        grid-column: 1 / -1;
    }

    .service-section .offering-item {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        padding: 12px 10px;
        border-radius: 8px;
        line-height: 1.25;
        text-align: center;
    }

    .service-section .price-tag {
        grid-column: 2;
        justify-self: center;
        order: 6;
        margin: 0;
        font-size: 1rem;
        line-height: 1.2;
        white-space: nowrap;
    }

    .service-section .service-text>.btn {
        grid-column: 1;
        justify-self: center;
        order: 5;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 150px;
        min-height: 54px;
        padding: 12px 14px;
        gap: 10px;
        line-height: 1.2;
        text-align: left;
    }

    .service-section .service-text>.btn::after {
        content: "\2192";
        flex: 0 0 auto;
        font-size: 1rem;
        line-height: 1;
    }

    .hero-btns {
        /* flex-direction: column; */
        flex-direction: row;
        width: 100%;
        max-width: 400px;
    }

    .btn {
        /* width: 100%; */
        width: 50%;
    }

    .hero-checks {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .service-visual img {
        /* height: 250px; */
        height: 40vh;
    }

    .contact-form {
        padding: 25px !important;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .logo-track img {
        height: 35px;
        margin: 0 25px;
    }

    .logo-carousel::before,
    .logo-carousel::after {
        width: 80px;
    }

    .closing-cta h2 {
        font-size: 2.2rem;
    }

    .cta-contact-row {
        flex-direction: column;
        align-items: center;
    }

    .cta-contact-item {
        min-width: 100%;
        max-width: 100%;
    }

    .back-to-top {
        right: 20px;
        bottom: 110px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .trust-bar {
        gap: 25px 30px;
        padding: 30px max(5%, calc((100% - 1200px) / 2));
    }

    .trust-item {
        flex: 1 1 40%;
        max-width: 280px;
    }

}

@media (max-width: 480px) {
    .container {
        width: 90%;
        padding: 0;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .service-section {
        padding: 40px 0;
    }

    .why-section,
    .pricing-section,
    .closing-cta,
    .form-section {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .offer-strip {
        font-size: 0.75rem;
        padding: 10px;
        width: 100%;
        margin: 20px 0;
        text-align: center;
    }

    .price-tag {
        font-size: 1.2rem;
    }

    .pricing-grid,
    .form-grid,
    .why-grid,
    .service-content,
    .offering-list {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .cta-contact-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-contact-item {
        min-width: 100%;
        max-width: 100%;
        padding: 16px 20px;
    }

    .trust-bar {
        /* flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 5%; */

        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding: 25px 3%;
    }

    .trust-item {
        max-width: 100%;
        width: 100%;
    }

    .trust-item label {
        font-weight: normal;
    }
    .trust-item span {
        font-weight: 500;
    }

    .logo img {
        width: 176px;
        max-width: 48vw;
        height: auto;
    }

    .header-right {
        gap: 8px;
    }

    .service-text h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .section-head h2 {
        font-size: 1.6rem;
    }

    .offering-item {
        padding: 10px;
        font-size: 0.8rem;
    }

    .service-section .service-text {
        column-gap: 14px;
    }

    .service-section .offering-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px 22px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .service-section .offering-item {
        min-height: 56px;
        padding: 9px 8px;
        border-radius: 7px;
        font-size: 0.72rem;
        font-weight: normal;
    }

    .service-section .price-tag {
        font-size: 0.88rem;
        font-weight: normal;
    }

    .service-section .service-text>.btn {
        max-width: 180px;
        min-height: 45px;
        padding: 10px 12px;
        font-size: 0.72rem;
        font-weight: normal;
    }

    .trust-item span {
        font-size: 1.4rem;
    }


    .btn {
        /* padding: 12px 20px;
        font-size: 0.9rem; */
        padding: 12px 12px;
        font-size: 0.8rem;
        font-weight: normal;
    }
}

/* Owl Carousel Custom Styles */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-green);
}

/* =============================================
   SOCIAL PROOF SECTION - AMSDigital Brand Theme
   ============================================= */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, #003d7a 0%, var(--primary-blue) 55%, #0a6dbf 100%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.social-proof .section-head h2 {
    color: #ffffff;
    font-family: var(--font-heading);
}

.social-proof .section-head h2::after {
    background: var(--secondary-green);
}

/* Logo slider items */
.single_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    margin: 6px;
    min-height: 110px;
}

.single_logo img {
    max-height: 96px !important;
    width: auto !important;
    filter: grayscale(0.5) brightness(1.2);
    opacity: 0.85;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.single_logo:hover {
    border-color: rgba(141, 198, 63, 0.55);
    background: rgba(0, 0, 0, 0.35);
}

.single_logo:hover img {
    filter: grayscale(0) brightness(1.1);
    opacity: 1;
    transform: scale(1.05);
}

/* Testimonial Cards */
.testimonial-content-wrap {
    margin-top: 48px;
}

.testimonial-quote-wrap {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 28px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-quote-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border-color: rgba(141, 198, 63, 0.4);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-img img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-green);
}

.media-body h5.text-white,
.media-body h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #fff !important;
    margin-bottom: 4px;
}

.rating i {
    color: var(--secondary-green);
    font-size: 0.85rem;
}

.fas.fa-quote-right.icon-md.text-white {
    color: rgba(141, 198, 63, 0.55) !important;
    font-size: 1.5rem;
    margin-left: auto;
    flex-shrink: 0;
}

.client-say p,
.client-say p.text-white {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82) !important;
}

#client_logo_slider,
#testimonial_slider {
    min-height: 100px;
}

/* Section badge pill */
.proof-badge {
    display: inline-block;
    background: rgba(141, 198, 63, 0.18);
    color: var(--secondary-green);
    border: 1px solid rgba(141, 198, 63, 0.4);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}