
/* ================================
   Navbar Styles - All navbar-* classes
================================ */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;  
            background-color: #1a1a1a;
            overflow-x: hidden;
        }

        /* Announcement Bar Styles */
        .announcement-bar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 0;
            font-size: 14px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1051;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .announcement-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }

        .contact-info1 {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            color: #ffd700;
            transform: translateY(-1px);
        }

        .contact-item i {
            font-size: 12px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .social-link {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-link:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px) scale(1.1);
            color: #ffd700;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            text-decoration: none;
        }

        .social-link i {
            font-size: 14px;
        }

        /* Tooltip */
        .social-link::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .social-link:hover::after {
            opacity: 1;
            visibility: visible;
            bottom: -30px;
        }

        /* Navbar Styles */
        .navbar-custom {
            background: rgba(33, 37, 41, 0.95) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 12px 40px;
            margin-top: 37px;
            transition: all 0.3s ease;
            z-index: 1050;
        }

        .navbar-toggler {
            border: 1px solid rgba(255,255,255,0.3);
            padding: 4px 8px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            filter: invert(1);
        }

        .navbar-logo-img {
            height: 80px;
            width: auto;
            border-radius: 50px;   /*8px*/
            transition: transform 0.3s ease;
        }
        .navbar-logo-img-1 {
            height: 100px;
            width: auto;
            border-radius: 50px;   /*8px*/
            transition: transform 0.3s ease;
        }

        .navbar-logo:hover .navbar-logo-img .navbar-logo-img-1 {
            transform: scale(1.05);
        }

        .navbar-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            padding: 8px 16px !important;
            margin: 0 5px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-link:hover,
        .navbar-link.active {
            color: #ffd700 !important;
            background: rgba(255,215,0,0.1);
            transform: translateY(-1px);
            text-decoration: none;
        }

        .navbar-link i {
            margin-right: 8px;
            font-size: 14px;
        }

        .navbar-right-btn {
            background: linear-gradient(135deg, #ffc107, #ff8c00);
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            color: #000 !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,193,7,0.3);
        }

        .navbar-right-btn:hover {
            background: linear-gradient(135deg, #ff8c00, #ffc107);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,193,7,0.4);
            color: #000 !important;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            margin-top: 100px;
            height: 100vh;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
           
        }

        .hero-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
        }

        .slide1 { background: linear-gradient(135deg, #6979c0 0%, #764ba2 100%); }
        .slide2 { background: linear-gradient(135deg, #936997 0%, #927276 100%); }
        .slide3 { background: linear-gradient(135deg, #6d97bb 0%, #6ac5ca 100%); }
        .slide4 { background: linear-gradient(135deg, #60b47c 0%, #71a89e 100%); }

        .slide-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
            gap: 60px;
        }

        .left-content {
            flex: 1;
            color: white;
            animation: slideInLeft 1s ease-out;
        }

        .slide.active .left-content {
            animation: slideInLeft 1s ease-out;
        }

        .left-content h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 7.5px;   /*15*/
            background: linear-gradient(45deg, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .left-content h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 12.5px;    /*25*/
            color: rgba(255,255,255,0.9);
        }

        .left-content p {
            font-size: 1.2rem;
            margin-bottom: 15px;   /*30*/
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
        }

        .features {
            list-style: none;
            margin-bottom: 40px;   /*40*/
        }

        .features li {
            padding: 12px 0;
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            position: relative;
            padding-left: 30px;
        }

        .features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 12px;
            color: #00ff88;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .cta-button {
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255,107,107,0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(255,107,107,0.4);
            background: linear-gradient(135deg, #feca57, #ff6b6b);
        }

        .right-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: slideInRight 1s ease-out;
        }

        .slide.active .right-content {
            animation: slideInRight 1s ease-out;
        }

        .product-image {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .product-image:hover {
            transform: scale(1.05) rotate(2deg);
        }

        /* Navigation Arrows */
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            font-size: 1.2rem;
            padding: 15px 20px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .arrow:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .arrow-left {
            left: 20px;    /*30*/
        }

        .arrow-right {
            right: 20px;   /*30*/
        }

        /* Dots Navigation */
        .dots-container {
            position: absolute;
            bottom: 11px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
            border: 2px solid rgba(255,255,255,0.5);
        }

        .dot:hover {
            background: rgba(255,255,255,0.7);
            transform: scale(1.1);
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .slide-content {
                padding: 0 30px;
                gap: 40px;
            }
            .navbar-logo-img {
            height: 80px;
            width: auto;
            border-radius: 50px;    /*8px*/
            transition: transform 0.3s ease;
        }
            .navbar-logo-img-1 {
            height: 100px;
            width: auto;
            border-radius: 50px;    /*8px*/
            transition: transform 0.3s ease;
        }
            
            .left-content h1 {
                font-size: 3rem;
                margin-top: 50px;
            }
        }

        @media (max-width: 768px) {
            .announcement-content {
                padding: 0 20px;
            }
                    .navbar-logo-img {
            height: 60px;
            width: auto;
            border-radius: 50px;   /*8px*/
            transition: transform 0.3s ease;
        }
                    .navbar-logo-img-1 {
            height: 100px;
            width: auto;
            border-radius: 50px;   /*8px*/
            transition: transform 0.3s ease;
        }
            
            .contact-info {
                gap: 15px;
            }
            
            .social-links {
                gap: 10px;
            }

            .navbar-custom {
                margin-top: 48px;
                padding: 8px 0;
            }

            .navbar-collapse {
                background: rgba(33, 37, 41, 0.98);
                margin-top: 10px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(20px);
                border: 1px solid rgba(255,255,255,0.1);
            }

            .navbar-nav {
                text-align: center;
            }

            .navbar-link {
                margin: 5px 0;
                padding: 12px 20px !important;
                border-radius: 8px;
                display: block;
            }

            
            .slide-content {
                flex-direction: column;
                text-align: center;
                padding: 40px 25px;
                gap: 50px;
                justify-content: center;
                min-height: calc(100vh - 120px);
            }
            
            .left-content {
                max-width: 100%;
            }
            
            .left-content h1 {
                font-size: 2.8rem;
                line-height: 1.1;
                margin-bottom: 25px;
            }
            
            .left-content h2 {
                font-size: 1.6rem;
                margin-bottom: 25px;
            }
            
            .left-content p {
                font-size: 1.2rem;
                margin-bottom: 30px;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.6;
            }
            
            .features {
                margin-bottom: 40px;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .features li {
                font-size: 1.1rem;
                padding: 12px 0;
            }
            
            .cta-button {
                padding: 16px 35px;
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            
            .product-image {
                max-height: 400px;
                width: 100%;
                object-fit: contain;
                border-radius: 18px;
            }
            
            .arrow {
                padding: 12px 18px;
                /* font-size: 1.8rem; */
            }
            
            .arrow-left {
                left: 20px;
            }
            
            .arrow-right {
                right: 20px;
            }
        }

        @media (max-width: 768px) {
            .announcement-bar {
                font-size: 12px;
                padding: 6px 0;
            }
            element.style {
    margin-top: 125px !important;
            }
            
            .contact-info {
                gap: 10px;
            }
            
            .contact-item {
                font-size: 12px;
            }
            
            .contact-item i {
                font-size: 11px;
            }
            
            .social-link {
                width: 28px;
                height: 28px;
            }
            
            .social-link i {
                font-size: 12px;
            }
            
            .navbar-custom {
                margin-top: 30px;
                padding: 8px;
            }
            
            .navbar-logo-img {
                height: 60px;
            }
            .navbar-logo-img-1 {
                height: 100px;
            }

            .navbar-collapse {
                margin-top: 15px;
                padding: 15px;
            }

            .navbar-link {
                padding: 10px 15px !important;
                font-size: 16px;
            }
            
            .hero-section {
                margin-top: 100px;
                min-height: calc(200vh - 130px);
            }

            /* .slide-content {
                padding: 30px 20px;
                gap: 40px;
                min-height: calc(150vh - 130px);
            } */
            
            .left-content {
                max-width: 100%;
            }
            
            .left-content h1 {
                font-size: 2.2rem;
                line-height: 1.1;
                margin-bottom: 20px;
            }
            
            .left-content h2 {
                font-size: 1.4rem;
                margin-bottom: 20px;
            }
            
            .left-content p {
                font-size: 1.1rem;
                margin-bottom: 25px;
                line-height: 1.5;
            }
            
            .features {
                margin-bottom: 35px;
            }
            
            .features li {
                font-size: 1rem;
                padding: 10px 0;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .product-image {
                max-height: 300px;
                width: 100%;
                object-fit: contain;
                border-radius: 15px;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .announcement-bar {
                padding: 8px 0;
            }
            .navbar-logo-img {
            height: 45px;
            width: auto;
            border-radius: 50px;    /*8px*/
            transition: transform 0.3s ease;
        }
            .navbar-logo-img-1 {
            height: 100px;
            width: auto;
            border-radius: 50px;    /*8px*/
            transition: transform 0.3s ease;
        }
            
            .announcement-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
                padding: 0 15px;
            }
            
            .contact-info {
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }
            
            .contact-item {
                font-size: 11px;
            }
            
            .social-links {
                justify-content: center;
                display: none;
            }

            .navbar-custom {
                margin-top: 32px;
            }

            .navbar-collapse {
                margin-top: 10px;
                padding: 10px;
            }

            .hero-section {
                margin-top: 104px;
                min-height: calc(200vh - 130px);
            }
            
            .slide-content {
                padding: 25px 15px;
                gap: 30px;
                min-height: calc(100vh - 130px);
            }
            
            .left-content h1 {
                font-size: 1.9rem;
                line-height: 1.1;
                margin-bottom: 15px;
            }
            
            .left-content h2 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .left-content p {
                font-size: 1rem;
                margin-bottom: 20px;
                line-height: 1.4;
            }
            
            .features {
                margin-bottom: 30px;
            }
            
            .features li {
                font-size: 0.95rem;
                padding: 8px 0;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 0.95rem;
                margin-bottom: 15px;
            }
            
            .product-image {
                max-height: 280px;
                width: 100%;
                object-fit: contain;
                border-radius: 12px;
            }
            
            .arrow {
                display: none;
            }
            
            .dots-container {
                bottom: 15px;
                gap: 12px;
            }
            
            .dot {
                width: 12px;
                height: 12px;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        .slide-content > * {
            animation-fill-mode: both;
        }

        .slide.active .left-content > * {
            animation-delay: 0.2s;
        }

        .slide.active .right-content {
            animation-delay: 0.4s;
        }
       
        /* ==== MOBILE FIX: section vanish + extra gap ==== */
@media (max-width: 768px) {
  .hero-section{
    height: auto !important;
    min-height: 85vh !important;     /* baseline height */
    overflow: visible !important;      /* cut hona band */
  }

  .hero-container{
    height: auto !important;           /* 100% pe depend na kare */
    min-height: inherit !important;
  }

  /* Absolute hatao: natural flow me aao */
  .slide{
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Sirf active slide dikhavo, baaki layout height na lein */
  .slide:not(.active){ 
    display: none !important; 
  }
  .slide.active{
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Gaps tighter */
  .slide-content{ 
    gap: 16px !important; 
    padding: 22px 16px !important; 
    justify-content: flex-start !important;
  }

  .product-image{ 
    max-height: 260px !important; 
    margin-bottom: 12px !important;
  }
}

/* Ultra small phones */
@media (max-width: 360px){
  .slide-content{ gap: 10px !important; }
  .product-image{ max-height: 220px !important; }
}

  /* =======================
       Hero Section Styles
    ======================== */
    
   /* home-about-section */
  /* Parent container transition */
.home-about-section-content {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 12px;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #fff;
  padding: 30px;
}
.home-feature-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}
.home-about-section-content:hover {
box-shadow: 0 15px 30px rgba(27, 27, 27, 0.9);
}


/* Shadow and Zoom on Hover */
.home-about-section-content:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(27, 27, 27, 0.918);
}

/* Text section smooth transition */
.home-about-section-text {
  transition: all 0.4s ease;
}

/* Image hover scale */
.home-about-section-image img {
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
      margin-top: 20px;
}

/* Image zoom on hover */
.home-about-section-content:hover .home-about-section-img {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(248, 203, 0, 0.932);
}

/* Optional: Button hover effect */
.home-about-section-btn {
  background-color: #ffc107;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.home-about-section-btn:hover {
  background-color: #e6ac00;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* ===================================================================================== */


/* home-why-section */
.home-why-section {
  background-color: #f4f4f4;
  padding: 30px 0;
  text-align: center;
}

.home-why-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.home-why-section .section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
}

.home-why-section .why-choose-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

/* Circular Card Styling */
.home-why-section .card {
 background: linear-gradient(135deg, #00c6ff, #0072ff , #0072ff,#00c6ff, #00c6ff);
  border-radius: 50%;
  width: 250px;
  height: 250px;
  color: white;
  margin: 0 auto;
  padding: 30px 20px;
  box-shadow: 0 12px 25px rgba(15, 30, 238, 0.89);
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform-style: preserve-3d;
}

/* Hover Effects */
.home-why-section .card:hover {
  transform: scale(1.08) rotateX(5deg);
  background: linear-gradient(135deg, #0072ff, #00c6ff, #00c6ff,#0072ff,#0072ff );
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

/* Icon Style */
.home-why-section .card .icon {
  font-size: 48px;
  color: white;
  margin-bottom: 15px;
  transition: color 0.4s ease, transform 0.4s ease;
}

/* Icon Color + Wiggle Effect on Hover */
.home-why-section .card:hover .icon {
  color: #4b03f3;
  transform: scale(1.2) rotate(-10deg);
  animation: wiggle 0.4s ease-in-out;
}

/* Heading & Paragraph */
.home-why-section .card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #333;
  transition: color 0.3s ease;
}

.home-why-section .card p {
  font-size: 0.95em;
  color: #666;
  transition: color 0.3s ease;
}

/* Change text color on hover */
.home-why-section .card:hover h3,
.home-why-section .card:hover p {
  color: black;
}

/* Wiggle Keyframes */
@keyframes wiggle {
  0% { transform: scale(1.2) rotate(-10deg); }
  50% { transform: scale(1.3) rotate(10deg); }
  100% { transform: scale(1.2) rotate(-10deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .home-why-section .section-title {
    font-size: 2em;
  }
}

@media (max-width: 576px) {
  .home-why-section .section-title {
    font-size: 1.8em;
  }

  .home-why-section .card {
    width: 200px;
    height: 200px;
    padding: 20px;
  }

  .home-why-section .card h3 {
    font-size: 1.1em;
  }

  .home-why-section .card p {
    font-size: 0.85em;
  }
}

.home-why-section .card h3,
.home-why-section .card p {
  max-width: 90%;                /* 💡 Keeps text inside circle */
  line-height: 1.3;
  text-align: center;
  color: wheat;
  overflow-wrap: break-word;
  hyphens: auto;
}

/*  */
/* Base Styling */
.home-customer-section {
    background: rgb(171, 192, 231);
    padding: 80px 0;
    text-align: center;
    color:black;
    position: relative;
}

.home-customer-container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
}.home-customer-container {
color: #000;
}

.home-customer-section-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 2s ease-out;
}

/* Testimonial Cards */
.home-customer-testimonial-container {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    justify-items: center;
}

.home-customer-testimonial-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 380px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.home-customer-testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    border-radius: 5px;
}

.home-customer-testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.home-customer-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.home-customer-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.home-customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.home-customer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.home-customer-details {
    font-size: 0.95rem;
    color: #777;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .home-customer-section-title {
        font-size: 2.2rem;
    }

    .home-customer-testimonial-container {
        grid-template-columns: 1fr 1fr;
    }

    .home-customer-testimonial-card {
        padding: 20px;
    }

    .home-customer-quote {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .home-customer-section-title {
        font-size: 1.8rem;
    }

    .home-customer-testimonial-container {
        grid-template-columns: 1fr;
    }

    .home-customer-testimonial-card {
        padding: 15px;
    }

    .home-customer-quote {
        font-size: 0.9rem;
    }
}
/*  */
/* Call-to-Action Section */
.home-cta-section {
    background: #7a92d4;  /* Deep Blue Background */
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.home-cta-container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
}

.home-cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out;
}

.home-cta-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.home-cta-buttons {
    display: flex;
    justify-content: center;  /* Center the buttons horizontally */
    align-items: center;      /* Align the buttons vertically (if needed) */
    gap: 20px;
    flex-wrap: wrap;  /* Allow buttons to wrap to the next line on smaller screens */
    margin-top: 20px;  /* Add spacing between the text and buttons */
}

.home-cta-btn {
    background-color: #3498db;  /* Light Blue */
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: auto; /* Make sure the width adjusts for responsive behavior */
    min-width: 200px; /* Ensure there's a minimum button width */
}

.home-cta-btn:hover {
    background-color: #2980b9;  /* Darker Blue on Hover */
    color: #fff;
    border-color: #2980b9;
}

.contact-btn {
    background-color: #1abc9c;  /* Green for contact */
    border-color: #1abc9c;
}

.products-btn {
    background-color: #f39c12;  /* Yellowish Orange for products */
    border-color: #f39c12;
}
.contact-btn:hover{
  text-decoration: none;
}
.products-btn:hover{
  text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .home-cta-title {
        font-size: 2.2rem;
    }

    .home-cta-text {
        font-size: 1rem;
    }

    .home-cta-buttons {
        flex-direction: column;  /* Stack buttons vertically */
        gap: 20px;
        justify-content: center;  /* Center the buttons in column view */
    }

    .home-cta-btn {
        width: 50%;  /* Buttons take 80% of the width on tablets */
        padding: 15px 20px; /* Adjust button padding */
    }
}

@media (max-width: 480px) {
    .home-cta-title {
        font-size: 1.8rem;
    }

    .home-cta-text {
        font-size: 0.9rem;
    }

    .home-cta-btn {
        width: 90%;  /* Buttons take 90% of the width on smaller screens */
        padding: 12px 20px;
        font-size: 1rem;
    }
}
/* ======================================================================================= */
.how-it-works-section {
  padding: 70px 20px;
  background: linear-gradient(to right, #e7f5ff, #f2fbff);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 100, 0.08);
  margin-top: 50px;
  margin-bottom: 50px;
}

.how-it-works-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.how-step-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgb(6, 6, 243,0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  border: 3px solid #00aaff;
}

.how-step-card:hover {
  transform: scale(1.05) rotateY(4deg);
  box-shadow: 0 30px 60px rgb(18, 19, 19, .7), 0 0 12px rgba(117, 119, 121, 0.6);
  background: #9abcd4;
  .how-step-desc {
  font-size: 1rem;
  color: #0c0c0c;
}
}

.how-step-icon {
  font-size: 3rem;
  background: #d6f3ff;
  color: #007bff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  line-height: 70px;
  margin: 0 auto 20px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.how-step-card:hover .how-step-icon {
  background: #007bff;
  color: white;
  transform: scale(1.2) rotate(10deg);
}

.how-step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
}

.how-step-desc {
  font-size: 1rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .how-it-works-title {
    font-size: 2.2rem;
  }
  .how-step-icon {
    font-size: 2.4rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
/* ========================================================================== */
/* blog */
.water-awareness-blog {
  background: linear-gradient(to bottom right, #e6f9ff, #ffffff);
  padding: 70px 20px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 150, 255, 0.1);
}

.water-awareness-title {
  text-align: center;
  font-size: 2.5rem;
  color: #003366;
  font-weight: 800;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.water-awareness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.awareness-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 30px 5px 30px 5px;
  position: relative;
  text-align: center;
  border: 2px dashed #00b7ff;
  box-shadow: 0 12px 30px rgba(0, 100, 200, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.3s ease;
}

.awareness-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 35px 10px 35px 10px;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.awareness-card:hover::before {
  opacity: 0.6;
  filter: blur(5px);
}

.awareness-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 120, 255, 0.25);
  border: 2px solid #0072ff;
}

.awareness-icon {
  font-size: 3rem;
  width: 75px;
  height: 75px;
  line-height: 75px;
  background: #d0f4ff;
  color: #007bff;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: pulse-glow 2.5s infinite ease-in-out;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.awareness-card:hover .awareness-icon {
  background: #007bff;
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0px rgba(0, 200, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 12px rgba(0, 200, 255, 0.7);
  }
}

.awareness-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.awareness-card:hover .awareness-heading {
  color: #007bff;
}

.awareness-desc {
  font-size: 1rem;
  color: #555;
  transition: color 0.3s ease;
}

.awareness-card:hover .awareness-desc {
  color: #000;
}

/* Responsive Enhancements */
@media (max-width: 480px) {
  .water-awareness-title {
    font-size: 2rem;
  }

  .awareness-icon {
    font-size: 2.3rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }

  .awareness-heading {
    font-size: 1.2rem;
  }

  .awareness-desc {
    font-size: 0.9rem;
  }
}
/* ======================================================================================================= */
/* support  */
.support-services-section {
  padding: 70px 20px;
  background: linear-gradient(to right, #e3f2ff, #f9fcff);
  border-radius: 25px;
  box-shadow: inset 0 0 20px rgba(0, 140, 255, 0.1);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 40px;   /*ADD*/
  margin-bottom: 40PX;  /*ADD*/
}

.support-services-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 10px;
}

.support-services-subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 50px;
}

.support-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.support-card {
  position: relative;
  background: #ffffff;
  padding: 35px 25px;
  border: 2px solid #00b7ff;
  transition: all 0.4s ease;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  box-shadow: 0 12px 40px rgba(0, 150, 255, 0.15);
  overflow: hidden;
  z-index: 1;
}

.support-card:hover {
  transform: scale(1.05) rotateY(2deg);
  background: #f4fcff;
  box-shadow: 0 25px 70px rgba(0, 120, 255, 0.3), 0 0 15px rgba(0, 200, 255, 0.3);
  border-color: #0077cc;
}

/* Glowing border effect */
.support-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.3), rgba(0, 100, 255, 0.3));
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.support-card:hover::before {
  opacity: 1;
}


.support-card:hover {
  transform: scale(1.04) rotateY(2deg);
  box-shadow: 0 20px 60px rgba(157, 179, 204, 0.7);
}

.support-icon {
  font-size: 3rem;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto 20px;
  background-color: #d6f3ff;
  color: #007bff;
  border-radius: 50%;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.support-card:hover .support-icon {
  transform: scale(1.2) rotate(5deg);
  background: #007bff;
  color: white;
}

.support-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
}

.support-card-text {
  font-size: 1rem;
  color: #444;
}

.support-whatsapp-cta {
  margin-top: 20px;
}

.support-whatsapp-btn {
  background: #25d366;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 255, 0, 0.2);
  transition: all 0.3s ease;
}

.support-whatsapp-btn:hover {
  background: #1da851;
  transform: scale(1.05);
  text-decoration:none ;
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
  .support-services-title {
    font-size: 2rem;
  }

  .support-services-subtitle {
    font-size: 1rem;
  }

  .support-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }

  .support-card-title {
    font-size: 1.2rem;
  }

  .support-card-text {
    font-size: 0.95rem;
  }
}
.support-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 12px 40px rgba(0, 150, 255, 0.1);
  border: 2px solid #00b7ff;
  transition: all 0.4s ease;
  clip-path: polygon(0 0, 92% 0, 100% 10%, 100% 100%, 8% 100%, 0 90%);
}

.support-card:hover {
  transform: scale(1.04) rotateY(2deg);
  box-shadow: 0 20px 60px rgba(0, 120, 255, 0.3);
  border-color: #0077cc;
  background: #f5faff;
}

/* Optional: glowing effect on hover */
.support-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(0,183,255,0.3), rgba(0, 100, 255, 0.3));
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.support-card:hover::before {
  opacity: 1;
}



/* footer */
/* Footer Base */
.footer {
  position: relative;
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  color: #003f5c;
  /*padding-top: 60px;*/
  overflow: hidden;
  z-index: 1;
  font-family: 'Segoe UI', sans-serif;
}

.footer-newsletter {
  text-align: center;
  padding: 40px 20px 20px;
}

.footer-newsletter h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px 15px;
  border: 2px solid #00acc1;
  border-radius: 5px;
  min-width: 250px;
  font-size: 14px;
}

.newsletter-form button {
  background: #00acc1;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #00838f;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-between;
  gap: 30px;
  padding: 90px 20px;
}

.footer-section {
  flex: 1 1;
}

.footer-about h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a{
  text-decoration: none;
}

.footer-links a {
  color: #003f5c;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
  color: #00acc1;
  font-weight: bold;
}

.footer-social .social-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  background: #00acc1;
  color: white;
  padding: 7px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social .social-icon:hover {
  background: white;
  color: #00acc1;
  box-shadow: 0 0 10px rgba(0,172,193,0.5);
  transform: scale(1.1);
}


.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #b2ebf2;
  font-size: 14px;
  font-weight: 500;
 
}

.footer-bottom p {
  margin: 5px 0;
 
}
.footer-bottom p a{
  text-decoration: none;
}

.animated-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.animated-bg li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(0,172,193,0.3);
  animation: bubble 25s linear infinite;
  bottom: -150px;
  border-radius: 50%;
}

.animated-bg li:nth-child(1) { left: 25%; width: 40px; height: 40px; animation-duration: 20s; }
.animated-bg li:nth-child(2) { left: 10%; animation-duration: 12s; }
.animated-bg li:nth-child(3) { left: 70%; width: 30px; height: 30px; animation-duration: 18s; }
.animated-bg li:nth-child(4) { left: 40%; animation-duration: 14s; }
.animated-bg li:nth-child(5) { left: 65%; animation-duration: 16s; }
.animated-bg li:nth-child(6) { left: 75%; width: 25px; height: 25px; animation-duration: 22s; }
.animated-bg li:nth-child(7) { left: 35%; animation-duration: 17s; }
.animated-bg li:nth-child(8) { left: 50%; animation-duration: 19s; }
.animated-bg li:nth-child(9) { left: 20%; width: 30px; height: 30px; animation-duration: 15s; }
.animated-bg li:nth-child(10) { left: 80%; width: 40px; height: 40px; animation-duration: 26s; }

@keyframes bubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) scale(1.2);
    opacity: 0;
  }
}

 @media (max-width: 426px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 50%;
    margin: auto;
  }
} 
.footer-bottom .dev-highlight {
  color: orange;
  font-weight: bold;
}

/* product page */
/* product-hero-section  */
/* General Styling */
.product-hero-section {
  background-image: url('https://www.qnetindia.in/wp-content/uploads/2024/09/Kent-Qnet.webp'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
  background-attachment: fixed; /* Ensures background image is fixed during scrolling */
}

.product-hero-content {
  max-width: 90%;
  padding: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4); /* Adds a shadow for text readability */
}

.product-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  overflow: hidden;
  border-right: .15em solid #fff;
  white-space: nowrap;
  animation: typing 3s steps(30) 1s forwards, blink-caret 0.75s step-end infinite;
}

.product-hero-content p {
  font-size: 1.5rem;
  opacity: 0;
  animation: fadeIn 2s 4s forwards;
}

/* Typewriter Animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

/* Media Queries for Responsiveness */

/* For devices with a width up to 1024px (tablets) */
@media (max-width: 1024px) {
  .product-hero-content h1 {
    font-size: 2.5rem;
  }

  .product-hero-content p {
    font-size: 1.3rem;
  }

  /* Adjust max-width of text content */
  .product-hero-content {
    max-width: 80%;
    padding: 10px;
  }
}

/* For devices with a width up to 768px (small tablets and large phones) */
@media (max-width: 768px) {
  .product-hero-content h1 {
    font-size: 2rem;
  }

  .product-hero-content p {
    font-size: 1.2rem;
  }

  /* Adjust max-width of text content */
  .product-hero-content {
    max-width: 90%;
    padding: 10px;
  }

  /* Adjust vertical alignment */
  .product-hero-section {
    height: 80vh;
  }
}

/* For devices with a width up to 480px (small phones) */
@media (max-width: 480px) {
  .product-hero-content h1 {
    font-size: 1.2rem; /* Reduced font size for small phones */
  }

  .product-hero-content p {
    font-size: 1rem; /* Reduced font size for small phones */
  }

  /* Adjust max-width of text content */
  .product-hero-content {
    max-width: 95%;
    padding: 5px;
  }

  /* Adjust vertical alignment */
  .product-hero-section {
    height: 70vh; /* Reduced height for small screens */
  }
}

/*  */
/* General Styles for Product Cards */
.product-categories-section .card-img-top {
    height: 250px; /* Fixed height for the images */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    width: 100%; /* Ensure images span the full width of the card */
}

.product-categories-section .card-body {
    padding: 15px;
}

.product-categories-section .card-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.product-categories-section .card-text {
    font-size: 1rem;
    color: #555;
}

.product-categories-section .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
}

.product-categories-section .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Tablet View (For Screen Sizes 768px to 991px) */
@media (max-width: 992px) {
    /* Adjust the product grid layout for tablet */
    .product-categories-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* Adjust image height for tablet view */
    .product-categories-section .card-img-top {
        height: 200px;
    }

    /* Adjust the column width for tablets (2 columns instead of 3) */
    .product-categories-section .col-md-4 {
        width: 48%; /* Two cards per row */
        margin-bottom: 20px;
    }
}

/* Mobile View (For Screen Sizes 767px and below) */
@media (max-width: 767px) {
    /* Stack cards vertically on mobile view */
    .product-categories-section .col-md-4 {
        width: 100%; /* Cards take up full width on mobile */
        margin-bottom: 20px;
    }

    /* Adjust image height for mobile view */
    .product-categories-section .card-img-top {
        height: 180px;
    }
}
/* General Styling for the Product Specifications Section */
/* General styling */
.product-specifications-section {
    background-color: #f9f9f9; /* Light background for the section */
    padding: 40px 0;
    border-radius: 10px;
}

.product-specifications-section h2 {
    font-size: 2rem;
    color: #343a40;
    font-weight: 600;
}

.product-specifications-section h3 {
    font-size: 1.5rem;
    color: #007bff; /* Blue color for headings */
    font-weight: 500;
    margin-bottom: 15px;
}

/* Styling for the Key Features List */
.product-specifications-section .list-group-item {
    font-size: 1rem;
    padding: 15px;
    border: none;
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-specifications-section .list-group-item strong {
    color: #007bff; /* Highlight feature names with blue color */
}

/* Styling for the Specifications Table */
.product-specifications-section .table {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.product-specifications-section .table th {
    background-color: #007bff;
    color: white;
    text-align: left;
    padding: 10px;
}

.product-specifications-section .table td {
    padding: 10px;
    color: #343a40;
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-specifications-section .row {
        display: flex;
        flex-wrap: wrap;
    }

    .product-specifications-section .col-md-6 {
        margin-bottom: 20px;
        width: 100%;
    }

    .product-specifications-section h2 {
        font-size: 1.8rem;
    }

    .product-specifications-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .product-specifications-section .col-md-6 {
        margin-bottom: 20px;
        width: 100%;
    }

    .product-specifications-section h2 {
        font-size: 1.7rem;
    }

    .product-specifications-section h3 {
        font-size: 1.2rem;
    }

    .product-specifications-section .table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-specifications-section h2 {
        font-size: 1.5rem;
    }

    .product-specifications-section h3 {
        font-size: 1rem;
    }

    .product-specifications-section .table {
        font-size: 0.8rem;
    }

    .product-specifications-section .list-group-item {
        font-size: 0.9rem;
    }
}
.spare-heading {
  font-weight: 700;
  text-transform: uppercase;
  color: #004d99;
  position: relative;
}

.spare-heading span {
  display: inline-block;
  font-size: 2rem;
  position: relative;
  padding-bottom: 10px;
}

.spare-heading span::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ffcc00;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

@media (min-width: 480px) {
  .spare-heading span {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .spare-heading span {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .spare-heading span {
    font-size: 2.8rem;
  }
}


/* service page  */
/* service-hero-section */
/* General styles for Hero Section */
.service-hero-section {
    position: relative;
    height: 100vh; /* Full height of the screen */
    background-image: url('./img/Untitled design (11).png'); /* Add your background image URL here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.service-hero-section-1 {
    position: relative;
    height: 100vh; /* Full height of the screen */
    background-image: url('./img/Untitled design (12).png'); /* Add your background image URL here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay for text readability */
.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-top: 50px;*/   /*add*/
}

/* Content inside Hero section */
.service-hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    margin-top: 100px;
}

.service-hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-hero-btn {
    background-color: #FFD700; /* Button color */
    color: white;
    font-size: 1rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-hero-btn:hover {
    background-color: #ffb800;
    text-decoration: none;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.5rem;
        margin-top: 30px;
    }

    .service-hero-description {
        font-size: 1rem;
    }

    .service-hero-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-description {
        font-size: 0.9rem;
    }

    .service-hero-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
}
/*  */
/* General styles for Installation Services Section */
/* Section Base */
.service-installation-section {
  background: linear-gradient(to bottom right, #fefefe, #f2f9ff);
  padding: 60px 20px;
  border-radius: 20px;
}

/* Headings & Intro */
.service-installation-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  color: #222;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-installation-title:hover {
  transform: scale(1.03);
  color: #0056b3;
}

.service-installation-description {
  font-size: 1.2rem;
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.service-installation-description:hover {
  color: #000;
  transform: translateY(-2px);
}

/* Installation Step Cards */
.service-installation-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  perspective: 1000px;
  cursor: default;
}

.service-installation-card:hover {
  transform: scale(1.04) rotateY(2deg);
  background-color: wheat;
  box-shadow: 0 25px 40px rgba(5, 29, 245, 0.7);
}

.service-installation-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  transition: color 0.3s ease;
}

.service-installation-step-title:hover {
  color: #007bff;
}

.service-installation-step-description {
  font-size: 1.05rem;
  color: #666;
  transition: all 0.3s ease;
}

.service-installation-step-description:hover {
  color: #000;
  transform: translateY(-2px);
}

/* CTA Section */
.service-installation-cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  transition: transform 0.3s ease;
}

.service-installation-cta-title:hover {
  transform: scale(1.05);
  color: #28a745;
}

.service-installation-cta-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-installation-cta-text:hover {
  color: #000;
}

.service-installation-cta-btn {
  background-color: #ffdf00;
  color: #000;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.service-installation-cta-btn:hover {
  background-color: #e5c600;
  text-decoration: none;
  transform: scale(1.05) translateY(-2px);
  color: #000;
}
.service-installation-icon {
  font-size: 3rem;
  color: #ffdf00;
  margin-bottom: 15px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.service-installation-card:hover .service-installation-icon {
  color: #007bff;
  transform: scale(1.2) rotate(5deg);
}



/* General styles for Maintenance Services Section */
.service-maintenance-section {
  background: linear-gradient(to bottom right, #eaf4ff, #dceeff);
  padding: 60px 30px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 75, 150, 0.15);
}

.service-maintenance-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.service-maintenance-description {
  text-align: center;
  color: #444;
  font-size: 1.2rem;
  max-width: 850px;
  margin: 0 auto 50px;
}

/* Maintenance Cards */
.service-maintenance-item {
  background: #ffffff;
  border-radius: 25px 25px 10px 10px;
  padding: 30px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 100, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.service-maintenance-item:hover {
  transform: scale(1.05) rotateY(3deg);
  box-shadow: 0 30px 60px rgba(0, 0, 100, 0.2);
  background: #f0f9ff;
}

.maintenance-frame {
  width: 90px;
  height: 90px;
  border: 4px solid #007bff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  background: #fff;
}

.service-maintenance-item:hover .maintenance-frame {
  transform: rotate(15deg) scale(1.1);
  border-color: #0056b3;
}

.service-maintenance-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.service-maintenance-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 12px;
}

.service-maintenance-item-description {
  color: #555;
  font-size: 1rem;
}

/* Pricing Cards */
.service-package {
  background: #ffffff;
  border-left: 6px solid #007bff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 80, 0.08);
  transition: all 0.3s ease;
}

.service-package:hover {
  transform: scale(1.03);
  border-color: #0056b3;
  box-shadow: 0 20px 40px rgba(0, 0, 100, 0.15);
}

.service-package-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003366;
}

.service-package-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #007bff;
  margin-top: 5px;
}

.service-package-details {
  color: #555;
  margin-top: 10px;
}

/* CTA Section */
.service-maintenance-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
}

.service-maintenance-cta-text {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.service-maintenance-cta-btn {
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.service-maintenance-cta-btn:hover {
  background-color: #42b300;
  transform: scale(1.05);
  text-decoration: none;
  color: white;
}
.service-maintenance-item {
  position: relative;
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 30px;
  border: 3px solid #007bff; /* Frame border */
  box-shadow: 0 15px 35px rgba(0, 0, 100, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

/* 3D hover effect and glow */
.service-maintenance-item:hover {
  transform: scale(1.05) rotateY(3deg);
  box-shadow:
    0 25px 50px rgba(0, 0, 100, 0.2),
    0 0 10px rgba(0, 123, 255, 0.4); /* Glow effect */
  border-color: #0056b3; /* Darker border on hover */
  background: #f4faff;
}
/* Responsive typography and spacing */
@media (max-width: 768px) {
  .service-installation-title,
  .service-maintenance-title {
    font-size: 2rem;
  }

  .service-installation-description,
  .service-maintenance-description {
    font-size: 1rem;
    padding: 0 15px;
  }

  .service-installation-card,
  .service-maintenance-item,
  .service-package {
    padding: 25px 20px;
  }

  .maintenance-frame {
    width: 70px;
    height: 70px;
  }

  .service-maintenance-icon {
    width: 40px;
    height: 40px;
  }

  .service-installation-icon {
    font-size: 2.5rem;
  }

  .service-package {
    text-align: center;
  }

  .service-maintenance-cta-btn,
  .service-installation-cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .service-installation-card,
  .service-maintenance-item {
    border-radius: 20px;
    padding: 20px 15px;
  }

  .service-maintenance-section,
  .service-installation-section {
    padding: 40px 15px;
  }

  .service-package-title {
    font-size: 1.25rem;
  }

  .service-maintenance-item-title {
    font-size: 1.2rem;
  }

  .service-installation-step-title {
    font-size: 1.3rem;
  }
}

/* ======================================================================================== */
/* General styles for the Support & Warranty Section */
.service-support-warranty {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom right, #f0f8ff, #e3f2fd);
  font-family: 'Roboto', sans-serif;
}

.service-support-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-support-title:hover {
  transform: scale(1.03);
  color: #0056b3;
}

/* Flex container for cards */
.service-warranty-container {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Card styles */
.service-warranty-section,
.service-support-section {
  background: #ffffff;
  border-radius: 25% 25% 10px 10px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 75, 150, 0.7);
  /* border: 2px solid #007bff; */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex: 1 1 100%;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.service-warranty-section:hover,
.service-support-section:hover {
  transform: scale(1.04) rotateY(2deg);
  box-shadow: 0 25px 60px rgb(18, 19, 19, 0.7);
  background: #f5fbff;
  border-color: #0056b3;
}

/* Section titles */
.service-warranty-title,
.service-support-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #004080;
  transition: color 0.3s ease;
}

.service-warranty-section:hover .service-warranty-title,
.service-support-section:hover .service-support-title-secondary {
  color: #0056b3;
}

/* Paragraphs */
.service-warranty-description,
.service-support-description {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-warranty-section:hover .service-warranty-description,
.service-support-section:hover .service-support-description {
  color: #222;
  transform: translateY(-2px);
}

/* Bullet lists */
.service-warranty-list,
.service-support-list {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  padding-left: 20px;
}

.service-support-list li{
  text-decoration: none;
}

.service-warranty-item {
  font-weight: 600;
  color: #007bff;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.service-warranty-item:hover {
  color: #003366;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-support-title {
    font-size: 2.2rem;
  }

  .service-warranty-title,
  .service-support-title-secondary {
    font-size: 1.5rem;
  }

  .service-warranty-section,
  .service-support-section {
    padding: 2rem;
  }

  .service-warranty-description,
  .service-support-description {
    font-size: 1rem;
  }

  .service-warranty-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .service-warranty-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-warranty-section,
  .service-support-section {
    max-width: 100%;
    padding: 1.5rem;
  }
}


.service-support-list li {
    margin-bottom: 0.5rem;
}

.service-support-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
}
/* ============================================================================ */
/* FAQ Section */
.service-faq-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem 1rem;
  border-radius: 20% 0px 0px 20px;
  background: linear-gradient(to right, #e3f2fd, #f0f8ff);
  border-radius: 20px;
}

.service-faq-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-faq-title:hover {
  transform: scale(1.05);
  color: #007bff;
}

/* FAQ Card Style */
.service-faq-item {
  background-color: #ffffff;
  border-radius: 30px 10px 30px 10px;
  box-shadow: 0 15px 30px rgba(0, 75, 150, 0.15);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  border: 2px solid #007bff;
}

.service-faq-item:hover {
  transform: scale(1.04) rotateY(2deg);
  box-shadow: 0 25px 60px rgba(0, 75, 150, 0.25);
  background: #f5fbff;
  border-color: #0056b3;
}

/* FAQ Question */
.service-faq-question {
  font-size: 1.4rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-faq-item:hover .service-faq-question {
  color: #0056b3;
}

/* FAQ Answer */
.service-faq-answer {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-faq-item:hover .service-faq-answer {
  color: #222;
  transform: translateY(-2px);
}

/* Link styles */
a {
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: #0056b3;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-faq-title {
    font-size: 2.2rem;
  }

  .service-faq-item {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .service-faq-title {
    font-size: 2rem;
  }

  .service-faq-question {
    font-size: 1.2rem;
  }

  .service-faq-answer {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-faq-title {
    font-size: 1.8rem;
  }

  .service-faq-question {
    font-size: 1rem;
  }

  .service-faq-answer {
    font-size: 0.9rem;
  }

  .service-faq-item {
    padding: 1.5rem;
    border-radius: 20px;
  }
}
/* Icon Style - Top Right */
/* FAQ Card */
.service-faq-item {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  padding: 3.5rem 2rem 2rem; /* Extra top padding for icon */
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-faq-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.2);
}

/* Icon on top-right */
.faq-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #007bff;
  color: #fff;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
  z-index: 1;
}

/* Icon hover animation */
.faq-icon:hover {
  transform: rotate(15deg) scale(1.1);
  background-color: #0056b3;
}

/* Responsive Icon */
@media (max-width: 576px) {
  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    top: 15px;
    right: 15px;
  }

  .service-faq-item {
    padding: 3rem 1.5rem 1.5rem;
  }
}


.service-faq-item {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.service-faq-item:hover .faq-icon {
  background: #fff;
  color: #007bff;
  transform: scale(1.2) rotate(12deg);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}


/* about page */
/* General styles for the About Hero Section */
.about-hero-section {
    position: relative;
    height: 100vh; /* Full height of the screen */
    background-image: url('https://roserviceindia.org/image/2.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better contrast */
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 600px;
    margin: 0 20px;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-hero-btn {
    background-color: #FFD700; /* Button color */
    color: white;
    font-size: 1rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about-hero-btn:hover {
    background-color: #ffb800;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
    }

    .about-hero-btn {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-subtitle {
        font-size: 0.8rem;
    }

    .about-hero-btn {
        font-size: 0.7rem;
        padding: 0.6rem 1rem;
    }
}
/*  */
.about-our-techno-section {
    padding: 40px 0;
    background-color: #8f9ad8;
}

.about-our-techno-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

/* Tech Card Styles */
.about-our-techno-card {
    background-color: #ecd3d3;
    border-radius: 8px;
    padding: 20px;
    color: black;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px; /* Minimum height to ensure cards are not too small */
    width: 100%;
}

/* Ensure equal card size with flexible content */
.about-our-techno-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgb(240, 192, 36);
    .about-our-techno-icon i {
    font-size: 60px; /* Font Awesome Icon size */
    color: #470ce9; /* Icon color */
    margin-bottom: 15px;
}
}

.about-our-techno-icon i {
    font-size: 60px; /* Font Awesome Icon size */
    color: #0c0c0c; /* Icon color */
    margin-bottom: 15px;
}


.about-our-techno-heading {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.about-our-techno-description {
    color: #0e0d0d;
    font-size: 1rem;
    flex-grow: 1; /* Ensure description stretches to fill remaining space */
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-our-techno-row {
        display: flex;
        flex-wrap: wrap;
    }
    .about-our-techno-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-our-techno-heading {
        font-size: 1.3rem;
    }

    .about-our-techno-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about-our-techno-title {
        font-size: 1.5rem;
    }
}
/*  */
.about-our-team {
    background-color: #fff;
}

.about-our-team-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Team Member Card Styling */
.about-our-team-member {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.about-our-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.about-our-team-member-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.about-our-team-role {
    font-size: 1em;
    color: #777;
    margin-bottom: 10px;
}

.about-our-team-bio {
    font-size: 0.9em;
    color: #555;
    line-height: 1.4;
}

.about-our-team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Ensuring Equal Card Height */
.row {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

.col-lg-4, .col-md-6, .col-sm-12 {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .about-our-team-title {
        font-size: 2em;
    }
    .about-our-team-member {
        padding: 15px;
    }
}
/*  */
.about-certification-section {
    background-color: #fff;
}

.about-certification-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Certification Styling */
.about-certification-list {
    padding: 20px;
}

.about-certification-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 5px solid #007bff;
    margin-bottom: 20px;
    border-radius: 8px;
}

.about-certification-name {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.about-certification-description {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

.about-certification-icon {
    font-size: 2.5em;
    color: #007bff;
}

.about-certification-item i {
    width: 40px;
    height: 40px;
}

/* Achievement Styling */
.about-achievement-list {
    padding: 20px;
}

.about-achievement-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 5px solid #28a745;
    margin-bottom: 20px;
    border-radius: 8px;
}

.about-achievement-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.about-achievement-description {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

.about-achievement-icon {
    font-size: 2.5em;
    color: #28a745;
}

.about-achievement-item i {
    width: 40px;
    height: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-certification-title {
        font-size: 2em;
    }

    .about-certification-item, .about-achievement-item {
        padding: 12px;
    }
}
/* ============================================================================================== */

/* contact page */


/*  */
.contact-form-section {
    background-color: #fff;
    padding: 60px 0;
}

.contact-form-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.contact-form-label {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.contact-form-input {
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
}

.contact-form-btn {
    font-size: 1.2em;
    padding: 12px 40px;
    text-transform: uppercase;
    border-radius: 50px;
    font-weight: bold;
}

/* Button Hover Effect */
.contact-form-btn:hover {
    background-color: #f8fc25;
    border-color: #111111;
    text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-title {
        font-size: 2em;
    }

    .contact-form-input {
        font-size: 0.9em;
    }

    .contact-form-btn {
        font-size: 1em;
    }
}
/*  */
.contact-details-item {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 250px;
  width: 250px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-details-item {
 
 
  box-shadow: 0 12px 30px rgb(252, 236, 9);
  border: 2px solid #0f0f0f;
}

.contact-details-item:hover {
  transform: scale(1.05);
  background-color: #fff8e1; /* Light Yellow */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  border: 2px solid #ffc107;
}

.contact-details-icon {
  font-size: 36px;
  color: #ffc107;
  transition: color 0.3s ease;
}

.contact-details-item:hover .contact-details-icon {
  color: #473391; /* Dark Purple on hover */
}

.contact-details-title {
  font-weight: 600;
}

.contact-details-info {
  margin-bottom: 0;
  font-size: 15px;
}

@media (max-width: 768px) {
  .contact-details-item {
    height: 220px;
    width: 220px;
    padding: 20px;
  }
}

/*  */
.contact-location-section {
    background-color: #fff;
    padding: 60px 0;
}

.contact-location-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.contact-location p {
    font-size: 1.2em;
    color: #555;
}

.contact-location h4 {
    font-size: 1.5em;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-location-title {
        font-size: 2em;
    }

    .contact-location p {
        font-size: 1em;
    }
}
/* ====================================================================================== */
/* Form Fields Hover + Focus */
.form-field {
  border: 2px solid #ccc;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transform: scale(1);
  background-color: #fff;
}
.form-field:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-color: #ffc107;
}
.form-field:focus {
  border-color: #ffc107;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* Submit Button Hover */
.contact-form-btn {
  background-color: #ffc107;
  border: none;
  transition: all 0.3s ease;
}
.contact-form-btn:hover {
  background-color: #e6ac00;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
  transform: translateY(-3px);
}

/* Social Icon Box */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color:white;
  background: #131312;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.social-icon:hover {
  background-color: #d3a20e;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  transform: scale(1.15);
}

/* Text Reveal on Hover */
.social-icon span {
  position: absolute;
  bottom: -25px;
  font-size: 12px;
  opacity: 0;
  color: #333;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.social-icon-wrapper:hover .social-icon span {
  bottom: -40px;
  opacity: 1;
  color: #ffc107;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .social-icon {
    width: 37px;
    height: 37px;
    font-size: 16px;
  }
  .social-icon span {
    font-size: 10px;
  }
}
/* Contact Box (Form & Address) Hover Zoom Effect */
.contact-form,
.contact-info {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 15px;
}

/* Common Styles */
.contact-form,
.contact-info {
  transition: all 0.4s ease;
  border-radius: 15px;
  background-color: #fff;
  border: 1px solid #f1f1f1;
   box-shadow: 0 12px 30px rgb(29, 29, 29, 0.7);
   border-color: #131312; 
}

/* Hover Effect: Zoom + Color Change + Shadow */
.contact-form:hover,
.contact-info:hover {
  transform: scale(1.02);
  background-color: #fff8e1; /* Light yellow background */
  border-color: #ffc107;     /* Yellow border */
  box-shadow: 0 12px 30px rgb(243, 239, 3, 0.7);
}

/* map  */
.map-wrapper {
  border: 5px solid #ffc107;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(71, 4, 228, 0.7);
  transition: all 0.4s ease;
}

.map-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgb(238, 222, 4, 0.8);
  border-color: #473391; /* Hover border color */
}
/* ================================================================================= */
/* Base Styles */
.floating-icon-btn {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Initial shadow */
  color: #000;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
  animation: shadowPulse 3s infinite ease-in-out; /* Added animation */
}

/* Hover Effects */
.floating-icon-btn:hover {
  transform: scale(1.15);
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.6); /* Hover shadow */
}

/* Continuous shadow pulse animation */
@keyframes shadowPulse {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Starting shadow */
  }
  50% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7); /* Mid pulse shadow */
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9); /* Ending shadow */
  }
}

/* Specific Position and Icon Settings */
.contact-icon {
  left: 20px;
  font-size: 32px;
  background-color: #0d6efd;
  color: #fff;
}

.whatsapp-icon {
  right: 20px;
  font-size: 40px;
  background-color: #25D366;
  color: #fff;
}

/* Tablet Adjustments */
@media (max-width: 768px) {
  .floating-icon-btn {
    width: 45px;
    height: 45px;
    bottom: 15px;
  }

  .contact-icon {
    left: 15px;
    font-size: 26px;
  }

  .whatsapp-icon {
    right: 15px;
    font-size: 30px;
  }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .floating-icon-btn {
    width: 40px;
    height: 40px;
    bottom: 12px;
  }

  .contact-icon {
    left: 10px;
    font-size: 22px;
  }

  .whatsapp-icon {
    right: 10px;
    font-size: 26px;
  }
}


/* =============================================================================== */
.custom-box {
  background: #f9f9f9;
  border-left: 4px solid #0072ff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.1);
  transition: all 0.3s ease-in-out;
}

.custom-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 114, 255, 0.3);
  background: #eef6ff;
}

.about-certification-icon,
.about-achievement-icon {
  font-size: 30px;
  color: #0072ff;
  background-color: #e0f0ff;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.custom-box:hover i {
  transform: scale(1.2) rotate(5deg);
  background: #0072ff;
  color: white;
}

.about-certification-name,
.about-achievement-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}

.about-certification-description,
.about-achievement-description {
  font-size: 0.95rem;
  color: #555;
}
.about-certification-icon,
.about-achievement-icon {
  margin: 15px; /* fine-tuning vertical alignment */
}
/* ================================================================================  */
/* product */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;

  /* Make it square */
  width: 100%;
  aspect-ratio: 1 / 1;  /* For maintaining square shape */
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.9)); /* Drop shadow instead of box-shadow */
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover {
  transform: scale(1.03) rotateX(3deg) rotateY(3deg);
  filter: drop-shadow(0 15px 30px rgba(19, 2, 250, 0.9)); /* Stronger drop shadow on hover */
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Sliding Overlay */
.product-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 55%;   /*50*/
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  padding: 10px;
  transition: bottom 0.5s ease;
}

.product-card:hover .product-overlay {
  bottom: 0;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1px;
}

.product-price {
  font-size: 1rem;
  color: #ffdf00;

}

.product-btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background-color: #6200ff;
  border: none;
  
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.product-btn:hover {
  background-color: #e5c800;
  color: #000;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Responsive Layout */
@media (max-width: 1200px) {
  .product-card {
    width: 100%;
    aspect-ratio: 1 / 1.2; /* Rectangular shape on large screens */
  }
}

@media (max-width: 768px) {
  .product-card {
    width: 100%;
    aspect-ratio: 1 / 1; /* Square shape for smaller screens */
  }
  .product-name {
    font-size: 0.8rem;  /* Slightly smaller title */
  }
  .product-price {
    font-size: 0.95rem; /* Slightly smaller price */
  }
  .product-btn {
    padding: 6px 14px;   /*6 16*/
    font-size: 0.85rem;
    margin-bottom: 20px;
    
  }
}

@media (max-width: 480px) {
  .product-card {
    width: 100%;
    aspect-ratio: 1 / 1; /* Square shape for mobile */
  }
  .product-name {
    font-size: 1rem;  /* Smaller title for mobile */
  }
  .product-price {
    font-size: 0.85rem;  /* Smaller price for mobile */
  }
  .product-btn {
    padding: 5px 14px;
    font-size: 0.8rem;
  }
}
/* =================================================================== */

.custom-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.custom-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px 30px;
  border-radius: 10px;
  width: 85%;
  max-width: 700px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease-in-out;
}

.custom-modal-content h2, .custom-modal-content h3 {
  margin-top: 10px;
}

.custom-modal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.custom-modal-content table th,
.custom-modal-content table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.custom-modal-close {
  color: #444;
  float: right;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
}

.custom-modal-close:hover {
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* Modal Overlay */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1055;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}

/* Modal Content */
.custom-modal-content {
  background: linear-gradient(to bottom right, #ffffff, #e3f2fd);
  margin: 5% auto;
  padding: 30px;
  width: 80%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.4);
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

/* Close Button */
.custom-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #f44336;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.custom-modal-close:hover {
  color: #b71c1c;
}

/* Headings */
.custom-modal-content h2 {
  color: #1e88e5;
  border-bottom: 2px solid #1e88e5;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.custom-modal-content h3 {
  color: #00796b;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* Stylish Strong Tag */
.custom-modal-content strong {
  font-weight: bold;
  background: linear-gradient(to right, #ff5722, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* List Items */
.custom-modal-content ul {
  padding-left: 20px;
}

.custom-modal-content ul li {
  margin-bottom: 8px;
  color: #333;
}

/* Table Styling */
.custom-modal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.custom-modal-content th {
  background-color: #bbdefb;
  color: #0d47a1;
  padding: 10px;
  border: 1px solid #90caf9;
  text-align: left;
}

.custom-modal-content td {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 10px;
  border: 1px solid #c8e6c9;
}
/* ========================================================================== */

.water-purifier-section {
    background-color: #1e4f68;
    color: white;
    padding: 50px 0;
}

.water-purifier-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.water-purifier-info {
    flex: 1;
    text-align: center;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.water-purifier-info img {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    animation: imagePopUpDown 3s ease-in-out infinite;
}

@keyframes imagePopUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Moves image up */
    }
    100% {
        transform: translateY(0); /* Moves image back down */
    }
}

.water-purifier-features {
    flex: 2;
    display: grid;
    margin: 10px;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.feature-card {
    background: #2c6b8e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px); /* Moves feature up */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3); /* More intense shadow */
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-card p {
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .water-purifier-container {
      display: block;
        flex-direction: column;
        text-align: center;
    }

    .water-purifier-features {
        margin: 10px;
    }
}
@media (max-width: 480px) {
    .water-purifier-container {
        flex-direction: column;
        text-align: center;
    }

    .water-purifier-features {
        grid-template-columns: 1fr;
        margin: 10px;
    }
}
/* ============================================================================== */
/* welcomme */
/* Water Welcome Section Styling */
.water-welcome-section {
    /*background: linear-gradient(to bottom, #00c6ff, #0072ff);*/ /* Water-themed gradient */
    color: white;
    padding: 50px 0;
    text-align: center;
}

.water-welcome-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    text-align: center;
}

.water-welcome-text {
    margin-bottom: 40px;
}

.water-welcome-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.water-welcome-text p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.water-welcome-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.water-icon {
    width: 30%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.water-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.icon-circle {
    display: inline-block;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.icon-img {
    font-size: 50px;
    color: #0072ff;
}

.water-icon h3 {
    font-size: 1.5rem;
    margin-top: 20px;
    font-weight: bold;
}

.water-icon p {
    font-size: 1rem;
    line-height: 1.4;
}

.water-system-image {
     display: flex;
    margin-top: 50px;
    justify-content: center;
}

.water-system-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .water-welcome-icons {
        flex-direction: column;
        align-items: center;
    }

    .water-icon {
        width: 80%;
        margin-bottom: 20px;
    }

    .water-system-image img {
        max-width: 100%;
    }
}
/* ==================================================================================== */
/* contact us  */


       .palak-enterprises-contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #f5f5f5;
}

.pe-contact-main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 1200px;
  width: 100%;
}

.pe-threed-image-section {
  background: linear-gradient(45deg, #009688, #00bcd4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.pe-floating-contact-image {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  transform: translateZ(80px) rotateY(-15deg) rotateX(5deg);
  animation: pe-float-3d-animation 4s ease-in-out infinite;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes pe-float-3d-animation {
  0%, 100% {
    transform: translateZ(80px) rotateY(-15deg) rotateX(5deg);
  }
  50% {
    transform: translateZ(120px) rotateY(-5deg) rotateX(10deg);
  }
}

.pe-image-reflection-effect {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) scaleY(-0.3);
  width: 280px;
  height: 280px;
  border-radius: 20px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0.3;
}

.pe-contact-information-panel {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pe-main-contact-heading {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  /* text-align: left; */
}

.pe-main-contact-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #009688, #00bcd4);
  border-radius: 2px;
}

.pe-company-description-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.pe-contact-details-wrapper {
  margin-bottom: 30px;
}

.pe-single-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #555;
}

.pe-contact-item-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  color: #009688;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pe-social-media-links-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.pe-social-media-links-container a {
  text-decoration: none;
}

.pe-individual-social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #009688, #00bcd4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.pe-individual-social-link:hover {
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .pe-contact-main-container {
    grid-template-columns: 1fr;
  }
  .pe-contact-information-panel, .pe-threed-image-section {
    padding: 30px;
    text-align: center;
  }
  .pe-main-contact-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .pe-single-contact-item {
    justify-content: center;
  }
  .pe-social-media-links-container {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .pe-floating-contact-image, .pe-image-reflection-effect {
    width: 160px;
    height: 160px;
  }
  .pe-main-contact-heading {
    font-size: 2rem;
  }
  .pe-company-description-text, .pe-single-contact-item {
    font-size: 1rem;
  }
  .pe-individual-social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ======================================================================================================= */
.ro-heading-section {
  background: linear-gradient(135deg, #dcefff, #b0e0ff);
  padding: 50px 20px;
  text-align: center;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-top: 40px;   /*MARGIN bottom*/
  margin-bottom: 40PX; /*ADD*/
  border-radius: 20px;
  transition: all 0.4s ease;
}

.ro-heading-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #123456;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

.ro-heading-section h2 span {
  color: #0099ff;
  display: inline-block;
  text-shadow: 2px 2px 5px rgba(0, 153, 255, 0.4);
}

@media (max-width: 768px) {
  .ro-heading-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .ro-heading-section h2 {
    font-size: 1.3rem;
  }
}

.ro-products-section {
  padding: 50px 20px;
  background-color: #f2f2f2;
}

.ro-products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: auto;
}

.ro-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}

.ro-card:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 30px back(0, 0, 0, 0.7);
}

.ro-card img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  background: white;
}

.ro-info {
  padding: 15px;
  background-color: white;
  transition: background-color 0.3s ease;
}

.ro-card:hover .ro-info {
  background-color: skyblue;
  color: white;
  
}

.ro-card h3 {
  font-size: 1.1rem;
  color: #122f57;
  font-weight: 700;
  margin-bottom: 8px;
}

.ro-card p {
  font-size: 0.88rem;
  color: #444;
  min-height: 50px;
  margin-bottom: 10px;
}

.ro-price {
  font-size: 1rem;
  font-weight: bold;
  margin: 8px 0;
  color: #000;
  transition: color 0.3s ease;
}

.ro-card:hover .ro-price {
  color: blue;
}

.ro-btn {
  display: inline-block;
  padding: 8px 18px;
  background-color: #0099ff;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.ro-btn:hover {
  background-color: #0066cc;
  color: white;
  text-decoration: none;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .ro-products-container {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}

@media (max-width: 480px) {
  .ro-card img {
    height: 160px;
  }
  .ro-card h3 {
    font-size: 1rem;
  }
  .ro-card p {
    font-size: 0.82rem;
  }
  .ro-btn {
    padding: 7px 14px;
    font-size: 0.88rem;
  }
}

/* ============================================================================================ */
/* General Styling for Section */
/* General Styling for Section */
         .hero-banner {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 50px auto;
            border: 3px solid #007BFF;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
            background-image: url('https://www.aosmithindia.com/wp-content/uploads/2019/07/What-is-RO-UV-and-UF-Water-Purifier.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 480px;
        }

        /* Enhanced overlay for better text visibility */
        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 123, 255, 0.4) 100%);
            z-index: 1;
        }

        .hero-wrapper {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            height: 100%;
            min-height: 480px;
            padding: 50px;
        }

        .hero-content {
            max-width: 650px;
            width: 100%;
            animation: fadeInUp 1s ease-out;
        }

         .hero-content a{
            text-decoration: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 25px;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .hero-description {
            font-size: 1.15rem;
            color: #f8f9fa;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
            line-height: 1.8;
            font-weight: 400;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #007BFF, #0056b3);
            color: white;
            font-weight: 600;
            text-decoration: none;
            border-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
            margin-top: 15px;
            font-size: 0.9rem;
        }

        .cta-button:hover {
            background: linear-gradient(45deg, #0056b3, #004085);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
            border-color: #ffffff;
            color: white;
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        /* Ultra Large Screens (1400px and above) */
        @media (min-width: 1400px) {
            .hero-banner {
                min-height: 550px;
                margin: 80px auto;
            }
            
            .hero-wrapper {
                min-height: 550px;
                padding: 80px;
            }
            
            .hero-title {
                font-size: 3.5rem;
            }
            
            .hero-description {
                font-size: 1.3rem;
            }
            
            .cta-button {
                padding: 20px 45px;
                font-size: 1rem;
            }
        }

        /* Large Desktop (1200px to 1399px) */
        @media (max-width: 1399px) and (min-width: 1200px) {
            .hero-banner {
                min-height: 500px;
                margin: 60px auto;
            }
            
            .hero-wrapper {
                min-height: 500px;
                padding: 60px;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-description {
                font-size: 1.2rem;
            }
        }

        /* Desktop and Laptop (992px to 1199px) */
        @media (max-width: 1199px) and (min-width: 992px) {
            .hero-banner {
                /* margin: 40px 20px; */
                min-height: 450px;
            }
            
            .hero-wrapper {
                padding: 50px;
                min-height: 450px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .cta-button {
                padding: 15px 35px;
            }
        }

        /* Tablet Landscape (768px to 991px) */
        @media (max-width: 991px) and (min-width: 768px) {
            .hero-banner {
                /* margin: 30px 15px; */
                min-height: 420px;
                border-radius: 12px;
            }
            
            .hero-wrapper {
                padding: 40px;
                min-height: 420px;
            }
            
            .hero-content {
                max-width: 550px;
            }
            
            .hero-title {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }
            
            .hero-description {
                font-size: 1.05rem;
                margin-bottom: 18px;
                line-height: 1.7;
            }
            
            .cta-button {
                padding: 14px 32px;
                font-size: 0.85rem;
            }
        }

        /* Tablet Portrait (576px to 767px) */
        @media (max-width: 767px) and (min-width: 576px) {
            .hero-banner {
                /* margin: 25px 12px; */
                min-height: 380px;
                border-width: 2px;
                border-radius: 10px;
            }
            
            .hero-wrapper {
                padding: 35px 25px;
                min-height: 380px;
                justify-content: center;
                text-align: center;
            }
            
            .hero-content {
                max-width: 500px;
            }
            
            .hero-title {
                font-size: 2rem;
                margin-bottom: 18px;
                line-height: 1.3;
            }
            
            .hero-description {
                font-size: 1rem;
                margin-bottom: 16px;
                line-height: 1.6;
            }
            
            .cta-button {
                padding: 13px 28px;
                font-size: 0.8rem;
                letter-spacing: 1px;
            }
        }

        /* Mobile Landscape (481px to 575px) */
        @media (max-width: 575px) and (min-width: 481px) {
            .hero-banner {
                /* margin: 20px 10px; */
                min-height: 340px;
                border-width: 2px;
                border-radius: 8px;
            }
            
            .hero-wrapper {
                padding: 30px 20px;
                min-height: 340px;
                justify-content: center;
                text-align: center;
            }
            
            .hero-content {
                max-width: 450px;
            }
            
            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 15px;
                line-height: 1.3;
            }
            
            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 14px;
                line-height: 1.5;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 0.75rem;
                letter-spacing: 0.8px;
            }
        }

        /* Mobile Portrait (376px to 480px) */
        @media (max-width: 480px) and (min-width: 376px) {
            .hero-banner {
                /* margin: 15px 8px; */
                min-height: 320px;
                border-width: 2px;
                border-radius: 6px;
            }
            
            .hero-wrapper {
                padding: 25px 18px;
                min-height: 320px;
                justify-content: center;
                text-align: center;
            }
            
            .hero-content {
                max-width: 400px;
            }
            
            .hero-title {
                font-size: 1.6rem;
                margin-bottom: 12px;
                line-height: 1.3;
            }
            
            .hero-description {
                font-size: 0.9rem;
                margin-bottom: 12px;
                line-height: 1.5;
            }
            
            .cta-button {
                padding: 11px 22px;
                font-size: 0.7rem;
                letter-spacing: 0.6px;
                border-radius: 8px;
            }
        }

        /* Small Mobile (320px to 375px) */
        @media (max-width: 375px) and (min-width: 320px) {
            .hero-banner {
                /* margin: 12px 6px; */
                min-height: 300px;
                border-width: 1px;
                border-radius: 5px;
            }
            
            .hero-wrapper {
                padding: 20px 15px;
                min-height: 300px;
                justify-content: center;
                text-align: center;
            }
            
            .hero-content {
                max-width: 350px;
            }
            
            .hero-title {
                font-size: 1.4rem;
                margin-bottom: 10px;
                line-height: 1.3;
            }
            
            .hero-description {
                font-size: 0.85rem;
                margin-bottom: 10px;
                line-height: 1.4;
            }
            
            .cta-button {
                padding: 10px 20px;
                font-size: 0.65rem;
                letter-spacing: 0.5px;
                border-radius: 6px;
            }
        }

        /* Extra Small Mobile (below 320px) */
        @media (max-width: 319px) {
            .hero-banner {
                /* margin: 8px 4px; */
                min-height: 280px;
                border-width: 1px;
                border-radius: 4px;
            }
            
            .hero-wrapper {
                padding: 15px 10px;
                min-height: 280px;
                justify-content: center;
                text-align: center;
            }
            
            .hero-content {
                max-width: 300px;
            }
            
            .hero-title {
                font-size: 1.2rem;
                margin-bottom: 8px;
                line-height: 1.3;
            }
            
            .hero-description {
                font-size: 0.8rem;
                margin-bottom: 8px;
                line-height: 1.4;
            }
            
            .cta-button {
                padding: 8px 16px;
                font-size: 0.6rem;
                letter-spacing: 0.3px;
                border-radius: 4px;
            }
        }

        /* Smooth transitions for all elements */
        .hero-banner,
        .hero-wrapper,
        .hero-content,
        .hero-title,
        .hero-description,
        .cta-button {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .hero-banner {
                background-image: url('https://www.aosmithindia.com/wp-content/uploads/2019/07/What-is-RO-UV-and-UF-Water-Purifier.jpg');
            }
        }

        /* Landscape orientation adjustments */
        @media (orientation: landscape) and (max-height: 500px) {
            .hero-banner {
                min-height: 350px;
            }
            
            .hero-wrapper {
                min-height: 350px;
                padding: 30px;
            }
            
            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 10px;
            }
            
            .hero-description {
                font-size: 0.9rem;
                margin-bottom: 10px;
            }
        }

        /* Print styles */
        @media print {
            .hero-banner {
                background-image: none !important;
                border: 2px solid #007BFF;
                box-shadow: none;
                margin: 20px 0;
            }
            
            .hero-banner::before {
                display: none;
            }
            
            .hero-title,
            .hero-description {
                color: #333 !important;
                text-shadow: none !important;
            }
            
            .cta-button {
                background: #007BFF !important;
                box-shadow: none !important;
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            .hero-content {
                animation: none;
            }
            
            .cta-button {
                transition: none;
            }
        }

        /* Dark mode support */
        /*@media (prefers-color-scheme: dark) {
            body {
                background-color: #1a1a1a;
            }
            
            .hero-banner {
                border-color: #4a90e2;
                box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
            }
        }*/
/* ========================================================================================================= */
/* about hero section  */
/* Styling for the Hero Section */
/* General Styling for the Hero Section */
.custom-hero-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  width: 100%;
  overflow: hidden;
}

/* Styling for the background video */
.custom-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.custom-video-background video {
  object-fit: cover; /* Cover the entire section */
  width: 100%;
  height: 100%;
  opacity: 0.5; /* Apply opacity to the video for better visibility */
}

/* Content on top of the video */
.custom-hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; /* White text for contrast */
  text-align: center;
  z-index: 10; /* Ensure it sits on top of the video */
  width: 90%; /* Ensure content doesn't stretch too far on smaller screens */
}

/* Typewriter effect on heading */
.typewriter-effect {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff; /* thinner, cleaner cursor */
  animation: typing 4s steps(30, end) infinite, blink 0.75s step-end infinite;
  padding-right: 4px; /* small spacing for cursor */
  max-width: fit-content;
  box-sizing: border-box;
}

/* Typing animation (with loop) */
@keyframes typing {
  0% {
    width: 0;
  }
  40% {
    width: 100%;
  }
  60% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes blink {
  0%, 100% {
    border-color: #fff;
  }
  50% {
    border-color: transparent;
  }
}


/* Paragraph styling */
.custom-hero-content p {
  font-size: 1.2em;
  line-height: 1.5;
  margin: 0 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Darker background for the paragraph */
  padding: 15px;
  border-radius: 8px;
  text-shadow: 2px 2px 5px #fff; /* White text shadow */
}

/* Mobile responsiveness */
@media only screen and (max-width: 768px) {


  .custom-hero-content p {
    font-size: 1em; /* Adjust paragraph font size */
    margin: 0 20px;
    padding: 10px;
  }

  /* Reduce video opacity for mobile */
  .custom-video-background video {
    opacity: 0.7; /* Slightly higher opacity for better contrast */
  }

  /* Ensure paragraph content doesn't overflow */
  .custom-hero-content {
    width: 85%; /* Reduce width on mobile */
  }
}

/* Tablet responsiveness */
@media only screen and (max-width: 1024px) {


  .custom-hero-content p {
    font-size: 1.1em; /* Adjust paragraph font size */
    margin: 0 40px;
    padding: 12px;
  }

  /* Adjust video opacity for tablet */
  .custom-video-background video {
    opacity: 0.6;
  }
}

/* Laptop and Desktop responsiveness */
@media only screen and (min-width: 1025px) {
  .custom-hero-content h1 {
    font-size: 3.2em; /* Font size for larger screens */
  }

  .custom-hero-content p {
    font-size: 1.3em; /* Larger paragraph text */
    margin: 0 50px;
  }

  /* Adjust video opacity for larger screens */
  .custom-video-background video {
    opacity: 0.7;
  }
}


/* =================================================================================================== */
/* product hero section  */
/* General Styling for the Hero Section */
.ro-purifier-hero-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  width: 100%;
  overflow: hidden;
}

/* Styling for the background video */
.ro-purifier-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ro-purifier-video-background video {
  object-fit: cover; /* Cover the entire section */
  width: 100%;
  height: 100%;
  opacity: 0.7; /* Apply opacity to the video for better visibility */
}

/* Content on top of the video */
.ro-purifier-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; /* White text for contrast */
  text-align: center;
  z-index: 10; /* Ensure it sits on top of the video */
  width: 90%; /* Ensure content doesn't stretch too far on smaller screens */
}

/* Heading */
.ro-purifier-content h1 {
  /* font-size: 3em; */
  font-weight: bold;
  margin-bottom: 20px;
  word-wrap: break-word; /* Ensure the heading breaks into multiple lines on small screens */
}

/* Paragraph */
.ro-purifier-content p {
  font-size: 1.2em;
  line-height: 1.5;
  margin: 0 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Darker background for the paragraph */
  padding: 15px;
  border-radius: 8px;
  text-shadow: 2px 2px 5px #fff; /* White text shadow */
}

/* Typewriter effect (looping) */
.typewriter-effect {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 30px;
  border-right: 4px solid #fff; /* Creates the typing cursor */
  animation: typing 3.5s steps(30) 1s infinite, blink 0.75s step-end infinite;
}

/* Typing animation (with loop) */
@keyframes typing {
  0% {
    width: 0;
  }
  25% {
    width: 100%;
  }
  50% {
    width: 100%;
  }
  75% {
    width: 0;
  }
  100% {
    width: 0;
  }
}

/* Blinking cursor effect */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Mobile responsiveness (Max-width 768px) */
@media only screen and (max-width: 768px) {
  .ro-purifier-content h1 {
    font-size: 2.2em; /* Adjust font size for mobile */
    margin-bottom: 15px;
  }

  .ro-purifier-content p {
    font-size: 1em; /* Adjust paragraph font size for mobile */
    margin: 0 10px; /* Reduce margin */
    padding: 10px;
  }

  /* Reduce video opacity for mobile */
  .ro-purifier-video-background video {
    opacity: 0.7; /* Slightly higher opacity for better contrast */
  }

  /* Ensure paragraph content doesn't overflow */
  .ro-purifier-content {
    width: 85%; /* Reduce width on mobile */
  }
}
@media only screen and (max-width: 480px) {
  .ro-purifier-content h1 {
    font-size: 1.5em; /* Adjust font size for mobile */
   
  }
}

/* Tablet responsiveness (Max-width 1024px) */
@media only screen and (max-width: 1024px) {
 
  .ro-purifier-content p {
    font-size: 1.1em; /* Adjust paragraph font size for tablet */
    margin: 0 30px;
    padding: 12px;
  }

  /* Adjust video opacity for tablet */
  .ro-purifier-video-background video {
    opacity: 0.6;
  }
}

/* Laptop and Desktop responsiveness (Min-width 1025px) */
@media only screen and (min-width: 1025px) {
  .ro-purifier-content h1 {
    font-size: 3.2em; /* Larger font size for laptop/desktop */
  }

  .ro-purifier-content p {
    font-size: 1.3em; /* Larger paragraph text */
    margin: 0 50px;
  }

  /* Adjust video opacity for larger screens */
  .ro-purifier-video-background video {
    opacity: 0.5;
  }
}

/* ============================================================== */
/* top scroller  */
#scrollTopBtn {
  position: fixed;
  bottom: 80px;
  height: 55px ;
  width: 55px;
  right: 20px;
  z-index: 999;
  font-size: 18px;
  background-color: #f1c40f;
  color: #000;
  border: none;
  border-radius: 50%;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  transition: all 0.3s ease;
}

/* Hover effect */
#scrollTopBtn:hover {
  background-color: #473391;
  color: #fff;
}

/* Tablet */
@media (max-width: 1024px) {
  #scrollTopBtn {
    /* bottom: 70px; */
      height: 50px ;
  width: 50px;
    right: 20px;
    font-size: 16px;
    padding: 10px 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #scrollTopBtn {
    bottom: 70px;
      height: 45px ;
  width: 45px;
    right: 15px; 
    font-size: 14px;
    padding: 8px 12px;
  }
}
@media (max-width: 480px) {
  #scrollTopBtn {
    bottom: 60px;
    height: 40px ;
    width: 40px;
    right: 10px;
    font-size: 14px;
    padding: 8px 12px;
  }
}








