
:root {
    --primary: #ECA400;
    --secondary: #f59e0b;
    --accent: #d1740a;
    --light: #f8fafc;
    --dark: #1e293b;
}

body {
    font-family: 'Inter', sans-serif;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #4ade80 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff10" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #eab308;
    border-color: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-outline-light {
    border-width: 2px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.service-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin: 5px;
    display: inline-block;
}

.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.img-container {
    position: relative;
}

.img-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--secondary);
    border-radius: 20px;
    z-index: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}



.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.accordion-button:not(.collapsed) {
    background-color: #f8fff8 !important;
    border-color: #22c55e;
    color: #166534;
}

.accordion-button:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 0.25rem rgba(34, 197, 94, 0.25);
}

.accordion-button::after {
    display: none;
}

.accordion-body {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #22c55e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-success {
    background-color: #22c55e !important;
}

.btn-success {
    background-color: #22c55e;
    border-color: #22c55e;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #16a34a;
    border-color: #16a34a;
    transform: translateY(-2px);
}

.btn-outline-success {
    border-color: #22c55e;
    color: #22c55e;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #22c55e;
    color: white;
    transform: translateY(-2px);
}

.rounded-3 {
    border-radius: 12px !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}



.service-areas {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.bg-success {
    background-color: #22c55e !important;
}

.text-success {
    color: #22c55e !important;
}

.rounded-3 {
    border-radius: 12px !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-success {
    background-color: #22c55e;
    border-color: #22c55e;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #16a34a;
    border-color: #16a34a;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

.list-unstyled li {
    transition: transform 0.2s ease;
}

.list-unstyled li:hover {
    transform: translateX(5px);
}

.border-bottom {
    border-color: #22c55e !important;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}



.specialized-services {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mb-6 {
    margin-bottom: 5rem !important;
}

.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon-lg {
    width: 80px;
    height: 80px;
    background: #22c55e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-success {
    background-color: #22c55e !important;
}

.text-success {
    color: #22c55e !important;
}

.btn-success {
    background-color: #22c55e;
    border-color: #22c55e;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #16a34a;
    border-color: #16a34a;
    transform: translateY(-2px);
}

.rounded-3 {
    border-radius: 12px !important;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.service-badges .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

@media (max-width: 991.98px) {

    .ps-lg-4,
    .pe-lg-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .mb-6 {
        margin-bottom: 3rem !important;
    }

    .order-1 {
        order: 1 !important;
    }

    .order-2 {
        order: 2 !important;
    }
}
