/* Floating Buttons */
.floating-btn {
  position: fixed;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: all 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366;
  bottom: 90px;
  right: 20px;
}

/* Call Button */
.call-btn {
  background-color: #007bff;
  bottom: 20px;
  right: 20px;
}

/* Hover Effects */
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .whatsapp-btn { bottom: 80px; right: 15px; }
  .call-btn { bottom: 15px; right: 15px; }
}








       
  /* Our Product and Service section */

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--gold);
            color: var(--dark-text);
            border: none;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .btn:hover {
            background-color: var(--maroon);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Products Section Styles */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .service-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(128, 0, 32, 0.7));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover .service-overlay {
            opacity: 1;
        }

        .service-overlay h3 {
            color: var(--white);
            margin-bottom: 0;
        }

        .service-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-text);
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.4s ease 0.1s;
        }

        .service-card:hover .service-icon {
            transform: translateY(0);
            opacity: 1;
        }

        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-content h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .service-content p {
            margin-bottom: 20px;
            color: #666;
            flex-grow: 1;
        }

        .service-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .service-features li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
        }

        .service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }

        .service-actions {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }

        .btn-outline:hover {
            background-color: var(--gold);
            color: var(--dark-text);
        }

        /* Animation for cards on scroll */
        .service-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-actions {
                flex-direction: column;
            }
        }
  






    

      /* Why Choose us section */

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
            width: 100%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }

        /* Why Choose Us Section Styles */
        .why-choose-us {
            background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .why-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .why-text {
            flex: 1;
        }

        .why-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .why-text p {
            margin-bottom: 30px;
            color: #666;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .feature-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border-left: 4px solid var(--gold);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.7s ease;
        }

        .feature-card:hover:before {
            left: 100%;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold) 0%, #e6c34e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--dark-text);
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .feature-card:hover .feature-content h3 {
            color: var(--maroon);
        }

        .feature-content p {
            color: #666;
            font-size: 0.95rem;
        }

        .why-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .why-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s ease;
        }

        .why-image:hover img {
            transform: scale(1.05);
        }

        .why-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(128, 0, 32, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .why-image:hover:after {
            opacity: 1;
        }

        /* Stats Section */
        .stats {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            text-align: center;
        }

        .stat-item {
            flex: 1;
            padding: 0 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--maroon);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            color: #666;
            font-size: 0.95rem;
        }

        /* Animation for feature cards on scroll */
        .feature-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .why-content {
                flex-direction: column;
            }
            
            .why-image {
                order: -1;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .why-text h2 {
                font-size: 1.8rem;
            }
            
            .stats {
                flex-wrap: wrap;
            }
            
            .stat-item {
                flex: 0 0 50%;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .stat-item {
                flex: 0 0 100%;
            }
            
            .feature-card {
                padding: 20px;
            }
        }
   






/* Local SEO Section */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
            width: 100%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }

        /* Local SEO Section Styles */
        .local-seo-section {
            background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            position: relative;
        }

        .local-seo-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: cover;
        }

        .seo-content {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .seo-text {
            flex: 1;
            color: var(--white);
        }

        .seo-text h2 {
            color: var(--gold);
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .seo-text p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        .highlight {
            color: var(--gold);
            font-weight: 600;
        }

        .location-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }

        .location-tag {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 30px;
            padding: 10px 20px;
            color: var(--white);
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .location-tag:hover {
            background: var(--gold);
            color: var(--dark-text);
            transform: translateY(-3px);
        }

        .location-tag i {
            color: var(--gold);
            transition: color 0.3s ease;
        }

        .location-tag:hover i {
            color: var(--dark-text);
        }

        .seo-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .seo-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .seo-feature i {
            color: var(--gold);
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .seo-feature p {
            margin: 0;
            font-size: 0.95rem;
        }

        .seo-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .seo-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s ease;
        }

        .seo-image:hover img {
            transform: scale(1.05);
        }

        .seo-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(212, 175, 55, 0.2) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .seo-image:hover:after {
            opacity: 1;
        }

        .cta-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 25px;
            margin-top: 40px;
            border-left: 4px solid var(--gold);
        }

        .cta-box h3 {
            color: var(--gold);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .cta-box p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--gold);
            color: var(--dark-text);
            border: none;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .btn:hover {
            background-color: var(--dark-maroon);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Animation for elements on scroll */
        .seo-text, .seo-image, .location-tag, .seo-feature {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .seo-text.visible, .seo-image.visible, .location-tag.visible, .seo-feature.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .seo-content {
                flex-direction: column;
            }
            
            .seo-image {
                order: -1;
            }
            
            .seo-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .seo-text h2 {
                font-size: 1.8rem;
            }
            
            .location-tags {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .location-tag {
                flex: 0 0 100%;
                justify-content: center;
            }
            
            .cta-box {
                padding: 20px;
            }
        }
   




.service-actions .btn-outline:hover{
    color: var(--white);
}




/* ==========================
   Navbar Responsive Fix
========================== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  transition: all 0.4s ease;
}

.mobile-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-text);
  border-radius: 3px;
}

/* --- Mobile View --- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  .nav-links a{
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1rem;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu {
    display: flex;
    z-index: 2001;
  }

  .hero-content p{
    display: none;
  }
}











/* NAVBAR BASE */
#header {
    width: 100%;
    background: var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 60px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
}

.logo span {
    color: var(--maroon);
}

/* NAV LINKS DESKTOP */
.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links li a {
    color: var(--dark-text);
    font-weight: 500;
    padding: 8px 12px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--maroon);
    border-bottom: 2px solid var(--maroon);
}

/* MOBILE MENU ICON */
.mobile-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--maroon);
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding-top: 40px;
        gap: 20px;
        text-align: center;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
    }

    .nav-links li a {
        font-size: 18px;
        padding: 12px;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu {
        display: block;
    }
}

/* SMALLER MOBILE */
@media (max-width: 600px) {
    .logo h1 {
        font-size: 20px;
    }
    .logo img {
        width: 45px;
    }
}
