/**********why choose use style section****/

.why-choose-us {
  padding: 60px 20px;
  background-color: #f9fafb;
  text-align: center;
}

.why-choose-us .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.why-choose-us .section-header p {
  max-width: 600px;
  margin: 0 auto 40px auto;
  color: #666;
  font-size: 1.1rem;
}

.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.choose-us-card {
  background: white;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.05);
  transition: box-shadow 0.3s ease;
}

.choose-us-card:hover {
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.15);
}

.choose-us-card i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.choose-us-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.choose-us-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}


/* Modal styles */
.quote-modal {
display: none;
position: fixed;
z-index: 999;
top: 0; left: 0; right: 0; bottom: 0;
background-color: rgba(0,0,0,0.6);
justify-content: center;
align-items: center;
animation: fadeIn 0.3s ease-in-out;

}

.quote-modal.show {
display: flex;
}

.modal-content {
background: #fff;
padding: 2rem;
width: 90%;
max-width: 500px;
border-radius: 10px;
position: relative;
}

.modal-content h2 {
margin-bottom: 1rem;
color: #333;
}

.modal-content form input,
.modal-content form textarea {
width: 100%;
margin-bottom: 1rem;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}

.modal-content form button {
background-color: #2d89ef;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}

.close-btn {
position: absolute;
top: 10px; right: 15px;
font-size: 24px;
cursor: pointer;
}


.get-quote-button {

background-color: var(--primary-color);
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}

.get-quote-button:hover {
background-color: #4338ca;
transform: 
translateY(-2px);
}
/* Optional fade animation */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

/* codess */

:root {
    --primary-color: #4f46e5;
    --secondary-color: #10b981;
    --text-color: #1f2937;
    --bg-color: #ffffff;
    --card-bg: #f9fafb;
    --header-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #111827;
    --footer-text: #f3f4f6;
    --transition: all 0.3s ease;
}

.dark-mode {
    --primary-color: #6366f1;
    --secondary-color: #10b981;
    --text-color: #e5e7eb;
    --bg-color: #111827;
    --card-bg: #1f2937;
    --header-bg: rgba(17, 24, 39, 0.95);
    --footer-bg: #030712;
    --footer-text: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/******codes yeah init*******/
#wood {
    color: var(--secondary-color);
}
/*****codes yeah init*****/

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
    overflow-x: hidden;
}

/* Header Styles */
.contact-header {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.contact-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;

    align-items: center;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}


.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 16px;
}

/* Main Header */
.main-header {
    background-color: var(--header-bg);
    position: sticky;

    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 28px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;

    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: rotate(30deg);
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), 

rgba(0, 0, 0, 0.6)), url('image/pexels-tima-miroshnichenko-6169056\ \(1\).jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3) 0%, rgba(16, 185, 129, 0.3) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
}

@keyframes fadeInUp {
    to {
        transform: 

translateY(0);
        opacity: 1;
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}


.hero-buttons {
    display: flex;
    gap: 15px;
}

.secondary-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--

transition);
}

.secondary-button:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}


.section-header {
    text-align: center;
    margin-bottom: 50px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;

}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}


.service-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:nth-child(1) { animation: fadeInUp 1s forwards 0.7s; }
.service-card:nth-child(2) { animation: fadeInUp 1s forwards 0.9s; }
.service-card:nth-child(3) { animation: fadeInUp 1s forwards 1.1s; }
.service-card:nth-child(4) { animation: fadeInUp 1s forwards 1.3s; }

.service-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Delivery Showcase */
.delivery-showcase {
    padding: 80px 20px;
    background-color: var(--card-bg);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}


.showcase-header {
    text-align: center;
    margin-bottom: 50px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.showcase-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;

}

.showcase-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}


.delivery-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.delivery-card:nth-child(1) 

{ animation: fadeInUp 1s forwards 0.7s; }
.delivery-card:nth-child(2) { animation: fadeInUp 1s forwards 0.9s; }
.delivery-card:nth-child(3) { animation: fadeInUp 1s forwards 1.1s; }

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.delivery-image {
    height: 200px;
    overflow: hidden;
}

.delivery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}



.delivery-content {
    padding: 20px;
}

.delivery-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.delivery-content p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}


.delivery-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.learn-more:hover {
    color: #4338ca;
    text-decoration: underline;
}

.order-status {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;

    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.order-status h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.order-status p {
    font-size: 1.1rem;
    max-width: 700px;

    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    color: var(--secondary-

color);
    font-size: 28px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;

    gap: 15px;
}

.footer-social a {
    color: var(--footer-text);
    font-size: 20px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}


.contact-info-icon {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;

}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s 

ease-in-out infinite;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-header-container {

        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;

        width: 80%;
        height: 100vh;
        background-color: var(--header-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {

        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2, .showcase-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 70vh;
    }


    .hero h1 {
        font-size: 1.8rem;
    }

    .service-card, .delivery-card {
        padding: 20px;
    }
}
