/* =========================================
   Global Reset & Typography
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   Section 1: Hero Section
   ========================================= */
.service-page-hero {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
}

.service-page-hero::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: '';
}

.service-page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.service-page-hero p {
    font-size: 20px;
    margin: 0;
    opacity: 0.95;
}

/* =========================================
   Section 2: Service Intro Section
   ========================================= */
.service-intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    color:  #000 ;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.service-intro-section p {
    font-size: 16px;
    color:  #000 ;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
   Section 3: Process Section
   ========================================= */
.process-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.process-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-section h2 {
    font-size: 36px;
    font-weight: 700;
    color:  #000 ;
    margin: 0 0 15px 0;
    text-align: center;
}

.process-section > .container > p {
    font-size: 17px;
    color:  #000 ;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.process-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-section ul li {
    position: relative;
    border-radius: 12px;
    padding: 35px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-section ul li:hover {
    transform: translateY(-5px);
}

/* Left 2 & Right 4 Cards Background */
.process-section ul li:nth-child(1),
.process-section ul li:nth-child(3),
.process-section ul li:nth-child(4),
.process-section ul li:nth-child(6) {
    background: #EDEFFF;
}

/* Mid 2 Cards Background */
.process-section ul li:nth-child(2),
.process-section ul li:nth-child(5) {
    background: #2B3990;
}

/* Number Circle Styling */
.process-section ul li span {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #2B3990;
    border-radius: 50%;
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
        left: 120px;
        top:-50px;
}

/* Mid Cards Number Circle (Yellow) */
.process-section ul li:nth-child(2) span,
.process-section ul li:nth-child(5) span {
    
    border: 2px solid #FFD416;
    color:  #ffffff ;
}

/* Card Headings */
.process-section ul li h3 {
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-align: center;
}

.process-section ul li:nth-child(2) h3,
.process-section ul li:nth-child(5) h3 {
    color: #ffffff;
}

/* Card Paragraphs */
.process-section ul li p {
    position: relative;
    z-index: 2;
    font-size: 15px;
    color:  #000 ;
    line-height: 1.7;
    margin: 0;
}

.process-section ul li p{
    text-align: center;
}

.process-section ul li:nth-child(2) p,
.process-section ul li:nth-child(5) p {
    color: rgba(255, 255, 255, 0.9);
}

/* Watermark text - Left & Right cards */
.process-section ul li:nth-child(1)::before,
.process-section ul li:nth-child(3)::before,
.process-section ul li:nth-child(4)::before,
.process-section ul li:nth-child(6)::before {
    content: '2';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(43, 57, 144, 0.06);
    z-index: 1;
    pointer-events: none;
}

/* Watermark text - Mid cards */
.process-section ul li:nth-child(2)::before,
.process-section ul li:nth-child(5)::before {
    content: '2';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 212, 22, 0.1);
    z-index: 1;
    pointer-events: none;
}

/* =========================================
   Section 4: Content Section
   ========================================= */
.content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color:  #000 ;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.content-section p {
    font-size: 16px;
    color:  #000 ;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

/* =========================================
   Section 5: Benefits with Image Section
   ========================================= */
.benefits-with-image-section {
    padding: 80px 10px;
    background-color: #ffffff;
}

.benefits-with-image-section .container {
    max-width: 1200px;
    margin: -25px auto;
    padding: 0 20px;
}

/* Heading & Description - Stay on Left */
.benefits-with-image-section h2 {
    font-size: 36px;
    font-weight: 700;
    color:  #000 ;
    margin: 0 0 15px 0;
    text-align: left;
    max-width: 60%; /* Prevent from going too far right */
}

.benefits-with-image-section > .container > p {
    font-size: 16px;
    color:  #000 ;
    line-height: 1.8;
    margin: 0 0 40px 0;
    text-align: left;
    max-width: 60%; /* Prevent from going too far right */
}

/* Two Column Layout */
.benefits-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Content */
.benefits-content {
    flex: 1;
    max-width: 50%; /* Keep content on left side */
}

.benefits-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-content ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

/* Yellow Pill-Shaped Icon */
.benefit-icon {
    width: 55px;
    height: 45px;
    min-width: 55px;
    background: #FFD416;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke:  #000 ;
    stroke-width: 2;
    fill: none;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 18px;
    font-weight: 700;
    color:  #000 ;
    margin: 0 0 6px 0;
}

.benefit-text p {
    font-size: 15px;
    color:  #000 ;
    line-height: 1.6;
    margin: 0;
}

/* Right Image */
.benefits-image {
    flex: 0 0 420px;
    position: relative;
}

/* Blue Square Behind Image - Offset Top Right */
.image-bg-square {
    position: absolute;
    top: -160px;
    right: -20px;
    width: 60%;
    height: 80%;
    background: #2B3990;
    border-radius: 12px;
    z-index: 1;
}

.benefits-image img {
    position: relative;
    z-index: 2;
    width: 80%;
    height: 70%;
    display: block;
    border-radius: 12px;
    border: 3px solid #FFD416;
    left:70px;
    top:-100px
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-with-image-section h2,
    .benefits-with-image-section > .container > p {
        max-width: 100%;
    }
    
    .benefits-layout {
        flex-direction: column;
    }
    
    .benefits-content {
        max-width: 100%;
    }
    
    .benefits-image {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .benefits-with-image-section h2 {
        font-size: 28px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 40px;
        min-width: 45px;
    }
    
    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .image-bg-square {
        top: -15px;
        right: -15px;
    }
    
    .benefits-image img {
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .benefits-content ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
/* =========================================
   Section 6: FAQ Section
   ========================================= */
.faq-section .container {
    max-width: 1200px;
    margin: -60px auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    color:  #000 ;
    margin: 0 0 50px 0;
    text-align: left;
}


.faq-layout {
    max-width: 750px;  
    margin-left: 0; 
    margin-right: auto;   
}

.faq-layout ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;  /* Ab 100% of 700px */
}

/* Baaki sab same rahega... */
.faq-layout ul li {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #EDEFFF;
    transition: background 0.3s ease;
}

.faq-layout ul li.active {
    background: #FFD416;
}

.faq-layout ul li button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-number {
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
    /* min-width: 30px; */
}

.faq-question {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-answer {
    display: none;
    background: transparent;
    padding: 0 25px 20px 70px;
}

.faq-layout ul li.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
}
/* =========================================
   Responsive Design (All Sections)
   ========================================= */
@media (max-width: 992px) {
    .process-section ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-layout {
        flex-direction: column;
    }
    
    .benefits-image {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .service-page-hero {
        padding: 100px 0 60px;
    }
    
    .service-page-hero h1 {
        font-size: 32px;
    }
    
    .service-page-hero p {
        font-size: 16px;
    }
    
    .service-intro-section,
    .process-section,
    .content-section,
    .benefits-with-image-section,
    .faq-section {
        padding: 43px 0;
    }
    
    .service-intro-section h2,
    .process-section h2,
    .benefits-with-image-section h2,
    .faq-section h2 {
        font-size: 28px;
    }
    
    .content-section h2 {
        font-size: 26px;
    }
    
    .process-section ul {
        grid-template-columns: 1fr;
    }
    
    .process-section ul li::before {
        font-size: 80px;
    }
    
    .benefits-layout ul li {
        flex-direction: column;
        gap: 10px;
    }
    
    .benefits-image {
        padding: 15px 0 0 15px;
    }
    
    .benefits-image img {
        border-width: 2px;
    }
    
    .faq-layout ul li button {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 20px 15px 45px;
    }
}

@media (max-width: 480px) {
    .service-page-hero h1 {
        font-size: 26px;
    }
    
    .service-intro-section h2,
    .process-section h2,
    .content-section h2,
    .benefits-with-image-section h2,
    .faq-section h2 {
        font-size: 24px;
    }
    
    .process-section ul li {
        padding: 50px 20px;
    }
    
    .process-section ul li span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}