/*
        ========================================
        --- 0. GLOBAL STYLES (MATCHING YOUR SITE) ---
        ========================================
        */
        :root {
            --primary-bg: #0d1d3d;
            --highlight-blue: #4387f6;
            --text-light: #e0e0e0;
            --text-white: #ffffff;
            
            --primary-color: #3a86ff;
            --primary-dark: #2978f8;
            --secondary-color: #0056B3;
            --text-dark: #1a202c;
            --text-medium: #2c3e50;
            --bg-light: #f8f9fa;
            --bg-dark: #0d2d52;
            --bg-white: #ffffff;
            --border-color: #e9ecef;
            --font-primary: 'Poppins', sans-serif;
        }
        *, *::before, *::after { box-sizing: border-box; }
        .my-services-wrapper html { scroll-behavior: smooth; }
        .my-services-wrapper body {
            margin: 0;
            font-family: var(--font-primary);
            background-color: var(--bg-white);
            color: var(--text-medium);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .my-services-wrapper img { max-width: 100%; display: block; }
        .my-services-wrapper a { 
            transition: all 0.3s ease; 
            color: var(--primary-color);
            text-decoration: none;
        }
        .my-services-wrapper a:hover {
            text-decoration: underline;
        }
        
        /*
        ========================================
        --- 1. PAGE HERO HEADER ---
        ========================================
        */
        .my-services-wrapper .page-hero-section {
            background-color: var(--bg-dark);
            color: var(--text-white);
            padding: 80px 5%;
            text-align: center;
        }
        .my-services-wrapper .page-hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin: 0 0 15px 0;
        }
        .my-services-wrapper .page-hero-section .highlight {
            color: #82c0ff;
        }
        .my-services-wrapper .page-hero-section p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /*
        ========================================
        --- 2. SERVICES DEEP DIVE SECTION ---
        ========================================
        */
        .my-services-wrapper .services-deep-dive {
            padding: 100px 5%;
        }
        .my-services-wrapper .service-feature-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto 100px auto;
        }
        .my-services-wrapper .service-feature-block:last-child {
            margin-bottom: 0;
        }
        .my-services-wrapper .service-feature-block:nth-child(even) .feature-text-column {
            order: 2;
        }
        .my-services-wrapper .feature-image-column img {
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .my-services-wrapper .feature-text-column h3 {
            font-size: 2.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0 0 20px 0;
        }
        .my-services-wrapper .feature-text-column p {
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1rem;
        }
        .my-services-wrapper .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .my-services-wrapper .feature-list li {
            position: relative;
            padding-left: 30px;
            font-size: 1rem;
        }
        .my-services-wrapper .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary-color);
            font-weight: 800;
            font-size: 1.2rem;
        }

        /*
        ========================================
        --- 3. OUR PROCESS SECTION ---
        ========================================
        */
        .my-services-wrapper .process-section {
            background-color: var(--bg-light);
            padding: 100px 5%;
        }
        .my-services-wrapper .section-intro {
            max-width: 800px;
            margin: 0 auto 60px auto;
            text-align: center;
        }
        .my-services-wrapper .section-intro h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        .my-services-wrapper .section-intro .highlight {
            color: var(--primary-color);
        }
        .my-services-wrapper .section-intro p {
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .my-services-wrapper .section-decorator {
            height: 4px;
            width: 120px;
            margin: 0 auto 25px auto;
            background-image: radial-gradient(circle at center, var(--primary-color) 45%, transparent 50%);
            background-size: 15px 4px;
            background-repeat: repeat-x;
        }
        .my-services-wrapper .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-services-wrapper .process-step-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 35px;
            position: relative;
            overflow: hidden;
            text-align: left;
        }
        .my-services-wrapper .process-step-card .step-number {
            position: absolute;
            top: -20px;
            right: 20px;
            font-size: 120px;
            font-weight: 800;
            line-height: 1;
            color: rgba(0, 0, 0, 0.04);
            z-index: 1;
        }
        .my-services-wrapper .process-step-card h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin: 0 0 15px 0;
            position: relative;
            z-index: 2;
        }
        .my-services-wrapper .process-step-card p {
            margin: 0;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        /*
        ========================================
        --- 4. CTA SECTION ---
        ========================================
        */
        .my-services-wrapper .cta-section { 
            background-color: #004461; 
            color: var(--bg-white); 
            overflow: hidden; 
            padding: 80px 5%; 
            text-align: center;
        }
        .my-services-wrapper .cta-container { 
            max-width: 800px;
            margin: 0 auto;
        }
        .my-services-wrapper .cta-container h2 { 
            font-size: 2.8rem; 
            font-weight: 700; 
            line-height: 1.2; 
            margin: 0 0 35px 0; 
            color: white; 
        }
        .my-services-wrapper .cta-container h2 .highlight { 
            color: #82c0ff; 
        }
        .my-services-wrapper .cta-button { 
            display: inline-block; 
            background-color: var(--primary-color); 
            color: var(--bg-white); 
            padding: 16px 45px; 
            border-radius: 50px; 
            text-decoration: none; 
            font-weight: 600; 
            font-size: 1rem; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            box-shadow: 0 8px 20px rgba(58, 134, 255, 0.3);
            transition: all 0.3s ease;
        }
        .my-services-wrapper .cta-button:hover { 
            transform: translateY(-5px); 
            box-shadow: 0 12px 25px rgba(58, 134, 255, 0.4); 
            background-color: var(--primary-dark); 
        }
        
        /*
        ========================================
        --- 5. RESPONSIVE STYLES ---
        ========================================
        */
        @media (max-width: 992px) {
            .my-services-wrapper .page-hero-section h1 { font-size: 2.5rem; }
            .my-services-wrapper .service-feature-block {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .my-services-wrapper .service-feature-block:nth-child(even) .feature-text-column {
                order: 0; /* Stack them in natural order on mobile */
            }
            .my-services-wrapper .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .my-services-wrapper .feature-list {
                grid-template-columns: 1fr;
            }
            .my-services-wrapper .process-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /*Title section*/
          .page-title-section {
    /* Sets the background color to a dark blue, matching your image. */
    background-color: #0A1F44; 
    
    /* Makes the section span the full width of the screen. */
    width: 100%;
    
    /* Sets a fixed height for the section as you requested. */
    height: 200px;
    
    /* Centers the content both horizontally and vertically. */
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title-content {
    /* Centers the title and underline div within the section. */
    text-align: center;
}

.page-title-text {
    /* Sets the font color for the title to a bright blue. */
    color: #4b89ff;
    font-size: 45px;
    
    
    /* Removes any default margin to ensure it's positioned correctly. */
    margin-top: 0;
    margin-bottom: 0;
    
    /* Adds some letter-spacing to match the look in the image. */
    letter-spacing: 5px;
}

.page-title-underline {
    /* Styles the container for the dots and line. */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.dot {
    /* Styles the small dot elements. */
    height: 5px;
    width: 5px;
    background-color: #4b89ff;
    border-radius: 50%; /* Makes the dots circular. */
    margin: 0 2px; /* Adds space between the dots. */
}

.line {
    /* Styles the horizontal line. */
    height: 3px;
    width: 40px;
    background-color: #4b89ff;
    margin-left: 5px; /* Adds a bit of space between the dots and the line. */
}
