/* --- General CSS Reset & Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: #2c3e50; /* Dark Blue */
}

/* --- Utilities --- */
.btn {
    display: inline-block;
    background-color: #e67e22; /* Bright Orange CTA */
    color: #fff;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #d35400; /* Darker Orange */
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #d35400; /* Orange tagline */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 60px;
}

/* --- Header & Navigation --- */
header {
    background-color: black;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px; /* Adjust based on your logo shape */
    width: auto;
}
.hero-box {
  /* Step 1: Set the image path */
  background-image: url('your-image.jpg');

  /* Step 2: Prevent the image from repeating/tiling */
  background-repeat: no-repeat;

  /* Step 3: Center the image within the container */
  background-position: center;

  /* Step 4: Scale the image to perfectly fill the container */
  background-size: cover;

  /* Step 5: Ensure the empty div has space to display */
  height: 400px;
  width: 100%;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.nav-links a:hover, .nav-links a.active {
    color: #e67e22; /* Orange hover/active state */
}

/* --- Hero Section (Home Page) --- */
.hero {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%); /* Deep blue from card */
    color: #fff;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px; /* Offset for fixed header */
}

.hero h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: #e67e22; /* Orange highlight */
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Page Banner (Internal Pages) --- */
.page-banner {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)); /* Dark blue overlay */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    margin-top: 80px;
}

.page-banner h1 {
    color: #fff;
    font-size: 40px;
}

/* --- General Content Sections --- */
section {
    padding: 80px 0;
}

.white-section {
    background-color: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-icon {
    font-size: 40px;
    color: #e67e22;
    margin-bottom: 20px;
}

.service-item h4 {
    margin-bottom: 15px;
    border-bottom: 2px solid #e67e22;
    display: inline-block;
    padding-bottom: 5px;
}

/* --- Contact Page Specific --- */
.contact-grid {
    grid-template-columns: 1fr 2fr;
}

.contact-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.contact-method {
    margin-bottom: 20px;
}

.contact-method h5 {
    color: #e67e22;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* --- Footer --- */
footer {
    background-color: #2c3e50; /* Deep blue from card */
    color: #fff;
    padding: 60px 0 20px 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-item h5 {
    color: #e67e22; /* Orange highlight */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-item p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
}

/* --- Responsive Design (Mobile First) --- */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .nav-links {
        display: none; /* Hide standard nav on mobile (needs JS hamburger menu to show) */
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-banner {
        padding: 60px 0;
    }

    .page-banner h1 {
        font-size: 30px;
    }

    .content-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
	.hero-box {
  /* Step 1: Set the image path */
  background-image: url('images/1.jpg');

  /* Step 2: Prevent the image from repeating/tiling */
  background-repeat: no-repeat;

  /* Step 3: Center the image within the container */
  background-position: center;

  /* Step 4: Scale the image to perfectly fill the container */
  background-size: cover;

  /* Step 5: Ensure the empty div has space to display */
  height: 400px;
  width: 100%;
}
}