:root {
    --primary-navy: #001d3d;
    --lg-red: #a50034;
    --accent-blue: #003566;
    --light-bg: #f8f9fa;
     --primary: #FFB400; /* Premium Construction Yellow */
            --dark: #121212;    /* Jet Black */
            --dark-gray: #1E1E1E;
            --white: #ffffff;
            --transition: all 0.4s ease-in-out;
}


body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    background-color: #fff;
    overflow-x: hidden;
}

/* 320px Responsive Fixes */
@media (max-width: 320px) {
    .logo-text { font-size: 16px !important; }
    .nav-logo { height: 30px !important; }
    .display-4 { font-size: 24px !important; }
    .hero-section { height: auto !important; padding: 80px 0; }
}
 /* --- TOP BAR (Responsive Optimized) --- */
        .top-bar { background: var(--dark); color: var(--white); padding: 10px 0; font-size: 13px; border-bottom: 3px solid var(--primary); }
        .top-bar a { color: #ccc; text-decoration: none; transition: var(--transition); }
        .top-bar a:hover { color: var(--primary); }
        .social-icons i { margin-left: 15px; cursor: pointer; transition: var(--transition); }
        .social-icons i:hover { color: var(--primary); transform: translateY(-3px); }


/* Navbar */
.navbar { 
    padding: 0;              /* padding hata di */
    height: 70px;            /* fixed height */
    transition: 0.3s;
    display: flex;
    align-items: center;
}

/* Logo */
.nav-logo { 
    height: 70px;            /* fixed logo size */
    max-height: 100%;        /* navbar ke andar hi rahe */
    object-fit: contain;
}

/* Logo Text */
.logo-text { 
    font-size: 24px; 
    font-weight: 700; 
    color: var(--primary-navy); 
}
.logo-text span { color: var(--lg-red); }

/* Button */
.btn-lg-red { 
    background: var(--lg-red); 
    color: white; 
    border: none; 
    font-weight: 600; 
}
.btn-lg-red:hover { 
    background: #800028; 
    color: white; 
}
:root {
    --primary-navy: #001d3d;
    --lg-red: #a50034;
    --accent-blue: #003566;
    --light-bg: #f8f9fa;
    --primary-yellow: #FFB400; /* Renamed from --primary to avoid confusion */
    --dark: #121212;
    --white: #ffffff;
    --transition: all 0.4s ease-in-out;
}

.hero-section {
    position: relative;
    min-height: 90vh; /* Changed to min-height for better responsiveness */
    display: flex;
    align-items: center;
    background-image: url('/images/a1.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
    overflow: hidden;
}

/* Dark Gradient Overlay for better text visibility */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(0, 29, 61, 0.9) 0%, 
        rgba(0, 29, 61, 0.4) 100%
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Trust Badge Style */
.badge-top {
    display: inline-block;
    background: var(--lg-red);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease;
}

/* Main Title */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem); /* Fluid typography for all screens */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.text-highlight {
    color: var(--lg-red);
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
}

/* Buttons Design */
.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: var(--lg-red);
    color: white;
    border: 2px solid var(--lg-red);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-outline-custom:hover {
    background-color: white;
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* Floating Card for Desktop */
.hero-floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVENESS (Crucial for 320px) --- */

@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 120px 0 60px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-overlay {
        background: rgba(0, 29, 61, 0.75); /* Uniform overlay for mobile */
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 80vh;
    }
    .hero-title {
        font-size: 1.8rem; /* Optimized for 320px - 400px */
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-btns .btn {
        width: 100%; /* Full width buttons on very small screens */
        margin-bottom: 10px;
    }
}/* Alternating Sections */
.section-padding { padding: 80px 0; }
.rounded-4 { border-radius: 20px !important; }

/* Counter Section */
.counter-section { background: var(--primary-navy) !important; }
.counter { font-size: 40px; display: block; }

/* FOOTER - Professional Look */
.footer-main {
    background-color: #000814;
    color: #ffffff;
    padding: 80px 0 20px;
}
.footer-logo { height: 40px; }
.footer-about { color: #adb5bd; font-size: 14px; line-height: 1.8; }
.footer-heading {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--lg-red);
}
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}
.footer-links a:hover { color: var(--lg-red); padding-left: 8px; }

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    text-decoration: none;
    transition: 0.3s;
}
.footer-social a:hover { background: var(--lg-red); transform: translateY(-5px); }

.footer-contact-info p {
    color: #adb5bd;
    font-size: 14px;
    margin-bottom: 15px;
}

/* --contact us section -- start */
/* Contact Page Specific Styles */
.contact-page-section {
    background-color: #fcfcfc;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--lg-red);
    margin: 15px auto;
    border-radius: 2px;
}

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    border-radius: 15px;
    transition: 0.3s ease;
    border-left: 5px solid transparent;
}

.contact-info-card:hover {
    transform: translateX(10px);
    border-left: 5px solid var(--lg-red);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(165, 0, 52, 0.1);
    color: var(--lg-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

/* Form Styling */
.contact-form-wrapper {
    background-color: #ffffff;
}

.custom-input {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
}

.custom-input:focus {
    box-shadow: 0 0 10px rgba(165, 0, 52, 0.1);
    border-color: var(--lg-red);
}

.btn-danger {
    background-color: var(--lg-red) !important;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 15px;
}

/* 320px Responsive Logic */
@media (max-width: 320px) {
    .contact-page-section {
        padding: 50px 0;
    }
    .display-5 {
        font-size: 22px !important;
    }
    .contact-info-card {
        padding: 15px !important;
    }
    .contact-info-card h5 {
        font-size: 16px;
    }
    .contact-info-card p {
        font-size: 13px;
    }
    .contact-form-wrapper {
        padding: 20px !important;
    }
    .contact-form-wrapper h3 {
        font-size: 20px;
    }
}
/* --contact us section -- end */

/* --about section -- start */
/* About Us Page Custom CSS */
.bg-navy {
    background-color: #001d3d !important; /* Deep Navy Blue */
}

.title-line {
    width: 60px;
    height: 4px;
    background: #a50034; /* LG Red */
    margin: 15px 0;
    border-radius: 2px;
}

/* Experience Badge Large */
.exp-badge-large {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: #a50034;
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(165, 0, 52, 0.3);
}

.exp-badge-large h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 0;
}

.exp-badge-large p {
    font-size: 12px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
}

/* Process Cards */
.process-card {
    position: relative;
    border: 1px solid #eef0f2;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05) !important;
    border-color: #a50034;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
}

.process-icon {
    font-size: 35px;
    color: #a50034;
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: rgba(165, 0, 52, 0.05);
    color: #a50034;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(165, 0, 52, 0.2);
}

/* 320px Responsive Logic */
@media (max-width: 320px) {
    .about-hero {
        padding: 40px 0 !important;
    }
    .about-hero h1 {
        font-size: 26px !important;
    }
    .about-hero p {
        font-size: 14px;
    }
    .section-padding {
        padding: 50px 0 !important;
    }
    .exp-badge-large {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 15px;
        width: 100%;
        border-radius: 8px;
    }
    .display-4 {
        font-size: 28px !important;
    }
}
/* --about section -- end */
/* --project section -- start */
/* About Page Custom */
.page-header {
    padding: 100px 0;
    margin-bottom: 50px;
}

.process-card {
    position: relative;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.process-card:hover {
    background: var(--primary-navy) !important;
    transform: translateY(-10px);
}

.process-card:hover h5, .process-card:hover p {
    color: #fff !important;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--lg-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: -40px auto 10px;
    border: 4px solid #fff;
}

/* Project Cards */
.project-card {
    background: #fff;
    transition: 0.3s;
}

.project-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

/* Gallery Section */
.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(165, 0, 52, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: 0.4s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card img {
    transition: 0.5s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* 320px Responsive Logic */
@media (max-width: 320px) {
    .display-4 { font-size: 26px !important; }
    .display-5 { font-size: 22px !important; }
    .project-card h4 { font-size: 18px; }
    .gallery-card img { height: 150px; width: 100%; object-fit: cover; }
    .section-padding { padding: 40px 0; }
}

/* Product Sales Section Styles */
.lg-sales-section {
    background-color: #f4f7f9;
}

.title-line {
    width: 70px;
    height: 4px;
    background: var(--lg-red); /* #a50034 */
    margin-top: 15px;
    border-radius: 10px;
}

/* Sales Card Styling */
.sales-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
}

.sales-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.sales-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--lg-red);
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(165, 0, 52, 0.3);
}

.sales-img-wrapper {
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sales-img-wrapper img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
    transition: 0.5s;
}

.sales-card:hover .sales-img-wrapper img {
    transform: scale(1.1);
}

.btn-danger {
    background-color: var(--lg-red) !important;
}

/* 320px Responsive Support */
@media (max-width: 320px) {
    .lg-sales-section {
        padding: 50px 0;
    }
    .display-5 {
        font-size: 22px !important;
    }
    .sales-img-wrapper {
        height: 150px;
    }
    .sales-card h5 {
        font-size: 16px;
    }
    .sales-card p {
        font-size: 13px;
    }
}
/* --project section -- end */
/* services section start */
/* Services Section Custom CSS */
.services-page-section {
    background-color: #f8f9fa;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #a50034; /* LG Red */
    margin: 15px auto;
    border-radius: 10px;
}

/* Service Card Design */
.service-detail-card {
    transition: all 0.4s ease;
    cursor: default;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-detail-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}

/* Icon Background Circle */
.service-icon-bg {
    width: 70px;
    height: 70px;
    background: rgba(165, 0, 52, 0.1); /* Light LG Red */
    color: #a50034;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 20px;
    transition: 0.4s;
}

.icon-blue {
    background: rgba(0, 74, 153, 0.1); /* Light Navy Blue */
    color: #004a99;
}

.service-detail-card:hover .service-icon-bg {
    background: #a50034;
    color: #fff;
    border-radius: 50%;
}

.service-detail-card:hover .icon-blue {
    background: #004a99;
    color: #fff;
}

.service-detail-card h4 {
    font-size: 22px;
    color: #111;
}

/* 320px All Devices Responsive Logic */
@media (max-width: 320px) {
    .services-page-section {
        padding: 50px 0;
    }
    .display-5 {
        font-size: 22px !important;
    }
    .service-detail-card {
        padding: 20px !important;
    }
    .service-detail-card h4 {
        font-size: 18px;
    }
    .service-detail-card p {
        font-size: 13px;
    }
    .service-icon-bg {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .btn-lg {
        font-size: 16px;
        padding: 12px 30px;
    }
}
/* services section start */
