/* Google Fonts and Unused Local Font Faces Cleaned for Speed Optimization */

/* Custom Properties & Reset */
:root {
    --bg-main: #f8fafc;
    --bg-darker: #f1f5f9;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary: #4f46e5; /* Premium Indigo */
    --secondary: #f43f5e; /* Vibrant Coral/Rose */
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --whatsapp: #25d366; /* Vibrant Green */
    --shadow: 0 12px 30px -10px rgba(79, 70, 229, 0.08), 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 20px 40px -12px rgba(79, 70, 229, 0.16), 0 8px 16px rgba(0, 0, 0, 0.04);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
    color: var(--text-main);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
}
.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 20px -6px rgba(244, 63, 94, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -4px rgba(244, 63, 94, 0.55);
}
.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
}
.btn-outline:hover {
    color: #fff;
    border-color: transparent;
    background: var(--gradient);
    box-shadow: 0 8px 20px -6px rgba(79, 70, 229, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #fff;
    box-shadow: 0 6px 15px -4px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -4px rgba(37, 211, 102, 0.55);
}

.w-100 { width: 100%; }

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    position: fixed;
    top: 70px; /* glued directly below the fixed navbar */
    left: 0; right: 0;
    z-index: 999;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar span {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.top-bar span i {
    color: var(--secondary);
    margin-right: 6px;
    font-size: 0.7rem;
}
.top-bar a {
    color: #0f766e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}
.top-bar a:hover { opacity: 0.8; }

@media (max-width: 576px) {
    .top-bar-inner { justify-content: center; }
    .top-bar a { display: none; }
    .top-bar span { font-size: 0.7rem; letter-spacing: 1px; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 12px 0;
    transition: 0.3s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.nav-logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}
.logo > span {
    color: var(--primary);
}
.logo > span > span {
    color: var(--secondary);
}
.brand-name {
    color: var(--primary);
    font-weight: inherit;
}
.brand-name span {
    color: var(--secondary);
    font-weight: inherit;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
    padding: 6px 0;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-links a.active-link {
    color: var(--primary);
    font-weight: 600;
}
.hamburger {
    display: none;
    font-size: 1.7rem;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    transition: color 0.3s ease, transform 0.2s ease;
}
.hamburger:hover {
    color: var(--primary);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: block; /* Use block layout to keep top padding fixed */
    text-align: center;
    overflow: hidden;
    padding: 180px 0 90px;
    background: #ffffff; /* pure white theme */
}

/* Arched Line SVG container */
.hero-arc-container {
    position: absolute;
    top: 120px; /* Position fully below the navbar/top-bar to prevent clipping */
    left: 0;
    width: 100%;
    height: 500px; /* Fixed height to match content layout precisely */
    z-index: 1;
    pointer-events: none;
}
.hero-arc-svg {
    width: 100%;
    height: 100%;
}
.hero-arc-path {
    stroke-dasharray: 1600;
    stroke-dashoffset: 1600;
    animation: drawArc 3.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes drawArc {
    from {
        stroke-dashoffset: 1600;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-subtitle-new {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-subtitle-new::before,
.hero-subtitle-new::after {
    content: "";
    height: 1.5px;
    width: 40px;
    background: var(--secondary); /* Red color line */
}

.hero-title-new {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 4.8rem;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 25px;
    color: var(--text-main);
}
.hero-title-new span {
    color: var(--secondary);
}

.hero-desc-new {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 660px;
    line-height: 1.6;
}

.hero-btns-new {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.hero .btn-whatsapp {
    background: var(--secondary); /* Red background matching the Book a Free Call in image */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px !important;
    font-weight: 600;
    box-shadow: 0 8px 20px -6px rgba(244, 63, 94, 0.4);
    transition: all 0.3s ease;
}
.hero .btn-whatsapp:hover {
    background: #e11d48; /* darker rose/red */
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -4px rgba(244, 63, 94, 0.55);
}

.hero .btn-outline-new {
    background: #ffffff !important;
    border: 1.5px solid rgba(15, 23, 42, 0.12) !important;
    color: var(--text-main) !important;
    border-radius: 50px !important;
    padding: 15px 35px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero .btn-outline-new:hover {
    background: var(--text-main) !important;
    color: #ffffff !important;
    border-color: var(--text-main) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.12);
}

/* Features Row */
.hero-features-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 10px 0 50px 0;
    width: 100%;
    max-width: 900px;
    background: transparent;
}
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}
.hero-feature-item:not(:last-child) {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}
.feature-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(244, 63, 94, 0.08); /* light red/pink */
    color: var(--secondary); /* red */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.feature-text-box {
    text-align: left;
}
.feature-text-box span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.25;
    display: block;
}

/* Lead Capture Form */
.hero-lead-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-lead-form:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px -10px rgba(244, 63, 94, 0.15);
}
.hero-lead-form .input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}
.hero-lead-form .input-wrapper i {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.hero-lead-form .input-wrapper input {
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-main);
    width: 100%;
    background: transparent;
}
.hero-lead-form .input-wrapper input::placeholder {
    color: rgba(15, 23, 42, 0.4);
}
.btn-get-started {
    background: var(--secondary);
    color: #ffffff;
    border: none;
    outline: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}
.btn-get-started:hover {
    background: #e11d48;
}
.btn-get-started:active {
    transform: scale(0.98);
}
.arrow-diag {
    transform: rotate(-45deg);
    display: inline-block;
    transition: transform 0.3s ease;
}
.btn-get-started:hover .arrow-diag {
    transform: rotate(-45deg) translate(2px, -2px);
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.12;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}
.icon-1 { top: 20%; right: 20%; animation-delay: 0s; }
.icon-2 { top: 60%; right: 10%; animation-delay: 1s; font-size: 3rem;}
.icon-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.icon-4 { top: 30%; left: 10%; animation-delay: 3s; font-size: 2.5rem;}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Stats Counters */
.stats-section {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    background: #f8fafc;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: center;
    gap: 20px;
}
.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    padding: 16px 28px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(79, 70, 229, 0.15);
}
.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(79, 70, 229, 0.06);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.stat-box:hover .stat-icon {
    background: var(--gradient);
    color: #ffffff;
}
.stat-box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    line-height: 1;
}
.stat-box h3::after {
    content: '+';
    color: var(--secondary);
    font-size: 1.8rem;
    margin-left: 2px;
}
.stat-box p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    max-width: 100px;
    line-height: 1.3;
}


/* Number Rotate Animation */
.spin-rotate {
    display: inline-block;
    transform-style: preserve-3d;
    animation: rotateNum 2s ease-out forwards;
}

@keyframes rotateNum {
    0% { transform: rotateX(-1080deg); }
    100% { transform: rotateX(0deg); }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-features {
    margin: 20px 0 30px 0;
}
.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-features i {
    color: var(--primary);
}
.image-wrapper img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Chai Banner Section */
.chai-banner-section {
    position: relative;
    padding: 85px 0;
    text-align: center;
    background: #090a0f; /* Deep dark background */
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
}
.chai-banner-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: url('uploads/cta-bg.jpg') center/cover fixed;
    opacity: 0.06; /* Subtle backdrop texture */
    z-index: 1;
}
.chai-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.chai-typography {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.chai-outline-text {
    font-size: 5.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08); /* High contrast light stroke */
    line-height: 0.8;
    letter-spacing: 5px;
    margin-bottom: -15px;
    z-index: 1;
}
.chai-outline-text-large {
    font-size: 6.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85); /* High contrast light stroke */
    line-height: 0.8;
    letter-spacing: 2px;
    z-index: 1;
    margin-top: -10px;
}
.chai-business-box {
    background: #ffde00; /* vibrant yellow */
    color: #090a0f; /* dark text for perfect contrast */
    font-weight: 700;
    font-size: 1rem;
    padding: 4px 16px;
    transform: rotate(-3deg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    z-index: 5;
    position: relative;
    letter-spacing: 0.5px;
    border-radius: 4px;
}
.chai-bottom-title {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffde00; /* vibrant yellow pops on dark background */
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-top: 15px;
    text-transform: uppercase;
}
.line-decorator {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, #ffde00, transparent);
}
.chai-tagline {
    font-size: 1.25rem;
    font-style: italic;
    color: #ffffff; /* pure white text for readability */
    margin-top: 35px;
    font-weight: 500;
    padding: 12px 32px;
    background: rgba(255, 222, 0, 0.08); /* subtle warm yellow glow */
    border: 1px solid rgba(255, 222, 0, 0.3); /* yellow border */
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 222, 0, 0.04);
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
}
.chai-tagline i {
    color: #ffde00; /* vibrant yellow coffee cup */
    margin-right: 15px;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .chai-outline-text { font-size: 3rem; -webkit-text-stroke: 1px rgba(255,255,255,0.7); }
    .chai-outline-text-large { font-size: 3.5rem; -webkit-text-stroke: 1px rgba(255,255,255,1); }
    .chai-business-box { font-size: 0.8rem; padding: 2px 10px; }
    .chai-bottom-title { font-size: 0.6rem; letter-spacing: 2px; }
    .line-decorator { width: 30px; }
    .chai-tagline { font-size: 1rem; }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    min-height: 480px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius);
    padding: 0 0 35px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    position: relative;
    overflow: visible;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(79, 70, 229, 0.15);
}
.service-card-banner-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
    z-index: 1;
}
.service-card-banner {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
    border-radius: var(--radius) var(--radius) 0 0 !important;
    margin-bottom: 0 !important;
}
.service-card:hover .service-card-banner {
    transform: scale(1.05);
}
.service-card-content {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 30px 25px 35px 25px;
    margin: -60px 15px 0 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card-content {
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.2);
}
.service-card .icon-box {
    margin: 0 auto 20px auto !important;
}
.icon-box {
    width: 60px; height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    overflow: hidden;
}
.custom-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.service-card h3 { margin-bottom: 15px; }
.service-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s;
}
.service-readmore i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}
.service-readmore:hover {
    color: var(--secondary);
}
.service-readmore:hover i {
    transform: translateX(4px);
}

/* Home Page Services Grid (Custom Clean Card Override) */
.services .service-card {
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    color: var(--text-main) !important;
}
.services .service-card h3 {
    color: var(--text-main) !important;
}
.services .service-card p {
    color: var(--text-muted) !important;
}
.services .service-card .service-readmore {
    color: var(--primary) !important;
}
.services .service-card .service-readmore:hover {
    color: var(--secondary) !important;
}



/* ===================== Journey Timeline (Scroll-Animated) ===================== */
.journey-timeline {
    position: relative;
    margin-top: 50px;
    padding-left: 0;
}

/* The full background track (grey) */
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    width: 3px;
    bottom: 28px;
    background: rgba(0,0,0,0.07);
    border-radius: 3px;
    z-index: 0;
}

/* The animated progress fill (red→blue gradient) */
.journey-timeline::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    width: 3px;
    height: 0%;               /* starts at 0, grows on scroll via JS */
    max-height: calc(100% - 56px);
    background: linear-gradient(180deg, #2b70f0, #dc2626);
    border-radius: 3px;
    z-index: 1;
    transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 0 0 36px 0;
    position: relative;
    z-index: 2;
}
.journey-step:last-child {
    padding-bottom: 0;
}

/* Numbered circle */
.step-num {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b70f0, #7c3aed);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(43,112,240,0.35);
    position: relative;
    z-index: 3;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    /* start hidden, animate in */
    opacity: 0;
    transform: scale(0.6);
}

/* When step becomes visible */
.journey-step.step-visible .step-num {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.journey-step.step-visible .step-content {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.step-num:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(43,112,240,0.5);
}

/* Color per step */
.journey-step:nth-child(1) .step-num { background: linear-gradient(135deg, #2b70f0, #6366f1); }
.journey-step:nth-child(2) .step-num { background: linear-gradient(135deg, #6366f1, #a855f7); }
.journey-step:nth-child(3) .step-num { background: linear-gradient(135deg, #a855f7, #ec4899); }
.journey-step:nth-child(4) .step-num { background: linear-gradient(135deg, #ec4899, #ef4444); }
.journey-step:nth-child(5) .step-num { background: linear-gradient(135deg, #ef4444, #dc2626); }

/* Content card */
.step-content {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 4px 16px rgba(15,23,42,0.04);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    /* start hidden */
    opacity: 0;
    transform: translateX(20px);
}
.step-content:hover {
    border-color: rgba(43,112,240,0.25);
    box-shadow: 0 8px 24px rgba(43,112,240,0.1);
    transform: translateX(6px);
}
.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.step-content p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Technology */
.tech-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}
.tech-box {
    flex: 1;
    min-width: 300px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.tech-box h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--text-main);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    padding-bottom: 10px;
}
.tech-grid {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scrollTech 30s linear infinite;
}
.tech-grid:hover {
    animation-play-state: paused;
}
@keyframes scrollTech {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.tech-item {
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 10px;
    background: rgba(0,0,0,0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.tech-item i {
    font-size: 2.8rem;
}
.tech-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}
.tech-item:hover {
    transform: translateY(-8px);
    background: var(--bg-card);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.tech-item:hover span {
    color: var(--primary);
}
/* Tech Animations */
.tech-float {
    animation: gentleFloat 4s ease-in-out infinite;
}
.tech-float.delay-1 { animation-delay: 0.5s; }
.tech-float.delay-2 { animation-delay: 1.5s; }
.tech-float.delay-3 { animation-delay: 2.5s; }

@keyframes gentleFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: center;
    min-height: 280px; /* Prevents CLS on load */
}
.why-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
    min-height: 480px; /* Prevents CLS on load */
}
.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}
.portfolio-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: #fff; margin-bottom: 5px; }
.portfolio-overlay p { color: var(--primary); }

/* Testimonials */
.testimonial-slider {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}
.testimonial-card {
    min-width: 350px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    scroll-snap-align: start;
}
.stars { color: #fbbf24; margin-bottom: 15px; }
.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.info-item:last-child {
    border-bottom: none;
}
.info-item svg {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}
.info-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}
.info-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}
.info-item p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.info-item p a:hover {
    color: var(--primary);
}
.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
}
.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
}
.input-group { margin-bottom: 20px; }
.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    color: var(--text-main);
    outline: none;
    transition: border 0.3s;
}
.input-group input:focus, .input-group textarea:focus {
    border-color: var(--primary);
}
.form-msg { margin-top: 15px; text-align: center; }
.success-msg { color: #25D366; }
.error-msg { color: #ef4444; }

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about h3 { margin-bottom: 20px; }

.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a {
    width: 48px; height: 48px;
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.social-links a.social-fb { background: #1877F2; }
.social-links a.social-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links a.social-linkedin { background: #0077b5; }
.social-links a.social-yt { background: #FF0000; }
.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}
.footer-links h4 { margin-bottom: 20px; }
.footer-links a {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-muted);
    transition: 0.3s;
}
.footer-links a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s;
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-links a:hover i { transform: translateX(4px); }
.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px; right: -100%;
        width: 75%;
        max-width: 300px;
        height: calc(100vh - 70px);
        overflow-y: auto; /* Enable scroll if dropdown exceeds screen height */
        background: rgba(255, 255, 255, 0.98);
        border-left: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 25px 20px;
        gap: 8px; /* Override desktop gap of 30px */
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links.active { right: 0; }
    .nav-links a {
        font-size: 1.05rem;
        margin: 2px 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: 100%;
        text-align: left;
        padding: 10px 15px;
        border-radius: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    .nav-links a:hover {
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary);
        padding-left: 20px;
    }
    .hamburger { display: block; }
    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
        padding-top: 110px; /* navbar offset */
        background: var(--bg-main);
    }
    .hero-slideshow {
        position: relative;
        top: 0;
        height: 56.25vw; /* 16:9 aspect ratio */
        width: 100%;
    }
    .hero-overlay {
        display: none; /* remove overlay so mobile image is clear */
    }
    .hero-slide {
        background-size: 100% 100%;
    }
    .hero-content {
        padding: 30px 20px;
        text-align: center;
        max-width: 100%;
    }
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        text-shadow: none;
    }
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        text-shadow: none;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .float-icon {
        display: none; /* hide floating icons on mobile to keep layout clean */
    }
    .section { padding: 50px 0; }
    .testimonial-card { min-width: 80vw; }
    .chai-outline-text { font-size: 3rem; -webkit-text-stroke: 1px rgba(255,255,255,0.7); }
    .chai-outline-text-large { font-size: 3.5rem; -webkit-text-stroke: 1px rgba(255,255,255,1); }
    .chai-business-box { font-size: 0.8rem; padding: 2px 10px; }
    .chai-bottom-title { font-size: 0.6rem; letter-spacing: 2px; }
    .line-decorator { width: 30px; }
    .chai-tagline { font-size: 1rem; }
    .faq-question { padding: 18px 20px; }
    .faq-question span { font-size: 0.92rem; }
    .faq-answer { padding: 0 20px; }
    .step-number { font-size: 2.5rem; min-width: 55px; }
    .step-line { left: 25px; }
    .step-content { padding: 22px 20px; }
    .process-cta { padding: 28px 20px; }
    .process-cta p { font-size: 1rem; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 20px; }
}


/* Animations */
.animate-enter {
    animation: fadeInUp 1s ease both;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Our Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 780px;
    margin: 60px auto 0;
    position: relative;
}
.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}
.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(43, 112, 240, 0.5);
    min-width: 80px;
    line-height: 1;
    padding-top: 8px;
}
.step-line {
    position: absolute;
    left: 38px;
    top: 55px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(180deg, #2b70f0, #dc2626, transparent);
    opacity: 0.25;
}
.step-content {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 28px 30px;
    flex: 1;
    margin-bottom: 24px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.step-content:hover {
    border-color: rgba(43, 112, 240, 0.35);
    box-shadow: 0 8px 25px rgba(43, 112, 240, 0.1);
    transform: translateX(6px);
}
.step-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(43,112,240,0.15), rgba(220,38,38,0.1));
    border: 1px solid rgba(43, 112, 240, 0.2);
    color: #2b70f0;
}
.process-step:nth-child(2) .step-icon { color: #dc2626; border-color: rgba(220,38,38,0.2); }
.process-step:nth-child(3) .step-icon { color: #a855f7; border-color: rgba(168,85,247,0.2); }
.process-step:nth-child(4) .step-icon { color: #22c55e; border-color: rgba(34,197,94,0.2); }
.process-step:nth-child(5) .step-icon { color: #f97316; border-color: rgba(249,115,22,0.2); }
.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}
.step-content p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}
.process-cta {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(43,112,240,0.1), rgba(220,38,38,0.08));
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: var(--radius);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.process-cta p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-main);
    max-width: 540px;
    line-height: 1.6;
}
.process-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    font-size: 1rem;
    padding: 14px 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.process-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4) !important;
}

@media (max-width: 768px) {
    .step-number { font-size: 2.5rem; min-width: 55px; }
    .step-line { left: 25px; }
    .step-content { padding: 22px 20px; }
    .process-cta { padding: 28px 20px; }
    .process-cta p { font-size: 1rem; }
}

/* FAQ Section */
.faq-grid {
    max-width: 860px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover {
    border-color: rgba(43, 112, 240, 0.4);
    box-shadow: 0 4px 20px rgba(43, 112, 240, 0.1);
}
.faq-item.active {
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.12);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}
.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    flex: 1;
}
.faq-icon {
    color: #dc2626;
    font-size: 0.9rem;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #2b70f0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 28px;
}
.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    padding-bottom: 22px;
    font-size: 0.96rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 14px;
}
.faq-item.active .faq-answer {
    max-height: 400px;
}

@media (max-width: 768px) {
    .faq-question { padding: 18px 20px; }
    .faq-question span { font-size: 0.92rem; }
    .faq-answer { padding: 0 20px; }
}

/* =============================================
   Google Reviews Section
   ============================================= */
.gr-section {
    background: var(--bg-darker, #0d0e18);
}

/* Header */
.gr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-wrap: nowrap;
}
.gr-title-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gr-brand {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    color: var(--text-main);
}
.g-blue  { color: #4285F4; }
.g-red   { color: #EA4335; }
.g-yellow{ color: #FBBC05; }
.g-green { color: #34A853; }

.gr-overall {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gr-rating-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}
.gr-stars-row { color: #FBBC05; font-size: 1rem; letter-spacing: 2px; }

/* Action Buttons */
.gr-action-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.gr-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
    display: inline-block;
    white-space: nowrap;
}
.gr-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.gr-btn-blue {
    background: #1967d2; /* Darker Google Blue for WCAG accessibility */
    color: #fff;
    box-shadow: 0 4px 18px rgba(66,133,244,0.35);
}
.gr-btn-blue:hover { box-shadow: 0 8px 28px rgba(66,133,244,0.5); }
.gr-btn-red {
    background: #d93025; /* Darker Google Red for WCAG accessibility */
    color: #fff;
    box-shadow: 0 4px 18px rgba(234,67,53,0.35);
}
.gr-btn-red:hover { box-shadow: 0 8px 28px rgba(234,67,53,0.5); }

/* Marquee Slider */
.gr-slider {
    overflow: hidden;
    width: 100%;
    /* Fade edges on both sides for a premium look */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.gr-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: grMarquee 28s linear infinite;
}
.gr-track:hover {
    animation-play-state: paused;
}
@keyframes grMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Review Card */
.gr-card {
    width: 360px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: var(--shadow);
}
.gr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(66,133,244,0.25);
}
.gr-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.gr-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a5168, #2d3148);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem;
    color: #c8cbdb;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.08);
}
.gr-reviewer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.gr-reviewer-info h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}
.gr-card-stars { color: #FBBC05; font-size: 0.78rem; letter-spacing: 1.5px; }
.gr-handle { font-size: 0.78rem; color: #475569; }
.gr-google-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(66,133,244,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.gr-google-icon i { color: #4285F4; font-size: 0.85rem; }
.gr-card > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .gr-header { flex-wrap: wrap; }
    .gr-brand { font-size: 1.4rem; }
    .gr-card { width: 280px; }
}

/* Conclusion CTA */
.conclusion-cta {
    padding-top: 0;
    padding-bottom: 80px;
}
.conclusion-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(37, 211, 102, 0.05));
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.conclusion-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.conclusion-content, .conclusion-actions {
    position: relative;
    z-index: 1;
}
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.conclusion-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}
.conclusion-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.conclusion-content p.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}
.conclusion-content p.highlight-text {
    font-weight: 600;
    color: var(--text-main);
    margin-top: 32px;
    margin-bottom: 36px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 4px;
}
.conclusion-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .conclusion-box { padding: 40px 20px; }
    .conclusion-content h2 { font-size: 1.8rem; }
    .conclusion-actions { flex-direction: column; }
    .conclusion-actions .btn { width: 100%; }
}

/* Core Growth Engine Section */
.growth-engine {
    position: relative;
    overflow: hidden;
}
.growth-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}
.growth-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius);
    padding: 0 0 35px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    position: relative;
    overflow: visible;
}
.growth-card::before,
.growth-card::after {
    display: none !important;
}
.growth-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(79, 70, 229, 0.15);
}
.growth-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
    z-index: 1;
}
.growth-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.growth-card:hover .growth-card-img img {
    transform: scale(1.05);
}
.growth-card-content {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 30px 25px 40px 25px;
    margin: -60px 15px 0 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.growth-card:hover .growth-card-content {
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.2);
}
.growth-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--text-main);
    font-weight: 700;
}
.growth-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.growth-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}
.growth-card.expanded .growth-card-desc {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}
.growth-more-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
}
.growth-card.expanded .growth-more-content {
    max-height: 1000px;
    opacity: 1;
    margin-top: 15px;
    margin-bottom: 20px;
}
.growth-more-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}
.growth-features {
    margin-top: 15px;
    margin-bottom: 25px;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
}
.growth-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}
.growth-features li i {
    color: #10b981;
    margin-top: 4px;
}
.growth-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    font-size: 0.95rem;
    text-align: center;
}
.btn-learn-more {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(79, 70, 229, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}
.btn-learn-more:hover {
    box-shadow: 0 6px 22px rgba(79, 70, 229, 0.5);
    transform: translateX(-50%) scale(1.08);
}
.btn-learn-more i {
    color: #fff;
    font-size: 1.25rem;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}
.growth-card.expanded .btn-learn-more i {
    transform: rotate(-90deg);
}

/* Client Journey Timeline */
.client-journey {
    position: relative;
    z-index: 1;
}
.journey-timeline {
    max-width: 900px;
    margin: 50px auto 0 auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: var(--timeline-top, 27px); /* Starts exactly at the center of the first step circle dynamically */
    left: 50%; /* Centered in the middle on desktop */
    transform: translateX(-50%);
    width: 3px; 
    bottom: var(--timeline-bottom, 27px); /* Stops exactly at the center of the last step circle dynamically */
    background: var(--secondary); /* Solid red line */
}
.journey-timeline::after {
    display: none !important; /* Hide old scroll-animated blue/purple line */
}
#timeline-fill-bar {
    display: none !important; /* Hide dynamic progress fill bar completely */
}

.journey-step {
    display: flex;
    align-items: center; /* Center circle, connector line, and card in the vertical middle */
    margin-bottom: 30px; /* Reduced from 50px */
    position: relative;
    width: 100%;
}
.journey-step:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 54px; 
    height: 54px;
    border-radius: 50%;
    background: #ffffff !important; /* Force white background to override nth-child gradients */
    border: 2.5px solid var(--secondary);
    color: var(--secondary);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.08);
    z-index: 5;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Connector lines - Alternating side on desktop */
.journey-step:nth-child(odd) .step-num::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 22px; /* 42px margin - 27px radius + 7px overlap */
    height: 2.5px;
    background: var(--secondary);
}
.journey-step:nth-child(even) .step-num::after {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 22px; /* 42px margin - 27px radius + 7px overlap */
    height: 2.5px;
    background: var(--secondary);
}

/* Cards positioning - Alternating sides on desktop */
.journey-step:nth-child(odd) .step-content {
    margin-left: calc(50% + 45px); /* Reduced gap from 55px to 45px */
    width: calc(50% - 45px);
}
.journey-step:nth-child(even) .step-content {
    margin-right: calc(50% + 45px); /* Reduced gap from 55px to 45px */
    width: calc(50% - 45px);
}

.step-content {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden; /* clip the bottom-right red accent circle */
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    z-index: 2;
}

.journey-step:hover .step-content {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 63, 94, 0.08);
    border-color: rgba(244, 63, 94, 0.15);
}

.step-card-left-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(244, 63, 94, 0.06); /* very soft pink/red tint */
    color: var(--secondary); /* red icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(244, 63, 94, 0.08);
}

.step-card-text {
    flex-grow: 1;
    text-align: left;
    z-index: 3; /* ensure text is above the background accent */
}
.step-card-text h3 {
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}
.step-card-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.card-accent-circle {
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--secondary);
    z-index: 1;
}
.card-accent-icon {
    position: absolute;
    right: 22px;
    bottom: 22px;
    color: #ffffff;
    font-size: 1.4rem;
    z-index: 2;
}

/* Responsive for Growth Engine */
@media (max-width: 1024px) {
    .growth-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .growth-cards { grid-template-columns: 1fr; }
    .journey-step { flex-direction: row; }
    .step-content { padding: 15px; }
}

/* Work Tools Banner */
.work-tools-banner {
    margin: 30px auto 70px auto;
    max-width: 1100px;
}
.work-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tool-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: var(--shadow);
}
.tool-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}
.tool-img {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.tool-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tool-card h3 {
    font-size: 0.9rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .work-tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .work-tools-grid { grid-template-columns: 1fr; }
}

/* Page Header / Breadcrumb Banner for Subpages */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fafc, #edf2f7);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.page-header .container {
    position: relative;
    z-index: 1;
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.page-header .breadcrumb {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.page-header .breadcrumb a {
    color: var(--text-main);
    transition: color 0.3s;
}
.page-header .breadcrumb a:hover {
    color: var(--primary);
}
.page-header .breadcrumb i {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.page-header .breadcrumb span {
    color: var(--primary);
    font-weight: 500;
}

/* Google Map Container */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    box-shadow: var(--shadow);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Legal Content Layout styling (Privacy / Terms) */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 50px 40px;
    color: var(--text-main);
}
.legal-content h2 {
    font-size: 1.6rem;
    color: var(--text-main);
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    padding-bottom: 8px;
}
.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}
.legal-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style-type: disc;
}
.legal-content li {
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header { padding: 130px 0 60px; }
    .page-header h1 { font-size: 2.2rem; }
    .legal-content { padding: 30px 20px; }
}

/* Navbar Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 10px 0;
    min-width: 210px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}
.dropdown-menu li a {
    display: block !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
    text-align: left !important;
    width: 100% !important;
    border-radius: 0 !important;
}
.dropdown-menu li:last-child a {
    border-bottom: none !important;
}
.dropdown-menu li a:hover {
    background: rgba(99, 102, 241, 0.08) !important;
    color: var(--primary) !important;
}
.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Dropdown Layout overrides */
@media (max-width: 768px) {
    .dropdown {
        width: 100%;
    }
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important; /* Simple transparent background */
        border: none !important;
        box-shadow: none !important;
        padding: 4px 0 !important;
        margin-top: 4px !important;
        min-width: 100% !important;
        display: none !important;
        border-radius: 0 !important;
    }
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    .dropdown:hover .dropdown-menu {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg) !important;
    }
    .dropdown-menu li a {
        padding: 10px 20px 10px 25px !important; /* Simple indentation */
        font-size: 0.92rem !important;
        color: var(--text-muted) !important;
        background: transparent !important;
        border-bottom: none !important;
    }
    .dropdown-menu li a:hover {
        background: rgba(99, 102, 241, 0.05) !important;
        color: var(--primary) !important;
        padding-left: 30px !important;
    }
}

/* Nested Dropdown Subcategories styling */
.nested-dropdown {
    position: relative;
}

.nested-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 10px 0;
    min-width: 210px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    z-index: 1010;
    list-style: none;
    margin: 0;
}
.nested-dropdown:hover .nested-menu {
    opacity: 1;
    visibility: visible;
}

.nested-menu li a {
    display: block !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
    text-align: left !important;
    width: 100% !important;
    border-radius: 0 !important;
}
.nested-menu li:last-child a {
    border-bottom: none !important;
}
.nested-menu li a:hover {
    background: rgba(99, 102, 241, 0.08) !important;
    color: var(--primary) !important;
}

.nested-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.nested-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nested-dropdown:hover .nested-toggle i {
    transform: rotate(90deg);
}

/* Mobile Nested Dropdown overrides */
@media (max-width: 768px) {
    .nested-dropdown {
        width: 100%;
    }
    .nested-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important; /* Simple transparent background */
        border: none !important;
        box-shadow: none !important;
        padding: 4px 0 !important;
        margin-top: 4px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        display: none !important;
        border-radius: 0 !important;
    }
    .nested-dropdown.active .nested-menu {
        display: block !important;
    }
    .nested-dropdown:hover .nested-menu {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .nested-dropdown.active .nested-toggle i {
        transform: rotate(90deg) !important;
    }
    .nested-menu li a {
        padding: 10px 20px 10px 40px !important; /* Further indented simply */
        font-size: 0.9rem !important;
        color: var(--text-muted) !important;
        background: transparent !important;
        border-bottom: none !important;
    }
    .nested-menu li a:hover {
        background: rgba(99, 102, 241, 0.05) !important;
        color: var(--primary) !important;
        padding-left: 45px !important;
    }
}

/* Top Bar Right Layout styling */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.top-bar-separator {
    color: rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    font-weight: 300;
}
.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-bar-socials a {
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: content-box;
    min-width: 16px;
    min-height: 16px;
    transition: color 0.3s ease, transform 0.2s ease !important;
}
.top-bar-socials a:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}
@media (max-width: 576px) {
    .top-bar-right {
        display: none;
    }
}



/* =============================================
   Digital Products Shop Section
   ============================================= */
.shop-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.shop-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(43, 112, 240, 0.2);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-top: 20px;
    min-height: 480px; /* Prevents CLS on Products page */
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
    border-color: rgba(43, 112, 240, 0.25);
}

.product-img-wrapper {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(43, 112, 240, 0.04), rgba(220, 38, 38, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.product-img-wrapper i.product-placeholder-icon {
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-placeholder-icon {
    transform: scale(1.15) rotate(5deg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-badge.badge-website {
    background: #2b70f0;
}

.product-badge.badge-crm {
    background: #a855f7;
}

.product-badge.badge-ecommerce {
    background: #dc2626;
}

.product-badge.badge-saas {
    background: #10b981;
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
}

.product-features-list {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.product-features-list li i {
    color: #10b981;
    font-size: 0.95rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.price-val {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
}

.price-val span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 25px;
}

.btn-shop-buy {
    flex: 1.3;
    background: var(--gradient);
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 112, 240, 0.3);
    border: none;
    cursor: pointer;
}

.btn-shop-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 112, 240, 0.4);
}

.btn-shop-demo {
    flex: 1;
    background: transparent;
    color: var(--text-main) !important;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-shop-demo:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: rgba(43, 112, 240, 0.03);
}

@media (max-width: 576px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .product-actions {
        flex-direction: column;
    }
    .btn-shop-buy, .btn-shop-demo {
        width: 100%;
    }
}

/* =============================================
   Client Logo Marquee
   ============================================= */
.clients-section {
    padding: 50px 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.clients-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.section-title .highlight-underline {
    position: relative;
    display: inline-block;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--secondary);
}

.underline-svg {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 10px;
    z-index: 1;
    pointer-events: none;
}

.underline-svg path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    opacity: 0;
}

.highlight-underline.active .underline-svg path {
    animation: draw-underline-loop 4s ease-in-out infinite;
}

@keyframes draw-underline-loop {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    35% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    75% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    85% {
        opacity: 0;
    }
    100% {
        stroke-dashoffset: 100;
        opacity: 0;
    }
}
.clients-section .section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
}
.client-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    padding: 15px 0;
}
.client-marquee-row {
    width: 100%;
    overflow: hidden;
}
.client-marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    align-items: center;
}
.client-marquee-track.marquee-left {
    animation: clientMarqueeLeft 30s linear infinite;
}
.client-marquee-track.marquee-right {
    animation: clientMarqueeRight 30s linear infinite;
}
.client-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes clientMarqueeLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes clientMarqueeRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.client-logo-item:hover {
    transform: scale(1.08);
}
.client-logo-item img {
    max-height: 42px;
    max-width: 120px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
}
.client-logo-item:hover img {
    filter: none;
    opacity: 1;
}
.client-logo-item .client-logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s;
}
.client-logo-item:hover .client-logo-text {
    color: var(--primary);
}

/* =============================================
   Blog Listing Page
   ============================================= */
.blog-listing-section {
    padding: 80px 0;
    background: var(--bg-main);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-top: 40px;
}
.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.1);
    border-color: rgba(43,112,240,0.2);
}
.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}
.blog-card-img-wrapper {
    overflow: hidden;
    position: relative;
}
.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.blog-card-category.cat-seo { background: #2b70f0; }
.blog-card-category.cat-marketing { background: #dc2626; }
.blog-card-category.cat-web { background: #10b981; }
.blog-card-category.cat-social { background: #a855f7; }
.blog-card-category.cat-business { background: #0ea5e9; }
.blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-card-meta i {
    color: var(--primary);
    font-size: 0.75rem;
}
.blog-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    line-height: 1.4;
    transition: color 0.3s;
}
.blog-card:hover .blog-card-body h3 {
    color: var(--primary);
}
.blog-card-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.3s, color 0.3s;
}
.blog-read-more:hover {
    gap: 12px;
    color: var(--secondary);
}
.blog-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}
.blog-read-more:hover i {
    transform: translateX(4px);
}

@media (max-width: 576px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* =============================================
   Careers / Internship Page
   ============================================= */
.careers-intro {
    padding: 60px 0 40px;
    text-align: center;
}
.careers-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.careers-perks {
    padding: 0 0 60px;
}
.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.perk-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.perk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(15,23,42,0.08);
    border-color: rgba(43,112,240,0.2);
}
.perk-card i {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: inline-block;
}
.perk-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.perk-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.openings-section {
    padding: 60px 0 80px;
    background: var(--bg-darker);
}
.opening-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.opening-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    border-color: rgba(43,112,240,0.2);
}
.opening-info {
    flex: 1;
    min-width: 250px;
}
.opening-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}
.opening-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.opening-tag {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(43,112,240,0.08);
    color: var(--primary);
}
.opening-tag.tag-orange {
    background: rgba(220,38,38,0.08);
    color: #dc2626;
}
.opening-tag.tag-green {
    background: rgba(16,185,129,0.08);
    color: #10b981;
}
.opening-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.careers-cta-section {
    padding: 60px 0;
    text-align: center;
}
.careers-cta-box {
    background: linear-gradient(135deg, rgba(43,112,240,0.06), rgba(220,38,38,0.04));
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
}
.careers-cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.careers-cta-box p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .opening-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .careers-cta-box { padding: 30px 20px; }
}

/* =============================================
   Individual Service Pages Styles
   ============================================= */
/* Service card styles fallback to global overlapping styles */

.service-details-section {
    padding: 80px 0;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.service-intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.service-intro-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}
.service-feature-highlight-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
}
.service-feature-highlight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}
.service-feature-highlight-box ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.service-feature-highlight-box ul li i {
    color: var(--secondary);
    margin-top: 4px;
}

/* Offers Grid */
.offers-section {
    background-color: var(--bg-darker);
    padding: 80px 0;
}
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.offer-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15,23,42,0.1);
    border-color: var(--primary);
}
.offer-card .offer-icon {
    width: 70px;
    height: 70px;
    background: rgba(43, 112, 240, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.offer-card:hover .offer-icon {
    background: var(--gradient);
    color: #fff;
    transform: rotate(360deg);
}
.offer-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.offer-card:hover .offer-card-img {
    transform: scale(1.04);
}
.offer-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.offer-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 45px;
}
.process-step-card {
    position: relative;
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}
.process-step-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}
.process-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}
.process-step-card h4 {
    font-size: 1.15rem;
    margin-top: 10px;
    margin-bottom: 10px;
}
.process-step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* WhatsApp CTA Banner */
.whatsapp-cta-section {
    padding: 60px 0;
    background: var(--gradient);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.whatsapp-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.whatsapp-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.whatsapp-cta-content h2 {
    color: #fff;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.whatsapp-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.whatsapp-cta-content .btn-whatsapp {
    background-color: #fff;
    color: var(--whatsapp);
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.whatsapp-cta-content .btn-whatsapp:hover {
    background-color: #e6f7ed;
    color: #128C7E;
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Sitemap Page Styles */
.sitemap-section {
    padding: 80px 0;
}
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.sitemap-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.sitemap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15,23,42,0.08);
    border-color: var(--primary);
}
.sitemap-card h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}
.sitemap-card h3 i {
    color: var(--primary);
}
.sitemap-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sitemap-links-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}
.sitemap-links-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.sitemap-links-list a i {
    font-size: 0.8rem;
    color: var(--secondary);
    transition: transform 0.2s;
}
.sitemap-links-list a:hover i {
    transform: translateX(2px);
}

/* URL Tampering Warning Modal */
.tamper-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9); /* Dark slate semi-transparent */
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    z-index: 999999; /* Higher than everything */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: auto;
}
.tamper-overlay.active {
    opacity: 1;
}
.tamper-modal {
    background: #1e293b; /* Dark slate card */
    border: 1px solid rgba(239, 68, 68, 0.2); /* Soft red border */
    box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.25), 0 0 50px rgba(239, 68, 68, 0.15);
    border-radius: var(--radius);
    padding: 45px 35px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.tamper-overlay.active .tamper-modal {
    transform: scale(1);
}
.tamper-icon {
    font-size: 4rem;
    color: #ef4444; /* Bright alert red */
    margin-bottom: 25px;
    animation: tamperPulse 1.8s infinite ease-in-out;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.4));
}
@keyframes tamperPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.4)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(239, 68, 68, 0.7)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.4)); }
}
.tamper-modal h2 {
    color: #fff !important;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.tamper-modal p {
    color: #94a3b8 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.tamper-loader-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    position: absolute;
    bottom: 0;
    left: 0;
}
.tamper-loader-progress {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #ef4444, #f97316); /* Red-orange gradient */
    transform-origin: left;
    animation: tamperCountdown 3s linear forwards;
}
@keyframes tamperCountdown {
    0% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}

/* Custom Loader */
.loader {
  width: 25px;
  height: 50px;
  display: grid;
  color: var(--primary);
  background:
    linear-gradient(currentColor 0 0) top/100% 2px,
    radial-gradient(farthest-side at  top, #0000 calc(100% - 2px),currentColor calc(100% - 1px) ,#0000) top,
    linear-gradient(currentColor 0 0) bottom/100% 2px,
    radial-gradient(farthest-side at  bottom, #0000 calc(100% - 2px),currentColor calc(100% - 1px) ,#0000) bottom;
  background-size: 100% 1px,100% 50%; 
  background-repeat: no-repeat;
  animation: l18 4s infinite linear;
  margin: 0 auto;
}
.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  background: inherit;
  border: inherit;
  animation: inherit;
}
.loader::after {
  animation-duration: 2s;
}
@keyframes l18 {
  100% {transform: rotate(1turn)}
}

/* Page Preloader Overlay - Disabled */
#preloader {
  display: none !important;
}

/* Custom Image/GIF Icon Styles */
.custom-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.custom-why-icon-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Custom Query Icon Styles */
.custom-query-icon-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex-shrink: 0;
}

.info-item i {
    font-size: 2.2rem;
    color: var(--primary);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Custom Product Icon Styles */
.custom-product-icon-img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .custom-product-icon-img {
    transform: scale(1.15) rotate(5deg);
}

/* ==========================================
   Portfolio Section Styles
   ========================================== */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.tab-filter {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-muted);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.tab-filter:hover {
    transform: translateY(-2px);
    border-color: rgba(43, 112, 240, 0.3);
    color: var(--primary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.tab-filter.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(43, 112, 240, 0.35);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    opacity: 1;
    transition: opacity 0.35s ease;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 65%; /* Taller aspect ratio like reference */
    background: #e2e8f0;
    margin: 12px 12px 0 12px; /* Inner padding around image */
    border-radius: 16px; /* Rounded image corners */
}

.portfolio-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    filter: grayscale(40%) contrast(1.05); /* Desaturated look like reference */
}

.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1) contrast(1); /* Full color on hover */
}

/* Web Development Scroll Mockup on Hover */
.portfolio-card[data-category="web-dev"] .portfolio-img-wrapper {
    height: 350px;
    padding-top: 0;
}
.portfolio-card[data-category="web-dev"] .portfolio-img-wrapper img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    object-fit: fill;
    transform: translateY(0);
    transition: transform 4.5s ease-in-out, filter 0.5s ease;
    filter: grayscale(40%) contrast(1.05);
}
.portfolio-card[data-category="web-dev"]:hover .portfolio-img-wrapper img {
    transform: translateY(calc(-100% + 350px));
    filter: grayscale(0%) brightness(1) contrast(1);
}

.portfolio-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: #475569;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.portfolio-info {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Title + Category badge on same row */
.portfolio-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.portfolio-cat-badge {
    background: #ab492d; /* Slightly darker burnt orange to satisfy WCAG AA contrast */
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tag pills row */
.portfolio-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.portfolio-pill {
    background: #f1f5f9;
    color: #475569; /* Darker slate for WCAG AA compliance on light background */
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    letter-spacing: 0.3px;
}

/* Full-width CTA button */
.portfolio-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #c0583a, #d4724a);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    letter-spacing: 0.3px;
    margin-top: auto;
}

.portfolio-cta-btn:hover {
    background: linear-gradient(135deg, #a94a30, #c0583a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 88, 58, 0.35);
    color: #fff;
}

.portfolio-cta-btn i {
    font-size: 1.15rem;
}

.portfolio-cta-btn.btn-outline {
    background: transparent;
    border: 2px solid #b0522a; /* Darker burnt orange for WCAG AA compliance */
    color: #b0522a;
    box-shadow: none;
}
.portfolio-cta-btn.btn-outline:hover {
    background: linear-gradient(135deg, #c0583a, #d4724a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 114, 74, 0.2);
}

/* Dynamic filter animation helper */
.portfolio-card.fade-out {
    opacity: 0;
    transform: scale(0.9);
}

.portfolio-card.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================
   Our Team Section Styles
   ========================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 30px;
    overflow: visible; /* Allow phone side buttons to show */
}

.team-card {
    background: #0a0b12; /* Dark bezel chassis color */
    border: 8px solid #0a0b12; /* Phone Bezel */
    border-radius: 36px; /* Phone Rounded Corners */
    height: 445px; /* Phone Aspect Height */
    overflow: visible; /* Required to let side buttons hang out */
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

/* Smartphone Top Camera Notch */
.team-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 16px;
    background: #0a0b12;
    border-radius: 0 0 12px 12px;
    z-index: 10;
    transition: all 0.4s ease;
}

/* Smartphone Side Chassis Buttons (Power & Volume Rockers) */
.team-card::after {
    content: '';
    position: absolute;
    right: -13px; /* Hang 5px out (border is 8px) */
    top: 75px;
    width: 5px;
    height: 110px;
    /* Draw lock button (25px) and volume rocker (50px) */
    background: linear-gradient(to bottom,
        #0a0b12 0px, #0a0b12 25px,
        transparent 25px, transparent 45px,
        #0a0b12 45px, #0a0b12 95px,
        transparent 95px
    );
    border-radius: 0 4px 4px 0;
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Phone Screen Container */
.team-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 28px; /* Fits nicely inside the 36px bezel */
    background: #000;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    display: block;
}

.team-card:hover .team-img-box img {
    transform: scale(1.06);
    filter: brightness(0.5);
}

/* Slide-Up Phone Screen Details Drawer */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 20px 24px; /* Extra top padding to clear camera notch */
    background: rgba(8, 9, 16, 0.96); /* solid dark — no blur artifact */
    border-radius: 28px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 4;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

/* Details inside Drawer */
.team-overlay .overlay-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-align: left;
}

.team-overlay .overlay-designation {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    text-align: left;
}

.team-overlay .team-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 18px;
    text-align: left;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-overlay .team-desc {
    opacity: 1;
    transform: translateY(0);
}

.team-overlay .team-socials {
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-overlay .team-socials {
    opacity: 1;
    transform: translateY(0);
}

.team-overlay .team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15); /* solid, no blur */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.team-overlay .team-socials a:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: transparent;
    color: #fff;
}

/* LinkedIn Hover */
.team-overlay .team-socials a[href*="linkedin"]:hover {
    background: #0077b5;
    box-shadow: 0 4px 14px rgba(0, 119, 181, 0.4);
}

/* Twitter/X Hover */
.team-overlay .team-socials a[href*="twitter"]:hover,
.team-overlay .team-socials a[href*="x.com"]:hover {
    background: #1da1f2;
    box-shadow: 0 4px 14px rgba(29, 161, 242, 0.4);
}

/* Instagram Hover */
.team-overlay .team-socials a[href*="instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 4px 14px rgba(214, 36, 159, 0.4);
}

/* Lockscreen-Style Info Bar (Visible by default) */
.team-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 18px;
    background: transparent; /* Removed dark hazy gradient to keep background photo 100% clean and sharp */
    border-radius: 0 0 28px 28px;
    z-index: 3;
    text-align: left;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.team-card:hover .team-info-bar {
    opacity: 0;
    transform: translateY(10px);
}

.team-info-bar h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95), 0 1px 2px rgba(0, 0, 0, 0.9); /* High contrast shadow for legibility */
}

.team-info-bar .team-designation {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3b82f6; /* रांची Brand Blue */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 1px 2px rgba(0, 0, 0, 0.9); /* High contrast shadow for legibility */
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 24px;
    }

    .team-card {
        height: 480px; /* Slightly shorter height for balanced display */
    }

    .team-grid.team-track-marquee .team-card {
        width: 240px !important; /* Proportional width */
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 290px; /* Centered layout bounds */
        margin: 0 auto;
        gap: 28px;
    }

    .team-card {
        height: 500px; /* Sweet-spot height: not too long, not too stubby */
    }

    .team-grid.team-track-marquee .team-card {
        width: 250px !important; /* Proportional width on mobile */
    }
}


/* ==========================================
   Founder Says Section Styles
   ========================================== */
.founder-section {
    background: #0a0b12; /* Premium Dark Background to contrast with card */
    color: #fff;
    padding: 90px 0;
    overflow: hidden;
}

.founder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
}

.founder-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: #fff;
}

.founder-title .text-highlight {
    color: #dc2626; /* Yellow Accent to match Estrella screenshot style */
    position: relative;
    display: inline-block;
}

.founder-subtitle {
    font-size: 1.05rem;
    color: #94a3b8;
}

.btn-round-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    text-decoration: none;
    flex-shrink: 0;
}

.btn-round-arrow i {
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.btn-round-arrow:hover {
    background: #dc2626;
    color: #0f172a;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 30px rgba(250, 204, 21, 0.25);
}

.btn-round-arrow:hover i {
    transform: rotate(90deg);
}

/* Founder Card */
.founder-card {
    background: linear-gradient(#12141c, #12141c) padding-box,
                linear-gradient(135deg, #ff2e2e, rgba(255, 46, 46, 0.05) 45%, transparent 80%) border-box;
    border: 1px solid transparent;
    color: #ffffff;
    border-radius: 50px 0px 0px 50px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
    position: relative;
    margin-top: 50px;
    box-shadow: -10px -10px 30px rgba(255, 46, 46, 0.03), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.founder-card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.founder-meta {
    position: relative;
    display: block;
}

.founder-tagline-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tagline-dash {
    width: 25px;
    height: 2px;
    background-color: #ff2e2e;
    display: inline-block;
}

.founder-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff2e2e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
}

.founder-card-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.2;
}

.founder-card-heading .text-highlight {
    color: #ff2e2e;
}

.founder-heading-line {
    width: 40px;
    height: 3px;
    background-color: #ff2e2e;
    margin-bottom: 10px;
}

.founder-bio-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #94a3b8;
    font-weight: 400;
    white-space: pre-line;
}

.founder-signature-container {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.founder-signature {
    font-family: 'Alex Brush', cursive;
    font-size: 3rem;
    font-weight: 400;
    color: #ff2e2e;
    line-height: 1;
    margin-bottom: 5px;
}

.founder-designation {
    font-size: 0.85rem;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.founder-designation-line {
    width: 30px;
    height: 2px;
    background-color: #ff2e2e;
}

/* Enclosed Image Layout style */
.founder-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.founder-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    max-width: 360px;
    border: 2px solid #ff2e2e;
    border-radius: 20px;
    padding: 0;
    right: auto;
    top: auto;
    background: transparent;
    box-shadow: 0 0 25px rgba(255, 46, 46, 0.2);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.founder-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.founder-card:hover .founder-image-frame {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 46, 46, 0.4);
}

/* ==========================================
   Infinite Scroll Team Marquee
   ========================================== */
.team-slider {
    overflow-x: hidden;
    overflow-y: visible; /* Allow phone side chassis buttons to render */
    width: 100%;
    padding: 30px 0 30px 0; /* Extra vertical padding for phone hover lift */
}

.team-grid.team-track-marquee {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 30px;
    width: max-content !important;
    max-width: none !important; /* Ensure it is never restricted to 320px screen width on mobile */
    animation: teamMarquee 15s linear infinite;
}

.team-grid.team-track-marquee:hover {
    animation-play-state: paused;
}

.team-grid.team-track-marquee .team-card {
    width: 220px;
    flex-shrink: 0;
}

@keyframes teamMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .founder-card {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        margin-top: 20px;
        gap: 30px;
    }
    
    .founder-image-container {
        height: auto;
        margin-top: 20px;
    }
    
    .founder-image-frame {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 320px;
        aspect-ratio: 4 / 5;
        height: auto;
    }
    
    .founder-card-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .founder-title {
        font-size: 1.8rem;
    }
    
    .founder-signature {
        font-size: 2.5rem;
    }

    /* Portfolio Mobile Circular Icon Tabs */
    .portfolio-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }

    .portfolio-tabs .tab-filter {
        padding: 0 !important;
        width: 44px;
        height: 44px;
        justify-content: center;
        border-radius: 50% !important;
        font-size: 1.1rem !important;
        aspect-ratio: 1/1;
    }

    .portfolio-tabs .tab-filter span {
        display: none !important; /* Hide text label on phone */
    }

    /* Responsive mobile overrides for new hero section */
    .hero {
        padding-top: 130px;
        min-height: auto;
        background: #ffffff;
    }
    .hero-title-new {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    .hero-desc-new {
        font-size: 1rem;
    }
    .hero-btns-new {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-btns-new .btn {
        width: 100%;
    }
    .hero-features-new {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        max-width: 280px;
        margin: 10px auto 40px auto;
    }
    .hero-feature-item {
        justify-content: flex-start;
        width: 100%;
    }
    .hero-feature-item:not(:last-child) {
        border-right: none;
    }
    .hero-lead-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 15px;
    }
    .hero-lead-form .input-wrapper {
        width: 100%;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        padding-bottom: 10px;
    }
    margin-bottom: 5px;
}

.founder-designation {
    font-size: 0.85rem;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.founder-designation-line {
    width: 30px;
    height: 2px;
    background-color: #ff2e2e;
}

/* Enclosed Image Layout style */
.founder-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.founder-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    max-width: 360px;
    border: 2px solid #ff2e2e;
    border-radius: 20px;
    padding: 0;
    right: auto;
    top: auto;
    background: transparent;
    box-shadow: 0 0 25px rgba(255, 46, 46, 0.2);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.founder-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.founder-card:hover .founder-image-frame {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 46, 46, 0.4);
}

/* ==========================================
   Infinite Scroll Team Marquee
   ========================================== */
.team-slider {
    overflow-x: hidden;
    overflow-y: visible; /* Allow phone side chassis buttons to render */
    width: 100%;
    padding: 30px 0 30px 0; /* Extra vertical padding for phone hover lift */
}

.team-grid.team-track-marquee {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 30px;
    width: max-content !important;
    max-width: none !important; /* Ensure it is never restricted to 320px screen width on mobile */
    animation: teamMarquee 15s linear infinite;
}

.team-grid.team-track-marquee:hover {
    animation-play-state: paused;
}

.team-grid.team-track-marquee .team-card {
    width: 220px;
    flex-shrink: 0;
}

@keyframes teamMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .founder-card {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        margin-top: 20px;
        gap: 30px;
    }
    
    .founder-image-container {
        height: auto;
        margin-top: 20px;
    }
    
    .founder-image-frame {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 320px;
        aspect-ratio: 4 / 5;
        height: auto;
    }
    
    .founder-card-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .founder-title {
        font-size: 1.8rem;
    }
    
    .founder-signature {
        font-size: 2.5rem;
    }

    /* Portfolio Mobile Circular Icon Tabs */
    .portfolio-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }

    .portfolio-tabs .tab-filter {
        padding: 0 !important;
        width: 44px;
        height: 44px;
        justify-content: center;
        border-radius: 50% !important;
        font-size: 1.1rem !important;
        aspect-ratio: 1/1;
    }

    .portfolio-tabs .tab-filter span {
        display: none !important; /* Hide text label on phone */
    }

    /* Responsive mobile overrides for new hero section */
    .hero {
        padding-top: 130px;
        min-height: auto;
        background: #ffffff;
    }
    .hero-title-new {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    .hero-desc-new {
        font-size: 1rem;
    }
    .hero-btns-new {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-btns-new .btn {
        width: 100%;
    }
    .hero-features-new {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        max-width: 280px;
        margin: 10px auto 40px auto;
    }
    .hero-feature-item {
        justify-content: flex-start;
        width: 100%;
    }
    .hero-feature-item:not(:last-child) {
        border-right: none;
    }
    .hero-lead-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 15px;
    }
    .hero-lead-form .input-wrapper {
        width: 100%;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        padding-bottom: 10px;
    }
    .btn-get-started {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    .hero-arc-container {
        display: none; /* Hide arched line on mobile to keep layout clean */
    }

    /* ===== MOBILE: Simple stacked cards, no grid, no connectors ===== */
    .journey-timeline::before {
        display: none !important; /* Hide vertical timeline line on mobile */
    }

    /* Each step = full width block stacked vertically */
    .journey-step {
        display: block !important;
        margin-bottom: 16px !important;
        position: relative !important;
        width: 100% !important;
    }

    /* Hide circle number badge on mobile */
    .journey-step .step-num {
        display: none !important;
    }

    /* Hide connector lines on mobile */
    .journey-step:nth-child(odd) .step-num::after,
    .journey-step:nth-child(even) .step-num::after {
        display: none !important;
    }

    /* Card = full width, simple flat style */
    .journey-step:nth-child(odd) .step-content,
    .journey-step:nth-child(even) .step-content {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 14px !important;
        width: 100% !important;
        padding: 18px 16px !important;
        margin: 0 !important;
        border-radius: 14px !important;
        background: #fff !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07) !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* Hide accent shapes on mobile */
    .card-accent-circle,
    .card-accent-num,
    .card-accent-icon,
    .journey-step .step-content::before,
    .journey-step .step-content::after {
        display: none !important;
    }

    /* Step icon */
    .step-card-left-icon {
        width: 46px !important;
        height: 46px !important;
        font-size: 1.1rem !important;
        flex-shrink: 0 !important;
        border-radius: 12px !important;
    }

    /* Step text */
    .step-card-text h3 {
        font-size: 1rem !important;
        margin-bottom: 4px !important;
    }

    .step-card-text p {
        font-size: 0.85rem !important;
        margin: 0 !important;
    }
}

/* ===== DESKTOP ONLY: Alternating Grid Layout (min-width: 769px) ===== */
@media (min-width: 769px) {
    /* 3-column alternating grid */
    .journey-step {
        display: grid !important;
        grid-template-columns: 1fr 54px 1fr !important;
        column-gap: 15px !important;
        row-gap: 0 !important;
        align-items: center !important;
        margin-bottom: 30px;
        position: relative;
        width: 100%;
    }
    .journey-step:last-child {
        margin-bottom: 0;
    }

    /* Circle ALWAYS in center column 2 */
    .journey-step .step-num {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important; /* override mobile hide */
    }

    .journey-step:nth-child(odd) .step-content {
        grid-column: 3 !important;
        grid-row: 1 !important;
        padding: 20px 95px 20px 25px !important;
        margin: 0 !important;
        width: 100% !important;
        flex-direction: row !important;
    }
    .journey-step:nth-child(even) .step-content {
        grid-column: 1 !important;
        grid-row: 1 !important;
        flex-direction: row-reverse !important;
        padding: 20px 25px 20px 95px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    /* Connector lines from circle */
    .journey-step:nth-child(odd) .step-num::after {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        left: 100% !important;
        right: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 15px !important;
        height: 2.5px !important;
        background: var(--secondary) !important;
        z-index: 4 !important;
    }
    .journey-step:nth-child(even) .step-num::after {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        right: 100% !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 15px !important;
        height: 2.5px !important;
        background: var(--secondary) !important;
        z-index: 4 !important;
    }

    /* Show accent shapes on desktop */
    .card-accent-circle,
    .card-accent-num,
    .card-accent-icon {
        display: block !important;
    }

    /* Hide card pseudo-elements */
    .journey-step:nth-child(odd) .step-content::before,
    .journey-step:nth-child(odd) .step-content::after,
    .journey-step:nth-child(even) .step-content::before,
    .journey-step:nth-child(even) .step-content::after {
        display: none !important;
    }
}

.step-content {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: visible; /* allow connector dots and horizontal lines to show outside */
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    z-index: 2;
}

.journey-step:hover .step-content {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(244, 63, 94, 0.08);
    border-color: rgba(244, 63, 94, 0.15);
}

.step-card-left-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(244, 63, 94, 0.06); /* very soft pink/red tint */
    color: var(--secondary); /* red icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(244, 63, 94, 0.08);
    z-index: 3;
}

.step-card-text {
    flex-grow: 1;
    text-align: left;
    z-index: 3; /* ensure text is above the background accent */
}
.step-card-text h3 {
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}
.step-card-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Red accent shape on the right (odd steps) */
.journey-step:nth-child(odd) .card-accent-circle {
    position: absolute;
    right: 0 !important;
    left: auto !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 75px !important;
    height: auto !important; /* override inherited height: 140px */
    background: var(--secondary);
    border-radius: 0 15px 15px 0 !important; /* matches card corner radius */
    clip-path: ellipse(110px 250px at 120px 50%); /* fixed dimensions to keep curve shape identical on all card heights */
    z-index: 1;
}
.journey-step:nth-child(odd) .card-accent-icon {
    position: absolute;
    right: 18px;
    bottom: 20px;
    color: #ffffff;
    font-size: 1.4rem;
    z-index: 2;
}
.journey-step:nth-child(odd) .card-accent-num {
    position: absolute;
    right: 15px;
    top: 15px;
    color: rgba(0, 0, 0, 0.15); /* darker red overlay */
    font-size: 1.85rem;
    font-weight: 800;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

/* Red accent shape on the left (even steps) */
.journey-step:nth-child(even) .card-accent-circle {
    position: absolute;
    left: 0 !important;
    right: auto !important; /* CRITICAL: clears inherited right: -35px to prevent stretching */
    top: 0 !important;
    bottom: 0 !important;
    width: 75px !important;
    height: auto !important; /* override inherited height: 140px */
    background: var(--secondary);
    border-radius: 15px 0 0 15px !important; /* matches card corner radius */
    clip-path: ellipse(110px 250px at -45px 50%); /* fixed dimensions to keep curve shape identical on all card heights */
    z-index: 1;
}
.journey-step:nth-child(even) .card-accent-icon {
    position: absolute;
    left: 18px;
    bottom: 20px;
    color: #ffffff;
    font-size: 1.4rem;
    z-index: 2;
}
.journey-step:nth-child(even) .card-accent-num {
    position: absolute;
    left: 15px;
    top: 15px;
    color: rgba(0, 0, 0, 0.15); /* darker red overlay */
    font-size: 1.85rem;
    font-weight: 800;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

/* Ensure step circles are always perfectly centered on the vertical line using native CSS grid placement */
.journey-step .step-num {
    grid-column: 2;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 0 auto !important;
    transform: scale(0.6) !important;
    z-index: 5;
}
.journey-step.step-visible .step-num {
    transform: scale(1) !important;
}
.journey-step .step-num:hover {
    transform: scale(1.12) !important;
}

/* Reduce spacing between journey timeline and portfolio sections */
.growth-engine.section {
    padding-bottom: 25px !important;
}
#portfolio.portfolio.section {
    padding-top: 25px !important;
}

/* Accessibility screen-reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 80px 0;
    background: var(--bg-card);
}
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-main);
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    user-select: none;
}
.faq-question i {
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s ease-in-out;
    padding-bottom: 20px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Mission, Vision, Values section */
.mvv-section {
    padding: 80px 0;
    background: var(--bg-main);
}
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.mvv-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.08);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}
.mvv-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}
.mvv-card h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 700;
}
.mvv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* History Timeline Section */
.history-section {
    padding: 80px 0;
    background: var(--bg-card);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4px;
    width: 2px;
    background: rgba(79, 70, 229, 0.2);
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -30px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--bg-card);
    transition: all 0.3s ease;
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.4);
    background: #dc2626;
}
.timeline-content {
    background: var(--bg-main);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.08);
}
.timeline-date {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}
.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 10px;
}
.timeline-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-darker);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: 14px;
    border: 1px solid rgba(14, 165, 233, 0.08);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.feature-icon {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.feature-card h3 {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 600;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Hero Redesign selectors hidden on desktop */
.hero-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 0 !important;
    }
    .hero-desktop-only {
        display: none !important;
    }
    .hero-mobile-only {
        display: block !important;
    }

    /* custom mobile hero styling */
    .hero-mobile-only {
        padding-top: 20px;
        padding-bottom: 0px !important;
        background: #ffffff;
        width: 100%;
    }
    .mobile-hero-title {
        text-align: center;
        font-size: 2.3rem;
        font-weight: 800;
        line-height: 1.25;
        color: #0f172a;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
        min-height: 110px; /* Prevents height collapse during animation */
        display: block;
    }
    .typing-cursor {
        display: inline-block;
        margin-left: 4px;
        vertical-align: middle;
        animation: blink 0.7s infinite;
        font-weight: 800;
    }
    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }
    .mobile-hero-title .gradient-text {
        color: #dc2626;
        -webkit-text-fill-color: #dc2626;
        font-weight: 800;
    }
    .mobile-hero-subtitle {
        text-align: center;
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .mobile-trust-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    .avatar-group {
        display: flex;
        align-items: center;
    }
    .avatar-group img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        margin-left: -10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }
    .avatar-group img:first-child {
        margin-left: 0;
    }
    .trust-divider {
        color: #cbd5e1;
        font-size: 1.2rem;
        font-weight: 300;
    }
    .trust-info {
        font-size: 0.85rem;
        font-weight: 600;
        color: #475569;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .trust-star {
        color: #eab308;
        font-size: 1rem;
    }
    .trust-highlight {
        color: #f43f5e;
        font-weight: 700;
    }
    .mobile-cta-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 380px;
        margin: 0 auto 40px auto;
    }
    .mobile-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 22px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .mobile-btn-whatsapp {
        background: linear-gradient(135deg, #f43f5e, #e11d48);
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(244, 63, 94, 0.25);
    }
    .mobile-btn-whatsapp i {
        font-size: 1.2rem;
        margin-right: 8px;
    }
    .mobile-btn-services {
        background: #ffffff;
        color: #0f172a;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03);
    }
    .mobile-btn-services i {
        font-size: 1.1rem;
        color: #64748b;
        margin-right: 8px;
    }
    .btn-arrow {
        font-size: 1.1rem;
    }
    
    /* Bottom Trust Badges */
    .mobile-trust-badges {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #ffffff;
        border-radius: 50px;
        padding: 10px 14px;
        border: 1px solid rgba(15, 23, 42, 0.05);
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
        margin-top: 15px;
        margin-bottom: 10px;
        gap: 6px;
    }
    .mobile-trust-badges .trust-badge {
        display: flex;
        align-items: center;
        gap: 5px;
        flex: 1;
        justify-content: center;
    }
    .mobile-trust-badges .badge-icon-wrapper {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #eff6ff;
        color: #2563eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        flex-shrink: 0;
    }
    .mobile-trust-badges .trust-badge span {
        font-size: 0.68rem;
        font-weight: 600;
        color: #475569;
        line-height: 1.1;
    }

    /* Scroll reveal animation styles for mobile */
    .mobile-reveal-hidden {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), 
                    transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        will-change: opacity, transform;
    }
    .mobile-reveal-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home Page Our Blog Section Styles */
.home-blog-section {
    padding: 70px 0;
    background-color: #ffffff; /* White background */
    color: #0f172a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.grid-card-minimal {
    display: flex;
    flex-direction: column;
    text-align: left;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    width: 100%;
    max-width: 320px; /* Limit card width to keep it compact */
    margin: 0 auto; /* Center card inside the grid cell */
}

.card-img-wrapper-minimal {
    width: 100%;
    aspect-ratio: 3/2; /* standard clean horizontal layout */
    border-radius: 16px; /* rounded corners exactly like screenshot */
    overflow: hidden;
    background: #f1f5f9;
}

.card-img-minimal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-card-minimal:hover .card-img-minimal {
    transform: scale(1.03);
}

.card-title-minimal {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em; /* preserves height alignment */
}

.card-title-minimal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.card-title-minimal a:hover {
    color: #dc2626;
}

.card-link-minimal {
    color: #2563eb; /* Blue link color matching screenshot */
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    width: fit-content;
}

.card-link-minimal:hover {
    color: #dc2626; /* Hover red */
}

/* Flat Red CTA Button (No Animation, Solid Hover) */
.btn-simple-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #dc2626;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-simple-red:hover {
    background-color: #b91c1c !important;
    transform: none !important;
    box-shadow: none !important;
    animation: none !important;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .card-title-minimal {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .home-blog-section {
        padding: 50px 0;
    }
}
