*{
    margin:0px;
    padding:0px;
}
:root{
    --primary-color:#2a519c;
    --black-color:#424242;
}
body {
  font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
}
/* Apply Open Sans for body text */
body, p, span, li, a, button {
  font-family: 'Open Sans', sans-serif;
}
.navbar{
    background:var(--primary-color);
    color:white;
    position: fixed;
    width: 100%;
    z-index: 999;
    height:70px;
    top:0px;
}
.logo-img{
    height:50px;
}
.text-right{text-align:right;}
.btn-toogle{
    border:0px!important;
    box-shadow:none!important;
    outline:none!important;
    padding:0px;
    margin-top:10px;
}
.toogle-icon{height:30px;}
.header-right-img {
    height: 42px;
    position: absolute;
    right: -19px;
    top: 15px;
}
.hero-section {
  height: 84vh;
  background: url("../img/hero-bg.jpg") no-repeat; /* Keeps the image centered, no repeat */
  background-size: cover;  /* Ensures the image fully covers the section */
  background-position: center center;  /* Keeps the image centered */
  animation: zoomEffect 3s ease-in-out infinite alternate; /* Slow, subtle animation */
  overflow:hidden;
}
.main-area{
    margin-top:70px;
}
@keyframes zoomEffect {
  0% {
    background-size: 110% auto; /* Default size */
  }
  50% {
    background-size: 115% auto; /* Slight zoom in */
  }
  100% {
    background-size: 110% auto; /* Return to normal size */
  }
}
.brand-bottel{
  height: 100%;
  max-height: 84vh;
  object-fit: contain;
  /*animation: rotateBottle 60s ease-in-out infinite;*/
  transform-origin: center;
  transform: rotate(30deg);
  width:100%;
}
.hero-sec-details{
   margin-top:18vh;
   margin-right: 10vh;
   text-align: end;
}
.intro-details-sec h1{
     font-size:3.5rem;
     margin-bottom:3rem;
     font-weight:700;
}
.intro-details-sec p{
    font-size: 24px;
    color: white;
    margin-top: 28vh;
}
.footer{
    background: var(--primary-color);
    color: white;
    border-top: 1px solid white;
    padding:12px 0px;
}
.content-pages{
    
}
.content-pages ul{
    padding-left: 0px;
    display: flex;
    gap: 20px;
    list-style: none;
    margin-bottom: 0px;
}
.social-link {text-align:center;}
.social-link ul{
    list-style: none;
    padding-left: 0px;
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 0px;
}
.social-link ul li a{
    background: white;
    color: var(--primary-color) !important;
    height: 25px;
    width: 25px;
    display: inline-block;
    border-radius: 50%;
    font-size: 13px;
    line-height: 25px;
    text-align: center;
    margin: 0px 6px;
}
.copyright-sec p{
    text-align: right;
}
.offcanvas {
    background: var(--primary-color);
    width: 320px !important;
}
.sidebar .offcanvas-header{
    background: white;
    /* color: white; */
    border-bottom: 1px solid #ffffff7d;
    justify-content: center;
}
.sidebar .offcanvas-body{
     background: var(--primary-color);
     color:white;
}
.sidebar .btn-close{
    top: 14px;
    background-image: none;
    position: absolute;
    right: 21px;
    box-shadow:none!important;
}
.offcanvas-body a{
   font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 9px 6px;
    transition: color 0.3s ease;
}
.offcanvas-body .dropdown-toggle::after{
    float: right;
    margin-top: 15px;
}
.offcanvas-body .dropdown-menu.show {
    display: block;
    width: 100%;
    background: transparent;
    position: relative !important;
    box-shadow: none !important;
    border: 0px;
    transform: translate3d(0px, 0px, 0px)!important;
}
.offcanvas-body .dropdown-item{
    font-size:22px;
}
.offcanvas-body .dropdown-item:hover{
    background: transparent;
    color: white;
}
.offcanvas-footer p{
   font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
.offcanvas-body a:hover {
    color: #f1f1f1; /* subtle hover effect */
}
.copyright-sec a{color:white;text-decoration:none;}
.bottom-title-sec{
    background: var(--primary-color);
    padding: 40px 0px;
    text-align: center;
    color: white;
    text-transform: uppercase;
}
.bottel-sec{
     width: 63%;
     margin: auto;
     text-align: center;
}
.bottom-details-sec{
    text-align: center;
    font-weight:700;
    background: var(--primary-color);
    margin: auto;
    padding: 20px 30px;
    color: white;
    font-size: 35px;  
    box-shadow: var(--bs-box-shadow-sm)!important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.water-bottel-1lt{
    /*width:100%;*/
    height:381px;
    /*height:500px;*/
    object-fit:cover
}
.water-bottel-500ml{
    /*width:100%;*/
    height:200px;
    /*height:300px;*/
    object-fit:cover
}
.water-bottel-250ml{
    /*width:100%;*/
    height:110px;
    /*height:150px;*/
    object-fit:cover
}
.bottel-animation{
  position: relative;
  animation: bottleMove 3s ease-in-out infinite;
}

@keyframes bottleMove {
  0%   { transform: translateX(0) translateY(0); }
  25%  { transform: translateX(-10px) translateY(-2px); }
  50%  { transform: translateX(0) translateY(0); }
  75%  { transform: translateX(10px) translateY(-2px); }
  100% { transform: translateX(0) translateY(0); }
}
.bottel-1lt-sec{height: 100px;font-size: 23px;line-height:30px;}
.bottel-500ml-sec{height:200px;}
.bottel-250ml-sec{height:250px;}
.product-row{
    align-items: flex-end;
}
.contact-img{height:auto;}
.contact-details-sec{
    background:var(--primary-color);
    color:white;
}
.sec-heading{
    font-weight:800;
}

.about-sec{
    background: url(../img/about-bg.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom right;
}
.modal-director-img{
    width: 100%;
    height: auto;
    border: 1px solid lightgray;
}
.about-section .sec-heading{
    font-size:38px;
}
@media (max-width: 575.98px) {
  /*.about-sec {*/
  /*  background-image: none !important;*/
  /*  background-color: #ffffff !important;*/
    /*background-attachment: scroll !important; */
  /*}*/
}
 @media (max-width: 768px) {
     .hero-sec-details {
        margin-top: 6vh;
        margin-right: 0px;
        text-align: center;
    }
     .intro-details-sec p {
        font-size: 16px;
        color: white;
        margin: 0px 30px;
        margin-top: 14vh;
    }
 .brand-bottel{
     max-height: 33vh;
 }
 .intro-details-sec h1{
     font-size:1.5rem;
     margin-bottom:0rem;
 }
.hero-section {
        background: url("../img/Nasmite Blue background.webp");
        background-position: inherit;
        /* background-size: cover !important; */
        /* padding-top: 2vh; */
        box-sizing: border-box;
        /*animation: none;*/
        background-size:cover;
        background-repeat: no-repeat;
    }
.copyright-sec p{
    text-align: center;
}
.content-pages ul{
    justify-content: center;
}
.footer ul{
    margin-bottom:6px;
}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
   /*.about-sec{*/
   /*    background:none;*/
   /*}*/
   .water-bottel-1lt{width:100%;}
   .hero-section {
    height: 100vh;
   }
   .intro-details-sec h1 {
    font-size: 2.5rem;
    margin-bottom: 0rem;
   }
   .intro-details-sec p {
    font-size: 16px;
    margin-top: 16vh;
  }
  .content-pages ul{
      gap:10px;
      font-size:12px;
  }
  .copyright-sec p{font-size:12px;}
  .bottom-details-sec{font-size:22px;}
}
.pt-50{padding-top:50px;}
.pb-50{padding-bottom:50px;}
.contact-details{
    display:flex;
    gap:20px;
     margin-bottom:30px;
}
.contact-icon i {
    border-radius: 50%;
    background: white;
    height: 40px;
    width: 40px;
    display: inline-block;
    color: var(--primary-color);
    line-height: 40px;
    text-align: center;
    box-shadow: var(--bs-box-shadow-sm) !important;
}
.contact-body-details h6{
    font-weight: 600;
    font-size: 20px;
}
 .sub-heading{
    font-weight: 600;
    font-size: 20px;
}
.contact-body-details p{
    font-size: 14px;
    font-weight: 400;
    color: #ffffffe0;
    margin-right:20px;
    margin-bottom:6px;
}
.link{
    text-decoration:none;
}
.about-img{
    width:100%;
}
.cus-margin-right{margin-right:0px;}
.about-heading{
    font-size: 16px;
    font-weight: 700 !important;
}
.about-sec p{
    font-size:14px;
    text-align: justify;
}
.about-row{
    align-items: flex-end;
}
.director-img{
    height:250px;
    border: 1px solid lightgray;
}
.align-center{
    align-items: center;
}
.text-justify{
    text-align: justify
}
.imgs-sec{
    /*display: flex;*/
    justify-content: center;
    gap:30px
}
.board-member-image{
    box-shadow: var(--bs-box-shadow) !important;
}
.board-member-img {
    object-fit: cover;
    width: 100%;
    height: 334px;
}
.board-member-img:hover{cursor:pointer;}
.member-details{
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
.member-details h4{
    font-size:18px;
}
.member-content-body p{font-size:14px;}
.credite-sec{
    font-size: 14px;
    font-weight: 550;
}
.member-modal-title {
    font-size: 18px !important;
    font-weight: 600;
}
.show-in-mobile{display:none!important;}
.content-pages ul li a{
    color:white;
    text-decoration:none;
}

@media only screen and (max-width: 600px) {
    .modal-director-img{width: 75%;}
    .member-modal-title {
    font-size: 16px !important;
         }
  .bottom-details-sec {
        height: 110px;
        font-size: 20px;
        padding: 10px !important;
    }
    .bottel-sec{margin-bottom:20px;}
    .water-bottel-1lt{
        height:300px;
    }
    .water-bottel-500ml{
       height:200px;
    }
    .water-bottel-250ml{
        height:100px;
    }
    .contact-img {
        /*height: 172px;*/
        /*width: 100%;*/
        /*object-fit: cover;*/
        /*padding-top: 8px;*/
    }
    .mobile-padding-0{padding:0px;}
    .sub-heading{margin:0px 12px;}
    .contact-details-sec{padding-bottom:0px!important;}
    .board-member-img {height:370px;}
    .about-sec{background:white;}
    .show-in-mobile{display:block!important;}
    .about-sec {
        background-image: none !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        background-attachment: scroll !important; /* reset fixed */
      }
    .header-right-img{right: -51px;}
    .about-section .sec-heading{
        font-size:30px;
    }
}

@media screen and (min-width: 1024px){
    .about-container{
        max-width: 1260px;
        margin-right: 0px;
    }
    .desktop-left-padd-0{padding-left:0px;}
}

