.contact-bar {
        background: #000;
        color: #fff;
        padding: 10px 30px;
        text-align: center;
    }

    .contact-info {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: right;
        gap: 20px;
        font-family: 'Arial', sans-serif;
        font-size: 14px;
    }

    .contact-info span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .contact-info i {
        color: #d61a3c;
    }

    .main-header {
        position: sticky;
        top: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 15px rgb(0 0 0);
        z-index: 1000;
        padding: 15px 30px;
        transition: box-shadow 0.3s ease;
    }

    .main-header.scrolled {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .header-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        padding: 10px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        
        transition: transform 0.3s ease;
    }

    .logo:hover {
        transform: scale(1.05);
    }

    .logo img {
        max-height: 100px;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }

    .logo:hover img {
        transform: rotate(-5deg);
    }

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .nav-menu li {
        margin-left: 25px;
        position: relative;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-menu a {
        text-decoration: none;
        color: #333;
        font-family: 'Arial', sans-serif;
        font-size: 19px;
        padding: 12px 20px;
        display: block;
        border-radius: 25px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
		font-weight: 700;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(214, 26, 60, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease;
        z-index: -1;
    }

    .nav-menu a:hover::before {
        width: 200%;
        height: 200%;
    }

    .nav-menu a:hover {
        color: #ef7f1a;
        background: rgb(255 255 255);
    }

    .whatsapp-icon {
        text-decoration: none;
        color: #25D366; /* WhatsApp green */
        font-size: 20px;
        padding: 10px;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }

    .whatsapp-icon:hover {
        transform: scale(1.2);
        background: rgba(37, 211, 102, 0.1);
    }

    .whatsapp-icon i {
        vertical-align: middle;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        min-width: 220px;
        z-index: 1001;
        padding: 10px 0;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 15px;
    }

    .dropdown-menu a:hover {
        background: #fde6eb;
    }

    .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #d61a3c;
        padding: 5px 10px;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

    .menu-toggle:hover {
        transform: scale(1.1);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    @media (max-width: 1024px) {
        .menu-toggle {
            display: block;
        }

        .nav-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 280px;
            height: calc(100% - 80px);
            background: linear-gradient(135deg, #fff 0%, #fde6eb 100%);
            flex-direction: column;
            padding: 30px;
            box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transform: translateX(-100%);
            transition: transform 0.4s ease-in-out;
        }

        .nav-menu.active {
            display: flex;
            transform: translateX(0);
        }

        .nav-menu li {
            margin: 15px 0;
            width: 100%;
        }

        .contact-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .whatsapp-icon {
            margin-left: 10px;
        }

        .dropdown-menu {
            position: static;
            display: none;
            background: #fff;
            box-shadow: none;
            padding-left: 20px;
            border-radius: 0;
        }

        .dropdown.active .dropdown-menu {
            display: block;
        }

        .dropdown a {
            position: relative;
        }

        .dropdown a::after {
            content: '▶';
            position: absolute;
            right: 10px;
            transition: transform 0.3s ease;
        }

        .dropdown.active a::after {
            content: '▼';
            transform: rotate(90deg);
        }
    }

    @media (max-width: 480px) {
        .logo img {
            max-height: 80px;
        }
        .nav-menu {
            width: 250px;
        }
        .contact-info {
            flex-direction: column;
            gap: 10px;
        }
    }

    /* Font Awesome for icons (include this in your project) */
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
	
.about-section-modern {
  padding: 70px 0;
  background: linear-gradient(140deg, #fff 60%, #fde6eb 100%);
}

.about-container-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
}

.about-image-modern {
  position: relative;
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-modern img {
  width: 400px;
  max-width: 95vw;
  border-radius: 35px 10px 35px 10px;
  box-shadow: 0 8px 40px rgba(214,26,60,0.18), 0 2px 24px rgba(0,0,0,0.08);
  border: 8px solid #fff;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(.175,.885,.32,1.275);
}

.about-image-modern img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.image-decor {
  position: absolute;
  width: 440px;
  height: 340px;
  background: radial-gradient(circle at 80% 20%, #fde6eb 70%, #fff 100%);
  border-radius: 50px 18px 50px 18px;
  z-index: 1;
  top: 18px; left: -30px;
  filter: blur(8px);
  opacity: 0.7;
}

.about-content-modern {
  flex: 2 1 500px;
  min-width: 330px;
  background: rgba(255,255,255,0.88);
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
  padding: 40px 45px;
}

.about-content-modern h2 {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.about-content-modern p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 14px;
  color: #212529;
  text-align: justify;
}

.read-more-btn-modern {
  display: inline-block;
  padding: 14px 38px;
  background: linear-gradient(90deg, #900d26 0%, #d61a3c 100%);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px rgba(214,26,60,0.08);
  margin-top: 18px;
  transition: background 0.3s, box-shadow 0.3s;
}

.read-more-btn-modern:hover {
  background: linear-gradient(90deg, #ae0b21 0%, #900d26 100%);
  box-shadow: 0 6px 28px rgba(214,26,60,0.20);
}

@media (max-width: 950px) {
  .about-container-modern {
    flex-direction: column;
    gap: 30px;
    padding: 0 8px;
  }
  .about-image-modern img, .image-decor { width: 95vw; max-width: 350px; }
  .about-content-modern { padding: 28px 12px; min-width: unset; }
}

body {
      font-family: Arial, sans-serif;
      background: #f8f9fb;
      margin: 0;
      padding: 0;
    }
    .testimonial-section {
      padding: 60px 20px;
      text-align: center;
      background: #fff;
    }
    .testimonial-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
      color: #333;
      position: relative;
      display: inline-block;
    }
    .testimonial-section h2::after {
      content: "";
      width: 60px;
      height: 3px;
      background: #ff6600;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1100px;
      margin: auto;
    }
    .testimonial-card {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      text-align: left;
      position: relative;
      transition: transform 0.3s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
    }
    .testimonial-card .quote {
      font-size: 50px;
      color: #ff6600;
      position: absolute;
      top: 15px;
      right: 20px;
      opacity: 0.2;
    }
    .testimonial-card p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .client-info {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .client-info img {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #ff6600;
    }
    .client-info h4 {
      margin: 0;
      font-size: 16px;
      color: #333;
    }
    .stars {
      color: #ffcc00;
      font-size: 14px;
    }

.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
					background-image: none !important;
				}
				@media screen and (max-height: 1024px) {
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
				@media screen and (max-height: 640px) {
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}

.sticky1-container1 {
            padding: 0px;
            margin: 0px;
            position: fixed;
            right: -105px;
            top: 381px;
            width: 210px;
            z-index: 1100;
            list-style-type: none;
        }

        
        video {
            max-width: 100%;
            height: auto;
}	

.services-section {
  padding: 20px 20px;
  text-align: center;
}

.services-title {
  font-size: 36px;
  margin-bottom: 40px;
}

.services-title span {
  color: #ef7f1a;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

/* Image */
.service-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* Overlay */
.service-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;

  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transition: 0.4s ease;
}

/* Text */
.service-overlay h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.service-overlay p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Button */
.service-overlay a {
  display: inline-block;
  padding: 6px 14px;
  background: #ef7f1a;
  border-radius: 20px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

/* Hover Effects */
.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .service-overlay {
  background: rgba(0,0,0,0.75);
}

/* Premium Animation */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: 0.5s;
}

.service-card:hover::before {
  opacity: 1;
}

/* Mobile */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

	/* SECTION */
.gallery-section {
  padding: 60px 20px;
  text-align: center;
}

.gallery-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.gallery-title span {
  color: #ef7f1a;
}

/* FILTER BUTTONS */
.gallery-filters {
  margin-bottom: 30px;
}

.filter-btn {
  border: none;
  background: none;
  margin: 0 10px;
  font-size: 16px;
  cursor: pointer;
  color: #555;
  position: relative;
}

.filter-btn.active,
.filter-btn:hover {
  color: #ef7f1a;
}

.filter-btn.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #ef7f1a;
  margin-top: 5px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* ZOOM */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* OVERLAY CENTER DESIGN */
.gallery-overlay {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  padding: 10px 18px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;

  background: rgb(239 127 26);
  backdrop-filter: blur(6px);
  border-radius: 30px;

  opacity: 0;
  transition: 0.4s ease;
}

/* SHOW ON HOVER */
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

/* MOBILE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-title {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.gallery-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ef7f1a, #ff7a00);
  border-radius: 10px;
}

.service-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;

  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

.service-overlay h3 {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}		

/* HERO */
.hero-section {
  position: relative;
}

/* SLIDER */
.hero-slider {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

/* CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 800px;
  z-index: 2;
}

/* HEADING */
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 5px 25px rgba(0,0,0,0.9);
}

/* TEXT */
.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ef7f1a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* CARDS */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: -80px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  color: #ef7f1a;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 60vh;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-cards {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 55vh;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 22px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .hero-content p {
    font-size: 13px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .hero-content {
    width: 90%;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .hero-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    top: 45%;
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 768px) {
  .hero-content {
    top: 45%;
    transform: translate(-50%, -45%);
  }
}

/* Slider Heading */
.hero-section .hero-content h1,
.hero-slider .hero-content h1 {
  color: #ffffff !important;
}

/* Slider Text */
.hero-section .hero-content p,
.hero-slider .hero-content p {
  color: #ffffff !important;
}

/* Elementor override (IMPORTANT) */
.elementor-slide-heading,
.elementor-slide-description {
  color: #ffffff !important;
}	

/* SECTION */
.features-section {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

/* HEADING CENTER */
.features-title {
  font-size: 36px;
  margin-bottom: 50px;
}

.features-title span {
  color: #ef7f1a;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.icon {
  font-size: 30px;
  margin-bottom: 15px;
  display: inline-block;
}

/* TITLE */
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

/* TEXT */
.feature-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* GRADIENT BORDER ANIMATION */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #ef7f1a, #ff7a00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 40px;
  background: linear-gradient(135deg, #f9f9f9, #ffe7f1);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  gap: 30px;
}

.video-side {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.video-box {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ Section */


    .faq-container {
      max-width: 800px;
      margin: auto;
    }

    .faq-item {
      background: #fff;
      border-radius: 10px;
      margin: 12px 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-question {
      padding: 18px 20px;
      cursor: pointer;
      font-size: 18px;
      font-weight: 600;
      color: #333;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question:hover {
      background: #f0f6ff;
    }

    .faq-icon {
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      background: #fafafa;
      color: #555;
      font-size: 16px;
      padding: 0 20px;
      line-height: 1.6;
      transition: all 0.4s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px; /* Adjust as per content */
      padding: 15px 20px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
	
	.contact-bar {
        background: #000;
        color: #fff;
        padding: 10px 30px;
        text-align: center;
    }

    .contact-info {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: right;
        gap: 20px;
        font-family: 'Arial', sans-serif;
        font-size: 14px;
    }

    .contact-info span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .contact-info i {
        color: #d61a3c;
    }

    .main-header {
        position: sticky;
        top: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 15px 30px;
        transition: box-shadow 0.3s ease;
    }

    .main-header.scrolled {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .header-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        padding: 10px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
       
        transition: transform 0.3s ease;
    }

    .logo:hover {
        transform: scale(1.05);
    }

    .logo img {
        max-height: 100px;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }

    .logo:hover img {
        transform: rotate(-5deg);
    }

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .nav-menu li {
        margin-left: 25px;
        position: relative;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-menu a {
        text-decoration: none;
        color: #333;
        font-family: 'Arial', sans-serif;
        font-size: 19px;
        padding: 12px 20px;
        display: block;
        border-radius: 25px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
		font-weight: 700;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(214, 26, 60, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease;
        z-index: -1;
    }

    .nav-menu a:hover::before {
        width: 200%;
        height: 200%;
    }

    .nav-menu a:hover {
        color: #d61a3c;
        background: rgba(253, 230, 235, 0.5);
    }

    .whatsapp-icon {
        text-decoration: none;
        color: #25D366; /* WhatsApp green */
        font-size: 20px;
        padding: 10px;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }

    .whatsapp-icon:hover {
        transform: scale(1.2);
        background: rgba(37, 211, 102, 0.1);
    }

    .whatsapp-icon i {
        vertical-align: middle;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        min-width: 220px;
        z-index: 1001;
        padding: 10px 0;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 15px;
    }

    .dropdown-menu a:hover {
        background: #fde6eb;
    }

    .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #d61a3c;
        padding: 5px 10px;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

    .menu-toggle:hover {
        transform: scale(1.1);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    @media (max-width: 1024px) {
        .menu-toggle {
            display: block;
        }

        .nav-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 280px;
            height: calc(100% - 80px);
            background: linear-gradient(135deg, #fff 0%, #fde6eb 100%);
            flex-direction: column;
            padding: 30px;
            box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transform: translateX(-100%);
            transition: transform 0.4s ease-in-out;
        }

        .nav-menu.active {
            display: flex;
            transform: translateX(0);
        }

        .nav-menu li {
            margin: 15px 0;
            width: 100%;
        }

        .contact-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .whatsapp-icon {
            margin-left: 10px;
        }

        .dropdown-menu {
            position: static;
            display: none;
            background: #fff;
            box-shadow: none;
            padding-left: 20px;
            border-radius: 0;
        }

        .dropdown.active .dropdown-menu {
            display: block;
        }

        .dropdown a {
            position: relative;
        }

        .dropdown a::after {
            content: '▶';
            position: absolute;
            right: 10px;
            transition: transform 0.3s ease;
        }

        .dropdown.active a::after {
            content: '▼';
            transform: rotate(90deg);
        }
    }

    @media (max-width: 480px) {
        .logo img {
            max-height: 80px;
        }
        .nav-menu {
            width: 250px;
        }
        .contact-info {
            flex-direction: column;
            gap: 10px;
        }
    }

    /* Font Awesome for icons (include this in your project) */
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
	
	
	/* SECTION */
.advantage-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fb, #ffffff);
  text-align: center;
}

/* HEADING */
.advantage-section h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

/* GRID */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.adv-card {
  position: relative;
  padding: 30px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  overflow: hidden;
}

/* NUMBER */
.adv-number {
  font-size: 40px;
  font-weight: bold;
  color: rgba(225, 29, 46, 0.1);
  position: absolute;
  top: 10px;
  right: 15px;
}

/* TITLE */
.adv-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

/* TEXT */
.adv-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* HOVER EFFECT */
.adv-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

/* GRADIENT BORDER */
.adv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #e11d2e, #ff7a00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.adv-card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-section h2 {
    font-size: 28px;
  }
}

/* Footer main container fix */
@media (max-width: 768px) {

  .elementor-location-footer .e-con-inner {
    flex-direction: column !important;
  }

  /* All columns full width */
  .elementor-location-footer .e-con.e-child {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Spacing improve */
  .elementor-location-footer .e-con.e-child {
    margin-bottom: 25px;
  }

  /* Center align content */
  .elementor-location-footer {
    text-align: center;
  }

  /* Icon list center */
  .elementor-location-footer .elementor-icon-list-items {
    justify-content: center;
  }

  /* Social icons center */
  .elementor-social-icons-wrapper {
    justify-content: center !important;
  }

}
