@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #666565;
}

/* Navigation */
header {
    background-color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo-img {
    height: 50px;    /* Adjust this height to fit your header */
    width: auto;     /* Keeps the logo proportions correct */
    display: block;
}
/* --- Mobile Menu Styles --- */

/* Hide menu icon by default (Desktop) */
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #8e1d01; /* Using the Blue theme */
}

/* Mobile Overlay Background */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen to the right */
    width: 80%;
    height: 100%;
    background: #fff;
    z-index: 3000;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Show menu when active */
.mobile-overlay.active {
    right: 0;
}

.mobile-links a {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #8e1d01; 
    text-decoration: none;
    margin: 20px 0;
    text-align: center;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: #333;
}

/* RESPONSIVE LOGIC */
@media (max-width: 768px) {
    .desktop-nav {
        display: none; /* Hide standard links on mobile */
    }
    
    .menu-icon {
        display: block; /* Show hamburger icon */
    }

    header {
        padding: 15px 25px; /* Tighter padding for mobile */
    }
}

header .logo {
    font-size: 24px;
    font-weight: 700;
    color: #8e1d01;  /* Construction Orange/Yellow */
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}
.mobile-btn {
    background-color: #8e1d01;  /* Main Blue Button */
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 12px 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    /* width: 50%; */
    transition: background-color 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(53, 53, 53, 0.6), rgba(0, 0, 0, 0.6)), url('img/entry.jpg') center/cover;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Section Containers */
.section {
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #8e1d01; 
}

/* Cost Estimator */
.estimator-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.btn {
    background-color: #8e1d01; 
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background-color: #9e4e3a; 
}

#estimation-result {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #15803d;
    display: none;
}
 /* --- Advanced Estimator Styles --- */
.advanced-estimator {
    padding: 80px 20px;
    background-color: #fff;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.calc-header {
    text-align: center;
    margin-bottom: 50px;
}

.calc-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
}

.text-orange {
    color: #8e1d01;  /* Main Orange */
}

.calc-header p {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

/* Grid Layout */
.calc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Panels */
.calc-left {
    border: 1px solid #f2e2d1;
    border-radius: 12px;
    overflow: hidden;
}

.calc-right {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.calc-panel-header {
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.left-header {
    background-color: #fdf6ed;
    color: #8e1d01; 
    border-bottom: 1px solid #f2e2d1;
}

.right-header {
    background-color: #8e1d01; 
    color: #fff;
}

.calc-body {
    padding: 30px;
    background: #fff;
}

/* Inputs & Sliders */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Custom Range Slider */
.slider {
    /* -webkit-appearance: none; */
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    margin-bottom: 15px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8e1d01; 
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.num-input, .dropdown-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border 0.3s;
}

.num-input:focus, .dropdown-input:focus {
    border-color: #8e1d01; 
}

/* Right Panel Summary Rows */
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
}

.summary-row span {
    color: #64748b;
}

.summary-row strong {
    color: #8e1d01; 
    font-weight: 700;
}

/* Total Box Highlight */
.total-box {
    background-color: #fdf6ed;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

.total-label {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.total-price {
    font-size: 32px;
    font-weight: 800;
    color: #8e1d01; 
}

/* Features Checklist */
.calc-features {
    list-style: none;
    margin-bottom: 25px;
}

.calc-features li {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-features li i {
    color: #10b981; /* Green checkmark */
}

/* Button */
.quote-btn {
    width: 100%;
    background-color: #8e1d01; 
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.quote-btn:hover {
    background-color: #8e1d01; 
}

/* Responsive */
@media (max-width: 850px) {
    .calc-container {
        grid-template-columns: 1fr;
    }
}

/* --- Pricing Section (Blue Theme) --- */
.pricing-section {
    padding: 100px 20px;
    background-color: #f4f6f9; /* Light, cool grey-blue background */
    font-family: 'Poppins', sans-serif;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Badge/Subheader */
.pricing-badge-container {
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.new-tag {
    background-color: #8e1d01; /* Main Blue */
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 10px;
    text-transform: uppercase;
}

.pricing-start {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

/* Headings */
.pricing-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blue-text {
    color: #8e1d01;  /* Main Blue for emphasis */
}

.pricing-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* Pricing Grid & Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 60, 120, 0.1);
}

/* Highlighted (Middle) Card */
.pricing-card.highlighted {
    border: 2px solid #8e1d01; ; /* Main Blue border */
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(26, 60, 120, 0.1);
}

.pricing-card.highlighted:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Card Header Tiers */
.card-header {
    background-color: #8e1d01;  /* Main Blue for headers */
    color: #fff;
    border-radius: 50px;
    padding: 8px 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

/* Specific Blue Tints for Tiers (like the image, but in Blue) */
.Standard { background-color: #8e1d01;  } /* Standard Light Blue */
.Premium { background-color: #8e1d01;  } /* Premium Main Blue */
.Ultra-Luxury { background-color: #8e1d01; } /* Ultra Luxury Dark Blue */

/* Price Display */
.price-container {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    margin-right: 2px;
}

.sqft {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    margin-left: 5px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.feature-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.feature-list li i {
    color: #8e1d01;  /* Main Blue icons */
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Bold/Star Icons for Luxury Tier */
.feature-list li i.fa-star {
    font-size: 14px;
    font-weight: 900; /* Makes star filled */
}

/* Card Button */
.card-btn {
    background-color: #8e1d01; ; /* Main Blue Button */
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.card-btn:hover {
    background-color: #8e1d01;  /* Darker blue on hover */
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .pricing-card.highlighted {
        transform: scale(1);
        margin: 20px 0;
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-8px) scale(1);
    }
}

@media (max-width: 600px) {
    .pricing-title { font-size: 28px; }
    .price-container { font-size: 34px; }
}
/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #8e1d01; ;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Popup Box */
.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fadeIn 0.4s ease;
}

.popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.popup-header h3 {
    color: #8e1d01; 
    font-size: 24px;
}

/* Close Button */
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.close-popup:hover {
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; }
    .section { padding: 40px 20px; }
    .hero h1 { font-size: 36px; }
}

/* Why Choose Us Section Styles */
.features-section {
    padding: 80px 20px;
    background-color: #fffdfa; /* Very light orange tint */
    text-align: center;
}

.features-sub {
    color: #8e1d01; 
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.features-main {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.features-desc {
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    align-items: center;
    text-align: left;
    background: #fff;
    border: 1.5px solid #8e1d01;  /* Orange border like the image */
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
}

.feature-card .icon {
    font-size: 24px;
   color: #8e1d01; 
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 14px;
    color: #777;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .features-main { font-size: 28px; }
    .features-sub { font-size: 22px; }
}

/* Projects Hero */
.projects-hero {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}
.projects-hero {
    background: linear-gradient(rgba(53, 53, 53, 0.6), rgba(0, 0, 0, 0.6)), url('img/p entry.jpg') center/cover;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.projects-hero h1 { font-size: 38px; margin-bottom: 10px; }

/* Toggle Switch */
.filter-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.toggle-switch {
    background: #f1f1f1;
    padding: 5px;
    border-radius: 50px;
    display: flex;
    border: 1px solid #ddd;
}

.filter-btn {
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: transparent;
    font-weight: 600;
    transition: 0.3s;
}

.filter-btn.active {
    background-color: #8e1d01;  /* Matches your blue theme */
    color: white;
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.img-wrapper {
    position: relative;
    height: 250px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.img-wrapper .tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #8e1d01;  /* Residential Orange Tag */
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.project-info {
    padding: 15px 5px;
}

.user-icon {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 5px;
}

.project-info h3 {
    font-size: 18px;
    color: #8e1d01; 
    text-transform: uppercase;
}

.project-info p {
    color: #777;
    font-size: 14px;
}

/* Active Nav Link */
/* .active-link {
    border-bottom: 2px solid #1a3c78;
} */

.btn-call {
    background-color :#8e1d01; 
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 50px;
}


/* --- Construction Page Specific Styles --- */

/* Service Hero */
.service-hero {
    background: linear-gradient(rgba(53, 53, 53, 0.6), rgba(0, 0, 0, 0.6)), url('img/C entry.jpg') center/cover;
      height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.service-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.service-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    color: #e2e8f0;
}

.text-orange {
  color :#8e1d01
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
}

.section-heading p {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

/* --- The Journey / Process Timeline --- */
.process-section {
    padding: 80px 20px;
    background-color: #fdfaf6; /* Very light orange/cream tint */
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px; /* Space for the line */
}

/* The vertical connecting line */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #f3b5b5; /* Light orange line */
    border-radius: 10px;
}

/* Individual Step */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* The Icon Circle */
.timeline-icon {
    position: absolute;
    left: -65px; /* Pulls it over the line */
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #8e1d01; /* Orange background */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(239, 124, 0, 0.3);
    border: 4px solid #fff; /* White border to cut into the line */
}

/* Content Box */
.timeline-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid color #8e1d01;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
}

.timeline-content h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    .service-hero h1 { font-size: 36px; }
    .timeline-container { padding-left: 30px; }
    .timeline-icon {
        left: -48px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* --- Premium Benefits Section --- */
.benefits-section {
    padding: 80px 20px;
    background-color: #fffdfa; /* A very soft cream/orange tint for the background */
    font-family: 'Poppins', sans-serif;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.benefits-header p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* 4-Column Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Individual Card Styling */
.benefit-card {
    background: #ffffff;
    border: 1px solid #8e1d01;;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* Hover Effect - Makes the card float up and outlines it in orange */
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(224, 149, 144, 0.712);
    border-color: #8e1d01;
}

/* Icon Design */
.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fef4ea; /* Light orange circle behind icon */
    border-radius: 50%;
    color: #8e1d01;
    font-size: 26px;
    transition: all 0.3s ease;
}

.benefit-card:hover .icon-wrapper {
    background-color: #8e1d01;
    color: #ffffff;
}

/* Text inside cards */
.benefit-card h4 {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 14px;
    color: #8e1d01; /* Matching the orange subtext from your image */
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments for tablets and mobile */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* 1 column on mobile phones */
    }
    .benefits-header h2 {
        font-size: 28px;
    }
}



