/* --- CSS Variables & Reset --- */
:root {
    --primary-color: #2f135d; /* Aapka pasand karda Dark Forest Green */
    --secondary-color: #a31632; /* Hover aur accents ke liye thora sa bright (lekin professional) green */

    --text-dark: #18221b; /* Pure black ki jagah halka sa green-tinted dark grey (Aankhon ko thandak dega) */
    --text-light: #5f6b66; /* Subtitles aur labels ke liye muted grey */

    --bg-light: #f4f7f5; /* Pure white ki jagah bohat hi halka off-white/greyish green background */
    --white: #ffffff;

    --border-color: #dde5e1; /* Soft borders jo design ke sath mix ho jayenge */

    --transition: all 0.3s ease;

    /* Agar aapke pass dashboard.css mein yeh extra variables bhi hain to inko bhi update kar lein: */
    --bg-body: #f4f7f5;
    --bg-surface: #ffffff;
    --text-main: #18221b;
    --text-muted: #5f6b66;
    --hover-bg: #eaf0ec;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section {
    padding: 80px 0;
}
.bg-light {
    background-color: var(--bg-light);
}
.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: var(--white);
    box-shadow: 0 4px 15px rgba(28, 27, 27, 0.2);
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(66, 2, 51, 0.4);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}
.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* --- Utility Grids --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}
.section-title p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Top Bar --- */
.top-bar {
    background-color: #111;
    color: #ddd;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-social a {
    color: #ddd;
    margin-left: 15px;
    transition: var(--transition);
}
.top-bar-social a:hover {
    color: var(--primary-color);
}

/* --- Header / Navbar --- */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}
.logo span {
    color: var(--primary-color);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links > li > a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--primary-color);
}
.nav-links > li > a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Dropdown */
.dropdown {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}
.dropdown-menu {
    position: absolute;
    top: 150%;
    left: -20px;
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid #f1f1f1;
    padding: 10px 0;
    list-style: none;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
    margin-top: 10px;
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.dropdown-menu li a i {
    font-size: 1.1em;
    color: var(--primary-color);
    opacity: 0.7;
}
.dropdown-menu li a:hover {
    background: #fff5f3;
    color: var(--primary-color);
    padding-left: 25px;
}

/* Header Buttons Size Fix */
.header-actions {
    display: flex;
    gap: 12px;
}
.header-actions .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* --- 1. Hero Section --- */
.hero {
    position: relative;
    padding: 100px 0 120px;
    background: radial-gradient(
        circle at 10% 0%,
        #fff1ee 0%,
        #ffffff 50%,
        #f8f9fc 100%
    );
    overflow: hidden;
}
.hero-bg-blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(228, 58, 21, 0.08) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    border-radius: 50%;
    z-index: 0;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}
.hero-content {
    flex: 1.1;
}
.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(228, 58, 21, 0.08);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(228, 58, 21, 0.15);
}
.hero-content h2 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1.5px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #a31632);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 500px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
}
.hero-image-wrapper {
    flex: 1;
    position: relative;
    perspective: 1000px;
}
.hero-mockup {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s ease;
}
.hero-image-wrapper:hover .hero-mockup {
    transform: rotateY(0deg) rotateX(0deg);
}
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 15px;
    align-items: center;
    animation: float 4s ease-in-out infinite;
    border: 1px solid #f1f1f1;
}
.card-1 {
    bottom: -30px;
    left: -40px;
    animation-delay: 0s;
}
.card-2 {
    top: 40px;
    right: -30px;
    animation-delay: 2s;
}
.floating-card .icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(228, 58, 21, 0.1);
    color: var(--primary-color);
}
.floating-card .whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}
.card-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}
.card-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* --- 2. Client Logos --- */
.client-logos {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    font-size: 2.5rem;
    color: #a0a0b0;
}
.logo-grid i {
    transition: var(--transition);
    cursor: pointer;
}
.logo-grid i:hover {
    color: var(--primary-color);
}

/* --- 3. Why Us (Box Cards) --- */
.box-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}
.box-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}
.box-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.box-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.box-card p {
    color: var(--text-light);
}

/* --- 4. Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}
.feature-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}
.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(228, 58, 21, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
}
.feature-card h3 {
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- 5 & 6. Split Sections (Deep Dives) --- */
.split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.split-section.reverse .split-container {
    flex-direction: row-reverse;
}
.split-content {
    flex: 1;
}
.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}
.split-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.check-list {
    list-style: none;
    margin-bottom: 30px;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 500;
}
.check-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}
.split-image {
    flex: 1;
}
.split-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- 7. How it Works (Steps) --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    text-align: center;
}
.steps-grid::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
    border: 5px solid var(--bg-light);
}
.step h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}
.step p {
    color: var(--text-light);
}

/* --- 8. Testimonials --- */
.review-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
}
.stars {
    color: #ffb800;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.review-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.user-info strong {
    display: block;
    font-size: 1.1rem;
}
.user-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- 9. Pricing Section --- */
.pricing-grid {
    align-items: center;
}
.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.pricing-card.popular {
    background: var(--text-dark);
    color: var(--white);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}
.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}
.pricing-card .price span {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
}
.pricing-card.popular .price span {
    color: #aaa;
}
.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}
.pricing-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card ul li i {
    color: var(--primary-color);
}

/* --- 10. FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--border-color);
}
.faq-item summary {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-content {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
    padding-top: 20px;
}

/* --- 11. CTA Section --- */
.cta-section {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: var(--white);
    padding: 70px 0;
}
.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}
.cta-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}
.cta-btn {
    background: var(--white);
    color: var(--primary-color);
}
.cta-btn:hover {
    background: #f1f1f1;
    transform: scale(1.05);
}

/* --- Footer --- */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 20px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}
.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}
.footer-col h3 span {
    color: var(--primary-color);
}
.footer-col p {
    color: #a0a0b0;
    font-size: 0.95rem;
}
.footer-col h4 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.1rem;
}
.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: #a0a0b0;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}
.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.newsletter-form {
    display: flex;
    margin-top: 20px;
}
.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    width: 100%;
    background: #2a2a3c;
    color: #fff;
}
.newsletter-form button {
    border-radius: 0 6px 6px 0;
    padding: 0 20px;
}
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #707080;
    font-size: 0.9rem;
}

/* --- Media Queries (Mobile Responsive) --- */
@media (max-width: 992px) {
    .hero-container,
    .split-container,
    .split-section.reverse .split-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h2,
    .split-content h2 {
        font-size: 2.8rem;
    }
    .hero-content p,
    .split-content p {
        margin: 0 auto 30px auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .check-list {
        display: inline-block;
        text-align: left;
    }
    .hero-mockup {
        transform: none;
    }
    .floating-card {
        display: none;
    }
    .steps-grid::before {
        display: none;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
        background: #fafafa;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .header-actions {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-content h2,
    .cta-section h2,
    .split-content h2 {
        font-size: 2.2rem;
    }
    .logo-grid {
        gap: 30px;
        font-size: 2rem;
    }
}

/* =========================================================
   ABOUT PAGE SPECIFIC STYLES 
   ========================================================= */

/* --- Page Hero (Inner Pages) --- */
.page-hero {
    padding: 100px 0 60px;
    background: radial-gradient(circle at 50% 0%, #fff1ee 0%, #ffffff 70%);
    border-bottom: 1px solid var(--border-color);
}
.page-hero h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}
.page-hero p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Stats Banner --- */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-box h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}
.stat-box p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

/* --- Team / Leadership Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(228, 58, 21, 0.3);
}
.team-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}
.team-info {
    padding: 30px;
    text-align: center;
}
.team-info h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.team-info .role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.team-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}
.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* --- Media Queries Update --- */
@media (max-width: 768px) {
    .page-hero h2 {
        font-size: 2.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CONTACT PAGE SPECIFIC STYLES 
   ========================================================= */

.contact-section {
    padding: 60px 0 100px;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

/* --- Contact Info (Left Side) --- */
.contact-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.info-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-social h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-social .social-links {
    display: flex;
    gap: 15px;
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-social .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* --- Contact Form (Right Side) --- */
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(228, 58, 21, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Media Queries Update --- */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    .contact-info {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-wrapper {
        padding: 30px 20px;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
}

/* =========================================================
   HOW IT WORKS PAGE SPECIFIC STYLES 
   ========================================================= */

/* --- Step Tags for Zig-Zag Layout --- */
.step-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(228, 58, 21, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(228, 58, 21, 0.2);
}

/* --- Process Steps Adjustments --- */
.process-steps .split-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.process-steps .split-section:last-child {
    border-bottom: none;
}
.process-steps .split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* --- Benefit Cards (Asaniyan Section) Fixes --- */
.benefit-card {
    text-align: left;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white); /* White background for neat look */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
}

.benefit-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(228, 58, 21, 0.2);
    transition: var(--transition);
}

/* Yahan hum global box-card icon styling ko override kar rahy hain */
.box-card.benefit-card .icon-wrapper i {
    color: var(--white); /* Icon ko strictly white kar diya */
    font-size: 1.6rem; /* Size fix kar diya */
    margin-bottom: 0; /* Center align karne ke liye extra margin khatam kar diya */
}

.benefit-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================================
   AUTHENTICATION PAGES STYLES 
   ========================================================= */

.auth-page {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header .logo h1 {
    font-size: 2rem;
    margin-bottom: 25px;
    display: inline-block;
}

.auth-header h2 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.auth-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(228, 58, 21, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.label-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.auth-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(228, 58, 21, 0.1);
}

/* Password Wrapper & Show/Hide Icon */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-password {
    position: absolute;
    right: 15px;
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.toggle-password:hover {
    color: var(--text-dark);
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.btn-full {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    justify-content: center;
    margin-top: 10px;
}

.auth-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.back-link {
    color: var(--text-light) !important;
    font-weight: 500 !important;
}

.back-link i {
    margin-right: 5px;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }
}

/* =========================================================
   INTEGRATIONS & FEATURES PAGE STYLES 
   ========================================================= */

/* --- 4-Column Grid for Integration Logos --- */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.int-card {
    background: var(--white);
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.int-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.int-card i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.int-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.int-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- Developer Code Snippet Box (For Courier Integration Section) --- */
.code-snippet-box {
    background: #1e1e2d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
    width: 100%;
}

.code-header {
    background: #2a2a3c;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #111;
}

.code-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.code-header .red {
    background: #ff5f56;
}
.code-header .yellow {
    background: #ffbd2e;
}
.code-header .green {
    background: #27c93f;
}

.code-header p {
    color: #8b8b99;
    font-size: 0.85rem;
    margin: 0 0 0 15px;
    font-family: monospace;
}

.code-snippet-box pre {
    margin: 0;
    padding: 25px;
    overflow-x: auto;
}

.code-snippet-box code {
    font-family: "Courier New", Courier, monospace;
    font-size: 0.95rem;
    color: #abb2bf;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .int-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .int-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   API DOCUMENTATION PAGE STYLES 
   ========================================================= */

.api-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.api-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Sidebar Navigation */
.api-sidebar {
    width: 280px;
    background: #f8f9fc;
    border-right: 1px solid var(--border-color);
    padding: 40px 20px 40px 40px;
    flex-shrink: 0;
}

.sidebar-sticky {
    position: sticky;
    top: 100px; /* offset for fixed header */
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.api-sidebar h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin: 25px 0 10px 0;
    font-weight: 700;
}

.api-sidebar h3:first-child {
    margin-top: 0;
}

.api-sidebar ul {
    list-style: none;
    padding: 0;
}

.api-sidebar ul li {
    margin-bottom: 8px;
}

.api-sidebar ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 4px 0;
}

.api-sidebar ul li a:hover,
.api-sidebar ul li a.active {
    color: var(--primary-color);
}

/* Main Content Area */
.api-content {
    flex: 1;
    padding: 50px 60px 80px 60px;
    max-width: 900px;
}

.doc-block {
    margin-bottom: 60px;
}

.doc-block h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 800;
}

.doc-block h4 {
    margin: 25px 0 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

.doc-block p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.api-divider {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 50px 0;
}

/* Endpoints Badges */
.endpoint-header {
    display: flex;
    align-items: center;
    background: #f4f5f9;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    font-family: "Fira Code", monospace;
    font-size: 0.9rem;
}

.method {
    padding: 4px 10px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    margin-right: 15px;
}

.method.get {
    background: #27c93f;
}
.method.post {
    background: #0084ff;
}
.method.delete {
    background: #ff5f56;
}
.method.put {
    background: #ffbd2e;
}

.endpoint-header .url {
    color: var(--text-dark);
    font-weight: 500;
}

/* API Tables */
.api-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.api-table th,
.api-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.api-table th {
    background: #f8f9fc;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.api-table td code {
    background: #f4f5f9;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: "Fira Code", monospace;
    color: var(--primary-color);
}

.required {
    font-size: 0.75rem;
    color: #ff5f56;
    background: rgba(255, 95, 86, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
}

/* API Alert Box */
.api-alert {
    background: #fff8e1;
    border-left: 4px solid #ffbd2e;
    padding: 15px 20px;
    color: #856404;
    font-size: 0.95rem;
    border-radius: 4px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Extend existing code-snippet-box font */
.code-snippet-box pre code {
    font-family: "Fira Code", monospace;
}

/* Media Queries for API Docs */
@media (max-width: 992px) {
    .api-container {
        flex-direction: column;
    }
    .api-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
    }
    .sidebar-sticky {
        position: relative;
        top: 0;
        max-height: none;
    }
    .api-content {
        padding: 40px 20px;
    }
}

/* =========================================================
   BLOG PAGES STYLES 
   ========================================================= */

/* --- Blog Card (List Page) --- */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.page-num {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.page-num:hover,
.page-num.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.page-btn {
    background: transparent;
    color: var(--primary-color);
}

/* --- Single Blog Page --- */
.single-blog-header {
    padding: 80px 0 40px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.single-blog-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px auto;
    max-width: 800px;
    letter-spacing: -1px;
}

.author-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.author-meta img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    text-align: left;
}

.author-details strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.author-details span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Blog Content & Sidebar Layout */
.single-blog-content {
    padding: 60px 0 100px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.featured-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 40px;
}

.article-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.article-body h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.article-body blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    background: rgba(228, 58, 21, 0.05);
    margin: 35px 0;
    border-radius: 0 8px 8px 0;
}

.article-body pre {
    background: #1e1e2d;
    padding: 20px;
    border-radius: 8px;
    color: #abb2bf;
    overflow-x: auto;
    font-family: "Courier New", Courier, monospace;
    margin-bottom: 30px;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 25px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 60px;
    border: 1px solid var(--border-color);
}

/* Author Box Image Fix */
.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0; /* Yeh line image ko pichakne (squish hone) se rokay gi */
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.author-info p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Sidebar Styling */
.sidebar-widget {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Search Form */
.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px 0 0 6px;
    outline: none;
}

.search-form button {
    padding: 0 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 12px;
}

.category-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
}

.category-list span {
    color: var(--text-light);
}

/* Recent Posts */
.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.recent-post img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-info h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.recent-info h5 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.recent-info h5 a:hover {
    color: var(--primary-color);
}

.recent-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Media Queries for Blog */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .single-blog-header h1 {
        font-size: 2rem;
    }
}

/* =========================================================
   PRICING PAGE SPECIFIC STYLES (UPDATED FOR 6 PLANS)
   ========================================================= */

/* Billing Toggle Switch */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.toggle-label {
    color: var(--text-light);
    transition: var(--transition);
}
.toggle-label.active {
    color: var(--text-dark);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
input:checked + .slider {
    background-color: var(--primary-color);
}
input:checked + .slider:before {
    transform: translateX(28px);
}

.save-badge {
    background: #10b981;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 5px;
    position: relative;
    top: -2px;
}

/* 6-Card Pricing Grid */
.pricing-page-section {
    padding: 60px 0 80px;
}
.pricing-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    background: #1e1e2d; /* Modern dark grey for SaaS */
    color: var(--white);
    border: none;
    box-shadow: 0 20px 40px rgba(228, 58, 21, 0.2);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.card-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.pricing-card.popular .card-header p {
    color: #a0a0b0;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.pricing-card.popular .price {
    color: var(--white);
}
.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex: 1;
}
.pricing-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pricing-features li i.fa-check {
    color: var(--primary-color);
}
.pricing-features li i.fa-times {
    color: #d1d5db;
}
.pricing-card.popular .pricing-features li i.fa-times {
    color: #444;
}

/* Included Features Grid */
.included-box {
    padding: 20px;
}
.included-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: rgba(228, 58, 21, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
}
.included-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.included-box p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Comparison Table Extensions */
.comparison-section {
    padding: 80px 0;
}
.table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
} /* Wider min-width for 7 columns */
.comparison-table th,
.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.comparison-table th {
    background: #f8f9fc;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    position: sticky;
    top: 0;
}
.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    width: 25%;
}
.table-group-header td {
    background: #f1f3f8;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .pricing-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .pricing-grid-6 {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SERVICES PAGE SPECIFIC STYLES 
   ========================================================= */

/* --- Service Cards --- */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(228, 58, 21, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg); /* 3D flip effect on hover */
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-link i {
    margin-left: 8px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --- Industries We Serve Section --- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.industry-box {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.industry-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.industry-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.industry-content {
    padding: 25px;
}

.industry-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.industry-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SERVICE DETAIL PAGE STYLES 
   ========================================================= */

/* Breadcrumbs Styling */
.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    display: inline-block;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.breadcrumbs a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs i {
    font-size: 0.7rem;
    margin: 0 8px;
    color: #ccc;
}

.breadcrumbs span {
    color: var(--primary-color);
    font-weight: 600;
}
