css/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a252f;
}

.logo i {
    color: #f39c12;
}

.logo span {
    color: #f39c12;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #f39c12;
}

.btn-nav {
    background: #f39c12;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
}

.btn-nav:hover {
    background: #d35400 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 37, 47, 0.7), rgba(26, 37, 47, 0.7)), 
                url('https://unsplash.com') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #f39c12;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 18px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d35400;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    border-top: 4px solid #f39c12;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card i {
    font-size: 40px;
    color: #f39c12;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f1f2f6;
}

.about-content {
    max-width: 800px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    margin-top: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.about-text i {
    color: #2ed573;
    margin-right: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 32px;
}

.contact p {
    text-align: center;
    margin-bottom: 40px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.quote-form input, .quote-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn-submit {
    background: #1a252f;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    background: #f39c12;
}

.contact-info {
    background: #1a252f;
    color: #fff;
    padding: 30px;
    border-radius: 6px;
}

.contact-info h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
}

.contact-info p {
    text-align: left;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info i {
    color: #f39c12;
    margin-right: 10px;
    width: 20px;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media(max-width: 768px) {
    .nav-links {
        display: none;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 30px;
    }
}