* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root{
    --dark-color: #0b2d6d;
    --light-color:#1c66ff;
    --main-color:#31a633;
    --white-color:#fff;

}

body {
  font-family:
    Segoe UI,
    sans-serif;
  overflow-x: hidden;
  background: var(--white-color);
}

/* Navbar start*/

.navbar {
  transition: 0.3s;
}

.navbar-nav .nav-link {
  font-weight: 600;
  margin: 0 10px;
  color: var(--dark-color);
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--light-color);
}

.call-btn {
  background: var(--light-color);
  color: var(--white-color);
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
}

.call-btn:hover {
  background: var(--light-color);
  color: var(--white-color);
}

/* Offcanvas */

.offcanvas {
  width: 300px;
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
}

.offcanvas-body .nav-link {
  padding: 14px 0;
  border-bottom: 1px solid #f3f3f3;
  color: var(--dark-color);
  font-weight: 600;
}

.offcanvas-body .nav-link:hover {
  color: var(--light-color);
}

/* Navbar end*/

/* Hero start */
.hero-section {
  background: url("../images/new.png") center center;
  background-size: cover;
  background-repeat: no-repeat;

  min-height: 700px;
  background-size: 100% 100%;

  display: flex;
  align-items: center;

  position: relative;

  overflow: hidden;
}

.hero-section::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 0%;

}

.hero-section .container {
  position: relative;

  z-index: 2;
}



.sub-title {
  color: var(--main-color);

  font-size: 20px;

  font-weight: 700;

  letter-spacing: 1px;
}


.hero-title {
  font-size: 95px;

  font-weight: 900;

  line-height: 0.95;

  color: var(--dark-color);

  margin-top: 15px;
}

.hero-title span {
  display: block;

  color: var(--light-color);
}


.hero-heading {
  font-size: 30px;

  font-weight: 700;

  margin-top: 20px;

  color: var(--dark-color);
}


.green-line {
  width: 80px;

  height: 5px;

  background: var(--main-color);

  margin: 20px 0;

  border-radius: 50px;
}


.hero-text {
  font-size: 17px;

  line-height: 30px;

  color: #3f4a5d;

  max-width: 550px;
}



.hero-btn {
  margin-top: 45px;

  display: flex;

  gap: 20px;

  flex-wrap: wrap;
}



.order-btn {
  background: var(--light-color);
  border-radius: 36px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white-color);
  transition: 0.4s;
  height: 50px;
  width: 25%;
  padding: 13px;
}

.order-btn:hover {
  background: var(--dark-color);

  color: var(--white-color);

  transform: translateY(-5px);
}


.bottle-img {
  max-width: 550px;
  margin-left: 100px;
  animation: float 3s ease-in-out infinite;

  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.15));
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}
/* Hero end */
/* feature-section start */

.feature-section {
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.feature-box {
  background: var(--white-color);
  border-radius: 20px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

.feature-item {
  text-align: center;

  padding: 35px 25px;

  border-right: 1px solid #ececec;

  transition: 0.3s;
}

.last-item {
  border-right: none;
}

.feature-item:hover {
  background: #f8fbff;

  transform: translateY(-5px);
}

.feature-icon {
  font-size: 36px;

  color: var(--light-color);

  margin-bottom: 20px;

  display: block;
}

.feature-item h5 {
  font-size: 18px;

  font-weight: 700;

  color: var(--dark-color);

  margin-bottom: 12px;
}

.feature-item p {
  font-size: 15px;

  color: #777;

  line-height: 26px;

  margin: 0;
}

/* feature-section end */
/* products start */
.product-btn1 {
  height: 50px;
  width: 25%;
  padding: 12px;
  border: 2px solid var(--light-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  background: var(--white-color);
  color: var(--light-color);
}

.product-btn1:hover {
  background: var(--main-color);

  color: var(--white-color);
}

.products {
  background: var(--white-color);
}

.sub-title {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-title {
  font-size: 45px;
  font-weight: 800;
  color: var(--dark-color);
  margin-top: 10px;
}

.title-line {
  width: 60px;
  height: 4px;
  background: var(--light-color);
  margin: 20px auto;
  border-radius: 10px;
}

.product-card {
  position: relative;

  background: #eef7ff;

  border-radius: 20px;

  overflow: hidden;

  padding: 20px;

  text-align: center;

  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 120px;

  background: url(images/water-wave.png) bottom center/cover no-repeat;
}

.product-img {
  position: relative;

  z-index: 2;

  height: 300px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.product-img img {
  max-height: 270px;
}

.product-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 20px;
  background: var(--light-color);
  color: var(--white-color);
  padding: 8px 35px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
}

.view-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;
  font-size: 15px;

  padding: 10px 30px;

  border: 2px solid var(--light-color);

  border-radius: 50px;

  text-decoration: none;

  color: var(--dark-color);

  font-weight: 700;

  transition: 0.3s;
}

.view-btn:hover {
  background: var(--main-color);
  color: var(--white-color);
  border: none;
}
/* product end */
/* why-section start */
.why-section {
  padding: 80px 0;
}

.main-box {
  background: #eef6ff;

  padding: 50px;

  border-radius: 25px;

  overflow: hidden;
}

.sub-title {
  color: #32b44a;

  font-weight: 700;

  font-size: 15px;
}

.title {
  font-size: 35px;

  font-weight: 800;

  color: var(--dark-color);

  line-height: 1.15;
}

.line {
  width: 70px;

  height: 4px;

  background: var(--light-color);

  border-radius: 20px;

  margin-top: 15px;

  margin-bottom: 10px;
}

.list-unstyled li {
  font-size: 16px;

  font-weight: 600;

  margin-bottom: 10px;

  color: var(--dark-color);
}

.list-unstyled i {
  color: var(--main-color);

  font-size: 18px;

  margin-right: 10px;
}

.bottle {
  max-height: 540px;

  position: relative;

  z-index: 2;
}

.bottle-area {
  position: relative;
}

.splash {
  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 320px;

  height: 120px;

  background: url(images/water-splash.png) center/contain no-repeat;
}

.feature-box {
  background: var(--white-color);

  padding: 25px 25px;

  border-radius: 22px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition: 0.4s;

  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.icon-box {
  width: 70px;

  height: 70px;

  background: #eef4ff;

  border-radius: 20px;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 20px;
}

.icon-box i {
  font-size: 34px;

  color: var(--light-color);
}

.feature-box h4 {
  font-weight: 700;

  color: var(--dark-color);

  margin-bottom: 15px;
  font-size: 20px;
}

.feature-box p {
  color: #6d7688;

  line-height: 22px;

  margin: 0;
}
/* why-section end */
/* process-section start */

.process-section {
  padding: 90px 0;
  background: var(--white-color);
}

.section-title .sub-title {
  color: var(--main-color);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title h2 {
  color: var(--dark-color);
  font-size: 45px;
  font-weight: 800;
  margin-top: 10px;
}

.title-line {
  width: 65px;
  height: 4px;
  background: var(--light-color);
  margin: 18px auto;
  border-radius: 50px;
}

.process-wrapper {
  position: relative;
}

.process-wrapper::before {
  content: "";

  position: absolute;

  top: 55px;

  left: 8%;

  width: 84%;

  border-top: 2px dashed #d7e5ff;

  z-index: 0;
}

.process-item {
  text-align: center;

  position: relative;

  z-index: 2;
}

.icon-circle {
  width: 65px;

  height: 65px;

  background: var(--white-color);

  border: 3px solid #dce9ff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: auto;

  transition: 0.4s;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-circle:hover {
  background: var(--light-color);

  border-color: var(--light-color);
}

.icon-circle:hover i {
  color: var(--white-color);
}

.icon-circle i {
  font-size: 24px;

  color: var(--light-color);

  transition: 0.4s;
}

.process-item h5 {
  margin-top: 15px;

  font-size: 20px;

  font-weight: 700;

  color: var(--dark-color);
}

.process-item p {
  color: #7d8694;

  font-size: 15px;

  line-height: 20px;

  margin-top: 10px;
}

/* process-section end */

/* delivery-banner start */
.delivery-banner {
  padding: 80px 0;
}

.delivery-box {
  background: linear-gradient(90deg, var(--dark-color), var(--light-color));

  border-radius: 30px;

  overflow: hidden;

  padding: 30px;

  color: var(--white-color);

  position: relative;
}

.delivery-box::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -70%;
  width: 55%;
  height: 100vh;
  background: url(../images/delivery.png) right bottom / cover no-repeat;
  opacity: 0.7;
  background-size: 100% 100%;
}

.small-title {
 color: var(--main-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.delivery-box h2 {
  font-size: 30px;

  font-weight: 800;

  line-height: 35px;

  margin: 20px 0;
}

.delivery-box p {
  font-size: 15px;

  max-width: 500px;

  line-height: 20px;
}

.btn-order {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white-color);
  color: var(--light-color);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  margin-right: 15px;
  font-size: 15px;
}

.btn-contact {
  display: inline-block;

  padding: 10px 20px;

  border: 2px solid var(--white-color);

  color: var(--white-color);

  border-radius: 50px;

  text-decoration: none;

  font-weight: 700;
  font-size: 15px;
}

.banner-img {
  max-height: 430px;
  display: none;
}
/* delivery-banner end */

/* testimonialSlider start */

.testimonialSlider {
  padding: 20px 5px 60px;
}

.swiper-slide {
  height: auto;
}

.testimonial-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: var(--light-color);
}
.stars {
  color: rgb(248, 211, 25);
}
.customer {
  display: flex;
  gap: 10px;
}
.customer img {
  width: 15%;
  height: 50px;
  border-radius: 50%;
}

/* testimonialSlider end */

/* footer start */
.footer-section {
  background: linear-gradient(90deg, var(--dark-color), var(--light-color));

  color: var(--white-color);

  padding: 50px 0 0;
}

.footer-logo {
  width: 220px;
}

.footer-text {
  color: #d7e6ff;

  line-height: 30px;
}

.footer-section h5 {
  font-weight: 700;

  margin-bottom: 25px;

  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;

  padding: 0;
}

.footer-section ul li {
  margin-bottom: 14px;
}

.footer-section ul li a {
  color: #dbe8ff;

  text-decoration: none;

  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: var(--main-color);

  padding-left: 6px;
}

.contact-info li {
  display: flex;

  gap: 12px;

  line-height: 28px;
}

.contact-info i {
  color: var(--white-color);
}

.social-icons {
  margin-top: 25px;
}

.social-icons a {
  width: 46px;

  height: 46px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 50%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  color: var(--white-color);

  margin-right: 10px;

  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--white-color);

  color: var(--main-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 30px;
  padding: 10px 0;

  color: #dbe8ff;
}

.footer-bottom a {
  color: #dbe8ff;

  text-decoration: none;

  margin: 0 10px;
}

/* footer end */
/* scrollUp start */
#scrollUp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: var(--light-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
}

#scrollUp.active {
  opacity: 1;
  visibility: visible;
}

#scrollUp:hover {
  background: var(--light-color);
  color: var(--white-color);
  transform: translateY(-5px);
}
/* scrollUp end */

/* media query strat */

/* dekstop start */

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

/* Tablet */

@media (max-width: 991px) {
      .hero-section {
    text-align: center;

    padding: 80px 0;

    min-height: auto;
  }

  .hero-title {
    font-size: 65px;
  }

  .hero-heading {
    font-size: 28px;
  }

  .hero-text {
    font-size: 18px;

    line-height: 30px;

    margin: auto;
  }

  .hero-btn {
    justify-content: center;
  }

  .bottle-img {
    margin-top: 50px;

    max-width: 350px;
  }
      .main-title {
    font-size: 40px;
  }

  .product-img {
    height: 240px;
  }

  .product-btn {
    font-size: 18px;
  }
      .delivery-box {
    padding: 40px;

    text-align: center;
  }

  .delivery-box h2 {
    font-size: 38px;
  }

  .delivery-box p {
    margin: auto;
  }

  .banner-img {
    margin-top: 40px;

    max-height: 320px;
  }
      .feature-item {
    border-right: none;

    border-bottom: 1px solid #ececec;
  }
      .main-box {
    padding: 30px;
  }

  .title {
    font-size: 36px;
  }

  .bottle {
    margin: 40px 0;

    max-height: 400px;
  }
  .process-wrapper::before {
    display: none;
  }

  .process-item {
    margin-bottom: 35px;
  }
    .footer-section {
    text-align: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .container {
    display: block !important;
  }
}
/* dekstop end */

/* mobile start */
@media (max-width: 576px) {
    .customer img{
        width: 20%;
    }
    .icon-box 
{
    width: 50px;
    height: 50px;
}
    .icon-box i{
        font-size: 20px;
    }

      .hero-title {
    font-size: 48px;
  }
  .hero-section {
    background-image: url("../images/hero-banner.png");
    backdrop-filter: blur(5px);
  }
  .hero-text {
    color: white;
  }
  .bottle-img {
    display: none;
  }
  .green-line {
    margin: auto;
  }
  .hero-btn {
    flex-wrap: nowrap;
    margin-bottom: 10px;
  }
  .product-btn {
    padding: 4px 24px;
  }
  .hero-heading {
    font-size: 22px;
  }

  .sub-title {
    font-size: 18px;
  }

  .hero-btn .btn {
    width: 100%;
  }
      .title {
    font-size: 30px;
  }

  .main-box {
    padding: 20px;
  }

  .list-unstyled li {
    font-size: 16px;
  }

  .feature-box {
    padding: 25px;
  }
      .delivery-box {
    padding: 30px 20px;
  }

  .delivery-box h2 {
    font-size: 30px;
  }

  .delivery-box p {
    font-size: 16px;

    line-height: 28px;
  }

  .btn-order,
  .btn-contact {
    display: block;

    margin: 10px auto;

    width: 220px;
  }
      .section-title h2 {
    font-size: 32px;
  }

  .icon-circle {
    width: 60px;

    height: 60px;
  }

  .icon-circle i {
    font-size: 20px;
  }

  .process-item h5 {
    font-size: 18px;
  }

  .process-item p {
    font-size: 14px;

    line-height: 24px;
  }
  .main-title {
    font-size: 30px;
  }

  .product-img {
    height: 180px;
  }

  .product-btn {
    font-size: 16px;

    padding: -1px 25px;
  }
    .feature-item {
    padding: 25px 15px;
  }

  .feature-icon {
    font-size: 30px;
  }

  .feature-item h5 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 14px;

    line-height: 22px;
  }
}
/* mobile end */

/*=========================
      ABOUT HERO
=========================*/

.about-hero{
    background: url("../images/about.png") center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height:200px;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
    overflow:hidden;
}

.about-content{
    text-align:center;
}

.about-content h1{
    font-size:54px;
    font-weight:800;
    color:#072d6c;
    margin-bottom:15px;
}

.breadcrumb{
    background:none;
    justify-content:center;
}

.breadcrumb a{
    text-decoration:none;
    color:#072d6c;
    font-weight:600;
}

.breadcrumb-item.active{
    color:#1d6dff;
    font-weight:700;
}

/* Responsive */

@media(max-width:991px){
    .about-content h1{
        font-size:52px;
    }

    .about-hero{
        min-height:250px;
    }
}

@media(max-width:576px){
    .about-content h1{
        font-size:38px;
    }

    .about-hero{
        min-height:220px;
    }
}


/*==========================
KENGUN ABOUT SECTION
===========================*/

.water-about-section{
    padding:90px 0;
    background:#fff;
}

.water-tag{
        color: #32b44a;
    font-weight: 700;
    font-size: 15px;
}

.water-heading{
     font-size: 45px;
    font-weight: 800;
    color: var(--dark-color);
    margin-top: 10px;
}

.water-desc{
    color:#555;
    font-size:16px;
    line-height:25px;
}

.water-card h5{
    font-size:18px;
    font-weight:700;
    color:#082b69;
    margin-top:18px;
}

.water-card p{
    font-size:13px;
    color:#666;
    line-height:18px;
}

.water-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.water-circle i{
    font-size:22px;
    color:#fff;
}

.blue-circle{
    background:#0d6efd;
}

.green-circle{
    background:#58b947;
}

.water-image-box{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.water-image-box img{
    width:100%;
    transition:.5s;
}

.water-image-box:hover img{
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:991px){

.water-heading{
    font-size:40px;
    text-align:center;
}

.water-tag,
.water-desc{
    text-align:center;
    display:block;
}

}

@media(max-width:576px){

.water-heading{
    font-size:30px;
}

.water-circle{
    width:70px;
    height:70px;
}

.water-circle i{
    font-size:28px;
}

.water-card h5{
    font-size:16px;
}

.water-card p{
    font-size:13px;
}

}

.counter-section{
    background:#0d5ae5;
    padding:5px 0;
}

.counter-box{
    color:#fff;
}

.counter-box i{
    font-size:40px;
}

.counter-box h2{
    font-size:30px;
    font-weight:800;
}

.counter-box p{
    font-size:16px;
    font-weight:500;
}

@media(max-width:991px){

.counter-box{
    margin-bottom:30px;
}

.counter-box h2{
    font-size:40px;
}

}

@media(max-width:576px){

.counter-box i{
    font-size:45px;
}

.counter-box h2{
    font-size:34px;
}

.counter-box p{
    font-size:16px;
}

}
/*==========================
MISSION VISION SECTION
==========================*/

.kg-mission-section{
    padding:80px 0;
    background:#fff;
}

.kg-card{
    background:#fff;
    border-radius:22px;
    padding:45px 35px;
    text-align:center;
    height:100%;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.kg-card:hover{
    transform:translateY(-10px);
}

.kg-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
}

.kg-icon i{
    font-size:25px;
    color:#fff;
}

.kg-icon.blue{
    background:#0d5ae5;
}

.kg-icon.green{
    background:#5caf36;
}

.kg-card h3{
    font-size:22px;
    font-weight:800;
    color:#0b2d6d;
    margin-bottom:10px;
}

.kg-card p{
    color:#555;
    line-height:24px;
    font-size:15px;
    margin:0;
}
.kg-values{
    list-style: disc;
    list-style-position: inside;
    padding: 0;
    margin: 0 auto;
    display: table;      /* list ko center karega */
    text-align: left;    /* bullet aur text left aligned rahenge */
}

.kg-values li{
    font-size:16px;
    font-weight:500;
    color:#333;
    margin-bottom:12px;
    line-height:21px;
}

/* .kg-values li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0d5ae5;

} */

/*====================
Responsive
====================*/

@media(max-width:991px){

.kg-card{
    padding:35px 25px;
}

.kg-card h3{
    font-size:28px;
}

.kg-card p,
.kg-values li{
    font-size:18px;
    line-height:30px;
}

}

@media(max-width:576px){

.kg-card{
    text-align:center;
}

.kg-values{
    text-align:left;
}

.kg-card h3{
    font-size:24px;
}

.kg-card p,
.kg-values li{
    font-size:16px;
    line-height:28px;
}

.kg-icon{
    width:80px;
    height:80px;
}

.kg-icon i{
    font-size:34px;
}

}


