/********** Template CSS **********/
:root{
 --green:#5c8f4e;
 --cream:#f7f4ee;
}
/* html,body{
 overflow-x:hidden;
} */



/* body{
 background:
   url('../img/marble.jpeg') center/cover no-repeat,
   #f7f4ee;
} */

/* body{
 background-color:#f7f4ee;
 background-image:url('../img/marble.jpeg');
 background-repeat:repeat;
 background-size:auto auto;
} */

body{
  background: url("../img/marble.jpeg") center top / cover no-repeat fixed;
}


@media(max-width:768px){
  body{
    
    background-position:right;
    
  }
}


h1, h2, h3, h4, h5, h6{
  color:#111 !important;
}



/* navbar starts */


/* ===== Restore sticky navbar ===== */

html, body{
  overflow-x:hidden;
  overflow-y:auto;
}

.site-header{
    position:relative;
    width:100%;
    transition:all .3s ease;
}

/* Activated only when scrolling */
.site-header.scrolled{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:99999;
    background:#f7f4ee;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}
body.nav-active{
    padding-top:110px;   /* match header height */
}

/* DESKTOP ONLY – prevent navbar / hero flicker */
@media(min-width:992px){

.hero,
.hero-slider,
.nav-wrapper{
  transform:none !important;
}

}

/* MOBILE – allow slider transforms */
@media(max-width:991px){

.hero-slider .products{
  transform:translateX(0);
}

}

/* allow sticky to escape */

.hero,
.hero-slider,
.products{
  overflow:visible !important;
}

/* 
.site-header{
    padding:22px 60px;
    position:sticky;
    top:0;
    z-index:9999;
    transition:.3s ease;
} */

/* When scrolled */

.site-header.scrolled{
    background:#f7f4ee;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}



/* light horizontal divider starts*/

/* .site-header::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,.15),
    transparent
  );
} */

.site-header::after{
    display:none;
}

/* light horizontal divider ends */


.badge {
    background: #6b9a4c;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.nav-wrapper{
 max-width:1300px;
 margin:auto;
 position:relative;
}

.logo{
 position:relative;
 z-index:2;
}

/* TRUE CENTER */
.main-nav{
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
display:flex;
align-items:center;
flex-wrap:nowrap;
white-space:nowrap;
}


.main-nav a{
    font-size:19px;              /* bigger */
    margin:0 20px;              /* more spacing */
    text-transform:uppercase;
    font-weight:700;            /* stronger */
    color:#222;
    text-decoration:none;
    letter-spacing:1.5px;
    padding-bottom:6px;
    position:relative;
}



.main-nav a.active{
    color:var(--green);
}

.main-nav a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:var(--green);
}

.main-nav a::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:2px;
    background:var(--green);
    transition:.3s;
}

.main-nav a:hover::after{
    width:100%;
    left:0;
}


.nav-wrapper{
 max-width:1300px;
 margin:auto;
 display:flex;
 align-items:center;
 justify-content:space-between;
}


/* =============================
   GRAAB PREMIUM DROPDOWN
============================= */

.main-nav .nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown{
display:flex;
align-items:center;
}

.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 240px;
    padding: 14px 0;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
    z-index: 9999;
}

/* .main-nav .nav-dropdown:hover .dropdown-menu {
    display: block;
    
} */
.main-nav .nav-dropdown:hover > .dropdown-menu,
.main-nav .dropdown-menu:hover{
    display:block;
    animation: dropdownFade .25s ease;
}


@keyframes dropdownFade {
    from { opacity:0; transform:translateX(-50%) translateY(10px); }
    to { opacity:1; transform:translateX(-50%) translateY(0); }
}

.main-nav .dropdown-menu li {
    list-style: none;
}

.main-nav .dropdown-menu a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 22px;
    font-size:20px;
    font-weight:500;     /* thicker */
    color:#111 !important;
    background:transparent !important;
    text-transform:none;
    letter-spacing:.3px;
}


.main-nav .dropdown-menu a:hover {
    background: #f7f4ee !important;
}

.main-nav .dropdown-menu{
    min-width:280px;   /* wider menu */
    margin-top:0;
}

.main-nav .dropdown-menu a{
    white-space:nowrap;   /* force single line */
}

/* Active flavour */

.main-nav .dropdown-menu a.active {
    background: #eef4ea !important;
    color: #5c8f4e !important;
    font-weight: 600;
}

/* Soon badge */

.main-nav .badge {
    background: linear-gradient(135deg,#5c8f4e,#7fbf6a);
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 6px;
}

/* little arrow */

.main-nav .dropdown-menu::before {
    content:'';
    position:absolute;
    top:-8px;
    left:50%;
    transform:translateX(-50%);
    border-left:8px solid transparent;
    border-right:8px solid transparent;
    border-bottom:8px solid white;
}



/* Soon badge */

.main-nav .badge {
    background: #6b9a4c;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}




/* =============================
   HERO MOBILE SLIDER starts
============================= */

@media (max-width:991px){

/* slider wrapper */
.hero-slider{
  width:100%;
  overflow:hidden;
  margin-top:30px;
}


/* reset desktop products layout */
.hero-slider .products{
  display:flex !important;
  justify-content:flex-start !important;
  gap:0 !important;
  width:100%;
  transition:transform .5s ease;
}

/* each slide */
.hero-slider .product{
  min-width:100% !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:relative;
}

/* packet sizing */
.hero-slider .packet{
  width:180px;
  margin:auto;
  margin-top: 0px;
}

/* splash centered */
.hero-slider .splash{
  width:270px;
  left:50%;
  transform:translateX(-50%);
}

/* floating ingredients restored but smaller */
.hero-slider .float{
  display:block;
  width:45px;
  opacity:.9;
}

/* remove original products centering */
.products{
  justify-content:flex-start !important;
  gap:0 !important;
}


/* normalize floating ingredients for ALL flavours */

/* .hero-slider .product .f1{
 left:-35px !important;
 right:auto !important;
 top:-25px !important;
}

.hero-slider .product .f2{
 right:-35px !important;
 left:auto !important;
 bottom:-25px !important;
} */
}



/* navbar ends */
/* hero starts */
.hero{
 /* background:var(--cream); */
 text-align:center;
 padding:20px 0 80px;
}

.hero h1{
 font-size:52px;
 font-weight:800;
 line-height:1.2;
  margin:10px 0 25px;
 /* margin-bottom:28px; */
}

.hero h1 span{
 font-weight:700;
}

.hero-btn{
 background:var(--green);
 color:white;
 border:none;
 padding:14px 34px;
 border-radius:40px;
 font-size:16px;
 cursor:pointer;
}

.hero-image{
 display:block;
 margin:40px auto 0;
 max-width:1100px;
 width:100%;
 margin-top:-30px;
}

.hero-btn:hover{
 transform:translateY(-2px);
 transition:.3s;
}


.hero{
  overflow:visible;
}


.products{
 display:flex;
 justify-content:center;
 gap:70px;
 margin-top:80px;
}

/* product container */

.product{
 position:relative;
 width:240px;
}



/* packet */

.packet{
 width:200px;
 position:relative;
 z-index:3;
 animation:packetFloat 4s ease-in-out infinite;
}

@keyframes packetFloat{
 0%,100%{ transform:translateY(0); }
 50%{ transform:translateY(-12px); }
}

/* splash */

.splash{
 position:absolute;
 width:300px;
 left:50%;
 transform:translateX(-50%);
 top:-40px;
 z-index:1;
 opacity:.9;
}





/* per product layout */

/* .product .f1{
 left:-35px;
 top:25%;
 animation-delay:.5s;
}

.product .f2{
 right:-30px;
 bottom:10%;
 animation-delay:1.2s;
} */

/* animation */
 

/*
.yellow .f1{ left:-45px; top:30%; }
.green .f1{ right:-25px; top:-10px; }
.blue .f1{ right:-35px; top:0; }
.orange .f1{ right:-25px; bottom:-10px; } */


/* Base float style */

/* floating ingredients */

.float{
 position:absolute;
 width:85px;   /* increase size */
 z-index:2;
 opacity:.95;
}

@media(max-width:768px){
 .float{
   width:40px;
 }
}

/* ===================== */
/* YELLOW – LEFT TOP + LEFT BOTTOM */
/* ===================== */

.yellow .f1{
     left: -50px;
    top: -40px
}

.yellow .f2{
 left:-30px;
 bottom:-30px;
}

/* ===================== */
/* GREEN – RIGHT TOP + LEFT BOTTOM */
/* ===================== */

.green .f1{
 right:-50px;
    top: -30px;
}

.green .f2{
 left:-40px;
 bottom:-50px;
}

/* ===================== */
/* BLUE – RIGHT TOP + LEFT BOTTOM */
/* ===================== */

.blue .f1{
 right:-50px;
    top: -30px;
}

.blue .f2{
 left:-40px;
 bottom:-50px;
}

/* ===================== */
/* ORANGE – RIGHT TOP + RIGHT BOTTOM */
/* ===================== */

.orange .f1{
  right:-50px;
    top: -30px;
}

.orange .f2{
 right:-40px;
 bottom:-50px;
}




/* =====================================
   CLEAN MOBILE FLOAT POSITIONING
===================================== */

@media(max-width:768px){

.product{
    position:relative;
  padding:10px;
  min-height:300px;
}


.hero,
.products,
.product{
  overflow:visible !important;
}



/* scale floats */
.float{
  width:32px;
}

/* YELLOW */
.yellow .f1{ left: 18%;
        top: -10%; }
.yellow .f2{         left: 20%;
        bottom: 20%; }

/* GREEN */
.green .f1{ right: 17%;
        top: -12%; }
.green .f2{ left: 16%;
        bottom: 18%; }

/* BLUE */
.blue .f1{ right: 17%;
        top: -12%;}
.blue .f2{ left: 16%;
        bottom: 18%; }

/* ORANGE */
.orange .f1{ right: 17%;
        top: -12%; }
.orange .f2{ right:17%; bottom:18%; }

}
@media(min-width:769px) and (max-width:1024px){
.float{ width:50px; }
}

@media(max-width:768px){

.hero h1{
  font-size:30px;
  line-height:1.25;
}

.hero h1 span{
  font-size:22px;
  display:block;
}

}

/* hero ends */


li {
  list-style: none;
}
.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}

.text-primary{
  color: rgb(0 74 128)!important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 150px;
  z-index: 99;
}
ul.ul-text-align {
  text-align: left;
}
button.btn.btn-warning {
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
  background-color: #e7831a;
  border-color: #e7831a;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.text-justify {
  text-align: justify;
}
.blink-soft {
  color: rgb(16, 162, 223);
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0.2;
  }
}

.text-head-second {
  color: var(--color-3) !important;
}
.sub-head {
  color: var(--bs-yellow);
  text-transform: capitalize;
  font-size: 1.1rem;
}
.small-head {
  color: rgb(16, 162, 223);
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 0px;
}

/*** Navbar ***/

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover {
  /* color: var(--bs-yellow); */
color: rgb(138 120 149)!important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

.contact-btn {
  background-color: var(--bs-yellow);
  border-color: var(--bs-yellow);
}
.main-heading {
  color: var(--bs-yellow);
}
.anothermain-heading {
  color: var(--primary);
}

/* .vision {
  color: var(--primary);
} */
.mission {
  color: var(--bs-yellow);
}

ul li {
  color: #000;
  font-size: 20px;
  line-height: 28px
}
ul.white li {
  color: #fff;
  font-size: 20px;
  line-height: 28px
}
li {
  list-style-type: none;
}
/* ul li::before {
  content: "\2022";
  color: #f69222;
  font-weight: 700;
  display: inline-block;
  width: 1em;
  margin-left: -1em
} */
@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
  .header-carousel .owl-nav {
    top: 18% !important;
  }
  h5.text-primary {
    width: 72%;
  }
  h1.dif-head {
    font-size: 2.5rem;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 50px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  color: var(--primary);
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}



.dropdown-container {
  display: none;
  /* position: absolute; */
}
.home-bg-img {
  min-height: 400px;
}
/*** Header carousel ***/
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 420px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .home-bg-img {
    min-height: 300px;
  }
  .footer-head-text {
    font-size: 19px;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* .page-header {
  background: url(../img/pbainfobanner.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 80vh; */
/* }  */



/* .page-header-inner {
 background: rgba(15, 23, 43, 0.7); 
} */

.contactpage-header {
  background:
    url(../img/contactbanner.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
}

.team-header {
  background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
    url(../img/team_header.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.calculator-header {
  background: 
    url(../img/headerimage/head8.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.owl-carousel .owl-item img {
  height: 575px;
}
/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/*** Service ***/
.service-item {
  background: var(--light);
  transition: 0.5s;
}

.service-item:hover {
  margin-top: -10px;
  background: var(--primary);
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: var(--light) !important;
}

/*** Categories & Courses ***/
.category img,
.course-item img {
  transition: 0.5s;
}

.category a:hover img,
.course-item:hover img {
  transform: scale(1.1);
}

/*** Team ***/
.team-image{
  border-radius: 50%;
}
.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}
/* admission---------------- */
.body-bg {
  background-image: url("../img/admission-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.responsive-iframe {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  /* height: fit-content; */
  border: none;
}

@media (min-width: 768px) {
  .responsive-iframe {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 60%;
    /* height: fit-content; */
    border: none;
  }
}

/*** Testimonial ***/
/* .testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
} */

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: normal;
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 14px 0px 0px;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--bs-yellow);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.footer-space {
  margin-top: -17px;
}
.footer-sub-text {
  font-size: 20px;
  color: #F5C116;
}
img.footer-img {
  margin-bottom: 25px;
  display: block;
  max-width: 170px;
}
a.btn-details {
  color: #fff;
}
h4.text-white {
  color: #F5C116 !important;
}
i.fa.me-3 {
  color: #F5C116;
}
.facebook {
  background-color: #3b5998;
}
.instagram {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

/* Footer social icons – platform colors */
.btn-social-footer.facebook {
    background-color: #3b5998;
}

.btn-social-footer.instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.btn-social-footer.youtube {
    background-color: #FF0000;
}

.btn-social-footer.linkedin {
    background-color: #0077b5;
}

.btn-social-footer.whatsapp {
    background-color: #25D366;
}

/* Make footer social icons circular */
.btn-social-footer {
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
}
.btn-social-footer:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}
.btn-social-footer i {
    font-size: 16px;
}

.footer ul li::before {
    content: none !important;
}

/* gallery------------------------ */

.portfolio-section {
  padding: 50px 0;
  background-color: #000;
}

.portfolio-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.portfolio-menu {
  text-align: center;
}

.control {
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border: 1px solid #343a40;
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
  -webkit-transition: all 05s ease;
  -moz-transition: all 05s ease;
  -ms-transition: all 05s ease;
  -o-transition: all 05s ease;
  transition: all 0.5s ease;
}

.control:hover {
  background: #343a40;
}

.mixitup-control-active {
  color: #fff;
  background: #343a40;
}

/* .fancybox-container button:focus {
  outline: 0;
  box-shadow: none;
} */

.portfolio-item {
  padding-top: 30px;
}

.pd {
  padding: 0;
  padding: 10px;
}

.pd img {
  height: 180px;
  transition: all 0.5s;
}

.portfolio-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  text-align: center;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0);
}

.portfolio-overlay p,
.portfolio-overlay a {
  position: relative;
  z-index: 4;
}

.portfolio-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  left: 10%;
  top: 10%;
  transition: 50ms height ease 150ms;
  z-index: 3;
}

.portfolio-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  right: 10%;
  bottom: 10%;
  transition: 100ms width ease 200ms;
  z-index: 3;
}

.portfolio-item:hover .portfolio-overlay::before {
  width: 80%;
  height: 80%;
  border-top: 1px solid #d65f22;
  border-right: 1px solid #d65f22;
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}

.portfolio-item:hover .portfolio-overlay::after {
  width: 80%;
  height: 80%;
  border-bottom: 1px solid #d65f22;
  border-left: 1px solid #d65f22;
  transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}

.portfolio-item li:hover .portfolio-overlay {
  visibility: visible;
  transform: scale(1);
}

.portfolio-overlay .category {
  margin-top: 70px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.portfolio-overlay .magnify-icon {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: #d65f22;
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
}

.portfolio-overlay .magnify-icon:hover {
  background: #000;
}

.portfolio-overlay .magnify-icon p span i {
  font-size: 15px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
}
/* video------------------- */

#img-container {
  max-width: 80rem;
  width: 100%;
  padding: 1rem 2rem;
  margin: 0 auto;
}

.main #img-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.main .card {
  color: #252a32;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}

.main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #fff;
}

.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .main #img-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}

/* video gallery================ */

.section-header {
  text-align: center;
  margin: 60px auto 20px auto;

  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
}

.section-header-underline {
  border: 1px solid #222;
  width: 3rem;
  margin: 0 auto;
  margin-bottom: 30px;
}

.video-gallery {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}

.video-gallery .gallery-item {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 320px;
  max-width: 580px;
  max-height: 360px;
  width: 48%;
  background: #000;
  cursor: pointer;
}

.video-gallery .gallery-item img {
  position: relative;
  display: block;
  opacity: 0.45;
  width: 105%;
  height: 300px;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(-23px, 0, 0);
  backface-visibility: hidden;
}

.video-gallery .gallery-item .gallery-item-caption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
}

.video-gallery .gallery-item .gallery-item-caption,
.video-gallery .gallery-item .gallery-item-caption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-gallery .gallery-item h2 {
  font-weight: 300;
  overflow: hidden;
  padding: 0.5em 0;
}

.video-gallery .gallery-item h2,
.video-gallery .gallery-item p {
  position: relative;
  margin: 0;
  z-index: 10;
}

.video-gallery .gallery-item p {
  letter-spacing: 1px;
  font-size: 68%;

  padding: 1em 0;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(10%, 0, 0);
}

.video-gallery .gallery-item:hover img {
  opacity: 0.3;
  transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item .gallery-item-caption {
  text-align: left;
}

.video-gallery .gallery-item h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
  height: 1px;
  background: #fff;

  transition: transform 0.3s;
  transform: translate3d(-100%, 0, 0);
}

.video-gallery .gallery-item:hover h2::after {
  transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item:hover p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 50em) {
  .video-gallery .gallery-item {
    display: inline-block;
    float: none;
    margin: 10px auto;
    width: 100%;
  }
}

/* ---==================whatsapp integration===== */

.wrapper {
  z-index: 10;
  font-family: sans-serif;
}

#main-div {
  position: fixed;
  right: 30px;
  /* bottom: -30px; */
  bottom: 25px;
  z-index: 10;
}

#main-button ~ button {
  visibility: hidden;
  font-weight: 600;
  height: 2.5rem;
  padding: 0 8px;
  color: #fff;
  background: linear-gradient(90deg, #00a1f5, #0064f3);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border: 0;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

#main-button.open ~ button {
  visibility: visible;
  right: 70px;
  font-size: 0.9rem;
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button ~ a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  opacity: 0;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
}

#main-button ~ .email-color {
  background: #111;
  /* background: linear-gradient(0deg, #0e0f0f, #09e601); */
  /* display: none!important; */
}

#main-button ~ .whatsapp-color {
  background: linear-gradient(0deg, #00b100, #09db09);
  /* display: none!important; */
}

#main-button ~ .phone-color {
  background: #111;
  /* background: linear-gradient(0deg, #0078ff, #00c6ff); */
  /* background: linear-gradient(0deg, #070707, #ffe828); */
  /* display: none!important; */
}

#main-button.open ~ a {
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button.open ~ a:nth-of-type(1) {
  bottom: 0px;
}

#main-button.open ~ a:nth-of-type(2) {
  bottom: 60px;
}


/* #main-button.open ~ a:nth-of-type(1) {
  bottom: 60px;
}

#main-button.open ~ a:nth-of-type(2) {
  bottom: 120px;
}
#main-button.open ~ a:nth-of-type(3) {
  bottom: 180px;
} */

/* i.fas.fa-phone {
  transform: rotate(90deg);
} */

.wave {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes wave {
  0% {
    box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);
  }
}

.open {
  animation-iteration-count: 1;
}

/* New gallery start====================== */

#container {
  margin: auto;
}

.header h1 {
  text-align: center;
  background: -webkit-linear-gradient(rgb(16, 162, 223), #b48e47);
  -webkit-background-clip: text;
  /* background-clip: text; */
  -webkit-text-fill-color: transparent;
  font-size: 4.5em;
  font-family: "Parisienne", cursive;
  margin-bottom: 15px;
}

.header p {
  text-align: center;
  background: -webkit-linear-gradient(rgb(16, 162, 223), #b48e47);
  -webkit-background-clip: text;
  /* background-clip: text; */
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 20px;
}

.grid-item {
  display: inline-block;
  height: 259px;

  overflow: hidden;
  text-align: center;
  width: 400px;
  padding: 10px 5px;
}

.grid-item img {
  width: 100%;
  height: auto;
  filter: url(filters.svg#grayscale);
  /* filter: gray;
  -webkit-filter: grayscale(1); */
  transition: 0.9s;
}

.grid-item img:hover {
  filter: none;
}

.isotope-pager .pager {
  display: inline-block;
  background-color: var(--bs-yellow);
  color: #fff;
}

.filters {
  width: 100%;
  text-align: center;
  padding-bottom: 35px;
  padding-top: 20px;
}

/* .filters ul {
  list-style: none;
  padding: 20px 10px;
  box-shadow: -1px 1px 11px rgba(0, 0, 0, .4);
  margin: 0 40px;
  border-radius: 30px;
  background-color: #232323;
} */

.filters li {
  display: inline-block;
  padding: 15px 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.filters li a {
  color: var(--color-3);
  text-decoration: none;
  /* color: rgb(16, 162, 223); */
  /* border: 1px solid rgb(16, 162, 223); */
  border-radius: 7px;
  box-shadow: -1px 1px 11px rgb(0 0 0 / 40%);
  padding: 10px 25px;
}

/* .filters li a:hover {
  color: #fff;
}

.filters li:hover {
  box-shadow: -1px 1px 11px rgba(0, 0, 0, .4);
  border-radius: 15px;
} */

.filters li.active a {
  color: #f0fbfc;
  border: 1px solid rgb(16, 162, 223);
  border-radius: 7px;
  box-shadow: -1px 1px 11px rgb(0 0 0 / 47%);
  padding: 10px 25px;
  background-color: rgb(16, 162, 223);
}

.isotope-pager {
  text-align: center;
  margin-top: 20px;
}

.isotope-pager a {
  margin: 6px 1px;
  display: inline-block;
  width: 50px;
  /* height: 60px; */
  line-height: 31px;
  color: #fefefe;
  font-weight: 600;
  transition: 0.3s;
  /* position: relative; */
  /* padding-right: 26px; */
  box-shadow: -1px 1px 11px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  background-color: var(--color-4);
  border: 0.5px solid var(--color-4);
  text-decoration: none;
}

.isotope-pager a:hover {
  color: #fff;
  border: 0.5px solid #ffeeac;
  box-shadow: -1px 1px 10px 3px rgba(0, 0, 0, 0.1);
}

.isotope-pager .active {
  color: rgb(16, 162, 223) !important;
  box-shadow: -1px 1px 10px 5px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  background-color: #161616;
  border: 1px dotted rgb(16, 162, 223);
}

.isotope-pager .prev {
  border-radius: 30px 0 0 30px;
}

.isotope-pager .next {
  border-radius: 0 30px 30px 0;
}

.isotope-pager a::before,
.isotope-pager a:after {
  content: "";
  position: absolute;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}

.isotope-pager .num::before,
.next::before {
  border-right: 20px solid #2c3e50;
  right: 100%;
}

.isotope-pager .num:after,
.prev:after {
  border-right: 20px solid #f1f1f1;
  right: 0;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background-color: var(--bs-yellow);
  /* background: var(--color-4); */
  /* Black see-through */
  color: #f1f1f1;
  width: initial;
  transition: 0.5s ease;
  opacity: 1;
  color: white;
  font-size: 17px;
  padding: 2px 10px;
  text-align: center;
}

.grid-item:hover .overlay {
  opacity: 1;
}

/* New gallery end====================== */

/* * video gallery================ */

.section-header {
  text-align: center;
  margin: 60px auto 20px auto;

  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
}

.section-header-underline {
  border: 1px solid #222;
  width: 3rem;
  margin: 0 auto;
  margin-bottom: 30px;
}

.video-gallery {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}

.video-gallery .gallery-item {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 320px;
  max-width: 580px;
  max-height: 360px;
  width: 48%;
  background: #000;
  cursor: pointer;
}

.video-gallery .gallery-item img {
  position: relative;
  display: block;
  opacity: 0.45;
  width: 105%;
  height: 300px;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(-23px, 0, 0);
  backface-visibility: hidden;
}

.video-gallery .gallery-item .gallery-item-caption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
}

.video-gallery .gallery-item .gallery-item-caption,
.video-gallery .gallery-item .gallery-item-caption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-gallery .gallery-item h2 {
  font-weight: 300;
  overflow: hidden;
  padding: 0.5em 0;
}

.video-gallery .gallery-item h2,
.video-gallery .gallery-item p {
  position: relative;
  margin: 0;
  z-index: 10;
}

.video-gallery .gallery-item p {
  letter-spacing: 1px;
  font-size: 68%;

  padding: 1em 0;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(10%, 0, 0);
}

.video-gallery .gallery-item:hover img {
  opacity: 0.3;
  transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item .gallery-item-caption {
  text-align: left;
}

.video-gallery .gallery-item h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
  height: 1px;
  background: #fff;

  transition: transform 0.3s;
  transform: translate3d(-100%, 0, 0);
}

.video-gallery .gallery-item:hover h2::after {
  transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item:hover p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 50em) {
  .video-gallery .gallery-item {
    display: inline-block;
    float: none;
    margin: 10px auto;
    width: 100%;
  }
}
/* careers------------------------- */
ul.subtext-ul {
  padding-left: 5px;
}

.career-head {
  color: var(--primary);
  font-size: 1.1rem !important;
}

.footer-head-text {
  color: #ffffff !important;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  padding: 5px 20px;
  border-radius: 7px;
  width: fit-content;
  text-align: center;
  margin: auto;
}

.footer-text .quote {
  margin: 0;
  background: #eee;
  padding: 1em;
  border-radius: 1em;
}

@media screen and (min-width: 1068px) {
  .card-size {
    height: 330px;
  }
  img.img-careers {
    height: 106px;
  }
}

img.img-fluid.position-absolute.w-100.h-100 {
  border-radius: 20px;
  -webkit-box-shadow: -1px 2.5px 10px 7px #dddddd;
  -moz-box-shadow: -1px 2.5px 10px 7px #dddddd;
  box-shadow: -1px 2.5px 10px 7px #dddddd;
}
.overflow-hidden {
  overflow: hidden !important;
  height: 200px;
  display: flex;
  justify-content: center;
}


.hb-icon-wrapper img {
  height: 100px;
  width: 100px
}

.feature-box.left-icon-box.aligncenter {
  display: flex
}

.one-step-solution h5 {
  padding-bottom: 0;
  margin-bottom: 10px;
  color: #F5C116;
  font-weight: 700;
  font-size: 22px
}

.one-step-solution p {
  text-align: justify;
  line-height: 28px;
  font-size: 18px
}

.shortcode-wrapper.shortcode-icon-box.clearfix.onestopsolution-section {
  padding-left: 100px;
  margin-bottom: 30px
}

.orange_strip {
  background-color: #F5C116;
  margin-top: 0;
  width: 100%;
}
.orange_strip p {
  text-align: center;
  font-size: 25px;
  color: #fff;
  letter-spacing: 3px;
  text-shadow: none;
  font-weight: 400;
  margin: 12px 0;
}

/*  including big pocket css  starts */
/* style.css */

/* counter starts */
.counter_wrapper {
  width: 100%;
  margin: 0;
  position: relative
}
.main_counter h2 {
  color: var(--bs-yellow);
  font-weight: 900;
  font-size: 80px;
  display: block;
  margin-top: 10px;
  text-align: center;
  letter-spacing: -2px
}

.main_counter .count-text {
  font-size: 18px;
  width: 100%;
  margin-top: 0;
  line-height: 28px
}

.counter {
  padding: 0;
  border-radius: 0
}

.count-title {
  font-size: 40px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center
}

.count-text {
  font-size: 13px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center
}
.main_counter .count-separator span {
  display: block;
  text-align: center;
  width: 0;
  margin: 10px auto 7px;
  margin-bottom: 7px;
  height: 1px;
  background: #ebebeb
}
/* counter ends */

.col_fourth {
  width: 22.5%
}
.col_fifth,.col_fourth,.col_half,.col_third,.col_three_fourth,.col_twothird {
  position: relative;
  display: inline;
 /* display: inline-block;  */
  float: left;
  margin-right: 2%;
  margin-bottom: 20px
}
/*  responsive css */


/*  including big pocket css  ends */


/* about starts */

.about-page {
  background-color: var(--theme-color-white);
  /* font-size: 14px; */
  height: 100%;
  width: 100%;
}



.aboutus-container {
  margin: 0 auto;
  /* max-width: 500px;
min-width: 300px;*/
  width: 100%;
}

.about-hero-image-desktop {
  display: none;
}

/* new about us exact word to word starts */
.graab-premium-story {
  padding:70px 20px;
  max-width:1100px;
  margin:auto;
}

.gps-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin:35px 0;
}

.gps-card {
  background:#fff;
  padding:35px;
  border-radius:22px;
  box-shadow:0 12px 35px rgba(0,0,0,.07);
  transition:.35s ease;
}




.gps-card:hover {
  transform:translateY(-8px);
}

.gps-card p {
  font-size:16px;
  line-height:1.85;
  color:#444;
}

.gps-card strong {
  font-size:22px;
  color:#111;
}

.gps-card.highlight {
  /* background:linear-gradient(135deg,#6b9a4c,#88b56b); */
  background:#111;
  color:#fff;
}

.gps-card.highlight p,
.gps-card.highlight strong {
  color:#fff;
}

.gps-card.intro {
  text-align:center;
  max-width:700px;
  margin:0 auto 40px;
  font-size:18px;
}

.gps-flavours {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}

.gps-flavours span {
  background:#f2f2f2;
  padding:9px 20px;
  border-radius:30px;
  font-size:14px;
  transition:.3s;
}

.gps-flavours span:hover {
  background:#6b9a4c;
  color:#fff;
}

.gps-card.outro {
  text-align:center;
  margin-top:40px;
}

.gps-card.outro h3 {
  margin-top:22px;
  font-size:26px;
}

.brand {
  color:#6b9a4c;
  font-weight:700;
}


/* Flavour Colors */

.puchka { color:#2e8b57; }     /* Green */
.peri { color:#cc5500; }       /* Dark Orange */
.kutch { color:#d4a017; }      /* Yellow */
.masala { color:#1e6fd9; }     /* Blue */

/* Pills */

.gps-flavours span.puchka { background:#e7f4ec; font-weight: 600}
.gps-flavours span.peri { background:#fde6d6; font-weight: 600}
.gps-flavours span.kutch { background:#fff6d9; font-weight: 600}
.gps-flavours span.masala { background:#e6effc; font-weight: 600}

.gps-flavours span:hover {
  color:#fff;
}

.gps-flavours span.puchka:hover { background:#2e8b57; }
.gps-flavours span.peri:hover { background:#cc5500; }
.gps-flavours span.kutch:hover { background:#f4c430; }
.gps-flavours span.masala:hover { background:#1e6fd9; }


/* Card 1 Emphasis */

.problem-card .emphasis {
  font-weight:600;
  color:#111;
}

/* Card 3 Superfood Styling */

.superfood-card .makhana {
  font-size:18px;
  color:#111;
}

.benefits {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0;
}

.benefits span {
  background:#f1f5f0;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:500;
  transition:.3s;
}

.benefits span:hover {
  background:#6b9a4c;
  color:#fff;
}


/* new about us exact word to word ends */

/* about us exact word to word starts */
/* .graab-verbatim {
  padding:60px 20px;
  max-width:900px;
  margin:auto;
}

.gv-card {
  background:#fff;
  padding:45px;
  border-radius:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.gv-card:hover {
  transform:translateY(-6px);
}

.gv-card p {
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin-bottom:18px;
}

.gv-card strong {
  color:#6b9a4c;
}

.gv-flavours {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:25px 0;
}

.gv-flavours span {
  background:#f2f2f2;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  transition:.3s;
}

.gv-flavours span:hover {
  background:#6b9a4c;
  color:#fff;
}

.gv-card h3 {
  text-align:center;
  margin-top:30px;
  font-size:24px;
} */

/* about us exact word to word ends */

/* about us page new starts */

/* .graab-about-story {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.graab-about-story h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.graab-about-story .intro {
  color: #666;
  max-width: 700px;
  margin: auto;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.story-box {
  background: #fafafa;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,.05);
  transition: .3s;
}

.story-box:hover {
  transform: translateY(-6px);
}

.story-box h4 {
  margin-bottom: 10px;
  color: #6b9a4c;
}

.story-box.highlight {
  background: linear-gradient(135deg,#6b9a4c,#88b56b);
  color: #fff;
}

.story-box.highlight h4 {
  color: #fff;
}

.flavour-strip {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.flavour-strip span {
  padding: 8px 18px;
  border-radius: 30px;
  background: #f0f0f0;
  font-size: 14px;
  cursor: default;
  transition: .3s;
}

.flavour-strip span:hover {
  background: #6b9a4c;
  color: #fff;
}

.closing p {
  color: #666;
}

.closing h3 {
  margin-top: 10px;
  font-size: 24px;
  color: #333;
} */

/* about us page new ends */
/* ---------- HERO BANNER DECLERATIONS ---------- */
.about-banner1 {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.about-banner1 .about-logo-wrapper {
  height: auto;
  margin: 0 auto;
  padding: 1rem 0;
  width: auto;
}

.about-logo-wrapper img {
  display: block;
  height: 2.5rem;
  margin: 0 auto;
  width: auto;
}

.about-banner1 .about-hero-image {
  background-image: url(../images/img/about-banosys.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 275px;
  width: 100%;

}

/* ---------- TEXT INFO DECLERATIONS ---------- */
.text-info {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.whyus-text-info {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.text-info>* {
  padding: 0 1.5rem 1rem;
}

/* intended for the first h2 within .text-info */
.text-info h2:nth-child(1) {
  color: #dc6911;
  font-weight: normal;
  padding-top: 1.8rem;
  padding-bottom: 1rem;
}

.text-info h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--theme-color-brown);
  letter-spacing: 5px;
  text-transform: uppercase;
}

.text-info h3 {
  /*font-size: 1rem;*/
  font-weight: bold;
  color: var(--theme-color-brown);
  letter-spacing: 2px;
  /*text-transform: uppercase;*/
  line-height: 0.6;
}

.text-info p {
  color: var(--theme-color-black) !important;
  line-height: 30px;
  text-align: justify;

}

@media only screen and (min-width: 768px) {



  .about-page {
      background-image: url(https://assets.codepen.io/6060109/destop-bg.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      flex-direction: row;
      height: 100%;
  }

  main {
      display: flex;
      flex-direction: column;
      height: inherit;
      max-width: 100%;
      margin: 0 auto;
      padding-left: 3.5rem;
  }

  .aboutus-container {
      width: 45vw;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
  }

  .about-banner1 .about-logo-wrapper {
      margin-left: 3.5rem;
      width: 100%;
      display: flex;
      align-items: start;
      flex-direction: column;
  }

  .about-logo-wrapper img {
      margin: 0 0 0;
      padding-left: 2.5rem;
  }

  .about-hero-image {
      display: none;
  }

  .text-info {
      text-align: left;
      align-items: start;
  }

  .text-info h2 {
      font-size: 2.8rem;
  }

  .text-info h3 {
      font-size: 2rem;
  }

  .text-info p {
      font-size: 16px;
  }

  .text-info input {
      font-size: 16px;
  }

  .text-info .email-signup {
      margin: 0rem 0 1rem;
  }

  .about-hero-image-desktop {
      display: block;
      height: 100%;
      width: 55vw;
  }

  .about-hero-image-desktop img {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 21% 100%);
      height: 100%;
      object-fit: cover;
      width: 100%;
  }

  

  
}

/* Quality Commitment */

.quality-card{
  background:#ffffff;
  border-radius:18px;
  padding:35px 30px;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
  max-width:900px;
  margin:0 auto;
}

.quality-line{
  font-size:1.1rem;
  margin-bottom:15px;
}

.quality-closing{
  margin-top:10px;
  font-weight:500;
}

/* Mobile */

@media(max-width:768px){
  .quality-card{
    padding:25px 20px;
  }
}

/* about ends */



.logo  {
  width: 260px;
  height: 75px;
}
@media only screen and (max-width: 700px) {
  .logo  {
    width: 260px;
    height: 75px;
  }
}

@media only screen and (max-width: 500px) {
  .logo  {
  width: auto;
  height: 65px;
}
}

.calculator-bg{
  background-image: url(../img/calculator.jpg);
}

/* loan starts here */
.faq-item {
  margin-bottom: 20px;
  padding: 5px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.faq-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 14px;
}

/* loan starts here */
/* ================================
   Graab Health Floating Mascot starts
================================ */

#graab-mascot {
    position: fixed;
    /* bottom: 60px; */
    bottom: 40px;
    left: 20px;
    /* width: 140px; */
    width: 100px;
    z-index: 9999;
    pointer-events: auto;

    animation: walk-horizontal 14s linear infinite;
}

.mascot-body {
    width: 100%;
    display: block;
}


.legs {
    position: absolute;
    /* bottom: -14px; */
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
}

.leg {
    /* width: 10px;
    height: 22px; */
     width: 7px;        /* thinner */
    height: 22px;
    border-radius: 6px; /* smoother shape */
    background-color: #000;
    border-radius: 6px;
    transform-origin: top center;
}

/* Walking motion */
.leg.left {
    animation: leg-walk 0.5s infinite alternate;
}

.leg.right {
    animation: leg-walk 0.5s infinite alternate-reverse;
}




/* Add subtle body bounce while walking for image based*/
.mascot-body {
    animation: body-bounce 0.5s infinite alternate;
}

@keyframes body-bounce {
    from { transform: translateY(0); }
    to   { transform: translateY(-3px); }
}
/* Add subtle body bounce while walking */
/* ================================
   Animations
================================ */

@keyframes leg-walk {
    from { transform: rotate(20deg); }
    to   { transform: rotate(-20deg); }
}

/* Left ↔ Right Screen Walk */
@keyframes walk-horizontal {
    0% {
        left: 20px;
        transform: scaleX(1);
    }

    45% {
        left: calc(100vw - 180px);
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(-1);
    }

    95% {
        left: 20px;
        transform: scaleX(-1);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes walk-horizontal-mobile {

    0% {
        left: 10px;
        transform: scaleX(1);
    }

    45% {
        left: calc(100vw - 90px);  /* adjusted for smaller mascot */
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(-1);
    }

    95% {
        left: 10px;
        transform: scaleX(-1);
    }

    100% {
        transform: scaleX(1);
    }
}

/* ================================
   Mobile Handling (Optional)
================================ */

@media (max-width: 768px) {

  #graab-mascot {
      width: 65px;        /* reduced from 100px */
      bottom: 20px;       /* slightly lower */
      animation: walk-horizontal-mobile 14s linear infinite;
  }

  .legs {
      bottom: -6px;
      gap: 8px;
  }

  .leg {
      width: 5px;
      height: 16px;
  }

}

@media (max-width: 480px) {
  #graab-mascot {
      width: 55px;
  }
}

/* ================================
   Graab Health Floating Mascot ends
================================ */

/* about section on home page starts */

.about-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #111;
}

.about-highlights i {
    color: #6b9a4c;
    font-size: 18px;
    margin-top: 4px;
}

/* Remove default bullet dots for about highlights */
.about-highlights li::before {
    content: none !important;
}

/* about section on home page starts */

/* ===== Section Titles starts ===== */



/* ===== Section Titles ends ===== */
/* ===== Green Strip ===== */
.green_strip {
    background: linear-gradient(90deg, #eaf6e2, #d8f3c9);
}

.green_strip p {
    font-size: 1.3rem;
    color: #3b5d2a;
}


/* ======================================================
   flavour section on home page starts
====================================================== */

/* ===== Signature Flavour Card ===== */
.flavour-card {
    background: #fff;
    border-radius: 16px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;

    /* IMPORTANT */
    padding-top: 110px; /* space reserved for floating image */
    position: relative;
    overflow: visible; /* allow image to float out */
}

.flavour-card:hover {
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}
/* Push cards down so floating images don't overlap header */
.signature-flavours-section {
    padding-top: 120px;
}

/* Prevent floating images from overlapping section header */
.signature-flavours-cards {
    margin-top: 20px; /* space for floating images */
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .signature-flavours-cards {
        margin-top: 130px;
    }
    @media(max-width:768px){
 .signature-flavours-cards .col-sm-6{
   padding-top:110px;
 }
}


    .flavour-image {
        top: -70px;
    }
}

/* ===== Floating Product Image (NO BOX) ===== */
/* .flavour-image {
    position: absolute;
    top: -90px; 
    left: 50%;
    transform: translateX(-50%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; 
} */

.flavour-image {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    pointer-events: auto;
}



/* Product image itself */
/* .flavour-image img {
    width: auto;
    max-width: 200px;
    max-height: 200px;
    height: auto;
    object-fit: contain;
    background: none;
    box-shadow: 0 14px 35px rgba(0,0,0,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
} */

.flavour-image img {
    width: auto;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
    transition: transform 0.4s ease, filter 0.4s ease, opacity 0.35s ease;
}

/* Image hover lift */
/* .flavour-card:hover .flavour-image img {
    transform: translateY(-8px) scale(1.05) rotate(-1deg);
    box-shadow: 0 22px 50px rgba(0,0,0,0.25);
} */

/* Image hover lift – triggered by card OR image */
.flavour-card:hover .flavour-image img,
.flavour-image:hover img {
    transform: translateY(-8px) scale(1.05) rotate(-1deg);
    filter: drop-shadow(0 22px 40px rgba(0,0,0,0.25));
    
}

/* for home page only  */
.home-flavours .flavour-card:hover .flavour-image img{
  transform: translateY(-10px) rotate(-3deg);
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.25));
}

.signature-flavours-cards .col-lg-3,
.signature-flavours-cards .col-md-4,
.signature-flavours-cards .col-sm-6{
  padding-top:140px;
}


/* fancybox */
/* .fancybox-button--zoom,
.fancybox-button--thumbs {
    font-size: 1.3rem;
} */


/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .flavour-image img {
        transition: none;
    }
}


/* .flavour-image a {
    cursor: zoom-in;
} */

/* ===== Image Swap (image1 → image2) ===== */
.img-front {
    z-index: 1;
}

.img-back {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    background: transparent !important;
    /* cursor: zoom-in; */
}

/* .img-back {
    background: transparent !important;
} */


.flavour-card:hover .img-front {
    opacity: 0;
}

.flavour-card:hover .img-back {
    opacity: 1;
    transform: scale(1);
}

/* ===== Flavour Content ===== */
.flavour-content {
    padding: 16px;
}

.flavour-content h3 {
    font-weight: 600;
    color: #6b9a4c;
    margin-bottom: 6px;
}

.flavour-content p {
    font-size: 14px;
    color: #555;
    min-height: 44px;
}

/* ===== WhatsApp CTA Button ===== */
.btn-natura {
    background-color: #6b9a4c;
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.25s ease;
}

.btn-natura:hover {
    background-color: #25D366;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-natura i {
    transition: transform 0.25s ease;
}

.btn-natura:hover i {
    transform: translateX(4px);
}

/* ===== Coming Soon Section ===== */
.coming-soon-section {
    border-top: 1px dashed #d6dccf;
}

.coming-title {
    color: #6b9a4c;
    font-weight: 600;
}

.coming-subtitle {
    font-size: 15px;
    color: #111;
}

/* .flavour-card.coming-soon {
    background: #fafafa;
    opacity: 0.9;
    pointer-events: none;
} */

/* .flavour-card.coming-soon .btn-natura{
  display:none;
}
.flavour-card.coming-soon .flavour-image{
 top:-140px;
}
.flavour-card.coming-soon img{
 max-width:160px;
} */


.coming-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #6b9a4c;
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}


/* HOME ONLY – disable zoom cursor + back image */

.home-flavours .flavour-image a{
  pointer-events:none;
  cursor:default;
}

.home-flavours .img-back{
  display:none !important;
}

.home-flavours .img-front{
  opacity:1 !important;
}

/* ======================================================
   flavour section on home page ends
====================================================== */


/* ================================
   Indian Map Section
================================ */

.flavours-map-section {
    /* background: #fafafa; */
    /* background: #f9e4c8; */
}

.flavours-map-section p {
    font-size: 1rem;
    line-height: 1.6;
}

.india-map-img {
    max-width: 480px;
    width: 100%;
    height: auto;
}

@media (min-width: 1200px) {
    .india-map-img {
        max-width: 520px;
    }
}

.flavour-state-list li {
    font-weight: 600;
    /* color: #6b9a4c; */
    margin-bottom: 8px;
}

.flavour-state-list li span {
    font-weight: 400;
    color: #666;
}


/* ======================================================
   Flavours Page (Separate from Home page flavours)
====================================================== */

/* Wrapper to scope all flavours page styles */


.flavours-page .flavour-img-wrap {
    position: relative;
    max-width: 100%;
}

/* Product image – clean, no box */
.flavours-page .flavour-hero-img {
    max-height: 360px;
    width: 100%;
    object-fit: contain;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: opacity 0.35s ease;
}

@media (max-width: 768px) {
    .flavours-page .flavour-hero-img {
        max-height: 260px;
    }
}

/* Image swap (image1 → image2) */
.flavours-page .img-back {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.flavours-page .flavour-img-wrap:hover .img-front {
    opacity: 0;
}

.flavours-page .flavour-img-wrap:hover .img-back {
    opacity: 1;
}

/* Coming Soon badge */
.flavours-page .coming-soon-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #6b9a4c;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}
/* ================================
   Flavours Page ends
================================ */ 



/* about page starts */

  .page-header {
            /* background: linear-gradient(90deg, #eaf6e2, #f7fff2); */
            padding: 2.5rem 0;
            border-radius: 0 0 20px 20px;
            margin-bottom: -1.5rem
        }

        .choose-container {
            width: 88%;
            margin: 0 auto;
        }

        .about-hero {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0,0,0,0.06);
        }

        .vision {
            /* color: #6b9a4c; */
            color: #111;
            font-weight: 700;
        }

        .about-text p {
            text-align: justify;
            color: #444;
        }

        .values-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.04);
            height: 100%;
            transition: transform .25s ease;
        }

        .values-card:hover {
            transform: translateY(-6px);
        }

        .values-card i {
            font-size: 2rem;
            /* color: #6b9a4c; */
             color: #111;
            margin-bottom: 10px;
        }

        @media screen and (max-width: 1000px) {
            .choose-container {
                width: 95%;
            }
        }

.tagline{
  display:block;
  margin-top:12px;
  font-weight:600;
  font-size:16px;
  white-space:normal;
}



/* Allow wrapping on mobile */

@media(max-width:768px){
  .tagline{
    white-space:normal;
    text-align:center;
  }
}


        /* About Us – Our Promise highlights */
.promise-highlight {
    /* color: #6b9a4c; */
     color: #111;
    font-weight: 600;
}
/* Our Promise Card */

.promise-card{
  background:#fafafa;
  border-radius:18px;
  padding:35px 30px;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.promise-title{
  font-weight:700;
  margin-bottom:12px;
}


/* Our Promise layout */

.promise-wrap{
  display:flex;
  gap:40px;
  align-items:center;
}

.promise-card{
  background:#fafafa;
  border-radius:18px;
  padding:35px 30px;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
  flex:1.1;
}

.promise-image{
  flex:0.9;
  text-align:center;
}

.promise-image img{
  max-width:100%;
  border-radius:16px;
}


/* Mobile */

@media(max-width:992px){
  .promise-wrap{
    flex-direction:column;
  }

  .promise-image{
    margin-top:25px;
  }
}

/* Mobile */

@media(max-width:768px){
  .promise-card{
    padding:25px 20px;
  }
}



/* =========================
   About Us – Editorial Design
========================= */

.section-heading {
    /* color: #6b9a4c; */
     color: #111;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.text-highlight {
    /* color: #6b9a4c; */
     color: #111;
    font-weight: 500;
}

.about-quote {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid #111;
    font-style: italic;
    color: #111;
}

.closing-line {
    margin-top: 1rem;
    font-weight: 500;
}

/* =========================
   About Us – Section Backgrounds
========================= */    
/* Section background separation */
.about-soft-section {
    /* background: #f4f8f1; */
    border-radius: 18px;
}

.about-cards-section {
    background: #ffffff;
}

.about-principles-section {
    background: #fafafa;
    border-radius: 18px;
}


.about-list,
.about-principles {
    margin: 1rem 0 1.5rem;
    padding-left: 1.2rem;
}

.about-list li,
.about-principles li {
    margin-bottom: 0.5rem;
    color: #444;
}

/* =========================
   About Us – Cards Design
========================= */


.about-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: transform 0.25s ease;
}

.about-card:hover {
    transform: translateY(-6px);
}

.about-card p {
    margin: 0;
    color: #444;
    font-weight: 500;
}

.about-icon {
    font-size: 1.6rem;
    /* color: #6b9a4c; */
     color: #111;
    margin-bottom: 10px;
    display: inline-block;
}

.about-principle h5 {
    /* color: #6b9a4c; */
     color: #111;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-principle p {
    color: #555;
    font-weight: 400;
}

.about-editorial,
.about-soft-section,
.about-cards-section,
.about-principles-section {
    margin-bottom: 2.5rem;
}
/* about page  ends */

/* brand character color 
  #6b9a4c
*/

/* customized fancybox css starts */

/* Better zoom cursor */
.fancybox-can-zoomIn img {
    cursor: zoom-in;
}
.fancybox-can-zoomOut img {
    cursor: zoom-out;
}

/* =====================================
   Fancybox Product Zoom Overrides
===================================== */

/* Allow scrolling when image exceeds viewport */
.fancybox-slide--image {
    overflow: auto !important;
    padding: 6px 0 !important;   /* reduced padding */
}

/* Remove Fancybox content size restrictions */
.fancybox-slide--image .fancybox-content {
    transform: none !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
}

/* Remove Fancybox image size limits */
.fancybox-image {
    /* max-width: 300vw !important;
    max-height: 100vh !important; */
    width: 100vw !important;
    height: auto !important;
        object-fit: contain;
}


/* Improve scroll behaviour */
.fancybox-inner {
    overflow: auto !important;
}

/* Optional: cleaner background */
.fancybox-bg {
    background: rgba(0,0,0,0.85);
}


/* customized fancybox css starts */




/* snack compare starts */

.snack-compare {
  padding: 80px 20px;
  /* background: #f6f9f3; */
  text-align: center;
}

/* .snack-compare h2 {
  font-size: 36px;
  margin-bottom: 10px;
} */

.snack-compare .sub {
  color: #111;
  margin-bottom: 40px;
}

.compare-card {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}



.snack-compare .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  padding:18px 12px;
}

.row:last-child { border: none; }

.row.head {
  font-weight: 600;
  color: #777;
}

.row.highlight {
  background: #e8f2df;
  border-radius: 10px;
  font-weight: 600;
}

.dots {
  letter-spacing: 4px;
  /* color: #666; */
  color: #cb2929;
}

.dots.green {
  color: #6b9a4c;
}

/* Mobile */
/* @media(max-width:768px){
  .row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  } */

  /* @media(max-width:768px){
  .snack-compare .row {
    grid-template-columns: 1fr;
  }


} */

/* ===============================
   SNACK COMPARE – MOBILE FIX
=============================== */

@media(max-width:768px){

.snack-compare{
  padding:60px 15px;
}

.compare-card{
  padding:25px 18px;
}

.snack-compare .row{
  grid-template-columns:1fr;
  gap:8px;
  padding:18px 10px;
  text-align:left;
}

/* Hide table header on mobile */
.snack-compare .row.head{
  display:none;
}

/* Make each row look like mini card */
.snack-compare .row{
  border-bottom:1px solid #eee;
}

.snack-compare .row.highlight{
  border:none;
}

/* Improve spacing */
.snack-compare .row span{
  display:block;
  font-size:15px;
}

/* Better dots spacing */
.dots{
  letter-spacing:6px;
  font-size:14px;
}

/* Brand chip alignment */
.brand-chip{
  justify-content:flex-start;
}

.brand-chip img{
  height:16px;
}

}
@media(max-width:768px){
.snack-compare .row{
  background:#fff;
  border-radius:12px;
  margin-bottom:12px;
  box-shadow:0 5px 15px rgba(0,0,0,.04);
}
}

/* Highlight Graab Health row on mobile */

@media(max-width:768px){

.snack-compare .row.highlight{
  background:#e8f2df;
  border-left:4px solid #6b9a4c;
  padding-left:14px;
}

.snack-compare .row.highlight span{
  font-weight:600;
}

}
@media(max-width:768px){
.brand-chip img{
  height:20px;
}
}

/* ===============================
   SNACK COMPARE – MOBILE FIX
=============================== */
 
.brand-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:600;
  color:#111;
}

.brand-chip img{
  height:18px;
}

/* snack compare ends  */

/* ======================================================
   B2B Partner Section
====================================================== */

.graab-b2b{
  margin-top:80px;
}

.b2b-card{
  background:#ffffff;
  border-radius:22px;
  padding:50px 45px;
  max-width:1100px;
  margin:0 auto;
  box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.b2b-card h2{
  text-align:center;
  /* margin-bottom:25px; */
}

.b2b-card h4{
  font-weight:700;
  margin-top:30px;
  margin-bottom:10px;
}

.b2b-card p{
  color:#444;
  line-height:1.8;
}

.brand-highlight{
  color:#000;
  font-weight:700;
}

.b2b-divider{
  width:80px;
  height:4px;
  background:#2e8b57;
  margin:25px auto;
  border-radius:4px;
}

.b2b-cta{
  margin-top:35px;
  text-align:center;
  font-weight:500;
}

/* Mobile */

@media(max-width:768px){
  .b2b-card{
    padding:25px 20px;
  }
}


.b2b-buttons{
  display:flex;
  justify-content:center;
  gap:10px;
}

.b2b-buttons .btn{
  display:inline-flex !important;
  width:auto !important;
  white-space:nowrap;
}

@media(max-width:600px){
  .b2b-buttons{
    flex-direction:column;
  }
}



/* ======================================================
   B2B Partner Section ends
====================================================== */





/* ALL section headings */

h2{
  font-size:36px;
  font-weight:700;
  color:#000 !important;
  margin-bottom:12px;
}

/* Sub headings / taglines */

.section-title p,
.sub,
section p{
  color:#111;
  font-size:16px;
  line-height:1.6;
}

/* Remove green inline colors */

h2[style]{
  color:#000 !important;
}






/* ===============================
   GLOBAL HEADING SIZE SYSTEM starts
=============================== */

/* Force all text highlights to black – buttons excluded */

h1, h2, h3, h4, h5, h6,
.section-heading,
.text-highlight,
.vision,
.about-icon,
.values-card i,
.about-principle h5{
  color:#111 !important;
}
/* Hero only */
.hero h1{
  font-size:48px;
  font-weight:800;
  line-height:1.2;
}

/* All section headings */
section h2{
  font-size:34px;
  font-weight:700;
  margin-bottom:14px;
}

/* Sub section titles */
section h3{
  font-size:26px;
  font-weight:700;
}

/* Mobile scaling */

@media(max-width:768px){

.hero h1{
  font-size:30px;
}

section h2{
  font-size:26px;
}

section h3{
  font-size:22px;
}

}

/* ===============================
   GLOBAL HEADING SIZE SYSTEM ends
=============================== */

/* faq page starts */
/* HERO */

.faq-hero{
background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url('../ima/faq-header.jpeg') center/cover no-repeat;
height:360px;
display:flex;
align-items:center;
justify-content:center;
}

.faq-hero-content{
text-align:center;
color:#fff;
}

.faq-hero-content h1{
font-size:46px;
letter-spacing:.5px;
margin-bottom:8px;
}

.faq-hero-content p{
opacity:.9;
}


/* WRAP */

.faq-wrap{
max-width:900px;
margin:100px auto;
padding:0 20px;
display:grid;
gap:28px;
}


/* CARD */

.faq{
padding:28px 32px;
border-radius:20px;
background:#fff;
border:1px solid rgba(0,0,0,.05);
transition:.35s ease;
cursor:pointer;
}


/* HEADER */

.faq-q{
display:flex;
justify-content:space-between;
align-items:center;
}


/* QUESTION */

.faq h3{
color:#111;
/* font-size:19px;
font-weight:600; */
margin:0;
position:relative;
}


/* ARROW */

.arrow{
width:10px;
height:10px;
border-right:2px solid #111;
border-bottom:2px solid #111;
transform:rotate(45deg);
transition:.3s ease;
opacity:.6;
margin-left:15px;
}

/* Rotate on hover */

.faq:hover .arrow{
transform:rotate(-135deg);
opacity:1;
}



/* UNDERLINE */

.faq h3::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#111;
transition:.35s ease;
}


/* ANSWER */

.faq p{
color:#111;
line-height:1.75;
margin-top:14px;
max-height:0;
opacity:0;
overflow:hidden;
transition:.4s ease;
}


/* HOVER INTERACTION */

.faq:hover{
transform:translateY(-3px);
box-shadow:0 15px 40px rgba(0,0,0,.06);
background:#fafafa;
}

.faq:hover p{
max-height:400px;
opacity:1;
}
@media (hover: hover) {
  .faq-item:hover .faq-answer {
    max-height: 400px;
    opacity: 1;
  }
}

.faq:hover h3::after{
width:40px;
}



.faq-q{
gap:20px;
}



/* MOBILE FALLBACK */

@media(max-width:768px){

.faq p{
  max-height:0;
  opacity:0;
}

.faq.active p{
  max-height:400px;
  opacity:1;
}

/* disable hover effects on touch */
.faq:hover{
  transform:none;
  box-shadow:none;
  background:#fff;
}

.faq:hover .arrow{
  transform:rotate(45deg);
}

.faq:hover h3::after{
  width:0;
}

}



.highlight{
color:#111;
font-weight:600;
}


/* faq page ends */



/* =====================================
   GRAAB MOBILE NAVBAR (FINAL)
===================================== */

.nav-toggle{
 display:none;
 background:none;
 border:none;
 font-size:30px;
 cursor:pointer;
}

/* MOBILE + TABLET */
@media(max-width:991px){

.site-header{
 padding:15px 20px;
}

.nav-wrapper{
 flex-wrap:wrap;
}

/* kill desktop centering */
.main-nav{
 position:static !important;
 transform:none !important;
 width:100%;
 display:none;
 flex-direction:column;
 margin-top:20px;
}

/* show menu */
.site-header.open .main-nav{
 display:flex;
}

/* links */
.main-nav a{
 margin:12px 0;
 font-size:18px;
}

/* hamburger */
.nav-toggle{
 display:block;
}

/* dropdown becomes stacked */
.main-nav .dropdown-menu{
 position:static;
 transform:none;
 box-shadow:none;
 background:#f7f4ee;
 margin-top:10px;
 display:none;
}

/* click open */
.nav-dropdown.open .dropdown-menu{
 display:block;
}

/* remove arrow */
.main-nav .dropdown-menu::before{
 display:none;
}

}

@media(max-width:991px){

/* remove desktop dropdown card */

.main-nav .dropdown-menu{
 width:100%;
 border-radius:0;
 padding:0;
 background:transparent;
}

/* flavour items */

.main-nav .dropdown-menu a{
 padding:12px 0;
 font-size:16px;
 justify-content:flex-start;
}

/* remove giant spacing */

.main-nav a{
 margin:8px 0 !important;
}

/* fix dropdown block spacing */

.nav-dropdown{
 flex-direction:column;
 align-items:flex-start;
 width:100%;
}

/* remove gap between FAQ / CONTACT */

.main-nav{
 row-gap:0;
}

}
@media(max-width:991px){

.nav-dropdown > a{
 width:100%;
 text-align:left;
}

}

@media(max-width:991px){

.main-nav,
.main-nav a{
 text-align:left !important;
 align-items:flex-start !important;
}

/* equal spacing */

.main-nav > *{
 width:100%;
}

/* center removed */

}
@media(max-width:991px){

.main-nav a[href="contact"]{
 background:var(--green);
 color:#fff !important;
 padding:12px 20px;
 border-radius:30px;
 margin-top:15px !important;
 text-align:center;
}

}

@media(max-width:991px){

.main-nav,
.main-nav a{
 text-align:left !important;
 align-items:flex-start !important;
}

/* equal spacing */

.main-nav > *{
 width:100%;
}

/* center removed */

}
@media(max-width:991px){

.main-nav a[href="contact"]{
 background:var(--green);
 color:#fff !important;
 /* padding:12px 20px; */
 padding: 12px 110px;
 border-radius:30px;
 margin-top:15px !important;
 text-align:center;
}

}

/* =====================================
   GRAAB MOBILE NAVBAR (FINAL)  ends
===================================== */


/* =====================================
   GRAAB Testimonials  starts
===================================== */

.graab-testimonials{
  padding:90px 0;
}

.testimonial-card{
  background:#fff;
  border-radius:70px;
  padding:10px 25px;
  text-align:center;
  box-shadow:0 12px 35px rgba(0,0,0,.06);
  height:100%;
}

.testimonial-img{
  width:140px;
  height:auto;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:18px;
  border:4px solid #fff;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.testimonial-text{
  font-style:italic;
  color:#333;
  margin-bottom:15px;
}

.testimonial-user strong{
  display:block;
  font-weight:600;
}

.testimonial-user span{
  font-size:14px;
  color:#777;
}


.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next{
  width:45px;
}

/* =====================================
   GRAAB Testimonials  starts
===================================== */

/* ===============================
   FORCE CONSISTENT SECTION HEADINGS
=============================== */

section h2{
  margin-top:0 !important;
  margin-bottom:20px !important;
}



/* ===============================
   Contact Header – MOBILE ONLY starts
================================ */

@media (max-width:768px){

  /* .contact-hero img{
    height:260px;
    object-fit:contain;
  } */

  .contact-hero img {
        height: 260px;
        object-fit: contain;
        padding: 2px 100px;
        margin-left: -115px;
    }


  .contact-hero .position-absolute{
    left:50%!important;
    right:auto!important;
    top:50%!important;
    transform:translate(-50%,-50%)!important;
    padding:0 140px;
    width:100%;
  }

  .contact-hero h1{
    font-size:26px;
    
  }

  .contact-hero p{
    font-size:14px;
  }
}


/* ===============================
   Contact Header – MOBILE ONLY ends
================================ */


/* =============================
   CLEAN MOBILE NAV RESET starts
============================= */


@media (max-width:1024px){

.site-header{
  position:relative;
  z-index:999999;
}

.nav-toggle{
  display:block !important;
  position:relative;
  z-index:9999999;
}

/* hide menu by default */
.main-nav{
  display:none !important;
  position:static !important;
  transform:none !important;
  width:100% !important;
  flex-direction:column !important;
  margin-top:15px;
}

/* show when open */
.site-header.open .main-nav{
  display:flex !important;
}

.main-nav a{
  margin:10px 0 !important;
}

}

@media(max-width:768px){

.main-nav .nav-dropdown{
  width:100%;
}

.main-nav .dropdown-menu{
  position:static !important;
  transform:none !important;
  box-shadow:none !important;
  background:none !important;
  padding:0 !important;
  min-width:100% !important;
  margin-top:10px;
}

.main-nav .dropdown-menu a{
  padding:8px 0 8px 15px !important;
  font-size:16px;
  border-left:2px solid #eee;
}

}

/* =============================
   CLEAN MOBILE NAV RESET ends
============================= */