:root {
    --primary-yellow: #FFB100;
    --dark-bg: #1A1A1A;
    --darker-bg: #111111;
    --light-bg: #F8F9FA;
    --text-main: #333333;
    --text-light: #777777;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header & Navigation */
header {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo i {
    color: var(--primary-yellow);
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-yellow);
}

.btn-quote {
    background-color: var(--primary-yellow);
    color: var(--darker-bg);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.btn-quote:hover {
    opacity: 0.9;
}

/* Hero Section with Exact Background Image */


.hero-content {
  
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-yellow);
}
.hero {
  position: relative;
  height: 100vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
}
.hero p {
    color: #CCCCCC;
    margin-bottom: 30px;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--darker-bg);
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

/* Features Bar */
.features-bar {
    background-color: var(--darker-bg);
    color: var(--white);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 5%;
    border-top: 3px solid var(--primary-yellow);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-item i {
    font-size: 2.2rem;
    color: var(--primary-yellow);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* General Section Layouts */
.section-container {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.white-header span, .white-header h2, .white-header p {
    color: var(--white);
}

.white-header p {
    color: #CCCCCC;
}

.dark-projects-bg {
    background-color: var(--darker-bg);
}

/* Services Grid (Strictly 3 Columns Layout) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.service-body {
    padding: 25px;
}

.service-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.read-more {
    color: var(--darker-bg);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--primary-yellow);
}

/* About Us Section Styles */
.about-section {
    padding: 80px 5%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 6px;
    height: 400px;
    object-fit: cover;
}

.check-list {
    margin-top: 20px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.check-list li i {
    color: var(--primary-yellow);
}

.core-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    text-align: center;
}

.value-item {
    background: var(--light-bg);
    padding: 30px 20px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Stats Counter Section */
.stats-section {
    background-color: var(--darker-bg);
    color: var(--white);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    padding: 60px 5%;
}

.stat-box h2 {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 5px;
}

.stat-box p {
    color: #CCCCCC;
    font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 50px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
}

.cta-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-banner p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 5%;
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary-yellow);
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-info-card p span {
    color: var(--text-main);
    font-weight: 500;
}

.contact-info-card p i {
    color: var(--primary-yellow);
    margin-right: 8px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: var(--light-bg);
    color: var(--text-main);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 0.85rem;
    transition: background 0.3s, color 0.3s;
}

.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--darker-bg);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-bar, .services-grid, .core-values {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .about-grid, .contact-grid, .cta-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .features-bar, .services-grid, .core-values, .stats-section, .form-row {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 60px 5%;
    }
}