.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: linear-gradient(90deg, #ffffff 0%, #fde6eb 100%);
        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;
        box-shadow: 0 2px 10px rgba(214, 26, 60, 0.1);
        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');
	
.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;
}				