:root {
    --royal-blue: #0891b2;
    --light-blue: #06b6d4;
    --orange: #f97316;
    --dark-orange: #ea580c;
    --light-gray: #f3f4f6;
    --dark-gray: #374151;
    --text-dark: #1f2937;
}

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto', sans-serif;
        color: var(--dark-gray);
        overflow-x: hidden;
        margin: 0;
            padding: 0;
            width: 100%;
    }
        html {
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
    }

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border-top: 4px solid var(--royal-blue);
    border-right: 4px solid var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Navbar */
.navbar {
    background: var(--text-dark);
    backdrop-filter: blur(8px);
    margin: 0 15px 0 15px;
    border-radius: 15px;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--light-blue) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo {
    height: 60px;
}

.navbar-brand span {
    color: var(--orange);
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--orange) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}


.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
    /* Page Header */
    .page-header {
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.75),
                rgba(0, 0, 0, 0.6)),
            url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600') center/cover;
        padding: 180px 0 100px;
        color: white;
        position: relative;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, var(--royal-blue) 0%, transparent 100%);
        opacity: 0.5;
    }

    .page-header-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .page-header h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-header p {
        font-size: 1.3rem;
        max-width: 700px;
        margin: 0 auto;
    }

    .breadcrumb {
        background: transparent;
        justify-content: center;
        margin-top: 20px;
    }

    .breadcrumb-item {
        color: rgba(255, 255, 255, 0.8);
    }

    .breadcrumb-item.active {
        color: var(--orange);
    }

    .breadcrumb-item a {
        color: white;
        text-decoration: none;
    }

    .breadcrumb-item a:hover {
        color: var(--orange);
    }

    /* Section Styling */
    section {
        padding: 80px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 2.8rem;
        color: var(--royal-blue);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--orange);
        border-radius: 2px;
    }

    .section-title p {
        font-size: 1.1rem;
        color: var(--dark-gray);
        max-width: 700px;
        margin: 20px auto 0;
    }

    /* Services Overview */
    .services-overview {
        background: white;
    }

    .service-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .service-img {
        height: 250px;
        overflow: hidden;
        position: relative;
    }

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-card:hover .service-img img {
        transform: scale(1.1);
    }

    .service-icon-overlay {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .service-icon-overlay i {
        font-size: 2rem;
        color: white;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h3 {
        color: var(--royal-blue);
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .service-content p {
        color: var(--dark-gray);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .service-features li {
        padding: 8px 0;
        padding-left: 30px;
        position: relative;
        color: var(--dark-gray);
    }

    .service-features li::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: var(--orange);
    }

    .btn-custom {
        padding: 12px 30px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-primary-custom {
        background: var(--orange);
        border: none;
        color: white;
    }

    .btn-primary-custom:hover {
        background: var(--dark-orange);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
    }

    /* Detailed Services Section */
    .detailed-services {
        background: var(--light-gray);
    }

    .service-detail {
        background: white;
        border-radius: 15px;
        padding: 50px;
        margin-bottom: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .service-detail-header {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 3px solid var(--light-gray);
    }

    .service-detail-icon {
        width: 90px;
        height: 90px;
        background: var(--orange);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 25px;
        flex-shrink: 0;
    }

    .service-detail-icon i {
        font-size: 3rem;
        color: white;
    }

    .service-detail-title h3 {
        color: var(--royal-blue);
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .service-detail-title p {
        color: var(--orange);
        font-weight: 600;
        margin: 0;
        font-size: 1.1rem;
    }

    .service-detail-content p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .service-detail-content ul {
        list-style: none;
        padding: 0;
    }

    .service-detail-content ul li {
        padding: 12px 0;
        padding-left: 35px;
        position: relative;
        font-size: 1.05rem;
    }

    .service-detail-content ul li::before {
        content: '\f138';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: var(--orange);
        font-size: 1.2rem;
    }

    /* Why Choose Us */
    .why-choose-section {
        background: var(--text-dark);
        color: white;
    }

    .why-choose-section .section-title h2,
    .why-choose-section .section-title p {
        color: white;
    }

    .feature-box {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 40px 30px;
        text-align: center;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        height: 100%;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .feature-box:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-10px);
        border-color: var(--orange);
    }

    .feature-icon {
        width: 90px;
        height: 90px;
        background: var(--orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .feature-icon i {
        font-size: 2.5rem;
        color: white;
    }

    .feature-box h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .feature-box p {
        opacity: 0.95;
        margin: 0;
        line-height: 1.7;
    }

    /* Process Section */
    .process-section {
        background: white;
    }

    .process-step {

        position: relative;
        padding: 30px;
        text-align: center;
    }

    .process-number {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 2rem;
        font-weight: 700;
        color: white;
        box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
        position: relative;
        z-index: 2;
    }

    .process-step::before {
        content: '';
        position: absolute;
        top: 70px;
        left: 50%;
        width: 100%;
        height: 3px;
        background: var(--text-dark);
        z-index: 1;
    }

    .process-step:last-child::before {
        display: none;
    }

    .process-step h4 {
        color: var(--royal-blue);
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .process-step p {
        color: var(--dark-gray);
        margin: 0;
        line-height: 1.7;
    }

    /* CTA Section */
    .cta-section {
        background: var(--light-gray);
        text-align: center;
    }

    .cta-content {
        background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
        border-radius: 20px;
        padding: 60px 40px;
        color: white;
        box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
    }

    .cta-content h2 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-white {
        background: white;
        color: var(--orange);
        border: none;
    }

    .btn-white:hover {
        background: var(--royal-blue);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    /* Footer */
    footer {
        background: var(--text-dark);
        color: white;
        padding: 60px 0 20px;
    }

    .footer-content {
        margin-bottom: 40px;
    }

    .footer-logo {
        font-family: 'Montserrat', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .footer-logo span {
        color: var(--orange);
    }

    .footer-content p {
        opacity: 0.9;
        line-height: 1.8;
    }

    .footer-links h5 {
        color: var(--orange);
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links ul li {
        margin-bottom: 12px;
    }

    .footer-links ul li a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-links ul li a:hover {
        color: var(--orange);
        padding-left: 5px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: var(--orange);
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        text-align: center;
    }

    .footer-bottom p {
        margin: 0;
        opacity: 0.8;
    }

    /* Scroll to top button */
    #scrollTop {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--orange);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    #scrollTop:hover {
        background: var(--dark-orange);
        transform: translateY(-5px);
    }

         .footer-bottom p a {
             color: var(--orange);
             text-decoration: none;
         }

    /* Responsive */
    @media (max-width: 768px) {
        .page-header {
            padding: 150px 0 80px;
        }

        .page-header h1 {
            font-size: 2.5rem;
        }

        .section-title h2 {
            font-size: 2rem;
        }

        .service-detail {
            padding: 30px 20px;
        }

        .service-detail-header {
            flex-direction: column;
            text-align: center;
        }

        .service-detail-icon {
            margin-right: 0;
            margin-bottom: 20px;
        }

        .process-step::before {
            display: none;
        }

        .cta-content {
            padding: 40px 30px;
        }

        .cta-content h2 {
            font-size: 2rem;
        }
    }
