:root {
    --gupshup-primary-blue: #0d6efd;
    --gupshup-secondary-green: #28a745;
    --gupshup-dark-text: #212529;
    --gupshup-light-bg: #f8f9fa;
    --gupshup-white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gupshup-light-bg);
    color: var(--gupshup-dark-text);
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.section-title,
.fw-bold,
.display-4 {
    font-family: 'Inter', sans-serif !important;
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: var(--gupshup-white) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--gupshup-primary-blue) !important;
}

.navbar-brand img {
    object-fit: contain;
    border: none;
    box-shadow: none;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float-in {
    animation: floatIn 0.8s ease-out both;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gupshup-primary-blue) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--gupshup-primary-blue);
    border-color: var(--gupshup-primary-blue);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary {
    color: var(--gupshup-primary-blue);
    border-color: var(--gupshup-primary-blue);
    border-width: 2px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-outline-primary:hover {
    background-color: var(--gupshup-primary-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(13, 110, 253, 0.3);
}

.btn-light {
    color: var(--gupshup-primary-blue);
    background-color: var(--gupshup-white);
    border-color: var(--gupshup-white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.3);
}

/* Hero */
.hero-section {
    background-color: var(--gupshup-white);
    padding: 5rem 0;
}

/* Cards & Layout */
.card,
.border.p-4,
.process-step,
.automation-card,
.badge.rounded-pill,
.industry-card {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.border.p-4:hover,
.process-step:hover,
.automation-card:hover,
.badge.rounded-pill:hover,
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* Carousel buttons */
.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.carousel-control-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-control-circle i {
    color: var(--gupshup-dark-text);
    font-size: 1.2rem;
}

.carousel-control-prev:hover .carousel-control-circle,
.carousel-control-next:hover .carousel-control-circle {
    background-color: var(--gupshup-white);
    transform: scale(1.1);
}

.carousel-control-prev:hover .carousel-control-circle i,
.carousel-control-next:hover .carousel-control-circle i {
    color: var(--gupshup-primary-blue);
}

#heroCarousel.carousel-control-prev {
    left: 20px;
}

#heroCarousel.carousel-control-next {
    right: 20px;
}

#caseStudyCarousel.carousel-control-prev {
    left: -25px;
}

#caseStudyCarousel.carousel-control-next {
    right: -25px;
}

@media (max-width: 767.98px) {

    #caseStudyCarousel.carousel-control-prev,
    #caseStudyCarousel.carousel-control-next {
        position: relative;
        top: auto;
        transform: none;
        margin: 1rem auto;
    }
}

/* Footer */
footer {
    background-color: var(--gupshup-white);
    color: #6c757d;
    padding: 3rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.footer-col h4 {
    color: var(--gupshup-dark-text);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: #6c757d;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gupshup-primary-blue);
}

.footer-brand img {
    height: 40px;
    margin-right: 0.5rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gupshup-primary-blue);
    margin: 0;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-get-in-touch {
    color: var(--gupshup-primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-get-in-touch:hover {
    color: var(--gupshup-dark-text);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    background-color: #e9ecef;
    color: var(--gupshup-dark-text);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: background-color 0.3s, color 0.3s;
}

.social-icons a:hover {
    background-color: var(--gupshup-primary-blue);
    color: #fff;
}

.footer-bottom-links a {
    color: #6c757d;
    text-decoration: none;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gupshup-primary-blue);
}

/* Industry cards */
.industry-card {
    background-color: var(--gupshup-white);
    border: 1px solid #e9ecef;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.industry-card img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.industry-card h5 {
    font-weight: 600;
    color: var(--gupshup-dark-text);
}

/* Human-Centric AI Section */
.human-centric-ai-section {
    background-color: var(--gupshup-light-bg);
}

.human-centric-ai-section img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.combo {
    padding: 60px 20px;
    background-color: #f3f4f6;
    font-family: 'Inter', sans-serif;
    color: #111827;
}

.solo {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 12px;
}

.baban {
    font-size: 17px;
    font-weight: 500;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.duo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.punch {
    width: 300px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.punch:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.duch {
    background-color: #f3f4f6;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.3s;
    cursor: pointer;
}

.duch:hover {
    background-color: #e5e7eb;
}

.berry {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #35383e;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.punch-img {
    width: 300px;
    height: 160px;
    object-fit: cover;
    border-radius: 0;
    /* optional: remove rounding if needed */
}

.carousel-control-prev,
.carousel-control-next {
    background-image: none !important;
    /* Remove default Bootstrap gradient background */
    opacity: 1 !important;
    /* Make them fully opaque, not semi-transparent */
    width: auto;
    /* Let the custom circle dictate the clickable width */
    top: 50%;
    /* Vertically center the control container */
    transform: translateY(-50%);
    /* Adjust for perfect vertical centering */
    z-index: 10;
    /* Ensure they are above carousel items */
}

/* Style for the custom circular button itself */
.carousel-control-circle {
    width: 55px;
    /* Slightly larger for better visibility and tap target */
    height: 55px;
    background: #fff;
    /* White background */
    border-radius: 50%;
    /* Perfect circle */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow for depth */
    display: flex;
    /* Use flexbox to center the icon inside */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    /* Smooth transition for hover effects */
}

/* Hover effects for the circular button */
.carousel-control-circle:hover {
    background-color: #e9ecef;
    /* Slightly darker grey on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    /* Stronger shadow on hover */
    transform: scale(1.08);
    /* Subtle zoom effect */
}

/* Style for the chevron icon inside the circle */
.carousel-control-circle .fas {
    font-size: 1.6rem;
    /* INCREASED: Make icons even larger and more visible */
    color: #007bff;
    /* Use Bootstrap's primary color for the icon */
}

/* Adjust positioning of the prev/next controls */
.carousel-control-prev {
    left: -30px;
    /* Adjust this value to move closer or further from carousel edge */
}

.carousel-control-next {
    right: -30px;
    /* Adjust this value */
}

/* Image sizing within carousel items */
.carousel img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
    .carousel-control-prev {
        left: 5px;
        /* Bring controls closer to edge on small screens */
    }

    .carousel-control-next {
        right: 5px;
    }

    .carousel-control-circle {
        width: 45px;
        /* Slightly smaller buttons on mobile */
        height: 45px;
    }

    .carousel-control-circle .fas {
        font-size: 1.4rem;
        /* Adjusted icon size for mobile */
    }

    .carousel img {
        height: 250px;
        /* Adjust image height for mobile */
    }

    .card {
        padding: 15px !important;
        /* Reduce card padding on small screens */
    }

    .p-lg-5 {
        padding: 1rem !important;
        /* Adjust content padding */
    }

    .fw-bold.display-6 {
        font-size: 2.5rem !important;
        /* Adjust heading size */
    }

    .fs-5 {
        font-size: 1rem !important;
        /* Adjust subheading size */
    }
}

.hero-section {
    background: linear-gradient(135deg, #f5f7fa, #e3eaf2);
    padding: 100px 0;
    overflow: hidden;
}

.typing-text {
    border-right: 2px solid #2575fc;
    /* Blinking cursor ka color */
    white-space: nowrap;
    /* Text ko ek hi line mein rakhta hai */
    overflow: hidden;
    /* Extra text ko hide karta hai */
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #2575fc;
    }

    /* Yahaan cursor ka color match karega */
}

/* Custom CSS to override Bootstrap and inline styles */
.navbar {
    background: transparent !important;
    height: 80px;
    /* Adjust this value to set your desired height */
    padding-top: 0;
    padding-bottom: 0;
    transition: background-color 0.3s ease-in-out;
    /* Smooth transition for background on scroll */
}

/* Reduce the vertical padding of the navbar items to lower the overall height */
.navbar .nav-item .nav-link {
    padding-top: 15px;
    /* Adjust this value to your liking */
    padding-bottom: 15px;
    /* Adjust this value to your liking */
}

/* Optional: Add a subtle background color on scroll to maintain readability */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation bar ke liye initial state */
.navbar .nav-link {
    opacity: 0;
    transform: translateY(-10px);
    /* Thoda sa upar se neeche aane ka effect */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    /* Smooth transition ke liye */
}

/* Jab animation shuru hogi, tab yeh class lagegi */
.navbar .nav-link.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    padding-top: 1px;
    /* Adjust top padding to reduce height */
    padding-bottom: 1px;
    /* Adjust bottom padding to reduce height */
    height: auto;
    /* Let the height be determined by padding */
}

.navbar-nav .nav-link {
    padding-top: 1px;
    /* Reduce padding for individual nav links */
    padding-bottom: 1px;
    /* Reduce padding for individual nav links */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fb;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.droxy-how-it-works {
    padding: 60px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading .practical-use {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin: 0;
}

.tabs-container {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.tabs-nav {
    display: flex;
    justify-content: space-between;
    background-color: #f0f2f5;
    border-radius: 50px;
    padding: 8px;
    margin-bottom: 40px;
    white-space: nowrap;
}

.tabs-nav label {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
    border-radius: 50px;
    user-select: none;
    flex-shrink: 0;
}

.tabs-nav label i {
    margin-right: 8px;
    font-size: 16px;
}

input[type="radio"] {
    display: none;
}

/* Selector to highlight the label when its associated radio is checked */
#tab-home-services:checked~.tabs-nav label[for="tab-home-services"],
#tab-ecommerce:checked~.tabs-nav label[for="tab-ecommerce"],
#tab-hospitality:checked~.tabs-nav label[for="tab-hospitality"],
#tab-real-estate:checked~.tabs-nav label[for="tab-real-estate"],
#tab-health-practices:checked~.tabs-nav label[for="tab-health-practices"],
#tab-automotive:checked~.tabs-nav label[for="tab-automotive"],
#tab-legal-services:checked~.tabs-nav label[for="tab-legal-services"] {
    background-color: #ffffff;
    color: #4c51bf;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.tabs-content {
    position: relative;
    min-height: 500px;
}

/* Selector to show content when its associated radio is checked */
#tab-home-services:checked~.tabs-content #content-home-services,
#tab-ecommerce:checked~.tabs-content #content-ecommerce,
#tab-hospitality:checked~.tabs-content #content-hospitality,
#tab-real-estate:checked~.tabs-content #content-real-estate,
#tab-health-practices:checked~.tabs-content #content-health-practices,
#tab-automotive:checked~.tabs-content #content-automotive,
#tab-legal-services:checked~.tabs-content #content-legal-services {
    display: flex;
    opacity: 1;
}

.tab-pane {
    display: flex;
    gap: 40px;
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .tab-pane {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.tab-content-left {
    flex: 1;
    max-width: 500px;
}

.tab-content-left h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-list li i {
    color: #4c51bf;
    margin-right: 12px;
    font-size: 20px;
    margin-top: 4px;
}

.cta-button {
    background-color: #4c51bf;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.cta-button:hover {
    background-color: #3b3f8f;
    transform: translateY(-2px);
}

.cta-button i {
    margin-left: 10px;
}

.tab-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: relative;
    min-height: 400px;
}

@media (min-width: 992px) {
    .tab-content-right {
        margin-top: 0;
    }
}

.mockup {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.navbar {
    height: 50px;
    /* Height decreased */
    transition: all 0.3s ease;
    z-index: 1030;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    /* Font size adjusted */
    color: rgba(0, 0, 0, 0.9);
}

.navbar-brand img {
    width: 35px;
    /* Logo size decreased */
    height: 35px;
}

.nav-link {
    color: rgba(0, 0, 0, 0.7) !important;
    font-weight: 500;
    padding: 0.3rem 0.8rem !important;
    /* Padding adjusted */
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(0, 0, 0, 0.9) !important;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.btn-outline-primary {
    border-color: rgba(0, 0, 0, 0.5);
    color: rgba(0, 0, 0, 0.9);
    padding: 0.3rem 1rem;
    /* Button padding adjusted */
}

.btn-outline-primary:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.8);
    color: rgba(0, 0, 0, 0.9);
}


.rotating-border-button {
    position: relative;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0270de;
    background-color: transparent;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 18px rgba(2, 112, 222, 0.6), 0 0 6px rgba(2, 112, 222, 0.4);
    animation: blueGlow 2.2s ease-in-out infinite;
}

@keyframes blueGlow {
    0%, 100% { box-shadow: 0 0 16px rgba(2, 112, 222, 0.55), 0 0 6px rgba(2, 112, 222, 0.35); }
    50%       { box-shadow: 0 0 34px rgba(2, 112, 222, 0.9), 0 0 12px rgba(2, 112, 222, 0.6); }
}

/* Serif italic cycling word */
.serif-prefix {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    font-size: 3.4rem !important;
    color: #0270de !important;
    -webkit-text-fill-color: #0270de !important;
    letter-spacing: 0px;
    display: inline;
}

.typing-text {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    color: #0270de !important;
    -webkit-text-fill-color: #0270de !important;
}

/* घूमती हुई लाइन के लिए pseudo-element */
.rotating-border-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent 0%, transparent 20%, #0270de 30%, transparent 40%);
    /* चमकती हुई लाइन */
    z-index: -1;
    /* बटन के पीछे रहे */
    animation: rotate 4s linear infinite;
    /* 4 सेकंड में घूमती रहे */
}

/* बटन के अंदर का सफ़ेद बैकग्राउंड */
.rotating-border-button::after {
    content: '';
    position: absolute;
    top: 2px;
    /* थोड़ी अंदर की तरफ */
    left: 2px;
    /* थोड़ी अंदर की तरफ */
    right: 2px;
    /* थोड़ी अंदर की तरफ */
    bottom: 2px;
    /* थोड़ी अंदर की तरफ */
    background-color: #e0ebf5;
    /* बटन का बैकग्राउंड सफ़ेद ही रहेगा */
    border-radius: 50px;
    z-index: -1;
    /* घूमती हुई लाइन के ऊपर रहे लेकिन बटन के टेक्स्ट के नीचे */
}

/* घूमती हुई लाइन के लिए कीफ्रेम्स */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE — ALL SCREEN SIZES
   Breakpoints: 399 | 575 | 767 | 991 | 1400
════════════════════════════════════════════════════════ */

/* ─── ALWAYS-ON: Orbit hero — clip bottom only, sides free ─── */
#home .col-lg-6:last-child {
    overflow: visible !important;
    clip-path: none;
    position: relative;
}
#home .col-lg-6:last-child .base-image { z-index: 4 !important; }
#home .ring-container { z-index: 1 !important; }
#home {
    position: relative;
    overflow: visible !important;
    clip-path: inset(-9999px -9999px 0 -9999px);
}
#home::after {
    content: '';
    position: absolute;
    bottom: 0; left: -50px; right: -50px;
    height: 180px;
    background: linear-gradient(to bottom, transparent 0%, #e0ebf5 60%);
    z-index: 50;
    pointer-events: none;
}

/* ─── ALWAYS-ON: Kill horizontal scroll everywhere ─── */
html, body { overflow-x: hidden; max-width: 100%; }

/* ════════════════ TABLET  (≤ 991px) ════════════════ */
@media (max-width: 991.98px) {
    /* Hero — clip orbit column so icons don't bleed on mobile */
    .hero-section { padding: 80px 0 40px !important; }
    #home .col-lg-6:last-child { height: 420px !important; overflow: hidden !important; }
    .typing-text { white-space: normal !important; overflow: visible !important; }

    /* #services section inline padding: 80px → manageable */
    #services { padding: 48px 24px !important; }

    /* Core automation service cards: 2-col on tablet */
    .cards-grid { gap: 20px !important; }
    .cards-grid .card {
        width: calc(50% - 10px) !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    /* Section headings */
    .section-heading h1 { font-size: 36px !important; }
    #services .section-title h2 { font-size: 2rem !important; }

    /* Tabs nav — horizontal scroll */
    .tabs-nav {
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        white-space: nowrap; border-radius: 16px;
        padding: 6px; gap: 4px; scrollbar-width: none;
    }
    .tabs-nav::-webkit-scrollbar { display: none; }
    .tabs-nav label { padding: 8px 12px; font-size: 11.5px; }
    .tabs-nav label i { margin-right: 5px; }
    .tabs-content { min-height: 360px; }
    .tab-content-right { min-height: 280px; }
    .tab-content-left { max-width: 100%; }
}

/* ════════════════ MOBILE  (≤ 767px) ════════════════ */
@media (max-width: 767.98px) {
    /* ── Hero ── */
    .hero-section { padding: 65px 0 30px !important; }
    #home .col-lg-6:last-child { height: 340px !important; }
    .hero-section h1,
    .hero-section .display-4 { font-size: 2rem !important; line-height: 1.25 !important; }
    .serif-prefix { font-size: 2.1rem !important; }
    .hero-section .fs-5 { font-size: 0.95rem !important; line-height: 1.65; }
    .rotating-border-button { font-size: 0.8rem !important; padding: 5px 14px !important; }
    a.btn.btn-primary { padding: 12px 26px !important; font-size: 0.95rem !important; }

    /* ── #services section — crush the 80px inline padding ── */
    #services { padding: 32px 14px !important; }

    /* ── Core automation cards → 1 column, full width ── */
    .cards-grid { gap: 12px !important; flex-direction: column !important; }
    .cards-grid .card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    .cards-grid .card .card-content { padding: 0 16px 20px !important; }
    .cards-grid .card .card-icon { margin: 18px auto 14px !important; }

    /* ── Section inline headings ── */
    #services .section-title h2 { font-size: 1.65rem !important; }
    #services .section-title p { font-size: 0.95rem !important; }

    /* ── Feature badges (marquee strip) ── */
    .feature-badge {
        padding: 9px 16px !important;
        font-size: 0.82rem !important;
        margin-right: 10px !important;
    }
    .feature-badge i { font-size: 0.85rem !important; }

    /* ── Seamless Integrations section (no ID, use inline-style attribute) ── */
    section[style*="padding: 40px"] { padding: 24px 14px !important; }
    section[style*="padding: 40px"] > div { padding: 28px 14px 20px !important; }
    /* Its h2 (2.8rem) */
    section[style*="padding: 40px"] h2 { font-size: 1.6rem !important; }
    #intro-text { font-size: 0.92rem !important; }

    /* ── "Why Businesses Choose" section ── */
    .py-5 h2[style*="2.5rem"] { font-size: 1.65rem !important; }
    .py-5 h2[style*="2rem"]   { font-size: 1.45rem !important; }

    /* ── Case study / combo cards ── */
    .combo { padding: 32px 14px; }
    .solo  { font-size: 26px; }
    .baban { font-size: 14px; margin-bottom: 20px; }
    .punch { width: 100%; max-width: 340px; }
    .punch-img { width: 100%; height: 130px; }

    /* ── Process (how-it-works) ── */
    .droxy-how-it-works { padding: 36px 0; }
    .process-step { padding: 16px !important; }

    /* ── Service tabs content ── */
    .tab-pane { padding: 14px; gap: 18px; }
    .tab-content-left h2 { font-size: 1.3rem !important; }
    .feature-list li { font-size: 14.5px; margin-bottom: 10px; }
    .cta-button { padding: 11px 20px; font-size: 13.5px; }
    .tabs-content { min-height: 220px; }
    .tab-content-right { min-height: 200px; }
    .tabs-container { padding: 14px; }
    .mockup { position: relative !important; left: auto !important; transform: none !important; top: auto !important; max-width: 100% !important; width: 100% !important; }

    /* ── Section headings (class-based) ── */
    .section-heading h1 { font-size: 26px !important; }
    .section-heading .practical-use { font-size: 13px; }

    /* ── Footer ── */
    footer { padding: 2rem 0; }
    .footer-col { margin-bottom: 1.5rem; }
    .footer-brand h3 { font-size: 1.2rem; }
}

/* ════════════════ SMALL MOBILE  (≤ 575px) ════════════════ */
@media (max-width: 575.98px) {
    /* Hero */
    .hero-section { padding: 58px 0 16px !important; }
    #home .col-lg-6:last-child { height: 290px !important; }
    .hero-section h1,
    .hero-section .display-4 { font-size: 1.75rem !important; }
    .serif-prefix { font-size: 1.85rem !important; }

    /* Services */
    #services { padding: 24px 10px !important; }

    /* Tabs */
    .tabs-container { padding: 10px; border-radius: 14px; }
    .tabs-nav { margin-bottom: 16px; }
    .tabs-nav label { padding: 6px 9px; font-size: 10px; }
    .tabs-nav label i { display: none; }

    /* General cards */
    .card { margin-bottom: 0.75rem; }
    .section-heading h1 { font-size: 22px !important; }
    .solo  { font-size: 20px; }
    .baban { font-size: 12.5px; }

    /* Duo layout → stack */
    .duo { flex-direction: column !important; align-items: center; gap: 14px; }
    .punch { max-width: 100%; }

    /* Social icons */
    .social-icons a { height: 34px; width: 34px; font-size: 1rem; }

    /* Feature badges tiny */
    .feature-badge { padding: 7px 12px !important; font-size: 0.76rem !important; margin-right: 8px !important; }

    /* Seamless Integrations */
    section[style*="padding: 40px"] h2 { font-size: 1.4rem !important; }
    #intro-text { font-size: 0.88rem !important; }
}

/* ════════════════ EXTRA SMALL  (≤ 399px) ════════════════ */
@media (max-width: 399px) {
    .hero-section { padding: 54px 0 12px !important; }
    .hero-section h1,
    .hero-section .display-4 { font-size: 1.45rem !important; }
    .serif-prefix { font-size: 1.6rem !important; }
    #home .col-lg-6:last-child { height: 250px !important; }
    .rotating-border-button { font-size: 0.7rem !important; padding: 4px 11px !important; }
    #services { padding: 18px 8px !important; }
    .section-heading h1 { font-size: 18px !important; }
    .solo { font-size: 18px; }
    a.btn.btn-primary { padding: 10px 20px !important; font-size: 0.88rem !important; }
}

/* ════════════════ WIDE SCREENS  (≥ 1400px) ════════════════ */
@media (min-width: 1400px) {
    .content-container { max-width: 1320px; }
    .section-heading h1 { font-size: 52px; }
}