        :root {
            --primary: #003a70;
            --primary-2: #35b6b4;
            --light-gray: #eff7ff;
            --text-gray: #64748B;
            --accent: #FF6B6B;
        }

        /* Hero Override for Service Page (From Code 1) */
        .service-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
            padding: 5rem 2rem;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .service-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url(images/about1.jpg) center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .service-hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px !important;
            margin: 0 auto;
        }

        .service-hero-content h1{
            color: #fff !important;
        }

        .hero-desc {
            font-size: 1.2rem; 
            margin-top: 15px; 
            color: rgba(255,255,255,0.9);
        }

        .hero-badge-left {
            right: auto !important; 
            left: -1.5rem;
        }

        /* Section Styling */

        .about{
            background-color: #fff !important;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #FF6B6B;
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* Why Choose Us Grid */

        .features{
            background-color: #dfefff !important;
        }

        .features-grid-custom {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-bottom: 4px solid transparent;
            text-align: center;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            border-bottom: 4px solid var(--primary-2);
        }

        .feature-box i {
            font-size: 2.5rem;
            color: var(--primary-2);
            margin-bottom: 15px;
        }

        .feature-box h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        /* Benefits Section */
        .benefits-section {
            background-color: #fff;
            margin-bottom: -70px;
        }
        .benefits-section-1{
            background-color: var(--light-gray);
        }

        .benefits-container {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .benefits-content {
            flex: 1;
            min-width: 300px;
        }

        .benefits-image {
            flex: 1;
            min-width: 300px;
        }
        
        .benefits-image img {
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .check-list {
            list-style: none;
            margin-top: 20px;
        }

        .check-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.05rem;
            color: var(--dark);
        }

        .check-list li i {
            color: #00C9A7;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* Dark Mode Section (Candidate) - CSS Refactored */
        .dark-section {
            background: var(--primary);
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
            margin: 4rem 0;
        }
        
        .dark-section::after {
            content: '';
            position: absolute;
            top: -50%; right: -10%;
            width: 500px; height: 500px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .candidate-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .candidate-title {
            color: white;
            margin-bottom: 1.5rem;
        }

        .candidate-desc {
            color: rgba(255,255,255,0.8);
            margin-bottom: 2rem;
        }

        .candidate-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            color: white;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 0.5rem;
        }

        .candidate-list li i {
            color: var(--primary-2);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .candidate-card-wrapper {
            text-align: center;
        }

        .candidate-card {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .candidate-icon {
            font-size: 3rem;
            color: var(--primary-2);
            margin-bottom: 1rem;
        }

        .candidate-card-title {
            color: white;
            margin-bottom: 10px;
        }

        .candidate-card-text {
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
        }

        .btn-white {
            background: white !important;
            color: var(--primary) !important;
            border: none;
        }

        .btn-white:hover{
            background-color: transparent !important;
            color: #fff !important;
            border: 1px solid #fff !important;
        }

        /* Timeline Process (Procedure) - CSS Refactored */
        .procedure-section {
            padding: 0 0 5rem 0;
            background: #fff;
        }

        .process-wrapper {
            position: relative;
            margin-top: 4rem;
        }

        .process-wrapper::before {
            content: '';
            position: absolute;
            top: 40px; left: 0; right: 0;
            height: 2px;
            background: #e2e8f0;
            z-index: 0;
            width: 80%;
            margin: 0 auto;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .p-step {
            width: 18%;
            text-align: center;
            background: white;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: white;
            border: 2px solid var(--primary-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: var(--primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: 0.3s;
            position: relative;
        }
        
        .step-icon::after {
            content: attr(data-step);
            position: absolute;
            top: -5px; right: -5px;
            width: 25px; height: 25px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            font-size: 0.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .p-step h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .step-desc {
            font-size: 0.9rem;
        }

        .p-step:hover .step-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        /* Solutions */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .solution-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .solution-item:hover {
            background: var(--primary);
            color: white;
        }

        .solution-item:hover h4, .solution-item:hover i {
            color: white;
        }

        .solution-item:hover p{
            color: #cccccc;
        }

        .solution-item i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* FAQ Accordion */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            background: white;
        }

        .faq-question {
            padding: 20px;
            background: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f8f9fa;
        }

        .faq-question.active {
            background-color: var(--light-gray);
            color: var(--primary-2);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background-color: #fff;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .faq-answer.open {
            padding: 20px;
            border-top: 1px solid #eee;
        }

        .toggle-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active .toggle-icon {
            transform: rotate(180deg);
        }

        /* CTA Specifics */
        .cta-buttons-wrapper {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-transparent {
            background: transparent;
            color: white;
            border: 1px solid white;
        }

        .cta-location-text {
            margin-top: 20px;
            font-size: 0.9rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .candidate-grid {
                grid-template-columns: 1fr;
            }
            .process-wrapper::before {
                display: none;
            }
            .process-steps {
                flex-direction: column;
                gap: 2rem;
            }
            .p-step {
                width: 100%;
                display: flex;
                align-items: center;
                gap: 20px;
                text-align: left;
            }
            .step-icon {
                margin: 0;
                flex-shrink: 0;
            }
        }
        @media (max-width: 768px) {
            .benefits-container {
                flex-direction: column;
            }
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            .section-title h2 {
                font-size: 2rem;
            }
            .benefits-image img{
                height: 350px;
                max-width: 100%;
            }
        }









        /* --- New Contact Form Styles inside Dark Section --- */

.form-card-style {
    padding: 30px;
    text-align: left; 
    transition: all .3s ease;
}

.form-card-style:hover{
    background: rgba(255, 255, 255, 0.127);
    /* border: 1px solid #ffffff2d; */
    transform: translateY(-5px);
}

.form-row-custom {
    display: flex;
    gap: 20px; 
    margin-bottom: 15px;
}

.form-group {
    flex: 1; 
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form-group label {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.form-control::placeholder {
    color: #ffffff99;
}

.form-control option {
    background-color: white;
    color: #333;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}


.submit-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    transform: translateY(-2px);
    color: #fff;
}

/* Mobile Responsiveness for Form */
@media (max-width: 768px) {
    .form-row-custom {
        flex-direction: column; 
        gap: 15px;
    }
    
    .candidate-grid {
        gap: 3rem;
    }
}