/* styles.css */
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #e74c3c;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.logo span {
    color: #f9e79f;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 0.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem;
    display: block;
}

nav ul li a:hover {
    color: #f9e79f;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1603138461420-e24168721842');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* About Section */
.about {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    order: -1;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: #e74c3c;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: #e74c3c;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    font-size: 0.8rem;
}

/* Page-specific styles */
.page-header {
    background-color: #e74c3c;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.page-content {
    padding: 3rem 0;
    line-height: 1.8;
}

.page-content h2 {
    color: #e74c3c;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.page-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.page-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-content ul li {
    margin-bottom: 0.5rem;
}

/* Contact Form Styles */
.contact-form {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #e74c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: #c0392b;
}

/* Map Styles */
.map-container {
    margin-top: 2rem;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (min-width: 576px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    nav ul li {
        margin-left: 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: row;
    }
    
    .about-img {
        order: 0;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-content h2 {
        font-size: 1.8rem;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .services {
        padding: 4rem 0;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .page-content {
        padding: 4rem 0;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .about-content {
        gap: 3rem;
    }
}
@media only screen and (max-width: 768px) {
   header{
        height: 80px;
    }
  nav {
    display: none !important; 
  
  }
}