    :root {
        /* Provided Color Palette */
        --dark-blue: #1F3A5F;
        --medium-blue: #243F6B;
        --light-blue: #2E4A7D;
        --gold-primary: #D4A017;
        --gold-medium: #C8971A;
        --gold-light: #E0B84C;
        --accent-yellow: #FFD54F;
        --white: #FFFFFF;
        --off-white: #F8F9FA;
        --shadow: rgba(0, 0, 0, 0.1);
        --primary-blue: #0062ff;
        --dark-navy: #0a192f;
        --text-color: #4b5563;

        --primary-yellow: #ffb400;
        /* Construction Yellow */
        --dark-gray: #222;
        --light-gray: #f9f9f9;
        --text-color: #555;
        --white: #ffffff;
    }




    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {
        background-color: #f4f4f4;
        overflow-x: hidden;
    }

    /* Header Main Styling */
    header {
        background-color: var(--white);
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 6%;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 15px var(--shadow);
        border-bottom: 5px solid var(--gold-primary);
        /* Gold road-like border */
    }

    /* Logo Section */
    .logo-container {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .logo-img {
        height: 100px;
        width: 80px;
        object-fit: contain;
        border-radius: 8px;
    }

    .brand-text {
        display: flex;
        flex-direction: column;
    }

    .company-name {
        color: var(--dark-blue);
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.5px;
    }

    .company-name span {
        color: var(--gold-primary);
    }

    .tagline {
        color: #666;
        font-size: 0.7rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 4px;
        font-family: 'Roboto', sans-serif;
    }

    /* Navigation */
    .nav-links {
        display: flex;
        list-style: none;
        align-items: center;
    }

    .nav-links li {
        position: relative;
    }

    .nav-links a {
        color: var(--dark-blue);
        text-decoration: none;
        padding: 25px 18px;
        display: block;
        font-weight: 500;
        font-size: 0.95rem;
        transition: 0.3s ease;
        border-bottom: 3px solid transparent;
    }

    .nav-links a:hover {
        color: var(--gold-primary);
        background-color: var(--off-white);
        border-bottom: 3px solid var(--gold-primary);
    }

    /* Dropdown Styling */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        list-style: none;
        min-width: 240px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: 0.3s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-top: 4px solid var(--dark-blue);
        border-radius: 0 0 8px 8px;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu li a {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-bottom: 1px solid #eee;
        border-left: 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dropdown-menu li a i {
        color: var(--gold-primary);
        width: 20px;
    }

    .dropdown-menu li a:hover {
        background-color: var(--off-white);
        padding-left: 25px;
        border-bottom: 1px solid #eee;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: none;
        color: var(--dark-blue);
        font-size: 1.8rem;
        cursor: pointer;
    }

    /* Hero Section Main Container */
    .hero-section {
        position: relative;
        width: 100%;
        /* FIXED: height: 100vh ko min-height kiya taaki content cut na ho */
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: var(--white);
        /* Added vertical padding for mobile safety */
        padding: 80px 20px;
    }

    /* Advanced Background */
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right,
                rgba(31, 58, 95, 0.9) 20%,
                rgba(31, 58, 95, 0.3) 100%),
            url('https://images.unsplash.com/photo-1503387762-59753975c0e4?q=80&w=2070&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        z-index: -1;
        animation: slowZoom 20s infinite alternate ease-in-out;
    }

    @keyframes slowZoom {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.15);
        }
    }

    .hero-container {
        max-width: 1200px;
        width: 100%;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
        align-items: center;
    }

    .hero-text {
        animation: fadeInUp 1s ease-out forwards;
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        text-transform: capitalize;
    }

    .hero-text h1 span {
        color: var(--gold-primary);
        position: relative;
        display: inline-block;
    }

    .hero-text h1 span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: var(--gold-primary);
        opacity: 0.3;
        z-index: -1;
    }

    .hero-text p {
        font-size: clamp(0.95rem, 2vw, 1.2rem);
        margin-bottom: 35px;
        color: #d1d1d1;
        line-height: 1.7;
        font-weight: 300;
        max-width: 600px;
    }

    .cta-group {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn-main {
        background: var(--gold-primary);
        color: var(--dark-blue);
        padding: 16px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: 0.4s;
        box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .btn-main:hover {
        background: var(--accent-yellow);
        transform: translateY(-5px);
    }

    .btn-outline {
        border: 2px solid var(--white);
        color: var(--white);
        padding: 16px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.4s;
        backdrop-filter: blur(5px);
    }

    .btn-outline:hover {
        background: var(--white);
        color: var(--dark-blue);
    }

    /* Right Side Floating Card */
    .hero-card {
        background: var(--glass);
        backdrop-filter: blur(15px);
        border: 1px solid var(--glass-border);
        padding: 30px;
        border-radius: 24px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        animation: float 4s infinite ease-in-out;
        text-align: center;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    .card-img {
        width: 100%;
        border-radius: 15px;
        margin-bottom: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .card-stat {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

    .stat-box h4 {
        color: var(--gold-primary);
        font-size: 1.5rem;
    }

    .stat-box p {
        font-size: 0.8rem;
        color: #ccc;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* About Section Main Container */
    .about-section {
        padding: 100px 6%;
        background-color: var(--white);
        overflow: hidden;
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    /* Left Side: Image Area */
    .about-image-wrapper {
        position: relative;
        animation: fadeInLeft 1s ease-out;
    }

    .main-img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 20px 20px 0px var(--gold-primary);
        display: block;
        transition: 0.4s;
    }

    .main-img:hover {
        transform: translate(10px, 10px);
        box-shadow: 0px 0px 0px var(--gold-primary);
    }

    /* Experience Badge (Floating) */
    .exp-badge {
        position: absolute;
        bottom: -30px;
        right: -20px;
        background: var(--dark-blue);
        color: var(--white);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border-bottom: 5px solid var(--gold-primary);
        animation: float 3s infinite ease-in-out;
    }

    .exp-badge h3 {
        font-size: 2.5rem;
        color: var(--gold-primary);
        line-height: 1;
    }

    .exp-badge p {
        font-size: 0.9rem;
        text-transform: uppercase;
        font-weight: 400;
        letter-spacing: 1px;
    }

    /* Right Side: Content Area */
    .about-content {
        animation: fadeInRight 1s ease-out;
    }

    .sub-title {
        color: var(--gold-primary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        margin-bottom: 10px;
        display: block;
    }

    .about-content h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--dark-blue);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .about-content h2 span {
        color: var(--gold-primary);
    }

    .about-content p {
        color: var(--text-grey);
        line-height: 1.8;
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* USP Grid (Features) */
    .usp-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .usp-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        border-radius: 10px;
        transition: 0.3s;
        border: 1px solid transparent;
    }

    .usp-item:hover {
        background: var(--off-white);
        border: 1px solid #eee;
        transform: translateY(-5px);
    }

    .usp-item i {
        background: var(--gold-primary);
        color: var(--dark-blue);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 1.2rem;
    }

    .usp-text h4 {
        color: var(--dark-blue);
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .usp-text p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    /* CTA Button */
    .about-btn {
        background: var(--dark-blue);
        color: var(--white);
        padding: 15px 35px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: 0.4s;
        border: 2px solid var(--dark-blue);
    }

    .about-btn:hover {
        background: transparent;
        color: var(--dark-blue);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Animations */
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    .services-section {
        padding: 100px 6%;
        background-color: var(--white);
        text-align: center;
    }

    /* Header Styling */
    .section-header {
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .section-header span {
        color: var(--gold-primary);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 10px;
    }

    .section-header h2 {
        font-size: clamp(2.2rem, 4vw, 3.2rem);
        color: var(--dark-blue);
        font-weight: 700;
        line-height: 1.2;
    }

    .section-header .underline {
        width: 80px;
        height: 4px;
        background: var(--gold-primary);
        margin: 20px auto;
        border-radius: 2px;
    }

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Advanced Image Card */
    .service-card {
        position: relative;
        height: 480px;
        border-radius: 25px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
    }

    /* High-Res Image */
    .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    /* Gradient Overlay */
    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top,
                rgba(31, 58, 95, 0.95) 10%,
                rgba(31, 58, 95, 0.4) 50%,
                rgba(31, 58, 95, 0.2) 100%);
        z-index: 2;
        transition: 0.5s;
    }

    /* Content Area */
    .card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px 30px;
        z-index: 3;
        text-align: left;
        transition: all 0.5s ease;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        background: var(--gold-primary);
        color: var(--dark-blue);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 20px;
        box-shadow: 0 8px 15px rgba(212, 160, 23, 0.3);
    }

    .service-card h3 {
        color: var(--white);
        font-size: 1.6rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .service-card p {
        color: #e0e0e0;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }

    /* Anchor Tag Link */
    .service-link {
        text-decoration: none;
        color: var(--gold-primary);
        font-weight: 600;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

    .service-link i {
        font-size: 0.9rem;
        transition: 0.3s;
    }

    /* HOVER EFFECTS */
    .service-card:hover .card-image {
        transform: scale(1.15);
    }

    .service-card:hover .card-overlay {
        background: linear-gradient(to top,
                rgba(31, 58, 95, 1) 40%,
                rgba(31, 58, 95, 0.6) 100%);
    }

    .service-card:hover p {
        opacity: 1;
        transform: translateY(0);
    }

    .service-link:hover {
        color: var(--accent-yellow);
    }

    .service-link:hover i {
        transform: translateX(5px);
    }

    /* Why Choose Us Section */
    .why-choose-section {
        padding: 100px 6%;
        background-color: var(--white);
        overflow: hidden;
    }

    .why-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    /* Left Side: Visuals */
    .why-visual {
        position: relative;
        animation: fadeInLeft 1s ease-out;
    }

    .visual-img {
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        display: block;
        position: relative;
        z-index: 2;
    }

    /* Floating Quality Badge */
    .quality-badge {
        position: absolute;
        top: -20px;
        right: -20px;
        background: var(--gold-primary);
        color: var(--dark-blue);
        width: 120px;
        height: 120px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 700;
        font-size: 0.8rem;
        box-shadow: 0 10px 20px rgba(212, 160, 23, 0.4);
        z-index: 3;
        border: 4px solid var(--white);
        animation: float 3s infinite ease-in-out;
    }

    .quality-badge i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    /* Right Side: Content */
    .why-content {
        animation: fadeInRight 1s ease-out;
    }

    .why-content span {
        color: var(--gold-primary);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 10px;
    }

    .why-content h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--dark-blue);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .why-content h2 span {
        color: var(--gold-primary);
    }

    .why-content p {
        color: var(--text-grey);
        line-height: 1.7;
        margin-bottom: 35px;
        font-size: 1rem;
    }

    /* Benefit Points List */
    .benefit-list {
        list-style: none;
    }

    .benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
        transition: 0.3s;
    }

    .benefit-item:hover {
        transform: translateX(10px);
    }

    .check-icon {
        background: var(--gold-primary);
        color: var(--dark-blue);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 0.9rem;
        box-shadow: 0 5px 10px rgba(212, 160, 23, 0.3);
    }

    .benefit-text h4 {
        color: var(--dark-blue);
        font-size: 1.1rem;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .benefit-text p {
        margin-bottom: 0;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* CTA Button */
    .why-btn {
        margin-top: 20px;
        display: inline-block;
        background: var(--dark-blue);
        color: var(--white);
        padding: 15px 35px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: 0.4s;
        border: 2px solid var(--dark-blue);
    }

    .why-btn:hover {
        background: transparent;
        color: var(--dark-blue);
    }

    /* Animations */
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    /* --- CTA Section Start --- */
    .consult-section {
        padding: 60px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .consult-card {
        background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
        width: 100%;
        max-width: 900px;
        border-radius: 24px;
        padding: 40px 30px;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 40px var(--shadow);
        border-bottom: 6px solid var(--gold-primary);
        /* Bottom accent line */
    }

    /* Decorative background elements for attraction */
    .consult-card::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background: var(--gold-primary);
        opacity: 0.1;
        border-radius: 50%;
    }

    .consult-card::after {
        content: "";
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 100px;
        height: 100px;
        background: var(--accent-yellow);
        opacity: 0.1;
        border-radius: 50%;
    }

    .consult-content {
        position: relative;
        z-index: 1;
    }

    .consult-content h2 {
        color: var(--white);
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .consult-content h2 span {
        color: var(--gold-light);
    }

    .consult-content p {
        color: var(--off-white);
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .cta-button {
        background: linear-gradient(to right, var(--gold-primary), var(--gold-light));
        color: var(--dark-blue);
        text-decoration: none;
        padding: 16px 35px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3);
        border: 2px solid transparent;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(212, 160, 23, 0.4);
        background: linear-gradient(to right, var(--gold-light), var(--gold-primary));
        color: #000;
    }

    .main-footer {
        background-color: var(--dark-blue);
        color: var(--white);
        padding: 80px 0 0px 0;
        border-top: 6px solid var(--gold-primary);
    }

    .footer-grid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 25px;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
    }

    /* Logo Section */
    .footer-about {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo-box {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
    }

    .footer-logo-box img {
        width: 55px;
        height: 55px;
        object-fit: contain;
        background: var(--white);
        border-radius: 12px;
        padding: 5px;
        border: 2px solid var(--gold-primary);
    }

    .brand-name {
        color: var(--white);
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.1;
    }

    .brand-name small {
        display: block;
        color: var(--gold-light);
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .footer-about p {
        font-size: 0.9rem;
        opacity: 0.7;
        font-weight: 300;
        line-height: 1.8;
    }

    /* Column Titles */
    .footer-col h3 {
        color: var(--gold-light);
        font-size: 1.2rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-col h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 30px;
        height: 2px;
        background: var(--gold-primary);
    }

    /* Links */
    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: 0.3s;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-links a:hover {
        color: var(--gold-light);
        padding-left: 5px;
    }

    .footer-links a i {
        font-size: 0.7rem;
        color: var(--gold-primary);
    }

    /* Contact Info */
    .contact-detail {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .contact-detail i {
        color: var(--gold-primary);
        font-size: 1.1rem;
        margin-top: 4px;
    }

    .contact-detail div p {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .contact-detail div strong {
        display: block;
        color: var(--white);
        font-size: 0.85rem;
        margin-bottom: 2px;
    }

    .contact-detail a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: 0.3s;
    }

    .contact-detail a:hover {
        color: var(--gold-light);
    }

    /* Socials */
    .social-wrap {
        display: flex;
        gap: 12px;
        margin-top: 10px;
    }

    .social-wrap a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        text-decoration: none;
        transition: 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-wrap a:hover {
        background: var(--gold-primary);
        color: var(--dark-blue);
        transform: translateY(-3px);
    }

    /* Copyright */
    .footer-bottom {
        margin-top: 60px;
        padding: 25px 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.2);
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-bottom span {
        color: var(--gold-light);
    }


    /* Main Header Container */
    .about-header {
        position: relative;
        height: 400px;
        width: 100%;
        background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: var(--white);
        text-align: center;
    }

    /* Architectural Grid Overlay Effect */
    .about-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            linear-gradient(var(--shadow) 1px, transparent 1px),
            linear-gradient(90deg, var(--shadow) 1px, transparent 1px);
        background-size: 40px 40px;
        opacity: 0.3;
        pointer-events: none;
    }

    /* Gold Decorative Slant */
    .about-header::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 15px;
        background: var(--gold-primary);
        transform: skewY(-2deg);
        transform-origin: bottom right;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Content Wrapper */
    .header-content {
        position: relative;
        z-index: 2;
        padding: 0 20px;
        max-width: 800px;
        animation: fadeInUp 0.8s ease-out;
    }

    /* Heading Style */
    .header-content h1 {
        font-size: 3.5rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
        line-height: 1.1;
    }

    /* Highlighting "Construction" word in Gold */
    .header-content h1 span {
        color: var(--gold-primary);
        display: block;
        font-size: 4rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    /* Gold Divider Line */
    .gold-divider {
        width: 80px;
        height: 5px;
        background: var(--gold-primary);
        margin: 20px auto;
        border-radius: 2px;
        position: relative;
    }

    .gold-divider::before,
    .gold-divider::after {
        content: "";
        position: absolute;
        top: 0;
        width: 30px;
        height: 5px;
        background: var(--gold-light);
    }

    .gold-divider::before {
        left: -40px;
    }

    .gold-divider::after {
        right: -40px;
    }

    /* Subtext Style */
    .header-content p {
        font-size: 1.2rem;
        color: var(--off-white);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
        font-weight: 300;
        opacity: 0.9;
    }

    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* R
          /* Responsive Design (Optimized for 320px) */
    @media screen and (max-width: 992px) {
        header {
            padding: 0 4%;
        }

        .company-name {
            font-size: 1.2rem;
        }

        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-text p {
            margin: 0 auto 35px;
        }

        .cta-group {
            justify-content: center;
        }

        .hero-card {
            max-width: 400px;
            margin: 40px auto 0;
        }

        .about-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 80px;
        }

        .about-image-wrapper {
            order: 1;
            /* Image first on mobile */
            max-width: 600px;
            margin: 0 auto;
        }

        .about-content {
            order: 2;
        }

        .about-content p {
            margin-left: auto;
            margin-right: auto;
        }

        .usp-grid {
            text-align: left;
        }

        .about-btn {
            justify-content: center;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .why-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 50px;
        }

        .why-visual {
            order: 1;
            max-width: 600px;
            margin: 0 auto;
        }

        .why-content {
            order: 2;
        }

        .benefit-item {
            text-align: left;
            max-width: 500px;
            margin: 0 auto 25px;
        }

        .why-btn {
            display: block;
            width: fit-content;
            margin: 20px auto 0;
        }

        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

        .nav-links {
            position: fixed;
            /* Absolute ki jagah Fixed use karein taaki scroll par bhi dikhe */
            top: 90px;
            right: 0;
            /* Right 0 rakhein */
            width: 100%;
            height: calc(100vh - 90px);
            background-color: var(--white);
            flex-direction: column;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            /* Smooth transition */
            padding-top: 20px;
            text-align: center;
            box-shadow: -5px 0 15px var(--shadow);

            /* MAIN FIX: Menu ko screen se bahar bhejne ke liye */
            transform: translateX(100%);
            z-index: 999;
        }

        /* Jab 'active' class add hogi, tab menu screen par aayega */
        .nav-links.active {
            transform: translateX(0);
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            padding: 18px;
            font-size: 1.1rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .nav-links a:hover {
            background-color: var(--off-white);
            border-bottom: 1px solid #f0f0f0;
        }

        /* Mobile Dropdown Fix */
        .dropdown-menu {
            position: static;
            /* Static karna zaroori hai mobile par */
            opacity: 1;
            visibility: visible;
            display: none;
            transform: none;
            background-color: var(--off-white);
            width: 100%;
            box-shadow: none;
            border-top: none;
            text-align: left;
        }

        .dropdown.open .dropdown-menu {
            display: block;
        }

        .dropdown a::after {
            content: ' \f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            float: right;
        }

        .services-section {
            padding: 60px 20px;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .service-card {
            height: 420px;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-col h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-links a,
        .contact-detail {
            justify-content: center;
            text-align: center;
        }

        .footer-about {
            align-items: center;
            text-align: center;
        }

        .social-wrap {
            justify-content: center;
        }

        .cta-container {
            padding: 50px 30px;
        }

        .cta-content h2 {
            font-size: 2rem;
        }

        .about-header {
            height: 350px;
        }

        .header-content h1 {
            font-size: 2.5rem;
        }

        .header-content h1 span {
            font-size: 3rem;
        }

        .header-content p {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 600px) {
        .about-section {
            padding: 60px 20px;
        }

        .usp-grid {
            grid-template-columns: 1fr;
        }

        .exp-badge {
            padding: 20px;
            right: 10px;
            bottom: -20px;
        }

        .exp-badge h3 {
            font-size: 1.8rem;
        }

        .about-content h2 {
            font-size: 2rem;
        }

        .why-choose-section {
            padding: 60px 20px;
        }

        .quality-badge {
            width: 100px;
            height: 100px;
            font-size: 0.7rem;
            right: 0;
        }

        .why-content h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .hero-section {
            padding: 60px 15px;
            /* Adjusted padding for mobile */
        }

        .hero-text h1 {
            font-size: 2.2rem;
        }

        .cta-group {
            flex-direction: column;
            width: 100%;
        }

        .btn-main,
        .btn-outline {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

        .consult-section {
            padding: 40px 15px;
        }

        .consult-card {
            padding: 35px 20px;
            border-radius: 20px;
        }

        .consult-content h2 {
            font-size: 1.6rem;
            /* Smaller font for 320px */
        }

        .consult-content p {
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        .cta-button {
            width: 100%;
            /* Full width button on small mobile */
            padding: 14px 20px;
            font-size: 1rem;
        }

        .about-header {
            height: 300px;
        }

        .header-content h1 {
            font-size: 2rem;
        }

        .header-content h1 span {
            font-size: 2.5rem;
        }

        .header-content p {
            font-size: 1rem;
            padding: 0 10px;
        }

        .gold-divider {
            width: 50px;
        }

        .gold-divider::before,
        .gold-divider::after {
            width: 20px;
        }
    }

    @media (max-width: 320px) {
        .hero-text h1 {
            font-size: 1.8rem;
        }

        .hero-text p {
            font-size: 0.85rem;
        }

        .about-content h2 {
            font-size: 1.7rem;
        }

        .about-content p {
            font-size: 0.9rem;
        }

        .usp-text h4 {
            font-size: 1rem;
        }

        .section-header h2 {
            font-size: 1.7rem;
        }

        .service-card h3 {
            font-size: 1.4rem;
        }

        .service-card p {
            font-size: 0.85rem;
        }

        .why-content h2 {
            font-size: 1.7rem;
        }

        .benefit-text h4 {
            font-size: 1rem;
        }

        .benefit-text p {
            font-size: 0.85rem;
        }

        .consult-content h2 {
            font-size: 1.4rem;
        }

        .consult-content p {
            font-size: 0.85rem;
        }

        .cta-wrapper {
            padding: 40px 10px;
        }

        .cta-container {
            padding: 40px 20px;
            border-radius: 20px;
        }

        .cta-content h2 {
            font-size: 1.6rem;
        }

        .cta-content p {
            font-size: 0.95rem;
        }

        .btn-premium {
            width: 100%;
            padding: 15px 20px;
            font-size: 1rem;
        }

        .footer-grid {
            gap: 30px;
        }

        .brand-name {
            font-size: 1.2rem;
        }

        .footer-col h3 {
            font-size: 1.1rem;
        }

        .footer-links a,
        .contact-detail div p {
            font-size: 0.85rem;
        }

        .footer-bottom {
            font-size: 0.75rem;
        }

        .header-content h1 {
            font-size: 1.8rem;
        }

        .header-content h1 span {
            font-size: 2.2rem;
        }

        .about-header {
            height: auto;
            padding: 60px 0;
        }
    }

    /* ----about us page section start*--- */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {
        background-color: var(--off-white);
        color: #333;
        overflow-x: hidden;
    }

    /* --- Hero Section --- */
    .about-hero {
        height: 450px;
        background: linear-gradient(rgba(31, 58, 95, 0.85), rgba(31, 58, 95, 0.85)),
            url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--white);
        padding: 0 20px;
    }

    .about-hero h1 {
        font-family: 'Montserrat', sans-serif;
        color: var(--gold-light);
        font-size: 3.5rem;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .about-hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        color: var(--white);
        opacity: 0.9;
    }

    /* --- Main Content Section --- */
    .section-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 100px 20px;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-image-wrapper img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 20px 40px var(--shadow);
        border-bottom: 8px solid var(--gold-primary);
    }

    .experience-badge {
        position: absolute;
        bottom: -30px;
        right: -10px;
        background: var(--gold-primary);
        color: var(--dark-blue);
        padding: 25px;
        border-radius: 8px;
        font-weight: 700;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        line-height: 1.2;
    }

    .experience-badge span {
        font-size: 2.5rem;
        display: block;
    }

    .about-text h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        color: var(--dark-blue);
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .about-text h2 span {
        color: var(--gold-primary);
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #555;
    }

    .feature-list {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .feature-list li {
        font-weight: 600;
        color: var(--medium-blue);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .feature-list li i {
        color: var(--gold-primary);
    }

    /* --- Stats Section --- */
    .stats-banner {
        background: var(--dark-blue);
        padding: 70px 20px;
        color: var(--white);
    }

    .stats-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }

    .stat-card i {
        font-size: 2.8rem;
        color: var(--gold-light);
        margin-bottom: 15px;
    }

    .stat-card h3 {
        font-size: 2.5rem;
        margin-bottom: 5px;
        font-family: 'Montserrat', sans-serif;
    }

    .stat-card p {
        color: var(--gold-light);
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
        font-weight: 500;
    }

    /* --- Values Section --- */
    .values-section {
        padding: 100px 20px;
        background: var(--white);
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: var(--dark-blue);
    }

    .section-header .underline {
        width: 80px;
        height: 4px;
        background: var(--gold-primary);
        margin: 15px auto;
    }

    .values-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .value-card {
        padding: 40px 30px;
        background: var(--off-white);
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
        border-top: 5px solid transparent;
    }

    .value-card:hover {
        transform: translateY(-10px);
        border-top: 5px solid var(--gold-primary);
        box-shadow: 0 15px 35px var(--shadow);
    }

    .value-card i {
        font-size: 3.5rem;
        color: var(--medium-blue);
        margin-bottom: 20px;
    }

    .value-card h3 {
        margin-bottom: 15px;
        color: var(--dark-blue);
    }

    .value-card p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
    }

    /* --- RESPONSIVE MEDIA QUERIES --- */

    /* Tablets (992px) */
    @media (max-width: 992px) {
        .about-grid {
            grid-template-columns: 1fr;
            gap: 80px;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .values-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile (768px) */
    @media (max-width: 768px) {
        .about-hero h1 {
            font-size: 2.5rem;
        }

        .about-text h2 {
            font-size: 2rem;
        }

        .values-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Very Small Devices (320px to 480px) */
    @media (max-width: 480px) {
        .about-hero {
            height: 350px;
        }

        .about-hero h1 {
            font-size: 1.8rem;
        }

        .about-hero p {
            font-size: 0.9rem;
        }

        .section-container {
            padding: 60px 15px;
        }

        .about-text h2 {
            font-size: 1.6rem;
        }

        .feature-list {
            grid-template-columns: 1fr;
        }

        .experience-badge {
            padding: 15px;
            right: 0;
            bottom: -20px;
        }

        .experience-badge span {
            font-size: 1.8rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .stat-card h3 {
            font-size: 2rem;
        }

        .value-card {
            padding: 30px 20px;
        }
    }

    /* ----about us page section end */
    /* --contact us page section start */
    /* Color Palette */


    .contact-main-wrapper {
        padding: 60px 15px;
        background-color: var(--light-bg);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .contact-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .contact-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .contact-header h1 {
        font-size: 32px;
        color: var(--gold-light);
        margin-bottom: 10px;
    }

    .contact-header p {
        color: var(--text-color);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Grid Layout */
    .contact-content-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        /* Gap 0 kyunki cards round corners ke saath clean lagenge */
        background: var(--white);
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    /* Left Side (Dark Card) */
    .contact-info-card {
        flex: 1 1 400px;
        background-color: var(--dark-navy);
        color: var(--white);
        padding: 40px;
    }

    .contact-info-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .contact-info-card p {
        color: #a8b2d1;
        margin-bottom: 30px;
        font-size: 14px;
    }

    .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        margin-right: 15px;
        color: var(--primary-blue);
        font-size: 18px;
    }

    .info-text span {
        display: block;
        font-size: 12px;
        color: #8892b0;
    }

    .info-text p {
        margin: 0;
        font-weight: 500;
        color: #e6f1ff;
        font-size: 15px;
    }

    .contact-socials {
        margin-top: 40px;
    }

    .contact-socials a {
        color: white;
        font-size: 18px;
        margin-right: 20px;
        transition: 0.3s;
        opacity: 0.7;
    }

    .contact-socials a:hover {
        color: var(--primary-blue);
        opacity: 1;
    }

    /* Right Side (Form) */
    .contact-form-card {
        flex: 1 1 500px;
        padding: 40px;
    }

    .form-row {
        display: flex;
        gap: 20px;
    }

    .form-group {
        margin-bottom: 20px;
        flex: 1;
    }

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--dark-navy);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1.5px solid #e5e7eb;
        border-radius: 8px;
        outline: none;
        transition: 0.3s;
        font-size: 14px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--primary-blue);
    }

    .contact-btn {
        width: 100%;
        background: var(--primary-blue);
        color: white;
        padding: 14px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .contact-btn:hover {
        background: #0052d6;
        transform: translateY(-2px);
    }

    /* --- Responsive 320px and Mobile --- */

    @media (max-width: 768px) {
        .contact-content-grid {
            flex-direction: column;
        }

        .contact-info-card,
        .contact-form-card {
            padding: 30px 20px;
        }

        .form-row {
            flex-direction: column;
            gap: 0;
        }
    }

    @media (max-width: 480px) {
        .contact-header h1 {
            font-size: 26px;
        }

        .contact-main-wrapper {
            padding: 40px 10px;
        }

        .info-icon {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }
    }

    /* 320px Fixes */
    @media (max-width: 320px) {
        .contact-info-card h3 {
            font-size: 20px;
        }

        .info-text p {
            font-size: 13px;
        }
    }

    /* --contact us page section end */

    /* road construction section start */
    .road-service-page {
        font-family: 'Poppins', sans-serif;
        overflow-x: hidden;
        background-color: var(--white);
    }

    .service-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    /* Hero Banner */
    .service-hero {
        height: 450px;
        background: url('https://images.unsplash.com/photo-1590486803833-ffc91744a50c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
    }

    .service-hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-content {
        position: relative;
        z-index: 1;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 48px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 700px;
        margin: 15px auto;
    }

    .tagline {
        background: var(--primary-yellow);
        color: #000;
        padding: 5px 15px;
        font-weight: 700;
        font-size: 14px;
        border-radius: 4px;
    }

    /* Flex Row Section */
    .content-flex-row {
        display: flex;
        align-items: center;
        gap: 50px;
        margin-bottom: 80px;
    }

    .text-side {
        flex: 1;
    }

    .image-side {
        flex: 1;
    }

    .text-side h2 {
        font-size: 32px;
        color: var(--dark-gray);
        margin-bottom: 20px;
    }

    .text-side h2 span {
        color: var(--primary-yellow);
    }

    .feature-list {
        list-style: none;
        margin-top: 20px;
    }

    .feature-list li {
        margin-bottom: 12px;
        font-weight: 500;
    }

    .feature-list i {
        color: var(--primary-yellow);
        margin-right: 10px;
    }

    .image-side img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 20px 20px 0px var(--primary-yellow);
    }

    /* Process Section */
    .process-section {
        background: var(--light-gray);
        padding: 60px 20px;
        border-radius: 20px;
        margin-bottom: 80px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }

    .process-card {
        background: var(--white);
        padding: 30px;
        border-radius: 10px;
        position: relative;
        transition: 0.3s;
        border-bottom: 4px solid transparent;
    }

    .process-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--primary-yellow);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .step-num {
        font-size: 40px;
        font-weight: 900;
        color: var(--primary-yellow);
        position: absolute;
        top: 10px;
        right: 20px;
    }

    /* Why Choose Grid */
    .why-choose-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .choice-card {
        padding: 40px;
        background: var(--dark-gray);
        color: white;
        border-radius: 15px;
    }

    .choice-card i {
        font-size: 40px;
        color: var(--primary-yellow);
        margin-bottom: 20px;
    }

    /* Animations */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Fixes */

    @media (max-width: 992px) {
        .content-flex-row {
            flex-direction: column;
            text-align: center;
        }

        .feature-list {
            display: inline-block;
            text-align: left;
        }

        .image-side img {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
    }

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 32px;
        }

        .hero-content p {
            font-size: 15px;
        }
    }

    @media (max-width: 480px) {
        .service-hero {
            height: 350px;
        }

        .text-side h2 {
            font-size: 24px;
        }

        .process-card {
            padding: 20px;
        }
    }

    /* 320px Mobile Specific */
    @media (max-width: 320px) {
        .service-container {
            padding: 40px 10px;
        }

        .hero-content h1 {
            font-size: 26px;
        }

        .choice-card {
            padding: 20px;
        }

        .step-num {
            font-size: 30px;
        }
    }

    /* road construction section end */

    /* building construction section  start*/

    /* Custom Tweaks for Building Page and 320px Devices */

    @media (max-width: 480px) {
        .service-hero {
            height: 300px;
            /* Chhoti mobile screen par hero height kam */
        }

        .hero-content h1 {
            font-size: 24px;
            margin-top: 10px;
        }

        .section-title h2 {
            font-size: 22px;
        }

        .process-card h3 {
            font-size: 18px;
        }

        .process-card p {
            font-size: 13px;
            line-height: 1.5;
        }
    }

    /* 320px specific adjustments */
    @media (max-width: 320px) {
        .service-container {
            padding: 30px 10px;
        }

        .hero-content p {
            font-size: 13px;
        }

        .text-side h2 {
            font-size: 20px;
        }

        .feature-list li {
            font-size: 13px;
        }

        .choice-card {
            padding: 20px 15px;
        }
        .tagline{
            display: none;
        }
    }

    /* building construction section end */