/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg.webp');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    padding: 30px 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* CTA Section */
.cta {
    background: black;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg2.webp');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
}

.about-text ul {
    margin: 20px 0;
}

.about-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Team Section */
.team {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.team h2 {
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-color);
}

.team-member h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.team-member p {
    color: var(--text-light);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    transition: bottom 0.3s;
}

.gallery-item:hover .overlay {
    bottom: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f9fafc;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Info + Form Headings */
.contact-info h2, 
.contact-form h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Info */
.contact-info p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #444;
}

.contact-info i {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* Social Links */
.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-4px) scale(1.05);
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
    outline: none;
}

/* Button */
.contact-form button {
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-list i {
    font-size: 20px;
    color: var(--secondary-color);
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 4px;
}

.info-list div {
    line-height: 1.6;
}

.info-list strong {
    display: block;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.info-list p {
    margin: 0;
    font-size: 15px;
    color: #555;
}


.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Map Section */
.map {
    margin-bottom: -7px;
}

.map iframe {
    display: block;
}

/* Footer Styles */
/* Footer Base */
.footer {
  background: var(--dark-color, #111);
  color: #eee;
  font-size: 14px;
  padding: 30px 0 0;
}

/* Grid Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 35px;
  height: 2px;
  background: var(--secondary-color, #e6b800);
}

.footer-col p {
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.footer-col ul li i {
  margin-right: 8px;
  color: var(--secondary-color, #e6b800);
  font-size: 13px;
}

/* Links */
.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--secondary-color, #e6b800);
}

/* Socials */
.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 15px;
  color: #bbb;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: var(--secondary-color, #e6b800);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.3);
  font-size: 13px;
  margin-top: 20px;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .about-content .container, .contact .container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .services h2, .team h2, .gallery h2, .cta h2 {
        font-size: 28px;
    }
    
    .about-text h2, .contact-info h2, .contact-form h2 {
        font-size: 24px;
    }
}
/* Work Gallery Section */
.work-gallery {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.work-gallery h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
}

.work-gallery h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.work-gallery .subtitle {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 20px;
}

.view-more {
    color: white;
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.view-more:hover {
    background: white;
    color: var(--secondary-color);
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .work-gallery h2 {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* About Home Section */
.about-home {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.about-text p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}

.feature span {
    font-size: 15px;
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 8px 25px;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}
.map {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.map-container {
    position: relative;
    width: 80%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}
.map-btn {
    text-align: center;
    margin-top: 20px;
}

.btn-get-directions {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background 0.3s, transform 0.2s;
}

.btn-get-directions:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}
/* WhatsApp Button Styles */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.whatsapp-btn:hover {
    background-color: #1ebe5a;
}

/* Responsive */
@media (max-width: 600px) {
    .whatsapp-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .whatsapp-btn i {
        font-size: 18px;
        margin-right: 8px;
    }
}
.call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 999;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.call-btn i {
    font-size: 18px;
}

.call-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}
