 /* Basic Reset & Fonts */
 * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
 body { color: #333; line-height: 1.6; padding-top: 80px;}
 
 /* Theme Colors: Construction Yellow/Orange & Dark Slate */
 :root { --primary: #f39c12; --dark: #2c3e50; --light: #f8f9fa; }

 /* Header & Navigation */
 header { background: var(--dark); position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
 .nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 20px; }
 .logo { color: #fff; font-size: 24px; font-weight: bold; }
 .logo span { color: var(--primary); }
 .nav-links { list-style: none; display: flex; }
 .nav-links li { margin-left: 20px; }
 .nav-links a { color: #fff; text-decoration: none; font-weight: 500; transition: 0.3s; }
 .nav-links a:hover { color: var(--primary); }

 /* Hero Section */
 .hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1200') no-repeat center center/cover; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; padding: 0 20px; }
 .hero h1 { font-size: 48px; margin-bottom: 10px; }
 .hero h1 span { color: var(--primary); }
 .hero p { font-size: 20px; margin-bottom: 20px; max-width: 600px; }
 .btn { background: var(--primary); color: #fff; padding: 12px 30px; text-decoration: none; font-weight: bold; border-radius: 5px; transition: 0.3s; }
 .btn:hover { background: #e67e22; }

 /* Extra CSS for Home Page Elements */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background: #fff;
    color: var(--dark);
}
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}
.highlights-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.highlight-card {
    flex: 1;
    min-width: 250px;
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.highlight-card:hover {
    transform: translateY(-5px);
}
.highlight-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.highlight-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}
.cta-section {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.cta-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.cta-section p {
    margin-bottom: 25px;
    opacity: 0.9;
}
.nav-links a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* About Page Styling 
.inner-banner {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1200') no-repeat center center/cover;
    padding: 80px 20px 60px !important;
    text-align: center;
    color: #fff;
}*/

.inner-banner {
    background: linear-gradient(rgba(44, 62, 80, 0.65), rgba(44, 62, 80, 0.65)), 
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1200') no-repeat center center/cover;
    text-align: center;
    color: #fff;
    
    /* Image ko bina kate bada dikhane ke liye height settings */
    min-height: 500px; /* Is se banner ko ek proper badi height mil jayegi */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 80px !important; /* Navbar ke niche space bhi bani rahegi */
}

.inner-banner h1 {
    font-size: 38px;
    margin-bottom: 10px;
}
.inner-banner p {
    font-size: 16px;
    color: var(--primary);
}
.about-page-content {
    padding: 60px 20px;
}
.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.about-page-img, .about-page-text {
    flex: 1;
    min-width: 300px;
}
.about-page-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.about-page-text h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 20px;
}
.about-page-text p {
    margin-bottom: 15px;
    color: #555;
}
.stats-counter {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.stat-item {
    background: var(--light);
    padding: 15px 25px;
    border-radius: 6px;
    text-align: center;
    border-left: 4px solid var(--primary);
    flex: 1;
}
.stat-item h3 {
    font-size: 28px;
    color: var(--dark);
}
.stat-item p {
    font-size: 13px;
    margin: 0;
    color: #777;
    font-weight: bold;
}
.values-section {
    background: var(--light);
    max-width: 100%;
}
.values-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.value-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    text-align: center;
}
.v-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.value-box h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* Services Page Specific Styling */
.services-banner {
    /* Ismein hum construction tools wali background image use kar rahe hain */
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), 
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1200') no-repeat center center/cover;
}
.services-page-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); /* 2 columns badi screen par, auto-adjust mobile par */
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex; /* Image aur text side-by-side karne ke liye */
    border-bottom: 4px solid var(--dark);
    transition: 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary);
}
.s-card-img {
    flex: 1;
    min-width: 180px;
}
.s-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image bina stretch hue box mein fit rahegi */
}
.s-card-text {
    flex: 1.5;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.s-card-text h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}
.s-card-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile responsive adjustments specifically for services cards */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        flex-direction: column; /* Mobile par image upar aur text neeche ho jayega */
    }
    .s-card-img {
        height: 200px;
    }
}

/* Contact Page Specific Styling */
.contact-banner {
    background: linear-gradient(rgba(44, 62, 80, 0.75), rgba(44, 62, 80, 0.75)), 
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1200') no-repeat center center/cover;
}
.contact-page-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}
.contact-details, .contact-form-container {
    flex: 1;
    min-width: 300px;
}
.contact-details h2, .contact-form-container h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 15px;
}
.contact-desc {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}
.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-block {
    display: flex;
    gap: 15px;
    align-items: center;
    background: var(--light);
    padding: 15px;
    border-radius: 6px;
}
.info-icon {
    font-size: 24px;
}
.info-text h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 2px;
}
.info-text p {
    color: #555;
    font-size: 14px;
}

/* Form Fields Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.form-group input, .form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}
.submit-btn {
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

/* Mobile Alignment */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

 /* Sections General */
 section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
 .section-title { text-align: center; font-size: 36px; margin-bottom: 40px; position: relative; }
 .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin: 10px auto 0; }

 /* About Section */
 .about-content { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
 .about-text { flex: 1; min-width: 300px; }
 .about-img { flex: 1; min-width: 300px; }
 .about-img img { width: 100%; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

 /* Services Section */
 .services { background: var(--light); max-width: 100%; }
 .services-container { display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
 .service-box { background: #fff; padding: 30px; text-align: center; border-radius: 8px; flex: 1; min-width: 280px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 5px solid var(--primary); }
 .service-box h3 { margin-bottom: 15px; color: var(--dark); }

 /* Contact Section */
 .contact-container { max-width: 600px; margin: 0 auto; text-align: center; }
 .contact-info { margin-bottom: 30px; font-size: 18px; }
 .contact-info p { margin: 10px 0; }

 /* Footer */
 footer { background: var(--dark); color: #fff; text-align: center; padding: 20px; font-size: 14px; }
 /* Mobile Responsive CSS */
@media (max-width: 768px) {
.nav-container {
 flex-direction: column;
 padding: 10px;
}
.logo {
 margin-bottom: 10px;
 font-size: 20px;
}
.nav-links {
 width: 100%;
 justify-content: center;
 flex-wrap: wrap;
}
.nav-links li {
 margin: 5px 10px;
}
.nav-links a {
 font-size: 14px;
}

/* Hero section text adjustments for mobile */
.hero h1 {
 font-size: 32px;
}
.hero p {
 font-size: 16px;
}
}