* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-color: #f30000;
--secondary-color: #FFEC00;
--dark-color: #010720;
--light-color: #f5f5f5;
--white: #ffffff;
--text-dark: #333;
--text-light: #2c2a2a;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
overflow-x: hidden;
}

/* Header & Navigation */
header {
background: var(--secondary-color);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 5%;
max-width: 1400px;
margin: 0 auto;
}

.logo {
font-size: 1.8rem;
font-weight: bold;
color: var(--primary-color);
display: flex;
align-items: center;
gap: 0.5rem;
}

.logo i {
font-size: 2rem;
}

.nav-links {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
}

.nav-links a {
text-decoration: none;
color: #000;
font-weight: 500;
transition: color 0.3s;
padding: 0.5rem 0;
}

.nav-links a:hover {
color: var(--primary-color);
}

.cta-btn {
background: var(--primary-color);
color: var(--white) !important;
padding: 0.7rem 1.5rem !important;
border-radius: 5px;
transition: background 0.3s;
}

.cta-btn:hover {
background: #e55a2b;
color: var(--white) !important;
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 5px;
}

.hamburger span {
width: 25px;
height: 3px;
background: var(--primary-color);
transition: all 0.3s;
border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

/* Offcanvas Menu */
.offcanvas {
position: fixed;
top: 0;
right: -100%;
width: 280px;
height: 100vh;
background: var(--white);
box-shadow: -5px 0 15px rgba(0,0,0,0.2);
transition: right 0.3s ease;
z-index: 999;
padding: 2rem;
}

.offcanvas.active {
right: 0;
}

.offcanvas-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}

.close-btn {
font-size: 1.5rem;
cursor: pointer;
color: var(--primary-color);
background: none;
border: none;
}

.offcanvas .nav-links {
    display: block;
flex-direction: column;
gap: 0;
align-items: flex-start;
}

.offcanvas .nav-links li {
width: 100%;
border-bottom: 1px solid #eee;
}

.offcanvas .nav-links a {
display: block;
padding: 1rem 0;
width: 100%;
}

.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
opacity: 0;
visibility: hidden;
transition: opacity 0.3s, visibility 0.3s;
z-index: 998;
}

.overlay.active {
opacity: 1;
visibility: visible;
}
.faq_sec{padding: 0 5% 60px 5%;}

 /* Services Section */
.services {
    padding: 60px 5%;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.shadow{box-shadow:  0 0 4px rgba(0,0,0,0.2);
 border: 1px solid hsla(0, saturation, lightness, alpha);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose {
    padding: 60px 5%;
    background: var(--white);
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    display: flex;justify-content: center;
    align-items: center;
    background-color: #ec0606;
    font-size: 1.5rem;
    color: #fff;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-text p {
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 10px;
    border: 1px solid hsla(0, 0%, 6%, 0.144);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 60px 5%;
    background: var(--light-color);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h5 {
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 5%;
    background: var(--white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: #0d0202;
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #dbbb06;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #f1eeee;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #e55a2b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

.dropdown {
    position: relative;
}

.dropdown ul.sub-menu {
    position: absolute;
    left: 0;
    top: 80px; 
    width: 209px;
    text-align: left;
    background: #fff;
    list-style: none; 
    padding: 10px 0;
    margin: 0;
    z-index: 999; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: all .4s ease; 
    visibility: hidden;
    border-top: 3px solid #ed1c24; 
    opacity: 0;
}


.dropdown:hover .sub-menu {
    visibility: visible;
    top: 40px; 
    opacity: 1;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.sub-menu li a:hover {
    background: #f8f8f8;
    color: #ed1c24;
}
/* faq section */
.faq-section { padding: 60px 5%; background: #f9f9f9; }
    .grid_sec{display: grid;grid-template-columns: 1fr 2fr; gap: 20px; padding-top: 25px;}
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { background: #fff; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 10px; overflow: hidden;transition: 0.3s all; }

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.accordion-header:hover { color: #ed1c24; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s;
    background: #fff;
}

.accordion-content p { padding: 0 20px 20px; color: #01040d; line-height: 1.6; margin: 0; }

.accordion-item.active .accordion-content { max-height: 200px; /* Adjust based on content length */ }
.accordion-item.active .icon { transform: rotate(45deg); color: #ed1c24; }
.icon { font-size: 24px; transition: transform 0.3s; }


.pricing_table{padding: 0 5% 60px 5%;}

/* Container and Typography */
.table-title {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
}

/* Table Responsiveness */
.table-responsive {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Core Table Styling */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    min-width: 600px; /* Ensures it doesn't look squashed on small screens */
}

.price-table th, 
.price-table td {
    padding: 18px 20px;
    border: 1px solid #eeeeee;
    text-align: left;
    font-size: 15px;
}

/* Header Styling */
.price-table thead th {
    background-color: #333;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* THE SPECIFIC REQUEST: 1st Column Red & White */
.price-table tr td:first-child {
    background-color: #ed1c24; /* Theme Red */
    color: #ffffff;
    font-weight: 600;
    width: 30%;
}

/* Also applying red to the first column's header for consistency */
.price-table thead th:first-child {
    background-color: #c4161c; /* Slightly darker red for header */
}

/* Row Hover Effect */
.price-table tbody tr:hover {
    background-color: #fcfcfc;
}

.table-note {
    font-size: 13px;
    color: #777;
    margin-top: 15px;
    font-style: italic;
    text-align: center;
}

.mt-2{margin-top: 15px !important; }
.mt-3{margin-top: 22px !important; }
.mb-2{margin-bottom: 15px !important;}
.mb-3{margin-bottom: 22px !important;}
.py-5{padding: 30px 0;}


.about-section-wrapper {
    background-color: #ffffff;
}


.about-grid {
    display: grid;
    grid-template-columns: 2fr 3fr; 
    gap: 4rem; 
    align-items: center; 
}



.about-image-container {
    position: relative;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded-custom {
    border-radius: 12px;
}
h4{font-size: 20px;}


.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(237, 28, 36, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
}


.lead-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.modern-icon-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.modern-icon-list li {
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
    margin-bottom: 25px;
}
.icon-box {
    flex-shrink: 0; /* Ensures icon box doesn't shrink */
    width: 50px;
    height: 50px;
    background-color: rgba(237, 28, 36, 0.1); /* Light red BG */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}
.modern-icon-list li:hover .icon-box {
    background-color: var(--primary-color);
    color: #ffffff;
}

.list-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 5px;
}

.list-text span {
    color: var(--text-light);
    font-size: 14px;
}


/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr; 
        gap: 3rem;
        text-align: center; 
    }
    
    .modern-icon-list li {
        justify-content: flex-start;
        text-align: left;
    }
    .experience-badge {
    bottom: -30px;
    right: 20px;
}
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}
.text-left{text-align: left;}

 .contact-grid-section {
    padding:25px 5% 40px 5%;
    background-color: #f8f9fa;  
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 30px;
}
.form-control{width:100%;padding:6px 15px;margin-bottom:10px;}
.contact-grid-section .contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 5px solid #ed1c24;
}
.contact-grid-section .contact-card:hover {
    transform: translateY(-10px);
}
.contact-grid-section .border-bottom{border-bottom: 1px solid #ccc;padding-bottom: 10px;}

.contact-grid-section .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-grid-section .card-header i {
    font-size: 24px;
    color: #ed1c24;
    background: #fff9c4; /* Soft Yellow accent */
    padding: 12px;
    border-radius: 8px;
}

.contact-grid-section .card-header h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

/* Address Styling */
.contact-grid-section .location-block h4 {
    color: #ed1c24;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-grid-section .location-block p {
    color: #111111;
    font-size: 17px;
    line-height: 1.6;
}

/* Connect Styling */
.contact-grid-section .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-grid-section .icon-circle {
    width: 45px;
    height: 45px;
    background: #e00101;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-grid-section .info-item .text span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #201f1f;
}

.contact-grid-section .info-item .text a {
    text-decoration: none;
    color: #111111;
    font-weight: 600;
    font-size: 16px;
}

.contact_mgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.text-center{text-align: center !important;}


/* The Row Wrapper */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-md-4, .col-md-6, .col-md-8, .col-md-9, .col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box; /* Critical for padding */
}


@media (min-width: 992px) {
    .col-md-4 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tablet: 2 columns (50% each) */
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}




/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .contact-grid-section .contact-main-grid, .contact_mgrid {
        grid-template-columns: 1fr; 
    }
    .contact-grid-section .info-item .text a {
    font-size: 14px;
}
.contact-grid-section .icon-circle {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}
.contact-grid-section .contact-card {padding: 20px;}
h1,h2, h3,h4, .btitle{line-height: 1.24;}
}
img{max-width: 100%;}
/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content,
    .why-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .stat-box {
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
}
.logo img{
    width:250px;
}
.section-title h2 {line-height: 32px;}
.grid_sec{grid-template-columns: 1fr;}

}
.text-justify{text-align: justify;}
@media (max-width: 600px) {
    nav {
        padding: 1rem 3%;
    }

    .hero {
        padding: 120px 3% 60px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .services,
    .why-choose,
    .testimonials,
    .contact {
        padding: 60px 3%;
    }

    .services-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .offcanvas {
        width: 100%;
    }
}