*

.header-area a 
{
  color: white !important;

}
body {
      background: #f8f9fa;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* 3D Glass effect container */
    .img-glass {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .img-glass img {
      width: 100%;
      display: block;
      border-radius: 20px;
      transition: transform 0.4s ease;
    }
    .img-glass:hover img {
      transform: scale(1.05);
    }
    .img-glass:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

    /* Card Luxury Text Block */
    .card-luxury {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s ease;
    }
    .card-luxury:hover {
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }
    .card-luxury h3 {
      font-weight: 700;
    }
    .card-luxury p {
      line-height: 1.6;
      color: #555;
      text-align: justify;
    }

    /* 3D Button */
    .btn-3d {
      background: linear-gradient(145deg, #3a7bd5, #00d2ff);
      border: none;
      color: white;
      padding: 0.75rem 2rem;
      font-weight: 600;
      border-radius: 50px;
      box-shadow: 4px 4px 15px rgba(0, 210, 255, 0.6),
        -4px -4px 15px rgba(58, 123, 213, 0.6);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
      user-select: none;
    }
    .btn-3d:hover {
      box-shadow: 6px 6px 20px rgba(0, 210, 255, 0.8),
        -6px -6px 20px rgba(58, 123, 213, 0.8);
      transform: translateY(-3px);
    }

    /* Color Selector */
    .color-option {
      margin: 10px 15px;
      cursor: pointer;
      text-align: center;
      width: 80px;
      user-select: none;
    }
    .color-circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin: 0 auto 8px auto;
      border: 2px solid #ddd;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      background-size: cover;
      background-position: center;
    }
    .color-option:hover .color-circle,
    .color-option.active .color-circle {
      border-color: #007bff;
      box-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
    }
    .color-option span {
      font-size: 0.9rem;
      color: #333;
      font-weight: 500;
    }

    /* Handles Grid */
    .handle-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 25px;
      margin-top: 2rem;
    }
    .handle-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }
    .handle-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
    }
    .handle-label {
      padding: 0.75rem 0;
      font-weight: 600;
      color: #444;
    }
    .handle-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    /* Slider styles */
    .slider-container,
    .slider-container1 {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .slider,
    .slider1 {
      display: flex;
      gap: 1rem;
      scroll-snap-type: x mandatory;
    }
    .slide,
    .slide1 {
      min-width: 30%;
      height: 500px;
      border-radius: 16px;
      overflow: hidden;
      scroll-snap-align: start;
      flex-shrink: 0;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s ease;
      margin: 0 auto;
    }
    .slide img,
    .slide1 img {
      width: 30%;
      height: 500px;
      margin:0 auto;
    }
    .slide:hover,
    .slide1:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    /* Glass Types */
    .glass-types {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2rem;
    }
    .glass-item {
      flex: 1 1 120px;
      max-width: 140px;
      text-align: center;
      color: #555;
    }
    .glass-item img {
      border-radius: 12px;
      width: 80px;
      height: 80px;
      object-fit: cover;
      margin-bottom: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    /* Features Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      /* margin: 2rem 0 3rem 0; */
    }
    .feature-box {
      background: white;
      border-radius: 16px;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
      transition: box-shadow 0.3s ease;
    }
    .feature-box:hover {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }
    .feature-box img {
      width: 50px;
      height: 50px;
    }
    .feature-box h4 {
      margin-bottom: 0.3rem;
      font-weight: 600;
      color: #333;
    }
    .feature-box p {
      margin: 0;
      color: #555;
      font-size: 0.9rem;
      line-height: 1.3;
    }

    /* 2-column feature list */
    .feature-2col {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    .card-3d {
      background: white;
      border-radius: 16px;
      padding: 1.5rem 2rem;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      flex: 1 1 350px;
      min-width: 280px;
    }
    .card-3d h3 {
      margin-bottom: 1rem;
      font-weight: 700;
      color: #007bff;
    }
    .card-3d ul {
      padding-left: 1.3rem;
      color: #555;
      line-height: 1.5;
    }
    .card-3d ul li {
      margin-bottom: 0.6rem;
    }

    /* Paragraph card */
    .paragraph-card {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      margin-bottom: 3rem;
      color: #444;
    }
    .paragraph-card h2 {
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .paragraph-card h3 {
      font-weight: 600;
      margin-bottom: 1rem;
      color: #007bff;
    }
    .paragraph-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
    }

    /* Section Title */
    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #007bff;
      text-align: center;
    }

    /* Responsive fixes */
    @media (max-width: 767px) {
      .card-luxury {
        padding: 1.5rem;
      }
      .handle-card img {
        height: 80px;
      }
      .slide,
      .slide1 {
        min-width: 200px;
        height: 140px;
      }
      .features-grid {
        grid-template-columns: 1fr;
      }
      .feature-2col {
        flex-direction: column;
      }
      .card-3d {
        min-width: auto;
      }
    }

    .benefit-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 12px;
      padding: 20px;
      background: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      height: 100%;
    }

    .benefit-card:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .benefit-icon {
      width: 48px;
      height: 48px;
      margin-right: 15px;
    }

    .benefit-title {
      font-size: 1.1rem;
      font-weight: bold;
    }

    .benefit-text {
      color: #555;
      font-size: 0.95rem;
    }

    .icon-wrapper {
      flex-shrink: 0;
    }
    .carouselExample{
      height: 400px !important;
    }
    .carousel-item img {
      border-radius: 15px;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .carousel-item img:hover {
      transform: perspective(800px) rotateY(10deg) scale(1.05);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    }

    .carousel-inner {
      border-radius: 12px;
      overflow: hidden;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: black;
      padding: 10px;
      border-radius: 50%;
    }

