/* style.css */
:root {
    --primary-red: #D90429;
    --dark-red: #8D0801;
    --black: #111111;
    --dark-gray: #2b2d42;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    overflow-x: hidden;
    background-color: #F8FEFF;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.text-red { color: var(--primary-red); }
.bg-red { background-color: var(--primary-red); }
.bg-black { background-color: var(--black); }

/* Buttons */
.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--black);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--black);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Packages */
.package-card {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--primary-red);
    background: #fffafa;
}

/* Floating Whatsapp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding-top: 60px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

/* Map */
.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    filter: grayscale(100%) invert(92%) contrast(83%); /* Custom Map Style */
    margin-top: 2%;
}
.map-container iframe:hover{
    width: 100%;
    height: 300px;
    border-radius: 15px;
    filter: grayscale(0%) invert(92%) contrast(100%); /* Custom Map Style */
    margin-top: 2%;
}
.business-hours div {
      display: flex;
      justify-content: space-between;
      padding: 0.5rem 0;
      
      
    }
    .contact-top h1{
        padding-top: 20px;
    }

    
    .features { display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
        gap: 2rem;
     }
    .feature-card { 
        background: rgba(255, 255, 255, 0.8);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        border-bottom: 4px solid transparent;
    }
    .feature-card h3 { 
        margin: 1rem 0; 
        font-size: 1.25rem; 
        color: #D90429;
    }
    .feature-card p { color: var(--gray); }
    .why{
        background-image: url('img/nai.jpeg');
        background-attachment:  fixed;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .why h1{
        color: #fff;
        margin-bottom: 40px;;
        border-bottom:4px dotted red;
        font-family:  "Dancing Script", cursive;
        
    }
    /*work page*/
    .section { padding: 5rem 0; }
    .section-title { text-align: center; margin-bottom: 3rem; font-size: 2rem; }
    .project-card { background: var(--white); border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--shadow); }
    .project-card img { width: 100%; height: auto; object-fit: contain; }
    .project-content { padding: 1.5rem; }
    .project-content h3 { margin-bottom: 0.5rem; color: var(--primary); }
    .project-content p { color: var(--gray); }
    .tags { margin: 0.5rem 0; font-size: 0.875rem; color: var(--gray); }
    .work-section{
        padding-top: 150px; 
    }
   .work-section h1{ 
         
    }
   