.owl-carousel img {
    width: 100%;
    height: auto;
}
.side-buttons {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .side-buttons a {
      background-color: #25d366; /* WhatsApp green */
      color: white;
      padding: 12px 15px;
      text-decoration: none;
      font-size: 20px;
      border-radius: 0 8px 8px 0;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
    }

    .side-buttons a.call {
      background-color: #007bff; /* Blue for call */
    }

    .side-buttons a:hover {
      opacity: 0.9;
    }

    /* Responsive for mobile */
    @media screen and (max-width: 768px) {
      .side-buttons a {
        width: 56px;
        height: 56px;
        font-size: 24px;
        padding: 10px;
      }
    }

.slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    margin-bottom: 0px;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform-origin: center;
    transform: rotateY(90deg);
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide.active {
    opacity: 1;
    transform: rotateY(0deg);
}
/* Responsive Styles */
@media (max-width: 768px) {
.slider {
width: 100%;
height: 50vh;
}

.slide img {
width: 100%;
height: auto;
}
}

@media (max-width: 480px) {
.slider {
width: 100%;
height: 70vh;
}

.slide img {
width: 100%;
height: auto;
}
}
.site-logo-wrap {
    display: flex;
    align-items: center;
    gap: 18px; /* spacing between logos */
  }
  
  .site-logo img {
    height: 50px;
    width: auto; /* maintain aspect ratio */
    display: block;
  }
  .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
  }

  .popup-box {
    background: #fff;
    padding: 25px 20px;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .popup-box h3 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 22px;
  }

  .popup-box input,
  .popup-box textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }

  .close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    color: #555;
    cursor: pointer;
  }

  .error {
    color: red;
    font-size: 12px;
    margin-bottom: 5px;
  }

  @media (max-width: 480px) {
    .popup-box {
      padding: 20px 15px;
    }

    .popup-box h3 {
      font-size: 20px;
    }

    .popup-box input,
    .popup-box textarea {
      font-size: 13px;
    }

    .popup-box button {
      font-size: 15px;
    }
  }
  .popup-submit-btn {
width: 100%;
padding: 12px;
background: #1d3241;
border: none;
color: white;
font-weight: bold;
font-size: 16px;
border-radius: 6px;
cursor: pointer;
margin-top: 10px;
transition: background 0.3s ease;
}

.popup-submit-btn:hover {
background: #d88800;
}

.close-btn {
position: absolute;
top: 10px;
right: 12px;
background: transparent;
border: none;
font-size: 22px;
color: #888;
cursor: pointer;
transition: color 0.3s ease;
}

.close-btn:hover {
color: #000;
}
/* Banner Section */
.banner {
    width: 100%;
    position: relative;
  }
  
  /* Custom Carousel Styling */
  .custom-carousel .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
  }
  
  .custom-carousel .item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 5px; /* Optional, for rounded corners */
  }
  
  /* Mobile View (up to 480px) */
  @media (max-width: 480px) {
    .custom-carousel .item img {
      width: 100%;
      height: auto;
    }
  }
  
  /* Tablet View (up to 768px) */
  @media (max-width: 768px) {
    .custom-carousel .item img {
      width: 100%;
      height: auto;
    }
  }
  
  /* Larger Screens */
  @media (min-width: 769px) {
    .custom-carousel .item img {
      width: 100%;
      height: auto;
    }
  }
  
 .card-container {
  perspective: 1000px;
}
.flip-card {
  width: 180px;
  height: 180px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  margin: auto;
}
.card-container:hover .flip-card {
  transform: rotateY(180deg);
}
.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  text-align: center;
}
.card-front {
  background-color: #f8f9fa;
  border: 2px solid #dee2e6;
}
.card-back {
  background-color: #d4af37;
  color: white !important; /* ensure white text */
  transform: rotateY(180deg);
}
.card-back, 
.card-back * {
  color: white !important; /* enforce white for all children */
}

.hover-effect {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.hover-effect:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.pricingTable10 {
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
    padding-bottom: 25px;
}

.pricingTable10:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricingTable10 .pricingTable-header {
    padding: 30px 0;
    background: var(--primary);
    transition: all 0.3s ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: var(--bg_color);
}

.pricingTable10:hover .pricingTable-header {
    background: var(--mini_title);
}

.pricingTable10 .heading {
    font-size: 24px;
    font-weight: 600;
}

.pricingTable10 .price-value {
    font-size: 22px;
    margin-top: 10px;
    display: block;
}

.pricingTable10 .pricing-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricingTable10 .pricing-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.pricingTable10 .main_button {
    background-color: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    font-weight: 500;
}

.pricingTable10 .main_button:hover {
    background-color: var(--mini_title);
    transform: scale(1.05);
}
.about-bg-section {
    /* background-image: url("../img/bgsonigara.jpg"); */
    /* background-color: #1ebe57; */
    background-image: url('img/bg1.jpg');
    /* background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1; */
}

.about-bg-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.85); /* Light overlay */
    z-index: -1;
}
 body {
      background: linear-gradient(135deg, #f8f9fa, #ffffff);
      font-family: 'Segoe UI', sans-serif;
      color: #333;
    }

    .section-title {
      text-align: center;
      padding: 50px 20px 20px;
    }

    .section-title span {
      color: #aaa;
      font-size: 18px;
      display: block;
      margin-bottom: 5px;
    }

    .section-title h2 {
      font-size: 32px;
      font-weight: 700;
      color: #333;
    }

    .pricing-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
      overflow: hidden;
      transition: transform 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
    }

    .pricing-header {
      background: linear-gradient(to right, #d4a815, #f1e4aa);
      color: #000;
      padding: 30px 20px 15px;
      text-align: center;
    }

    .pricing-header h3 {
      font-size: 24px;
      font-weight: 700;
      margin: 0;
    }

    .price-tag {
      font-size: 28px;
      font-weight: 600;
      margin-top: 5px;
      color: #705703;
    }

    .pricing-body {
      padding: 20px;
    }

    .pricing-body ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }

    .pricing-body ul li {
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .pricing-body ul li:last-child {
      border-bottom: none;
    }

    .pricing-button {
      display: inline-block;
      padding: 10px 20px;
      color: #fff;
      background-color: #d4af37;
      border: none;
      border-radius: 25px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .pricing-button:hover {
      background-color: #c19e34;
    }

    .badge-gold {
      position: absolute;
      top: 20px;
      left: 20px;
      background: #d4af37;
      color: #fff;
      font-size: 12px;
      padding: 5px 10px;
      border-radius: 10px;
      text-transform: uppercase;
      font-weight: 600;
    }
.glass-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-image img {
  width: 100%;
  height: 400px; /* fixed height for consistency */
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 16px;
}

.glass-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.glass-image:hover img {
  transform: scale(1.05);
}

  .spec-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
  }

  .text-gold {
    color: #d4af37;
  }


  .glass-card {
    background: rgba(255, 255, 255, 0.712);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    transition: all 0.3s ease-in-out;
  }

  .glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }

  .glass-specs-section {
    color: #fff;
    position: relative;
    z-index: 1;
  }

  .glass-specs-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
.inspirational-quote {
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
  border-left: 5px solid #25d366; /* WhatsApp green or your brand color */
  padding: 20px 25px;
  margin: 40px auto;
  max-width: 800px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.inspirational-quote::before {
  content: open-quote;
  font-size: 3rem;
  line-height: 0;
  color: #25d366;
  position: absolute;
  left: 10px;
  top: 10px;
}

.inspirational-quote::after {
  content: close-quote;
  font-size: 3rem;
  line-height: 0;
  color: #25d366;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
 .pricing-card {
      background: #f6f8fa;
      border-radius: 10px;
      overflow: hidden;
      transition: box-shadow 0.3s ease;
    }

    .pricing-card:hover {
      box-shadow: 0 0 10px #999999;
    }

    .pricing-header {
      position: relative;
      background: #2A293E;
      color: #ffffff;
      padding: 30px 0 45px 0;
      text-align: center;
    }

    .pricing-header.gold {
      background: #a57028;
    }

    .pricing-header::before,
    .pricing-header::after {
      content: "";
      position: absolute;
      bottom: 0;
      width: 0;
      height: 0;
      border-bottom: 80px solid #f6f8fa;
    }

    .pricing-header::before {
      right: 50%;
      border-right: 150px solid transparent;
    }

    .pricing-header::after {
      left: 50%;
      border-left: 150px solid transparent;
    }

    .pricing-title h2 {
      margin: 0;
      font-size: 18px;
      font-weight: 200;
      letter-spacing: 1px;
    }

    .pricing-price h2 {
      margin-top: 10px;
      font-size: 28px;
      font-weight: 500;
    }

    .pricing-price small {
      font-size: 16px;
      font-weight: 300;
      vertical-align: top;
    }

    .pricing-body ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .pricing-body ul li {
      padding: 10px 0;
      border-bottom: 1px solid #ddd;
      font-size: 14px;
      color: #2A293E;
    }

    .pricing-footer a {
      display: inline-block;
      padding: 10px 20px;
      background: #2A293E;
      color: #dfc29a;
      text-decoration: none;
      font-weight: 500;
      letter-spacing: 1px;
      border-radius: 5px;
    }

    .pricing-footer a:hover {
      background: #a57028;
      color: #2A293E;
    }
  