/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
  }
  
  /* Optional: make sure all containers don't exceed width */
  .container, .header-container, .topbar {
    max-width: 100%;
    overflow-x: hidden;
  }
  

/* COLORS */
:root {
    --gold: #F9B233;
    --orange: #F15A24;
    --red: #C1272D;
    --wine: #662D91;
    --burgundy: #4B1C2F;
    --white: #FFFFFF;
  }
  
  /* RESET */
  body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: var(--white);
    color: #333;
    line-height: 1.6;
  }
  
  h1, h2, h3, h4 {
    font-family: 'Rubik', sans-serif;
    margin-bottom: 15px;
  }
  
  /* Topbar */
  .topbar {
    background: var(--gold);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
  }
  .topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topbar-right {
    display: flex;
    gap: 15px;
  }
  .topbar a { color: var(--white); text-decoration: none; font-weight: 600; }
  .topbar a:hover { color: var(--burgundy); }
  
  /* Header */
  .header {
    background: var(--white);
    padding: 2px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo-img { max-height: 55px; }
  
  /* Nav */
  .navmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
  }
  .navmenu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--burgundy);
    transition: 0.3s;
  }
  .navmenu a:hover,
  .navmenu a.active { color: var(--orange); }
  
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
  }
  
  .hero-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
  }
  
  .hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }
  
  .hero-slider .slide.active {
    opacity: 1;
  }
  
  .hero-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 span {
    color: var(--gold); /* Highlight from your theme */
  }
  
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  .btn-primary { background: var(--red); color: var(--white); }
  .btn-primary:hover { background: var(--orange); }
  .btn-outline { border: 2px solid var(--gold); color: var(--gold); }
  .btn-outline:hover { background: var(--gold); color: var(--white); }
  .btn-secondary { background: var(--wine); color: var(--white); }
  .btn-secondary:hover { background: var(--burgundy); }
  
  /* Sections */
  section { padding: 80px 20px; }
  .container { max-width: 1200px; margin: auto; text-align: center; }
  
/* ===== CATEGORIES ===== */
.categories {
    background: #fff;
    padding: 100px 20px;
    text-align: center;
  }
  
  .categories h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--burgundy);
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
  }
  
  .categories .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .categories .card {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    position: relative;
  }
  
  .categories .card:hover {
    transform: translateY(-8px);
  }
  
  .categories .card-image {
    position: relative;
    overflow: hidden;
  }
  
  .categories .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .categories .card:hover img {
    transform: scale(1.1);
  }
  
  .categories .overlay {
    position: absolute;
    inset: 0;
    background: rgba(193,39,45,0.75); /* deep red overlay */
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s ease;
    text-align: center;
    padding: 20px;
  }
  
  .categories .card:hover .overlay {
    opacity: 1;
  }
  
  .categories .overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold);
  }
  
  .categories .overlay p {
    font-size: 1rem;
    max-width: 250px;
  }
  
  /* View More Button */
  .categories-cta {
    margin-top: 20px;
  }
  
  .categories-cta .btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
  }
  
  .categories-cta .btn:hover {
    background: var(--orange);
  }
  
  
 /* ===== WHY CHOOSE US ===== */
.why {
    background: var(--wine); /* deep purple/wine */
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
  }
  
  .why h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--gold);
  }
  
  .why .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #f3f3f3;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
  }
  
  .why-item {
    background: var(--burgundy);
    padding: 30px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }
  
  .why-item:hover {
    transform: translateY(-10px);
    background: var(--red);
  }
  
  .why-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
  }
  
  .why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .why-item p {
    font-size: 0.95rem;
    color: #eee;
  }
  
  
 /* ===== PRICING ===== */
.pricing {
    padding: 100px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .pricing h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--burgundy);
  }
  
  .pricing .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 30px;
  }
  
  .pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--gold);
    position: relative;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  }
  
  .pricing-card.featured {
    border-top: 4px solid var(--red);
  }
  
  .pricing-card .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
  }
  
  .pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--burgundy);
  }
  
  .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 20px;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
  }
  
  .pricing-card ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
  }
  
  .pricing-card ul li i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 1.1rem;
  }
  
  .pricing-card .btn {
    width: 100%;
    font-weight: bold;
    border-radius: 8px;
  }
  
  
  /*- Gallery CSS */
  .gallery {
    padding: 60px 0;
    background-color: #f8f8f8;
    font-family: 'Arial', sans-serif;
  }
  
  .gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  /* Filter Buttons */
  .gallery-filters {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .gallery-filters .filter-btn {
    background: #fff;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .gallery-filters .filter-btn.active,
  .gallery-filters .filter-btn:hover {
    background: #e74c3c;
    color: #fff;
  }
  
  /* Gallery Grid */
  .gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  
  /* Gallery Item */
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
  }
  
  /* Images */
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }

  img {
    max-width: 100%;
    height: auto;
}

grid-template-columns : repeat(auto-fit, minmax(200px, 1fr));

  /* Overlay */
  .gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(231, 76, 60, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
  }
  
  .gallery-item:hover .overlay {
    opacity: 1;
  }
  
  .gallery-item .overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* View Full Gallery Button */
  .gallery .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .gallery .btn-primary:hover {
    background-color: #c0392b;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .gallery h2 { font-size: 2rem; }
    .gallery-item .overlay h3 { font-size: 1.2rem; }
  }
  
  @media (max-width: 480px) {
    .gallery .grid { grid-template-columns: 1fr; gap: 10px; }
  }
  
  
  
  /* Testimonials CSS */
  
  .testimonials {
    padding: 60px 0;
    background-color: #fef5f5;
    font-family: 'Arial', sans-serif;
    position: relative;
  }
  
  .testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
  }
  
  /* Testimonial Slider */
  .testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .testimonial {
    display: none;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.6s ease;
  }
  
  .testimonial.active {
    display: block;
  }
  
  .testimonial-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .client-info h4 {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: bold;
  }
  
  .client-info span {
    font-size: 0.9rem;
    color: #777;
  }
  
  /* Navigation Arrows */
  .testimonial-nav .prev,
  .testimonial-nav .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #e74c3c;
    cursor: pointer;
    user-select: none;
    padding: 5px 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    transition: background 0.3s ease;
  }
  
  .testimonial-nav .prev:hover,
  .testimonial-nav .next:hover {
    background: rgba(231,76,60,0.8);
    color: #fff;
  }
  
  .testimonial-nav .prev { left: -30px; }
  .testimonial-nav .next { right: -30px; }
  
  /* Dots */
  .testimonial-dots {
    text-align: center;
    margin-top: 30px;
  }
  
  .testimonial-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .testimonial-dots span.active {
    background: #e74c3c;
  }
  
  /* Responsive */
  @media(max-width: 768px){
    .testimonial-nav .prev { left: 5px; }
    .testimonial-nav .next { right: 5px; }
    .client-info { flex-direction: column; gap: 5px; text-align: center; }
  }

  
  
 .faq {
    padding: 60px 0;
    background-color: #fff8f8;
    font-family: 'Arial', sans-serif;
  }
  
  .faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
  }
  
  .faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #e74c3c;
  }
  
  .faq-toggle {
    font-size: 1.5rem;
    color: #e74c3c;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 25px; /* padding will expand when active */
  }
  
  .faq-answer p {
    margin: 15px 0;
    color: #555;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    max-height: 300px; /* increase if answer is longer */
    padding: 15px 25px;
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(45deg); /* plus turns to X */
  }
  
  .cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c, #ff7675);
    text-align: center;
    color: #fff;
    border-radius: 12px;
    margin: 50px auto;
    max-width: 900px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }
  
  .cta:hover {
    transform: translateY(-5px);
  }
  
  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .cta .btn-primary {
    background-color: #fff;
    color: #e74c3c;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .cta .btn-primary:hover {
    background-color: #e74c3c;
    color: #fff;
    transform: scale(1.05);
  }
  
  
  .footer {
    background-color: #360202; /* soft black */
    color: #fff;
    padding: 60px 20px 20px;
    font-family: 'Arial', sans-serif;
    border-top: 4px solid #5a2e7b; /* purplish border on top */
  }
  
  .footer a {
    color: #e74c3c; /* red accent */
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #ff7675; /* lighter red on hover */
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-brand, .footer-links, .footer-contact, .footer-socials {
    flex: 1 1 200px;
    margin-bottom: 20px;
  }
  
  .footer-brand h3 {
    color: #e74c3c;
    margin-bottom: 10px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-socials a {
    font-size: 1.5rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
  }
  
  .footer-socials a:hover {
    transform: scale(1.2);
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }

  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  
  .footer-bottom p {
    margin: 0;
    color: #ccc;
  }
  
  
  /* Responsive */
  @media(max-width: 768px){
    .footer-top {
      flex-direction: column;
      text-align: center;
    }
    .footer-brand, .footer-links, .footer-contact, .footer-socials {
      margin-bottom: 25px;
    }
  }
  

 /* Preloader */
/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(193,39,45,0.9); /* Slightly darker so it fully covers */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;   /* keep it above everything */
  }
  
  #preloader.hidden {
    display: none;   /* instantly remove instead of fading */
  }
  
  
  
  .preloader-content {
    text-align: center;
    animation: fadeInScale 1.5s ease-in-out;
  }
  
  .preloader-logo {
    width: 120px;
    max-width: 80%;
    animation: pulse 2s infinite;
  }
  
  .tagline {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
  }
  
  /* Animations */
  @keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
 /* ===== ABOUT SECTION ===== */
.about {
    background: #f9f9f9;
    padding: 100px 20px;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .about-text {
    flex: 1 1 500px;
    text-align: left;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
  }
  
  .about-quote {
    font-style: italic;
    background: rgba(193,39,45,0.05);
    padding: 15px 20px;
    border-left: 4px solid var(--red);
    margin: 20px 0;
    border-radius: 6px;
    color: var(--burgundy);
  }
  
  .about-quote .quote-author {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--orange);
  }
  
  .about-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
  }
  
  .about-image {
    flex: 1 1 400px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  /* Stats Section */
  .about-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat h3 {
    font-size: 2rem;
    color: var(--red);
  }
  
  .stat p {
    font-size: 1rem;
    color: #444;
  }
  

 /* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366; /* WhatsApp green */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    
    /* Start off-screen */
    transform: translateY(100px);
    opacity: 0;
  
    /* Animation */
    animation: slideIn 0.7s forwards;
    animation-delay: 0.3s; /* slight delay */
  }
  
  .floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }
  
  /* Slide-in keyframes */
  @keyframes slideIn {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  
  /* Hero Small */
.hero-small {
    background: url('greenplant.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
  }
  .hero-small h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .hero-small p {
    font-size: 18px;
    opacity: 0.9;
  }
  

  .footer-bottom {
    width: 100%;
    text-align: center !important;   /* force center */
    display: block !important;       /* cancel flex/columns */
  }
  
  .footer-bottom p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
  }
  
 
  