.why-tank h2 {
    text-align: center;
    margin-bottom: 10px;
}

.why-tank .intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
   
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-box {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    background: #fff; border-bottom:3px solid #ccc;
}

.why-box b {
    font-size: 22px;
    display: block;
    margin-bottom: 8px;
    color: #591b75;
}
.why-box b i{color:#fff; padding:10px; border-radius:10%; background: #f90;}
.why-box p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Ã°Å¸â€œÂ± Mobile responsive */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: #563366;
            --secondary-color: #FF6B00;
            --accent-color: #FF8C42;
            --light-color: #f5f5f5;
            --dark-color: #111111;
            --text-color: #333;
            --text-light: #666;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-color);
            line-height: 1.6;
            background-color: #fff;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4 {
           
            color: var(--primary-color);
        }

        h2 {
            font-size: 2.2rem;
            text-align: center;
            position: relative;
            margin-bottom: 50px;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        p {
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .btn {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* Top Bar with Social Icons and Contact */
        .top-bar {
            background: var(--primary-color);
            color: white;
            padding: 10px 0;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .social-icons a:hover {
            color: var(--secondary-color);
        }

        .contact-info {
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        .contact-info span {
            margin-right: 20px;
            font-size: 0.95rem;
        }

        /* Header with Logo and Menu */
        .header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
           padding: 9px 20px 4px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary-color);
        }

        /* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;          /* FIX */
    left: 0;
    margin-top: 8px;    /* safe gap without hover break */
    background: #fff;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.submenu li {
    margin: 0;
}

.submenu li a {
    padding: 10px 20px;
    display: block;
    font-size: 0.95rem;
    color: #333;
}

.submenu li a:hover {
    background: #f5f5f5;
    color: var(--secondary-color);
}

/* Hover Animation */
.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}


        /* Slider Section */
        .slider {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('buil-bg1.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 0;
        }

      .slider h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

        .slider p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #ddd; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

.about-text h3{font-size:25px;}
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block; border:1px solid #ccc;
        }

        /* Stats Section */
        .stats-section {
            background-color: #fff; border:1px solid #ccc;
            padding: 40px 0; border-right:5px solid #ccc; border-left:5px solid #ccc;
            margin-top: 40px; border-radius:10px; margin-top:10%;
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
        }

       .stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    border-right: 1px solid #ccc;
}

/* last item ka border remove */
.stat-item:last-child {
    border-right: none;
}
 .stat-item i{font-size: 2.5rem;
            font-weight: 700;
            color:#999;}
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color:#f90;
            margin-bottom: 0px;
            display: block;
        }

        .stat-label {
            font-size: 1.2rem;
            color: #000;
            font-weight: 600; border:1px solid #ccc; padding:10px 20px; border-radius:40px;
        }

        /* Products Section */
        .products {
            background: #f9f9f9;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-img {
            height: 300px;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .product-info .price {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        /* Banner Section */
        .banner {
            background: linear-gradient(rgba(255, 107, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../../assets/images/2-2.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .banner h2 {
            color: white;
        }

        .banner h2:after {
            background: white;
        }

        .banner p {
            color: #eee;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-card:before {
            content: '"';
            font-size: 5rem;
            color: var(--secondary-color);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .author-info p {
            margin: 0;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            background: #f9f9f9;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        .contact-info h3 {
            margin-bottom: 20px;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-item i {
            background: var(--secondary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            margin-top:-39px;
        }

        /* Footer */
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }

        .footer-col p {
            color: #bbb;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff !important;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-text, .about-image {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            h2 {
                font-size: 1.8rem;
            }
            
            .slider {
                padding: 100px 0;
            }
            
            .slider h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
            
            /* Mobile Menu Styles */
            .menu-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 86px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 100px);
                background: white;
                flex-direction: column;
                align-items: left;
                padding-top: 50px;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin-left: -20px; padding:10px 20px;
                border-bottom:1px solid #ccc;
            }
            
            .nav-menu a {
                font-size: 1.2rem;
            }
            
            /* Top bar adjustments */
            .top-bar .container {
                justify-content: center;
            }
            
            .contact-info {
                margin-top: 10px;
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .contact-info {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-info span {
                margin-right: 0;
                margin-bottom: 5px;
            }
            
            .slider h1 {
                font-size: 1.8rem;
            }
            
            .slider p {
                font-size: 1rem;
            }
            
            .stats-container {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-item {
                min-width: 150px;
                border-right: 0px !important;
            }
            
        }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  width: 40px;
  height: 40px;
  border: 6px solid #ccc;
  border-top: 6px solid #ff9900;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }


/*** About **/

.about-section {
  padding: 90px 20px;
  
  font-family: "Poppins", sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.about-header {
  text-align: center;
  max-width: 1150px;
  margin: 0 auto 60px;
}

.about-header h1 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #1f2937;
}

.about-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

/* Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Cards */
.about-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.about-card .icon {
  font-size: 42px;
  margin-bottom: 18px;
  display: block;
}

.about-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #111827;
}

.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ðŸ“± Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-header h1 {
    font-size: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile only – SHOW */
.show-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .show-mobile-only {
        display: block !important;
    }
}

/* Optional: Desktop only – SHOW */
.show-desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .show-desktop-only {
        display: none !important;
    }
}

