   :root {
            --navy-blue: #002E5B;     /* Logo Navy Blue */
            --bright-orange: #F37021;  /* Logo Orange */
            --text-dark: #333333;
            --white: #ffffff;
            --bg-light: #f4f7f9;
             --navy: #002E5B;     /* Logo Navy */
            --orange: #F37021;   /* Logo Orange */
            --text: #444444;
            --light-bg: #f8fbff;
            --transition: all 0.3s ease;
                 --navy: #002E5B;      /* Logo Navy Blue */
            --dark-navy: #002144; /* Darker Navy for Footer */
            --orange: #F37021;    /* Logo Orange */
            --white: #ffffff;
            --text-grey: #a0aec0;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--navy-blue);
            color: white;
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;  
            font-size: 12px;
        }

        .top-info {
            display: flex;
            gap: 20px;
        }

        .top-info div {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .top-info i {
            color: var(--bg-light);
        }

        /* Header Styling */
        header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border-bottom: 3px solid var(--bright-orange);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Logo and Brand Name Section */
        .brand-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px;
        }

        .brand-logo img {
            height: 65px; /* Logo height */
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .brand-text .company-name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 20px;
            color: var(--navy-blue);
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }

        .brand-text .company-sub {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 12px;
            color: var(--bright-orange);
            letter-spacing: 1px;
        }

        /* Navigation Links */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--navy-blue);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 0;
        }

        .nav-menu a:hover {
            color: var(--bright-orange);
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 220px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            border-top: 3px solid var(--bright-orange);
        }

        .nav-menu li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li a {
            padding: 12px 20px;
            color: var(--navy-blue);
            text-transform: capitalize;
            font-weight: 500;
            border-bottom: 1px solid #eee;
        }

        .dropdown li a:hover {
            background-color: #fff7f2;
            color: var(--bright-orange);
            padding-left: 25px;
        }

        /* Mobile View Hamburger */
        .hamburger {
            display: none;
            font-size: 24px;
            color: var(--navy-blue);
            cursor: pointer;
        }
 /* --- HERO SECTION STYLING --- */
        .hero {
            position: relative;
            background-color: #f9fbff;
            overflow: hidden;
            padding: 80px 5% 40px 5%;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        /* Hero Text Side */
        .hero-content {
            flex: 1;
            z-index: 2;
        }

        .hero-content .badge {
            background: rgba(243, 112, 33, 0.1);
            color: var(--bright-orange);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            color: var(--navy-blue);
            line-height: 1.1;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .hero-content h1 span {
            color: var(--bright-orange);
        }

        .hero-content p {
            color: var(--text-grey);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 35px;
            max-width: 550px;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 5px;
            font-size: 14px;
            transition: var(--transition);
            display: inline-block;
        }

        .btn-primary {
            background: var(--bright-orange);
            color: white;
            border: 2px solid var(--bright-orange);
        }

        .btn-primary:hover {
            background: var(--navy-blue);
            border-color: var(--navy-blue);
        }

        .btn-secondary {
            border: 2px solid var(--navy-blue);
            color: var(--navy-blue);
        }

        .btn-secondary:hover {
            background: var(--navy-blue);
            color: white;
        }

        /* Hero Image Side */
        .hero-image {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: flex-end;
        }

        .main-img-wrapper {
            position: relative;
            width: 100%;
            max-width: 600px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
        }

        .main-img-wrapper img {
            width: 100%;
            height: 400px;
            display: block;
            transform: scale(1.05);
            object-fit: cover;
            transition: 5s ease;
        }

        .hero:hover .main-img-wrapper img {
            transform: scale(1);
        }

        /* Floating Experience Card */
        .exp-card {
            position: absolute;
            left: -30px;
            bottom: 40px;
            background: var(--navy-blue);
            color: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .exp-card h2 { font-size: 32px; color: var(--bright-orange); }
        .exp-card p { font-size: 12px; line-height: 1.2; font-weight: 500; }
.about-section {
            padding: 100px 5%;
            background-color: var(--light-bg);
            position: relative;
        }

        .about-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* --- Image Side Styling --- */
        .about-img-side {
            position: relative;
            display: flex;
            justify-content: flex-start;
        }

        .img-box-1 {
            width: 85%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
            z-index: 2;
        }

        .img-box-1 img {
            width: 100%;
            height: auto;
            display: block;
            transition: 0.5s;
        }

        .img-box-1:hover img { transform: scale(1.1); }

        /* Experience Badge Floating */
        .exp-badge {
            position: absolute;
            right: 0;
            bottom: -30px;
            background: var(--orange);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 10px 10px 30px rgba(243, 112, 33, 0.3);
            z-index: 3;
            animation: bounce 4s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .exp-badge h2 { font-size: 40px; font-family: 'Montserrat'; line-height: 1; }
        .exp-badge p { font-size: 14px; font-weight: 700; text-transform: uppercase; }

        /* Decoration Square */
        .about-img-side::before {
            content: "";
            position: absolute;
            top: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            border: 15px solid var(--navy);
            border-radius: 15px;
            z-index: 1;
            opacity: 0.2;
        }

        /* --- Text Side Styling --- */
        .about-text-side {
            z-index: 2;
        }

        .section-tag {
            color: var(--orange);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        .about-text-side h2 {
            font-family: 'Montserrat';
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: var(--navy);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-text-side p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.05rem;
        }

        /* Progress Bars */
        .skill-item { margin-bottom: 20px; }
        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-weight: 700;
            color: var(--navy);
            font-size: 14px;
        }
        .skill-bar {
            height: 8px;
            background: #e1e1e1;
            border-radius: 10px;
            overflow: hidden;
        }
        .skill-progress {
            height: 100%;
            background: var(--orange);
            border-radius: 10px;
            width: 0; /* Animated with JS or CSS */
            transition: 2s ease-in-out;
        }

        /* Feature Cards */
        .about-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }

        .a-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid var(--orange);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: 0.3s;
        }
        .a-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
        .a-card i { color: var(--orange); font-size: 24px; margin-bottom: 10px; }
        .a-card h4 { color: var(--navy); font-size: 16px; font-weight: 800; }
.services-section {
            padding: 100px 5%;
            background-color: var(--light-bg);
            text-align: center;
        }

        /* --- Section Header --- */
        .section-header {
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-header .tagline {
            color: var(--orange);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-family: 'Montserrat';
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: var(--navy);
            line-height: 1.2;
            text-transform: uppercase;
        }

        .section-header .line {
            width: 80px;
            height: 4px;
            background: var(--orange);
            margin: 20px auto;
            border-radius: 2px;
        }

        /* --- Services Grid --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* --- Service Card Styling --- */
        .service-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
            text-decoration: none; /* Linking Purpose */
            display: block;
            text-align: left;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        /* Card Image Area */
        .card-img {
            height: 240px;
            overflow: hidden;
            position: relative;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .card-img img {
            transform: scale(1.1) rotate(2deg);
        }

        /* Icon Overlay */
        .card-icon {
            position: absolute;
            bottom: -25px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: var(--orange);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(243, 112, 33, 0.4);
            z-index: 2;
            transition: var(--transition);
        }

        .service-card:hover .card-icon {
            background: var(--navy);
            transform: scale(1.1);
        }

        /* Card Content */
        .card-body {
            padding: 40px 25px 30px 25px;
        }

        .card-body h3 {
            font-family: 'Montserrat';
            color: var(--navy);
            font-size: 20px;
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .service-card:hover .card-body h3 {
            color: var(--orange);
        }

        .card-body p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .read-more {
            color: var(--orange);
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .read-more i {
            transition: var(--transition);
        }

        .service-card:hover .read-more i {
            transform: translateX(5px);
        }
           /* --- Why Choose Us Section --- */
        .why-choose-section {
            padding: 100px 5%;
            background-color: var(--navy); /* Professional Dark Theme */
            color: var(--white);
            overflow: hidden;
            position: relative;
        }

        /* Decorative Background Pattern */
        .why-choose-section::after {
            content: "";
            position: absolute;
            top: 0; right: 0;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(243, 112, 33, 0.1) 0%, transparent 70%);
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        /* --- Left Side Content --- */
        .why-content h4 {
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 14px;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .why-content h2 {
            font-family: 'Montserrat';
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            line-height: 1.2;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .why-content p {
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.7;
            font-size: 16px;
        }

        /* --- Right Side Features Grid --- */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px 20px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            text-align: left;
            position: relative;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
            border-color: var(--orange);
        }

        .feature-card i {
            font-size: 35px;
            color: var(--orange);
            margin-bottom: 20px;
            display: block;
        }

        .feature-card h3 {
            font-family: 'Montserrat';
            font-size: 17px;
            margin-bottom: 10px;
            color: var(--navy);
        }

        .feature-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Hover Effect for Icon */
        .feature-card:hover i {
            animation: pulse 1s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

           .machinery-section {
            padding: 100px 5%;
            background-color: var(--white);
            text-align: center;
        }

        /* --- Section Header --- */
        .section-header {
            margin-bottom: 60px;
        }

        .section-header span {
            color: var(--orange);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-family: 'Montserrat';
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: var(--navy);
            text-transform: uppercase;
        }

        /* --- Machinery Grid --- */
        .machinery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* --- Machine Card --- */
        .machine-card {
            background: var(--light-grey);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: var(--transition);
            position: relative;
        }

        .machine-card:hover {
            transform: translateY(-10px);
            background: var(--white);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--orange);
        }

        /* Image Container */
        .machine-img {
            height: 220px;
            background: #e2e8f0;
            overflow: hidden;
            position: relative;
        }

        .machine-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .machine-card:hover .machine-img img {
            transform: scale(1.1);
        }

        /* Machine Category Badge */
        .machine-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--orange);
            color: white;
            padding: 5px 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            z-index: 2;
        }

        /* Machine Details */
        .machine-info {
            padding: 25px;
            text-align: left;
        }

        .machine-info h3 {
            font-family: 'Montserrat';
            color: var(--navy);
            font-size: 19px;
            margin-bottom: 15px;
        }

        /* Technical Specs List */
        .specs-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .specs-list li {
            font-size: 13px;
            color: #555;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px dashed #ddd;
            padding-bottom: 4px;
        }

        .specs-list li b {
            color: var(--navy);
        }

        /* Action Button */
        .btn-view {
            display: block;
            width: 100%;
            padding: 12px;
            background: var(--navy);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            border-radius: 6px;
            transition: var(--transition);
            text-align: center;
        }

        .machine-card:hover .btn-view {
            background: var(--orange);
        }

      .testimonial-section {
            padding: 100px 5%;
            background-color: var(--light-bg);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Background Decoration */
        .testimonial-section::before {
            content: "\f10d"; /* FontAwesome Quote Left */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: 50px;
            left: 50px;
            font-size: 150px;
            color: rgba(0, 46, 91, 0.05);
            z-index: 0;
        }

        /* --- Section Header --- */
        .section-header {
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .section-header span {
            color: var(--orange);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-family: 'Montserrat';
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: var(--navy);
            text-transform: uppercase;
        }

        /* --- Review Grid --- */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* --- Review Card --- */
        .review-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: left;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
            border-bottom: 4px solid transparent;
        }

        .review-card:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Star Rating */
        .stars {
            color: #ffc107; /* Gold Star Color */
            margin-bottom: 20px;
            font-size: 14px;
        }

        /* Review Text */
        .review-text {
            color: var(--text-grey);
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 15px;
            position: relative;
        }

        /* Client Profile */
        .client-profile {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-img {
            width: 60px;
            height: 60px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            overflow: hidden;
            border: 2px solid var(--orange);
        }

        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-info h4 {
            color: var(--navy);
            font-family: 'Montserrat';
            font-size: 16px;
            margin-bottom: 2px;
        }

        .client-info p {
            color: var(--orange);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }
     /* --- Footer Section --- */
        footer {
            background-color: var(--dark-navy);
            color: var(--white);
            padding: 80px 5% 20px 5%;
            position: relative;
        }

        /* Top Border Accent */
        footer::before {
            content: "";
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 5px;
            background: linear-gradient(to right, var(--orange), var(--navy));
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* --- Column 1: About & Social --- */
        .footer-col .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .footer-logo img {
            height: 50px;
            filter: brightness(1.2); /* Make logo pop on dark bg */
        }

        .footer-logo-text {
            font-family: 'Montserrat';
            font-weight: 800;
            font-size: 18px;
            color: var(--white);
            line-height: 1.1;
            text-transform: uppercase;
        }

        .footer-logo-text span {
            color: var(--orange);
            font-size: 10px;
            display: block;
        }

        .footer-col p {
            font-size: 14px;
            color: var(--text-grey);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--orange);
            transform: translateY(-5px);
        }

        /* --- Column 2 & 3: Links & Services --- */
        .footer-col h3 {
            font-family: 'Montserrat';
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: "";
            position: absolute;
            left: 0; bottom: 0;
            width: 40px; height: 2px;
            background: var(--orange);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-grey);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--orange);
            padding-left: 5px;
        }

        /* --- Column 4: Contact Info --- */
        .contact-info li {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            color: var(--text-grey);
            font-size: 14px;
            align-items: flex-start;
        }

        .contact-info i {
            color: var(--orange);
            font-size: 18px;
            margin-top: 3px;
        }

        /* --- Footer Bottom Bar --- */
        .footer-bottom {
            margin-top: 60px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--text-grey);
        }

        .footer-bottom b {
            color: var(--orange);
        }

        /* --- Back to Top Button --- */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--orange);
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            cursor: pointer;
            z-index: 100;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .back-to-top:hover {
            background: var(--navy);
            transform: scale(1.1);
        }
.about-hero {
    position: relative;
    width: 100%;
    height: 400px; /* Fixed Height as requested */
    background: url('https://images.unsplash.com/photo-1541913053911-37d4003d6995?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark Navy Overlay with Gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, var(--navy) 30%, rgba(0, 46, 91, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Breadcrumb Styling */
.breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--text-grey);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb span {
    color: var(--text-grey);
    margin: 0 8px;
}

.breadcrumb .active {
    color: var(--orange);
    font-weight: 600;
}

/* Typography */
.hero-content h1 {
    color: var(--navy-blue);
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    max-width: 700px;
}

.hero-content h1 span {
    color: var(--orange);
}

.hero-content p {
    color: var(--text-grey);
    font-size: 1.1rem;
    margin-top: 15px;
    max-width: 500px;
    opacity: 0.9;
    border-left: 3px solid var(--orange);
    padding-left: 15px;
}

/* Unique Geometric Shape (Bottom Right) */
.hero-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--orange);
    clip-path: polygon(100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 2;
}
.bihar-special {
    padding: 80px 20px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.bihar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Badge Styling */
.badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(243, 112, 33, 0.1);
    color: var(--orange);
    font-weight: 700;
    font-size: 13px;
    border-radius: 50px;
    border: 1px solid var(--orange);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bihar-title {
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.bihar-title span {
    color: var(--orange);
    position: relative;
}

.bihar-desc {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.8;
}

/* Unique List Styling */
.bihar-features {
    list-style: none;
    margin-bottom: 35px;
}

.bihar-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}

.bihar-features .icon {
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 2px;
    transform: rotate(45deg);
}

/* Call Button */
.call-btn {
    padding: 15px 35px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 46, 91, 0.2);
}

.call-btn:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

/* Visual Part with Layered Design */
.bihar-visual {
    position: relative;
}

.image-box {
    position: relative;
    z-index: 2;
}

.image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border-bottom: 8px solid var(--orange);
}

.trust-card {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-left: 5px solid var(--orange);
}

.trust-card h3 {
    color: var(--navy);
    font-size: 24px;
}

.trust-card p {
    font-size: 12px;
    color: var(--text-grey);
    text-transform: uppercase;
    font-weight: 700;
}

.accent-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0, 46, 91, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    z-index: 1;
}
.progress-section {
    padding: 60px 20px;
    background-color: var(--navy); /* Deep Navy Background */
    position: relative;
}

.progress-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Unique Stat Card Styling */
.stat-card {
    background: rgba(255, 255, 255, 0.05); /* Glassy Look */
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.stat-card:hover {
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: var(--white);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 15px;
    transition: 0.3s;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

/* Numbers & Text */
.stat-info h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    transition: 0.3s;
}

.stat-info p {
    color: var(--text-grey);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Interaction: Text color changes on hover */
.stat-card:hover .stat-info h2 {
    color: var(--navy);
}
.stat-card:hover .stat-info p {
    color: var(--orange);
}

/* Decorative Line on Card */
.card-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 4px;
    background: var(--orange);
    transition: 0.4s;
}

.stat-card:hover .card-line {
    width: 100%;
}

/* Active State (One card always highlighted) */
.active-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--orange);
}
.building-hero {
    position: relative;
    width: 100%;
    height: 450px; /* Base height 400px-450px */
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Dark Gradient Overlay with Blueprint Grid */
.overlay-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--navy) 40%, rgba(0, 46, 91, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Unique Structural Frame Design */
.building-frame {
    max-width: 650px;
    border-left: 5px solid var(--orange); /* The "Beam" */
    padding-left: 30px;
    position: relative;
}

.tagline {
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.main-title {
    color: var(--white);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.main-title span {
    color: var(--orange);
    text-transform: uppercase;
}

.sub-title {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

/* CTA & Stats Group */
.cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
    border: 2px solid var(--orange);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
}

.experience-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.experience-box strong {
    font-size: 30px;
    color: var(--orange);
    line-height: 1;
}

.experience-box span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

/* Background Decorative Element */
.crane-accent {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 300px;
    height: 300px;
    background: repeating-linear-gradient(45deg, var(--orange), var(--orange) 10px, transparent 10px, transparent 20px);
    opacity: 0.1;
    z-index: 2;
    border-radius: 50%;
}

.bihar-construction {
    padding: 100px 20px;
    background: #ffffff;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* --- Image & Badge Design --- */
.visual-wrapper {
    position: relative;
    padding-bottom: 20px;
}

.main-frame {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: visible;
}

.main-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 20px 20px 0px var(--navy); /* Solid Navy Shadow */
}

.trust-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 20px;
    border-radius: 5px;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.4);
}

.badge-content .count {
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.badge-content .label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- Content Design --- */
.top-label {
    color: var(--orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.title {
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}

.title span {
    color: var(--orange);
}

.desc {
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 16px;
}

/* Feature Cards */
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 5px;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.feature-card:hover {
    border-bottom: 3px solid var(--orange);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-line {
    width: 30px;
    height: 4px;
    background: var(--orange);
    margin-bottom: 15px;
}

.feature-card h4 {
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 17px;
}

.feature-card p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.5;
}

/* Buttons */
.btn-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.primary-btn {
    padding: 15px 35px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s;
}

.primary-btn:hover {
    background: var(--orange);
}

.call-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--orange);
}

.working-process {
    padding: 80px 20px;
    background-color: var(--bg-light);
    font-family: 'Poppins', sans-serif;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.step-tag {
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.process-title {
    color: var(--navy);
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 10px;
}

.process-title span {
    color: var(--orange);
}

.process-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0;
}

/* --- Process Grid Design --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 46, 91, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.process-card:hover, .process-card.active {
    border-top: 4px solid var(--orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 91, 0.1);
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: 0.3s;
}

.process-card:hover .step-num, .process-card.active .step-num {
    background: var(--orange);
}

.card-content h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Desktop Connector Line */
.connector {
    position: absolute;
    top: 65px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--navy);
    opacity: 0.1;
    z-index: 1;
}

.why-choose-us {
    padding: 100px 20px;
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.wc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wc-header {
    text-align: center;
    margin-bottom: 60px;
}

.wc-tag {
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    background: rgba(243, 112, 33, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
}

.wc-title {
    color: var(--navy);
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 15px;
    line-height: 1.2;
}

.wc-title span {
    color: var(--orange);
}

.wc-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 1.1rem;
}

/* --- Features Grid --- */
.wc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.wc-card {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-bottom: 5px solid transparent;
    position: relative;
    z-index: 1;
}

.wc-card:hover {
    background: var(--navy);
    transform: translateY(-10px);
    border-bottom: 5px solid var(--orange);
}

/* Icon Styling */
.wc-icon-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.wc-icon-box svg {
    width: 30px;
    height: 30px;
}

.wc-card:hover .wc-icon-box {
    background: var(--orange);
    color: var(--white);
}

/* Card Typography */
.wc-card h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: 0.3s;
}

.wc-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: 0.3s;
}

.wc-card:hover h3, .wc-card:hover p {
    color: var(--white);
}

/* Special Accent Card */
.wc-card.accent {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 46, 91, 0.08);
}
 /* --- Contact Header Styling --- */
        .contact-header {
            position: relative;
            width: 100%;
            height: 400px;
            background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        /* Modern Navy Overlay with subtle gradient */
        .contact-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 46, 91, 0.9), rgba(0, 33, 68, 0.7));
            z-index: 1;
        }

        /* Decorative Geometric Element */
        .contact-header::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: var(--orange);
            opacity: 0.1;
            border-radius: 50%;
            z-index: 2;
        }

        .container {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            padding: 0 20px;
        }

        /* Breadcrumb Glass effect */
        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            display: inline-flex;
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 14px;
        }

        .breadcrumb a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--orange);
        }

        .breadcrumb span {
            color: var(--orange);
            margin: 0 10px;
            font-weight: bold;
        }

        .breadcrumb .active {
            color: var(--orange);
            font-weight: 600;
        }

        /* Title Styling */
        .contact-header h1 {
            color: var(--white);
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .contact-header h1 span {
            color: var(--orange);
        }

        .contact-header p {
            color: var(--white);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Unique Bottom Design */
        .header-slant {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background: #ffffff; /* Page Background */
            clip-path: polygon(0 100%, 100% 100%, 100% 0);
            z-index: 4;
        }
   .contact-section {
            padding: 80px 20px;
            background-color: #f8fafc;
        }

        .form-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 46, 91, 0.1);
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
        }

        /* Form Content Area */
        .form-content {
            padding: 40px;
            width: 100%;
        }

        .form-header {
            margin-bottom: 30px;
            text-align: center;
        }

        .form-header h2 {
            color: var(--navy);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .form-header p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Grid for Inputs */
        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy);
            margin-left: 2px;
        }

        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            font-size: 15px;
            color: var(--text-dark);
            transition: var(--transition);
            background: #fdfdfd;
        }

        .form-group input:focus, 
        .form-group textarea:focus {
            outline: none;
            border-color: var(--orange);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(243, 112, 33, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Unique Submit Button */
        .submit-btn {
            grid-column: span 2;
            background: var(--navy);
            color: var(--white);
            padding: 15px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            background: var(--orange);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(243, 112, 33, 0.3);
        }

        /* --- RESPONSIVE DESIGN --- */

        /* Tablet View */
        @media (max-width: 1024px) {
            .nav-menu {
                position: fixed;
                top: 88px; /* Topbar + Header height */
                left: -100%;
                width: 100%;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 40px;
                gap: 10px;
                transition: 0.4s ease;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger { display: block; }
            .top-bar { display: none; } /* Space saving on mobile */

            .nav-menu li { width: 100%; }
            .nav-menu a {
                font-size: 18px;
                padding: 15px;
                border-bottom: 1px solid #f0f0f0;
                justify-content: space-between;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                display: none;
                box-shadow: none;
                transform: none;
                background: #fafafa;
                margin-left: 20px;
            }

            .nav-menu li.open-dropdown .dropdown {
                display: block;
            }
             .hero-container {
                flex-direction: column;
                text-align: center;
            }
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-btns { justify-content: center; }
            .hero-image { justify-content: center; width: 100%; margin-top: 40px; }
            .exp-card { left: 10px; }
            .about-container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
            .about-img-side { justify-content: center; }
            .skill-info { justify-content: center; gap: 50px; }
            .about-cards { justify-content: center; }
              .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .why-content {
                max-width: 800px;
                margin: 0 auto;
            }
             .progress-container {
        grid-template-columns: repeat(2, 1fr);
    }
      .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .visual-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    .feature-list {
        text-align: left;
    }
    .btn-group {
        justify-content: center;
    }
     .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .connector { display: none; }
        }
@media (max-width: 992px) {
    .bihar-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .bihar-features li {
        justify-content: center;
    }
    .image-box img {
        height: 350px;
    }
      .main-title { font-size: 2.5rem; }
}
   @media (min-width: 769px) and (max-width: 1024px) {
            .services-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
    .about-hero {
        height: 350px; /* Thoda kam height mobile ke liye */
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
     .building-hero { height: auto; padding: 80px 0; }
    .overlay-grid {
        background: linear-gradient(rgba(0, 46, 91, 0.9), rgba(0, 46, 91, 0.9));
    }
    .building-frame {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
    .cta-group { justify-content: center; }
     .wc-title {
        font-size: 2.2rem;
    }
        .contact-header h1 {
                font-size: 2.5rem;
            }
            .contact-header p {
                font-size: 1rem;
            }
             .contact-form {
                grid-template-columns: 1fr;
            }
            .form-group.full-width {
                grid-column: span 1;
            }
            .submit-btn {
                grid-column: span 1;
            }
            .form-content {
                padding: 30px 20px;
            }
}

        /* Perfect Mobile View (320px) */
        @media (max-width: 480px) {
            .brand-logo img { height: 45px; }
            
            .brand-text .company-name {
                font-size: 13px; /* Smaller text for small screens */
            }
            .brand-text .company-sub {
                font-size: 8px;
            }

            .brand-container { gap: 8px; }

            .nav-menu { top: 68px; }
             .hero { padding-top: 50px; }
            .hero-content h1 { font-size: 1.8rem; }
            .hero-content p { font-size: 0.9rem; }
            .hero-btns .btn { width: 100%; text-align: center; }
            
            .main-img-wrapper { border-radius: 10px; }
            .exp-card {
                padding: 10px;
                bottom: 10px;
                left: 5px;
            }
            .exp-card h2 { font-size: 24px; }
            .exp-card p { font-size: 10px; }
             .about-section { padding: 60px 5%; }
            .about-img-side::before { display: none; }
            .img-box-1 { width: 100%; }
            .exp-badge {
                padding: 15px;
                right: 10px;
                bottom: -20px;
            }
            .exp-badge h2 { font-size: 24px; }
            .exp-badge p { font-size: 10px; }
            .about-cards { grid-template-columns: 1fr; }
            .about-text-side h2 { font-size: 1.6rem; }
            .about-text-side p { font-size: 0.95rem; }
             .services-section {
                padding: 60px 15px;
            }
            .services-grid {
                grid-template-columns: 1fr; /* Single column for 320px */
            }
            .section-header h2 {
                font-size: 1.6rem;
            }
            .card-img {
                height: 200px;
            }
            .card-body {
                padding: 30px 20px 20px 20px;
            }
             .why-choose-section {
                padding: 60px 20px;
            }
            .features-grid {
                grid-template-columns: 1fr; /* Single column stack */
            }
            .why-content h2 {
                font-size: 1.6rem;
            }
            .feature-card {
                padding: 25px 20px;
            }
            .feature-card i {
                font-size: 30px;
            }
                        .machinery-section {
                padding: 60px 15px;
            }
            .section-header h2 {
                font-size: 1.6rem;
            }
            .machine-img {
                height: 180px;
            }
            .machine-info {
                padding: 20px 15px;
            }
            .machinery-grid {
                grid-template-columns: 1fr; /* Stacked cards for 320px */
            }
             .testimonial-section {
                padding: 60px 15px;
            }
            .review-grid {
                grid-template-columns: 1fr; /* One column on 320px */
            }
            .review-card {
                padding: 30px 20px;
            }
            .section-header h2 {
                font-size: 1.6rem;
            }
            .testimonial-section::before {
                font-size: 80px;
                top: 20px;
                left: 20px;
            }
             footer {
                padding: 60px 20px 20px 20px;
                text-align: center;
            }
            .footer-col h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .footer-links a {
                justify-content: center;
            }
            .contact-info li {
                flex-direction: column;
                align-items: center;
                gap: 5px;
            }
            .footer-logo {
                justify-content: center;
            }
            .social-links {
                justify-content: center;
            }
            .bihar-title {
        font-size: 2rem;
    }
    .trust-card {
        right: 10px;
        top: -10px;
        padding: 15px;
    }
    .call-btn {
        display: block;
        width: 100%;
    }
     .progress-section {
        padding: 40px 15px;
    }
    .stat-info h2 {
        font-size: 1.8rem;
    }

      .main-title { font-size: 2rem; }
    .sub-title { font-size: 1rem; }
    .title {
        font-size: 2rem;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
    .main-frame img {
        height: 350px;
        box-shadow: 10px 10px 0px var(--navy);
    }
    .trust-badge {
        left: 0;
        top: -10px;
    }
     .process-title {
        font-size: 1.8rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
     .wc-header {
        text-align: left;
    }
    .wc-title {
        font-size: 1.8rem;
    }
        }

        /* Extra Page Content Space */
        .hero-placeholder {
            height: 100vh;
            background: linear-gradient(rgba(0,46,91,0.7), rgba(0,46,91,0.7)), url('https://images.unsplash.com/photo-1531834361271-97bf764f6645?auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }
          /* Fix for 320px width */
        @media (max-width: 320px) {
            .hero-content h1 { font-size: 1.6rem; }
            .brand-text .company-name { font-size: 12px; }
              .about-text-side h2 { font-size: 1.4rem; }
            .a-card h4 { font-size: 14px; }
              .why-content h2 {
                font-size: 1.4rem;
            }
            .feature-card h3 {
                font-size: 15px;
            }
              .section-header h2 {
                font-size: 1.4rem;
            }
            .machine-info h3 {
                font-size: 17px;
            }
              .section-header h2 {
                font-size: 1.4rem;
            }
            .review-text {
                font-size: 14px;
            }
              .footer-logo-text { font-size: 15px; }
            .footer-col h3 { font-size: 16px; }
            footer { padding: 40px 15px 20px 15px; }
             .bihar-special {
        padding: 40px 15px;
    }
    .bihar-title {
        font-size: 1.6rem;
    }
    .bihar-desc {
        font-size: 0.95rem;
    }
    .image-box img {
        height: 250px;
    }
    .trust-card {
        padding: 10px;
        right: 5px;
    }
    .trust-card h3 {
        font-size: 18px;
    }
     .progress-container {
        grid-template-columns: 1fr; /* Stack everything vertically */
        gap: 20px;
    }
    .stat-card {
        padding: 30px 15px;
    }
    .stat-info h2 {
        font-size: 1.6rem;
    }
    .stat-icon {
        width: 50px;
        height: 50px;
        padding: 12px;
    }
     .building-hero {
        padding: 50px 0;
    }
    .main-title {
        font-size: 1.7rem;
    }
    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    .experience-box {
        margin-top: 10px;
    }
    .tagline {
        font-size: 12px;
        letter-spacing: 1px;
    }
      .bihar-construction {
        padding: 50px 10px;
    }
    .title {
        font-size: 1.6rem;
    }
    .desc {
        font-size: 0.95rem;
    }
    .main-frame img {
        height: 280px;
    }
    .btn-group {
        flex-direction: column;
        gap: 15px;
    }
    .primary-btn {
        width: 100%;
        text-align: center;
    }
    .trust-badge {
        padding: 12px;
    }
    .badge-content .count {
     
       font-size: 22px;
    }
      .working-process {
        padding: 40px 15px;
    }
    .process-title {
        font-size: 1.5rem;
    }
    .process-card {
        padding: 30px 20px;
        text-align: center;
    }
    .step-num {
        margin: 0 auto 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .card-content h3 {
        font-size: 1.1rem;
    }
    .card-content p {
        font-size: 0.85rem;
    }
    .why-choose-us {
        padding: 50px 15px;
    }
    .wc-title {
        font-size: 1.6rem;
    }
    .wc-subtitle {
        font-size: 0.95rem;
    }
    .wc-card {
        padding: 30px 20px;
        text-align: center;
    }
    .wc-icon-box {
        margin: 0 auto 20px;
    }
     .contact-header {
                height: 420px; /* Thoda zyada height mobile ke liye */
            }
            .contact-header h1 {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }
            .contact-header p {
                font-size: 0.9rem;
            }
            .breadcrumb {
                font-size: 12px;
                padding: 6px 15px;
            }
            .header-slant {
                height: 20px;
            }
            .contact-section {
                padding: 40px 10px;
            }
            .form-header h2 {
                font-size: 1.5rem;
            }
            .form-content {
                padding: 20px 15px;
            }
            .form-group label {
                font-size: 13px;
            }
            .form-group input, 
            .form-group textarea {
                padding: 10px;
                font-size: 14px;
            }
            .submit-btn {
                font-size: 14px;
                padding: 12px;
            }
        }