:root {
    --primary: #1a3a5c;
    --primary-light: #2a5a8c;
    --secondary: #d4a017;
    --secondary-light: #e8b830;
    --dark-bg: #132d4a;
    --light-bg: #f4f6f8;
    --text: #1e2a3a;
    --text-muted: #6b7a8d;
    --border-color: #dde3ea;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--light-bg);
}

a {
    text-decoration: none;
    color:#000
}

h1, h2, h3, h4, h5, h6, .heading {
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.2rem;
}

/* Top Header */
.top-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.top-header .logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
}

.top-header .logo span {
    color: var(--secondary);
}

.top-header .tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.top-header .phone-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    text-decoration: none;
}

.top-header .search-box .form-control {
    border-radius: 4px 0 0 4px;
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
}

.top-header .search-box .btn {
    background: var(--primary);
    color: #fff;
    border-radius: 0 4px 4px 0;
    border: none;
}

/* Navbar */
.main-nav {
    background: var(--dark-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.main-nav .navbar-nav {
    margin: 0 auto;
}

.main-nav .nav-link {
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 16px !important;
    transition: background 0.2s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    background: var(--secondary);
    color: var(--text) !important;
}

.main-nav .dropdown-menu {
    min-width: 260px;
    border: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.main-nav .dropdown-menu .dropdown-item {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 16px;
}

.main-nav .dropdown-menu .dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}

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

.navbar-toggler-icon {
    filter: invert(1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.05), rgba(212, 160, 23, 0.05));
    padding: 40px 0;
}

/* Feature Icons */
.feature-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.5rem;
    color: var(--secondary);
}

.feature-card .label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--text);
}

/* Quote Form */
.quote-form {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-form h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.quote-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.quote-form .form-control,
.quote-form .form-select {
    font-size: 0.85rem;
    border-color: var(--border-color);
}

.quote-form .required {
    color: #dc3545;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border: none;
    padding: 8px 32px;
    border-radius: 6px;
}

.btn-primary-custom:hover {
    background: var(--primary-light);
    color: #fff;
}

.btn-secondary-custom {
    background: var(--secondary);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
}

.btn-secondary-custom:hover {
    background: var(--secondary-light);
    color: var(--text);
}

/* About Section */
.about-section {
    padding: 50px 0;
    background: var(--light-bg);
}

.about-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 16px;
}

.about-section p {
    font-size: 0.875rem;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    background: #fff;
    padding: 50px 0;
}

.how-it-works h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 24px;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-card .step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.8rem;
}

.step-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 40px 0 20px;
}

.site-footer h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.site-footer h3 span {
    color: var(--secondary);
}

.site-footer p,
.site-footer a,
.site-footer li {
    font-size: 0.85rem;
    opacity: 0.8;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: var(--secondary);
    opacity: 1;
}

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

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.5;
}

.site-footer .bi {
    color: var(--secondary);
}


.service-section .service-box {
    height: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 0px 0px 0px #004e9c inset;
    transition-duration: .3s;
}

.service-section .service-box:hover {
    box-shadow: 0px 0px 5px 0px #004e9c inset;
    transition-duration: .3s;
}

.service-section .service-box i {
    font-size: 2rem;
    color: #457cb4;
    margin: 10px;
}

.service-section .service-box img {
    height: 50px;
}

.service-section .service-box p {
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
    margin: 10px 0;

}

.hero-section {
    background: url('../../public/images/home-banner.jpg?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    color: #fff;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.form-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.service-card {
    border-radius: 10px;
}

.service-card img {
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.icon-check {
    color: #0d6efd;
    margin-right: 8px;
}

.how-it-works-step {
    text-align: center;
}

.how-it-works-step .icons {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.how-it-works-step i {
    font-size: 2.5rem;
    color: #0d6efd;
}

.how-it-works-step p {
    padding: 3px 0px;
    border: 1px solid #fff;
    margin-top: -11px;
    background: #6c757d;
    z-index: 9999;
    position: relative;
    min-height: 50px;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works-step p .left {
    float: left;
    color: #e18d38;
    font-weight: 700;
    font-size: 2rem;
    width: 20%;
    padding: 2px 5px;
}

.how-it-works-step p .right {
    float: right;
    width: 80%;
    padding: 0px;
}

.map-img {
    width: 100%;
    border-radius: 8px;
}

.city-list {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bg-blue {background: #132d4a; color: #fff;padding: 1rem 0rem;}
#result{display: none;}
.links-section li{font-size: 0.8rem;margin-bottom: 5px;}

@media (max-width: 767px) {
  .hero-content .heading{font-size: 1.1rem;text-align: center;}
  .sub-heading{font-size: 1rem;text-align: center;}
  .hero-content p {font-size: 0.8rem;text-align: center;}
}

@media (max-width: 380px) {
    
}