/* Global Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section 1: Hero Section */
.service-page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

/* Overlay to make text readable if image is bright */
.service-page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4); 
}

.service-page-hero .container {
    position: relative;
    z-index: 2;
}

.service-page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-page-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.service-page-hero ul {
    list-style: none;
    display: flex;
    gap: 15px;    
    align-items: center;
}

.service-page-hero ul li a {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.service-page-hero ul li:first-child a {
    display: inline-block;
    padding: 14px 40px;
    background: #FCDA41;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #FCDA41;
  }

.service-page-hero ul li:first-child a:hover{
    background: transparent;
    color: #D11E2D;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);
}

.service-page-hero ul li:last-child a {
    background-color: #fff;
    color: #000;
}

/* Section 2: Essential Section */
.essential-section {
    padding: 60px 0;
}

.essential-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #111;
}

.essential-section p {
    font-size: 1rem;
    color: #252525;
    margin-bottom: 30px;
}

.essential-section img {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    border: 4px solid #D11E2D; /* Red border */
    object-fit: cover;
}

/* Section 3: Benefits Section */
.benefits-section {
    padding: 60px 0;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.benefits-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}

.benefits-section ul li {
    background:#FFF9E0;
    padding: 30px 20px;
    border-radius: 10px;
    border-top: 5px solid #D11E2D;
    border-bottom: 5px solid #D11E2D;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.benefits-section ul li span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color:#D11E2D;
    margin-bottom: 10px;
}

.benefits-section ul li h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefits-section ul li p {
    font-size: 0.9rem;
    color: #666;
}

/* Section 4: Stats Section */
.stats-section {
    background-color: #D11E2D;
    padding: 40px 0;
    color: #fff;
}

.stats-section ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.stats-section ul li {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.3);
}

.stats-section ul li:last-child {
    border-right: none;
}

.stats-section ul li h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stats-section ul li p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section 5: Trust Section */
.trust-section {
    padding: 60px 0;
}

.trust-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.trust-section p {
    margin-bottom: 20px;
    color: #252525;
}

/* Section 6: Problems Section */
.problems-section {
    padding: 40px 0 60px;
}

.problems-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.problems-section ol {
    padding-left: 20px;
}

.problems-section ol li {
    margin-bottom: 15px;
    color: #444;
    font-size: 1rem;
}

.problems-section ol li strong {
    color: #111;
}
/* Section 7: Projects Section */
.projects-section {
    background-color: #FFF9E0;
    padding: 60px 20px;
    text-align: center;
}

.projects-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 40px;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Main Comparison Container - Side by Side */
.project-comparison {
    display: flex;
    gap: 20px;
    width: 100%;
    /* max-width: 1000px; */
    margin: 0 auto;
}

/* Individual Image Container */
.comparison-item {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #D11E2D;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Images */
.comparison-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* Labels - Orange badges */
.label {
    position: absolute;
    top: 15px;
    background-color: #D11E2D;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.label-before {
    left: 15px;
}

.label-after {
    right: 15px;
}

/* Responsive - Stack on Mobile */
@media (max-width: 768px) {
    .project-comparison {
        flex-direction: column;
        gap: 25px;
    }
    
    .comparison-img {
        max-height: 400px;
    }
    
    .label {
        padding: 6px 15px;
        font-size: 0.8rem;
        top: 10px;
    }
    
    .label-before {
        left: 10px;
    }
    
    .label-after {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 40px 10px;
    }
    
    .project-comparison {
        gap: 20px;
    }
    
    .comparison-item {
        border-width: 3px;
        border-radius: 12px;
    }
    
    .comparison-img {
        max-height: 300px;
    }
    
    .label {
        padding: 5px 12px;
        font-size: 0.75rem;
        top: 8px;
    }
}

/* Section 8: Hire Us Section */
.hire-us-section {
    padding: 60px 0;
}

.hire-us-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hire-us-section p {
    margin-bottom: 20px;
    color: #252525;
}

/* Section 9: CTA Red Section */

/* ---------- CTA Red Section ---------- */
.cta-red-section {
    background-color: #c41e3a; /* Deep Red Background */
    padding: 40px 0;
}

/* Container - Grid Layout for perfect stacking */
.cta-red-section .container {
    display: grid;
    grid-template-columns: 1fr auto; /* Left text takes space, right button takes auto */
    grid-template-rows: auto auto;   /* Two rows for h2 and p */
    align-items: center;
    gap: 10px 40px; /* Row gap 10px, Column gap 40px */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading - Top Left */
.cta-red-section h2 {
    grid-column: 1;
    grid-row: 1;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Description - Bottom Left with Clock Icon */
.cta-red-section p {
    grid-column: 1;
    grid-row: 2;
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Clock Icon using ::before */
.cta-red-section p::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Button - Right Side, spans both rows */
.cta-red-section a {
    grid-column: 2;
    grid-row: 1 / span 2; /* Button vertically centered across both text lines */
    background-color: #fcd34d; /* Yellow */
    color: #000000;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Button Hover */
.cta-red-section a:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .cta-red-section .container {
        grid-template-columns: 1fr; /* Stack everything on mobile */
        grid-template-rows: auto;
        text-align: center;
        gap: 15px;
    }
    
    .cta-red-section h2,
    .cta-red-section p,
    .cta-red-section a {
        grid-column: 1;
        grid-row: auto;
    }
    
    .cta-red-section p {
        justify-content: center; /* Center the clock and text on mobile */
    }
    
    .cta-red-section a {
        margin-top: 10px;
        width: 100%;
        max-width: 250px;
        justify-self: center;
    }
}
/* Section 10: FAQ Section */
.faq-section {
    background-color: #FFF9E0;
    padding: 60px 0;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.faq-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.faq-list {
    flex: 2;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    color: #111;
}

.faq-number {
    margin-right: 10px;
}

.faq-icon {
    color: #D11E2D;
    font-size: 1.5rem;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content p {
    padding-bottom: 20px;
    color: #252525;
    font-size: 0.95rem;
}

.faq-contact-box {
  margin-top: 87px;
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}

.faq-contact-box p {
    color: #D11E2D;
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefits-section ul, .stats-section ul {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .stats-section ul li {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding: 15px 0;
    }
    
    .cta-red-section .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .faq-layout {
        flex-direction: column;
    }
}