
:root {
    --main-color: #ff4d00;
    --dark-color: #000;
    --light-color: #fff;
    --bg-color: #f8f9fa;
    --gray-color: #666;
    --heading-color: #333;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-in-out;
    }
        .top-bar {
            background-color: var(--main-color);
            text-align: center;
            padding: 10px;
            color: var(--light-color);
        }

        .bg-dark{
            background: var(--dark-color)!important;
        }
        .hero-section {
            background: linear-gradient(160deg, #e12e0e80, rgba(0, 0, 0, 0.5)), url(images/bg.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 60px 0;
            color: var(--light-color);
        }
        nav .nav-link {
            color: var(--light-color) !important;
        }
        .navbar-brand{
            position: relative;
        }
   .navbar-brand::after{
       content: "a non-government entity";
       font-size: 11px;
       display: inline-block;
       position: absolute;
       color: #fff;
       left: 30px;
       bottom: -8px;
   }
        .txt-top{
            font-weight: bold;
            text-align: center;
        }
        .hero-h1{
            font-size: 65px;
        }
        .lead-form {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 8px;
        }
        .checkbox{
            color: #000!important;
        }
        .footer {
            background-color: #343a40;
            color: var(--light-color);
            padding: 20px;
        }
        .disclaimer{
            width: 100%;
            height: 70px;
            overflow-x:hidden;
        }
        .btn-group {
            width: 100%;
        }
        .multiselect {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            text-align: left;
            /* border: 1px solid rgba(255, 255, 255, .3) !important; */
            background: var(--light-color) !important;
            /* color: var(--light-color) !important; */
        }
        .multiselect-container {
            height: 300px;
            overflow: hidden scroll;
            width: 100%;
        }
        a{
            color: var(--light-color);
        }

    .about-us-section {
        padding: 90px 0;
        background-color: var(--light-color);
        position: relative;
    }

    .about-title, .section-title, .our-process h2 {
        font-size: 36px;
        font-weight: bold;
        color: var(--heading-color);
        margin-bottom: 15px;
    }

    .about-subtitle, .section-subtitle {
        font-size: 18px;
        color: var(--main-color);
        margin-bottom: 30px;
    }

    .about-description {
        font-size: 16px;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-image {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease;
    }

    .about-image:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    }

    .about-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(0, 123, 255, 0.6), rgba(255, 214, 98, 0.6));
        border-radius: 15px;
        opacity: 0.8;
    }

    .company-established {
        position: absolute;
        bottom: -50px;
        left: 20px;
        background-color: var(--light-color);
        padding: 20px 10px 40px;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .company-established .years-text {
        font-size: 32px;
        font-weight: bold;
        color: var(--main-color);
    }

    .company-established p {
        font-size: 14px;
        color: #555;
        margin: 0;
    }

    .about-features {
        margin-top: 30px;
    }

    .feature-box {
        margin-bottom: 20px;
        padding: 10px 0;
    }

    .feature-icon {
        font-size: 24px;
        color: #ffd662;
        margin-right: 10px;
    }

    .feature-title {
        font-size: 18px;
        font-weight: bold;
        color: var(--heading-color);
        margin-bottom: 5px;
    }

    .feature-description {
        font-size: 14px;
        color: #777;
    }

    .btn-primary {
        background-color: var(--main-color)!important;
        border: none;
        padding: 10px 30px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 0 0 0 !important
    }

    .btn-primary:hover {
        background-color: var(--dark-color)!important;
        box-shadow: 0 5px 15px rgba(0, 91, 172, 0.3);
    }

    button.btn-primary{
        width: 100%;
    }
    .services-section {
        padding: 60px 0;
        background-color: var(--bg-color);
    }

    .service-card {
        background-color: var(--light-color);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        text-align: center;
        position: relative;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        background: var(--bg-color);
        border: 1px solid var(--main-color);
    }

    .service-card .service-icon {
        font-size: 48px;
        color: var(--main-color);
        margin-bottom: 20px;
        transition: all 0.3s ease-in-out;
    }

    .service-card:hover .service-icon {
        color: var(--dark-color);
    }

    .service-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
        color: var(--heading-color);
    }

    .service-description {
        font-size: 16px;
        color: #777;
        line-height: 1.8;
    }

    .cta-bg{
        background: var(--main-color);
        border-radius: 20px;
        padding: 60px 30px;
        
    }
    .cta-section {
        background-color: #f9f9f9;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
    }
    
    .cta-title {
        text-align: left;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--light-color);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .cta-subtitle {
        text-align: left;
        font-size: 22px;
        margin-bottom: 30px;
        color: #fdfdfd;
    }
    .cta-end{

        text-align: right;
    }
    .btn-cta {
        background-color: var(--dark-color);
        color: var(--light-color);
        padding: 15px 40px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
        text-transform: uppercase;
    }

    .btn-cta:hover {
        background-color: var(--light-color);
        color: var(--dark-color);
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .why-choose-us-section {
        position: relative;
        padding: 60px 0;
        overflow: hidden;
        background-color: #f9f9f9;
    }

    /* Benefit List Styling */
    .why-choose-benefits {
        font-size: 16px;
        color: var(--heading-color);
    }

    .why-choose-benefits li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-weight: 500;
    }

    .why-choose-benefits li i {
        font-size: 24px;
        color: var(--main-color);
        margin-right: 10px;
    }



    /* Image Section Styling */
    .why-choose-image-wrapper {
        position: relative;
        display: inline-block;
    }

    .why-choose-image {
        border-radius: 20px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .why-choose-image:hover {
        transform: scale(1.05);
    }

    /* Circle Overlay Effect */
    .circle-overlay {
        position: absolute;
        top: -30px;
        right: -50px;
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.5), rgba(255, 214, 98, 0.5));
        border-radius: 50%;
        z-index: -1;
    }

    /* Text Overlay */
    .circle-text {
        position: absolute;
        bottom: 0;
        right: 0;
        background: var(--main-color);
        color: var(--light-color);
        padding: 10px 20px;
        border-radius: 0 0 20px 20px;
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
    }

    /* Decorative Background Shapes */
    .shape-left, .shape-right {
        position: absolute;
        width: 250px;
        height: 250px;
        background: linear-gradient(45deg, rgba(0, 123, 255, 0.2), rgba(255, 214, 98, 0.2));
        border-radius: 50%;
        z-index: -2;
    }

    .shape-left {
        top: -50px;
        left: -100px;
    }

    .shape-right {
        bottom: -50px;
        right: -100px;
    }


    .process-steps {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .process-card {
        background-color: var(--bg-color);
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        margin-bottom: 20px;
    }
    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        background-color: var(--main-color);
        color: var(--light-color);
    }
    .process-icon {
        background-color: var(--main-color);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 20px;
        transition: all 0.3s ease-in-out;
    }
    .process-icon i {
        font-size: 36px;
        color: var(--light-color);
    }
    .process-card:hover .process-icon i {
        color: var(--main-color);
    }
    .process-card:hover .process-icon {
        background-color: var(--light-color);
        color: #007bff;
    }
    .process-card h4 {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .process-card p {
        font-size: 16px;
        color: var(--gray-color);
    }
    .process-card:hover p {
        color: var(--light-color);
    }

    .wpb_wrapper a{
        color: var(--main-color);
    }
    /* For responsiveness */

    @media (max-width: 768px) {
        .service-card,
        .about-image {
            margin-bottom: 30px;
        }
        .cta-title,
        .section-title,
        .about-title {
            font-size: 32px;
        }
        .cta-subtitle {
            font-size: 18px;
        }
        
        .btn-cta {
            font-size: 16px;
            padding: 12px 30px;
        }
        .service-icon {
            font-size: 36px;
        }
        .feature-box {
            text-align: center;
        }
        .why-choose-image {
            margin-bottom: 30px;
        }
        .shape-left, .shape-right {
            width: 150px;
            height: 150px;
        }
    }