/* ==========================================================================
   CRM SERVICE PAGE - ALL DEVICE RESPONSIVE LAYOUT
   ========================================================================== */

/* 1. Reset & Global Layout Settings */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* 2. Hero Section & Contact Form Wrapper */
.svhro-capabilities-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.svhro-hero-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.svhro-hero-content {
    flex: 1;
    min-width: 300px;
}

    .svhro-hero-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #111827;
    }

    .svhro-hero-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #4b5563;
    }

/* Contact Form Styling */
.svhro-contact-form-container {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.svhro-form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.svhro-form-input, .svhro-form-select, .svhro-form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
}

.svhro-submit-button {
    width: 100%;
    padding: 14px;
    background-color: #188bf6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}


/* 3. Capabilities Images Grid */
.svhro-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.svhro-capability-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

    .svhro-capability-card img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }


/* 4. Second Section: Technical Grid */
.svsnd-tech-section {
    padding: 60px 20px;
}

.svsnd-tech-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.svsnd-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Column layout for large screen grids */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.svsnd-tech-card {
    display: flex;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    gap: 20px;
}

.svsnd-tech-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.svsnd-tech-tag {
/*    background: #eff6ff;
    color: #1d4ed8;*/
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}


/* 5. Third Section: Trust Cards */
.svtrd-main-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.svtrd-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.svtrd-trust-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
}


/* 6. Fourth Section: FAQ System */
.svfaq-main-section {
    background: #f9fafb;
    padding: 60px 20px;
}

.svfaq-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.svfaq-accordion-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.svfaq-accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}


/* 7. Fifth Section: CTA Banner */
.svcta-main-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.svcta-cta-banner-container {
    background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    gap: 30px;
}

.svcta-cta-visual {
    display: flex;
    align-items: center;
    gap: 24px;
}

.svcta-cta-image {
    max-width: 120px;
    border-radius: 50%;
}

.svcta-cta-button {
    background: #fff;
    color: #1e3a8a;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s ease;
}

    .svcta-cta-button:hover {
        transform: scale(1.05);
    }


/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLING FOR ALL SCREEN SIZES)
   ========================================================================== */

/* --- TABLET DESIGNS & SMALL LAPTOPS (Max-Width: 1024px) --- */
@media screen and (max-width: 1024px) {
    .svhro-hero-section {
        flex-direction: column; /* Content aur form vertical stack ho jayenge */
        align-items: center;
    }

    .svhro-hero-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .svhro-contact-form-container {
        max-width: 100%; /* Form fully horizontal space lega tablet par */
    }

    .svcta-cta-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .svcta-cta-visual {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- LARGE MOBILE & SMALL TABLETS (Max-Width: 768px) --- */
@media screen and (max-width: 768px) {
    .svhro-hero-content h2 {
        font-size: 2rem;
    }

    /* Grid columns single block items ban jayenge */
    .svhro-capabilities-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }

    .svsnd-tech-grid {
        grid-template-columns: 1fr; /* Cards stacked vertically */
    }

    .svtrd-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* Footer links in 2 grids */
        gap: 30px;
    }
}

/* --- SMALL MOBILES (Max-Width: 480px) --- */
@media screen and (max-width: 480px) {
    .svhro-capabilities-page {
        padding: 20px 15px;
    }

    .svhro-hero-content h2 {
        font-size: 1.6rem;
    }

    .svhro-capabilities-grid {
        grid-template-columns: 1fr; /* Saare layout 1 column automatic fit card */
    }

    .svsnd-tech-card, .svtrd-trust-card {
        flex-direction: column; /* Icons top par aa jayenge text ke */
        align-items: flex-start;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Footer column blocks single layout stand layout */
    }

    .svcta-cta-image {
        display: none; /* Mobile par clean text visibility ke liye extra visual image hide ho jayegi */
    }

    .svfaq-accordion-trigger {
        font-size: 0.95rem;
        padding: 15px;
    }
}
