
/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  color: grey;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #0f72b9;
  color: #fff;
}

::-moz-selection {
  background: #0f72b9;
  color: #fff;
}

.section {
  margin-top: 120px;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 44px;
}

.section-heading h2 em {
  font-style: normal;
  color: #0f72b9;
}

.section-heading h6 {
  color: #b2c90c;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.main-button a {
  display: inline-block;
  background-color: #b2c90c;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all .3s;
}

.main-button a:hover {
  background-color: #0f72b9;
  color: #fff;
}
/* 
---------------------------------------------
Call button Style
--------------------------------------------- 
*/
.call-button a {
  display: inline-block;
  background-color: #0f72b9;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.call-button a:hover {
  background-color:  #0f72b9;
  color: #fff;
}

.call-button i {
  margin-right: 8px;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #0f72b9;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 0.5s infinite;
  animation: dot 0.5s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 0.5s infinite;
  animation: dots 0.5s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #b2c90c;
  border-radius: 50%;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.background-header {
  background-color: #b3c90caa !important;
  border-radius: 0px 0px 25px 25px;
  height: 100px;
  position: fixed!important;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  padding-right: 10%;
  padding-left: 10%;
  padding-bottom: 2%;
}

.background-header .logo img {
  width: 100%;
  height: auto;
  padding-top: 0%;
}

.header-area {
  position: absolute;
  background-color: transparent;
  top:0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  background: transparent;
  display: flex;
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}

.header-area .main-nav .logo h1 {
  font-size: 36px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}



.header-area .main-nav ul.nav {
  border-radius: 0px 0px 25px 25px;
  flex-basis: 100%;
  margin-top: 20px;
  justify-content: right;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li {
  padding-left: 5px;
  padding-right: 5px;
  height: 40px;
  line-height: 40px;
  top: 2rem;
}

.header-area .main-nav .nav li a {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: #fff;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
  top: 2rem;
}

.header-area .main-nav .nav li:last-child a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}

.header-area .main-nav .nav li:last-child:hover a {
  background-color: #ffffff5d;
  font-weight: bold;
}

.header-area .main-nav .nav li:hover a {
  background-color: #ffffff5d;
  font-weight: bold;
}

.header-area .main-nav .nav li a.active {
  color: #fff;
  background-color: #ffffff5d;
  font-weight: bold;
}

.background-header .main-nav .nav li a.active {
  color: #fff;
  background-color: #ffffff5d;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 33px;
  width: 32px;
  height: fit-content;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 22px;
}

.background-header .main-nav ul.nav {
  margin-top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #fff;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #fff;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #fff;
}

.header-area .header-sticky .nav li a.active {
  color: #fff;
}

.visible{
  display:inline !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 5px;
    padding-right: 5px;
  }

}

@media (max-width: 600px) {
  .background-header .main-nav {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.176);
  }

  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color:#b2c90c;
  }

  .header-area .main-nav .nav li a {
    border-radius: 0;
  }
  
  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: white;
    background-color: #b2c90c;
  }

  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid #ddd;
    background-color: #f1f0fe;
    height: 50px;
  }

  .background-header .main-nav .nav li:last-child,
  .header-area .main-nav .nav li:last-child {
    border-radius: 0px 0px 25px 25px;
    background-color: #b2c90c;
  }

  .background-header .main-nav .nav li:last-child,
  .header-area .main-nav .nav li:last-child:hover {
    background-color: #0f72b9;
  font-weight: bold;}

  .header-area .main-nav .nav {
    flex-basis: 100%;
  }

  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 0px;
  }

  .background-header .main-nav .logo {
    top: 0px;
  }


  .background-header .main-nav .border-button {
    top: 0px !important;
  }

  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }

  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: white;
    background-color: #0f72b9;
    opacity: 1;
  }

  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }

  .header-area .nav li:last-child a {
    background-color: transparent !important;
    font-weight: 300 !important;
    text-transform: capitalize !important;
  }

  .header-area {
    background-color: transparent;
    padding: 0px 15px;
    box-shadow: none;
    text-align: center;
  }

  .header-area .container {
    padding: 0px;
  }

  .header-area .logo {
    margin-left: 0px;
    margin-top: 30px;
  }

  .header-area .menu-trigger {
    position: relative;
    display: block !important;
  }


  .header-area .main-nav .nav {
    position: relative;
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid white;
    background-color:#b2c90c ;
  }

  .header-area.header-sticky .nav {
    position: relative;
    margin-top: 100px !important;
  }

  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/
.main-banner {
  background: linear-gradient(135deg, #0f72b9, #b2c90c);
  border-radius: 0 0 300px 300px;
  height: auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 225px 0;
  padding-bottom: 1%;
  margin-bottom: 2%;
}
.main-banner .caption {
margin-left: 20%;
}

.main-banner .caption h6 {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  padding-bottom: 10px;
}

.main-banner .caption h1 {
  font-size: 40px;
  color: #fff;
  margin-top: 10px;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-align: left;
}

.main-banner .caption li {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  padding-bottom: 10px;
}

.main-banner .caption p {
  color: #fff;
  margin-bottom: 20px;
}

.main-banner .right-image {
  position: relative;
  margin-bottom: 2%;
}

.main-banner .right-image p {
  color: #fff;
  margin-bottom: 1%;
}

.main-banner .right-image iframe {
  border-radius: 25px;
  margin-top: 1%;
  margin-bottom: 2%;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 2%;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.main-banner .right-image span.hero-tagline {
  position: static;
  display: flex;
  justify-content: center; 
  
  background-color: #0f72b9;
  color: #fff;
  padding: 6px 18px;
  border-radius: 25px;

  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.main-banner .right-image .button-group {
  display: flex;
  justify-content: center;
  gap: 15px; /* space between buttons */
  margin-top: 2%;
}


/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/


.features .item {
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  background-color: #fff;
  text-align: center;
}

.features .item h3 {
  font-size: 17px;
  margin-top: 25px;
  text-transform: uppercase;
}

.features .item .image {
  width: 90px;
  height: 90px;
  display: inline-block;
  text-align: center;
  line-height: 90px;
  background-color: #0f72b9;
  border-radius: 50%;
  transition: all .3s;
}

.features .item:hover .image {
  background-color: #b2c90c;
}

hr {
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 2%;
  margin-top: -85px;
}

/* 
---------------------------------------------
Trending Style
--------------------------------------------- 
*/

.trending .main-button {
  margin-top: 32px;
  text-align: right;
  padding: 1%;
}

.trending .item  {
  background-color: #eeeeee;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 30px;
}

.trending .item .thumb {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.trending .item span.price em {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-decoration: line-through;
  display: block;
}

.trending .item span.price {
  text-align: right;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 10px;
  background-color: #0f72b9;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 8px 15px 6px 15px;
}

.trending .item .down-content {
  padding: 25px;
}

.trending .item .down-content span.category {
  font-size: 8px;
  color: #7a7a7a;
  margin-bottom: 5px;
  display: inline-block;
}

.trending .item .down-content h4 {
  font-size: 17px;
  font-weight: 600;
  transition: all .3s;
}

.trending .item .down-content a {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: inline-block;
  text-align: center;
  text-align: middle;
  line-height: 40px;
  width: 92px;
  height: 42px;
  background-color: #b2c90c;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
  right: 25px;
  bottom: 25px;
  transition: all .3s;
}

.trending .item:hover .down-content h4 {
  color: #0f72b9;
}

.trending .item:hover .down-content a {
  background-color: #0f72b9;
}


/* 
---------------------------------------------
Most Played Style
--------------------------------------------- 
*/

.most-played {
  background-color: #f7f7f7;
  padding: 2%;
  border-radius: 25px;
}
.most-played .section-heading {
  padding: 2%;
}

.most-played .main-button {
  margin-top: 32px;
  text-align: right;
}

.most-played .item  {
  background-color: #fff;
  border-radius: 25px;
  text-align: center;
  margin-bottom: 40px;
  width: 180px;
  height: 300px;
  margin-left: 5%;
  margin-right: 5%;
  padding: 5%;
  margin-top: 2%;
}

.most-played .item .thumb {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  transition: all .3s;
}

.most-played .item .thumb img {
  width: 150px;
  height: 150px;
}

.most-played .item .down-content {
  padding: 20px 15px 40px 15px;
}

.most-played .item .down-content span.category {
  font-size: 8px;
  color: #7a7a7a;
  margin-bottom: 5px;
  display: inline-block;
}

.most-played .item .down-content h4 {
  font-size: 17px;
  font-weight: 600;
  transition: all .3s;
}

.most-played .item .down-content a {
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  height: 40px;
  width: 120px;
  background-color: #b2c90c;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 5%;
}

.most-played .item:hover .down-content h4 {
  color: #0f72b9;
}

.most-played .item:hover .down-content a {
  background-color: #0f72b9;
}


/* 
---------------------------------------------
Categories Style
--------------------------------------------- 
*/

.categories .main-button {
  margin-top: 30px;
}

.categories .item  {
  background-color: #0f72b9;
  position: relative;
  border-radius: 25px;
  text-align: center;
  margin-bottom: 30px;
  padding: 4px;
  height: relative;
}

.categories .item .thumb {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  color: #0171B8;
  height: relative;
}

.categories .item h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  padding: 12px;
  margin-bottom: 0px;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  margin-top: 2%;
  background: linear-gradient(135deg, #0f72b9, #b2c90c);
  height: fit-content;
  border-radius: 150px 150px 0px 0px;
  margin-bottom: 0;
  padding: 2%;
}

footer p {
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  margin-top: 2%;
}

footer h3 {
  margin-top: 20px;
  text-align: center;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

footer h4 {
  text-align: center;
  margin-top: 1%;
  line-height: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.footer-features i {
  margin-right: 6px;
  color: white; /* accent color */
}

.footer-features .divider {
  margin: 0 8px;
  opacity: 0.6;
}

/* 
---------------------------------------------
Page Header Style
--------------------------------------------- 
*/

.page-heading {
  background-image: url(../images/page-heading-bg.jpg);
  border-radius: 0px 0px 150px 150px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 8%;
  padding-bottom: 4%;
  text-align: center;
}

.page-heading span {
  display: inline-block;
  font-size: 16px;
  color: #fff;
}

.page-heading span a {
  color: #fff;
}

.page-heading h3 {
  font-size: 48px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 20px;
  position: relative;
  margin-bottom: 20px;
}
.page-heading h6 {
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 20px;
  position: relative;
  margin-bottom: 20px;
}
.page-heading p {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
  position: relative;
  margin-bottom: 1%;}
/* 
---------------------------------------------
Shop Page Style
--------------------------------------------- 
*/

.trending ul.trending-filter {
  list-style: none;
  text-align: center;
  margin-bottom: 2%;
}

.trending ul.trending-filter li {
  display: inline-block;
  margin: 5px 8px;
}

.trending ul.trending-filter li a {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: white;
  background-color:#b2c90c; 
  padding: 10px 16px;
  border: none;
  border-radius: 25px;
  transition: all .3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
    cursor: pointer;
    width: 250px;
}

.trending ul.trending-filter li a.is_active {
  background-color:#b2c90c;
  color: #fff;

}

.trending ul.trending-filter li a.is_active:hover {
  color: #fff;
}

.trending ul.trending-filter li a:hover {
  color: white;
  background-color: #0f72b9;
}

.trending-box .item  {
  background-color: #eeeeee;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 30px;
  height: fit-content;
  width: fit-content;
}

.trending-box .item .thumb {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.trending-box .item span.price em {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-decoration: line-through;
  display: block;
}

.trending-box .item span.price {
  text-align: right;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 10px;
  background-color: #0f72b9;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 8px 15px 6px 15px;
}

.trending-box .item .down-content {
  padding: 25px;
}

.trending-box .item .down-content span.category {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 5px;
  display: inline-block;
}

.trending-box .item .down-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0f72b9;
  transition: all .3s;
}
.trending-box .item .down-content p {
  font-size: 10px;
  font-weight: 500;
  color: gray;
  line-height: 1.4;
  margin-top: 1%;
  width: 50%;
}

.trending-box .item .down-content a {
  position: absolute;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  width: 40%;
  height: 40px;
  background-color: #b2c90c;
  color: #fff;
  margin-left: 50%;
  bottom: 25px;
  transition: all .3s;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
}

.trending-box .item:hover .down-content h4 {
  color: #0f72b9;
}

.trending-box .item:hover .down-content a {
  background-color: #0f72b9;
}

.trending ul.pagination {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

.trending ul.pagination li {
  display: inline-block;
  margin: 0px 5px;
}

.trending ul.pagination li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #eee;
  color: #1e1e1e;
  font-size: 15px;
  font-weight: 600; 
  transition: all .3s;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
}

.trending ul.pagination li a:hover,
.trending ul.pagination li a.is_active {
  background-color: #0f72b9;
  color: #fff;
}

  /* Dropdown container */
  .dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
  }
  
  /* Dropdown button */
  .trending .dropdown .main-button {
    background-color:#b2c90c;
    color: white;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
    width: 250px;
  }
  .trending .dropdown .main-button:hover {
    background-color: #0f72b9;
  }
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 9999;
    border-radius: 25px;
    padding: 10px 0;
  }
  
  /* Links inside dropdown */
  .dropdown-content ul {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
    border-radius: 10px;
  }
  
  /* Hover effects */
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  /* Show dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Change button style on hover */
  .trending .dropdown-content .main-button:hover .main-button {
    background-color: #0f72b9;
  }


/* 
---------------------------------------------
Single Page Style
--------------------------------------------- 
*/

.single-product .sep {
  width: 100%;
  height: 1px;
  background-color: #eee;
  margin: 80px 0px;
}

.single-product .left-image {
  margin-right: 80px;
}

.single-product .left-image img {
  border-radius: 25px;
}

.single-product h4 {
  font-size: 27px;
  margin-bottom: 2%;
  color: #b2c90c;
}

.single-product h6 {
  font-size: 20px;
  margin-bottom: 2%;
  color: gray;
}

.single-product span.price {
  font-size: 27px;
  font-weight: 700;
  color: #0f72b9;
}

.single-product span.price em {
  font-style: normal;
  color: #c8c8c8;
  font-size: 17px;
  text-decoration: line-through;
  font-weight: 500;
  margin-right: 5px;
}

.single-product form input {
  width: 80px;
  height: 50px;
  background-color: #f7f7f7;
  border: 1px solid #e7e7e7;
  border-radius: 25px;
  text-align: center;
  float: left;
  margin-right: 15px;
}

.single-product form {
  display: inline;
}

.single-product form button {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background-color: #0f72b9;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0px 25px;
  border: none;
  border-radius: 25px;
  transition: all .3s;
}

.single-product form button i {
  margin-right: 5px;
}

.single-product form button:hover {
  background-color: #0f72b9;
}

.single-product ul {
  margin-top: 2%;
  line-height: 2px;
}

.single-product ul li {
  display: block;
  margin: 2%;
  font-size: 14px;
  color: #0f72b9;
}

.single-product ul li:last-child {
  margin-bottom: 0px;
}

.single-product ul li::before {
  content: "●"; /* Unicode round bullet */
  color: #0f72b9; /* same as heading */
  font-size: 14px;
  display: inline-block;
  margin-right: 8px; /* space between bullet & text */
  }
 

.single-product ul li span {
  width: 120px;
  display: inline-block;
  color: #aaa;
}

.Doctor-page ul li {
  display: block;
  font-size: 14px;
  color: #0f72b9;
}

.Doctor-page ul li:last-child {
  margin-bottom: 0px;
}

.Doctor-page ul li::before {
  content: "●"; /* Unicode round bullet */
  color: #0f72b9; /* same as heading */
  font-size: 14px;
  display: inline-block;
  margin-right: 2%; /* space between bullet & text */
  }
 

.Doctor-page ul li span {
  width: 120px;
  display: inline-block;
  color: #aaa;
}

.Doctor-page p {
  width: 70%;
}

.tabs-content {
  background-color: #f7f7f7;
  border-radius: 25px;
  padding: 60px;
  transition: all 0.3s;
}

.tabs-content .nav-link {
  border: none;
  border-radius: 0px;
  background-color: transparent !important;
  font-size: 20px;
  font-weight: 600;
  color: #1e1e1e;
  padding: 0px;
}

.tabs-content ul.nav-tabs {
  border-bottom: none;
}

.tabs-content ul.nav-tabs li {
  border-right: 1px solid #d7d7d7;
  margin-right: 30px;
  padding-right: 30px;
}

.tabs-content ul.nav-tabs li:last-child {
  border-right: none;
  margin-right: 0px;
  padding-right: 0px;
}

.tabs-content .nav-tabs .nav-link.active {
  color: #0f72b9;
}

.tabs-content .tab-content {
  margin-top: 30px;
}

.about .main-button {
  text-align: right;
  margin-top: 32px;
}
.about p {
color: white;
font-size: 12px;
line-height: 1.5; 
  margin: 5px;   
}

.about {
  margin-top: 0%;
}
.about .item {
  width: 80%;
  height: fit-content;
  padding: 2%;
}

.about .item img {
  width: 60%;
  height: 60%;
}
.sep {
  margin-bottom: 2%;
}


/* 
---------------------------------------------
Blog Page Style
--------------------------------------------- 
*/

.blog p {
font-size: 20px;
line-height: 1.5; 
margin: 5px;   
text-align: center;
}

.blog h1 {
color: white;
text-align: center;
font-size: 24px;
margin: 1.5rem;
margin-top: 0;
}

.blog h2 {
  color: #b2c90c;
  text-align: center;
  font-size: 20px;
}

.blog h3 {
  color: #0f72b9;
  text-align: center;
  font-size: 16px;
}

.blog {
  margin-top: 0%;
  margin-left: 20rem;
  margin-right: 20rem;
  text-align: justify;
}

.blog ul {
  display: table;              /* keeps list block centered */
  margin: 1rem auto;           /* centers the entire list */
  list-style: none;            /* remove default browser bullets */
  padding-left: 0;             /* reset */
  text-align: left;            /* ensure text aligns properly */
  font-size: 20px;
}

.blog ul li {
  position: relative;
  padding-left: 1.5rem;        /* space for custom bullet */
  margin-bottom: 0.5rem;       /* gap between list items */
  text-align: justify;         /* justify text */
}

.blog ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #0f72b9;              /* bullet color */
  font-size: 20px;
  line-height: 1.2;
}

.blog .thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog .section-heading .item {
  width: 80%;
  margin: 0 auto; /* centers the item itself */
  padding: 2%;
  border-radius: 25px;
  background: linear-gradient(135deg, #0f72b9, #b2c90c);
  text-align: center; /* also helps align content inside */
}

.blog .section-heading .item img {
  width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(128, 128, 128, 0.5);
  margin-bottom: 1.5rem;
}

/* 
---------------------------------------------
Contact PAge Style
--------------------------------------------- 
*/

.contact-page .left-text {
  background-color: #f7f7f7;
  border-radius: 25px;
  padding: 2%;
  text-align: center;
}

.contact-page .left-text .section-heading {
  margin-bottom: 2%;
}

.contact-page .left-text p {
  margin-bottom: 2%;
}
.contact-page .left-text h3 {
    color: grey;
    font-size: 18px;
    font-weight: 600;
}
.contact-page .left-text h6 {
  margin-bottom: 2%;
  margin-top: 2%;
  color:#b2c90c;
  font-size: 20px;
} 

.contact-page .left-text ul li {
  display: block;
  font-size: 16px;
  color: #aaaaaa;
  font-size: 300;
  margin-bottom: 2%;
}

.contact-page .left-text ul li:last-child {
  margin-bottom: 0px;
}

.contact-page .left-text ul li span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 5px;
}

.contact-page .right-content {
  margin-left: 50px;
  text-align: center;
  color: grey;
}

.contact-page .right-content #map {
  margin-bottom: 60px;
}
.contact-page .button-group {
  display: flex;
  justify-content: center; /* Centers horizontally */
  gap: 15px; /* Adds spacing between buttons */
  margin-top: 20px;}

/* 
---------------------------------------------
WhatsApp Button Style
--------------------------------------------- 
*/
.whatsapp-button a {
  display: inline-block;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}
.whatsapp-button a:hover {
  background: #b2c90c;
}

.call-button i { 
  margin-right: 8px; 
}

.whatsapp-button i { 
  margin-right: 8px; 
}

.trending-items h3 {
  text-align: center;
  color:#0f72b9;
}

.facility-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;       /* centers the whole list block */
  display: table;       /* keeps it naturally centered */
}

.facility-list li {
  position: relative;
  margin: 8px 0;
  font-size: 15px;
  text-align: left;   /* align text in the middle */
  padding-left: 0;
  color: grey;      /* no extra padding */
}

.facility-list li::before {
  content: "●";                /* Unicode round bullet */
  color: #0f72b9;              /* same as heading */
  font-size: 14px;
  display: inline-block;
  margin-right: 8px;           /* space between bullet & text */
}



/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

/* -------- Mobile First (<=767px) -------- */
@media (max-width: 767px) {
  .header-area {
    top: 0;
  }
 

  .about .main-button {
    text-align: center;
    margin-top: 2%;
    margin-bottom: 2%;
    position: relative;
    text-align: center;
    left: 50%; 
    transform: translateX(-50%);
    display: flex;       
    justify-content: center;
    width: auto;
  }

  .about p {
    margin: 1%;   
  }
  
  .about .item {
    width: 60%;
    height: fit-content;
    padding: 2%;
    margin-right: 20%;
    margin-left: 20%;
  }
  
  .about .item img {
    width: 20%;
    height: 20%;
  }
  .sep {
    margin-bottom: 2%;
  }
  .about .section-heading{
    text-align: center;
  }

  .blog {
    margin-left: 2rem;
    margin-right: 2rem;
  }
.main-banner {
height: auto;
margin-bottom: 2%;
padding: 2%;
border-radius: 0 0 300px 300px;
}

.main-banner ul li {
  text-align: center;
  padding: 5px;
}
.main-banner ul {
  margin: 1%;
}

.main-banner .right-image span.hero-tagline {
  font-size: 12px;
  display: block;
  width: fit-content;
  padding: 5px 14px;
  margin-top: 2%;
  margin: 8px auto;
}}

@media (max-width: 767px) {
  .main-banner .button-group {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  .main-banner .button-group a {
    text-align: center;
    font-size: 12px;
  }

  .main-banner .caption {
    margin-bottom: 5px;
    text-align: justify;
    width: 90%;
    margin-right: 5%;
    margin-left: 5%;
    font-size: 8px;
  }

  .main-banner .header-text 
  {margin-top: 0px;
  padding-top: 2%;}

  .main-banner .caption h6 {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
  }
  
  .main-banner .caption h1 {
    font-size: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 1%;
    text-align: center;
  }
  
  .main-banner .caption p {
    text-align: center;
    font-size: 8px;
    line-height: 1.5;
  }

  .main-banner .right-image {
    height: auto;
    width: auto;
    overflow: hidden;
    position: relative;
    border-radius: 25px;
    margin: 2%;
  }

  .main-banner .right-image {
    object-fit: cover;
  }

  .main-banner {
    margin-top: 0%;
    padding-top: 10%;
    padding-bottom: 5%;
    height: auto;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 2%;
  }

  .main-banner .right-image .video-frame {
    width: 75%;          /* reduce width */
    padding-top: 42%;   /* slightly shorter than 16:9 */
    margin: 0 auto;     /* center it */
  }

.single-product p {
text-align: center;
}

.page-heading {
  border-radius: 0px 0px 100px 100px;
  padding-top: 4%;
  padding-bottom: 2%;
}
.trending-box {
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 1%;
}
.trending-box .item li {
  font-size: 20px;
  color: grey;
}}

/* Mobile + Tablet only */
@media (max-width: 991px) {
  .main-banner .caption.header-text ul {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1%;
  }

  .main-banner .caption.header-text ul li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    white-space: nowrap;
  }
}

  @media (max-width: 767px) {
   
  .cta .subscribe form button {
    width: 100%;
    margin-top: 12px;
  }

  .features {
    position: relative;
    width: 95%;
    margin-left: 5%;
    margin-right: 5%;
    align-items: center;
    left: 50%; 
    transform: translateX(-50%);
    display: flex;       
    justify-content: center;
  }
  hr {
    margin-top: 350px;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 2%;
  }

  .features .item {
    background-color:rgb(255, 255, 255);
    width: 100px;
    height: 100px;
    padding: 5px;
    text-align: center;
    border-radius: 20px;
    row-gap: 5px;
    margin: 2px;
  }

  .features .item h3 {
    font-size: 8px;
    font-weight: 400px;
    margin-top: 2%;
  }

  .features .item .image {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 2%;
    margin-top: 2%;
  }

  .features .item .image img {
    width: 30px;
    height: 30px;
  }

  .single-product .left-image {
    margin-bottom: 30px;
    height: 50%;
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 0;
  }
  .tabs-content .nav-link {
    font-size: 15px;
  }

  .contact-page .right-content {
    margin-top: 30px;
  }}

/* -------- Tablet (768px - 1920px) -------- */
@media (max-width: 1920px) {
  
  .header-area .main-nav .logo img {
    max-width: 100px;
    padding-top: 0;
    margin-top: 0; 
  }

  .blog {
    margin-left: 2rem;
    margin-right: 2rem;
  }

}

  @media (max-width: 767px) {
    .header-area .main-nav .logo {
      top: 0 !important;
      margin-top: 0;}

  .header-area .main-nav .nav li a {
    padding: 8px 8px;

  }
  .header-area .main-nav ul.nav {
    margin-top: 10px;
  }
  
  .page-heading h3 {
    margin-top: 1%;
    font-size: 40px;
    
  }

  .page-heading h6 {
    font-size: 20px;
    margin-bottom: 1%;
  }
  .Doctor-page ul li {
    display: block;
    font-size: 12px;
    color: #0f72b9;
    text-align: left;
    line-height: 20px;
  }
  .Doctor-page ul {
    align-self: center;
  }

  .Doctor-page ul li:last-child {
    margin-bottom: 2%;
  }
   
  
  .Doctor-page p {
    width: 100%;
  }
  

  .single-product {
    margin-top: 2%;
  }

  .single-product h4{
  text-align:center;
  }

  .single-product h6{
    text-align:center;
    }

  .cta .shop,
  .cta .subscribe {
    padding: 25px;
    margin-bottom: 20px;
  }

  .trending {
    margin-top: 2%;
    padding: 2%;
    margin-bottom: 2%;
    }
    .trending .section-heading {
      margin: 2%;
      }
.trending h6 {
  font-size: 20px;
  margin-bottom: 1%;
  text-align: center;
}
.trending h2 {
  margin-top: 1%;
  margin-bottom: 2%;
  text-align: center;
}
.trending .main-button {
  margin-top: 2%;
  margin-bottom: 2%;
  position: relative;
  text-align: center;
  left: 50%; 
  transform: translateX(-50%);
  display: flex;       
  justify-content: center;
  width: auto;
  font-size: 10px; 
}

.trending .item {
  width: 80%;
  height: 90%;
  margin-left: 10%;
  margin-left: 10%;
}

.most-played
{margin-top: 2%;
padding-top: 5%;
}

.most-played .container {
  height: fit-content;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  gap: 2%;
}

.most-played .section-heading { 
  text-align: center;
  margin-bottom: 5%;
}

.most-played .main-button {
  position: relative;
  text-align: center;
  left: 50%; 
  transform: translateX(-50%);
  display: flex;       
  justify-content: center;
  width: auto;
  margin-bottom: 2%;
  margin-top: 2%;
}
.most-played .item {
  width: 80%;
  height: 90%;
  margin-left: 10%;
  margin-right: 10%;
  row-gap: 1%;
  margin-bottom: 0;
}

.most-played .item .thumb img {
  width: 150px;
  height: 150px;
}

.most-played a {
margin-bottom: 2%;
}

footer h3 {
  font-size: 14px;
}

footer h4 {
  text-align: center;
  margin-top: 1%;
  line-height: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
}

footer p {
  font-size: 10px;
  margin-top: 2%;
  width: 80%;
  margin-right:10%;
  margin-left:10%;
}
footer {
  margin-top: 2%;
  margin-bottom: 0 !important;
}

.footer-features i {
  margin-right: 6px;
  color: white; /* accent color */
  gap: 1%;
}

.footer-features .divider {
  margin: 0 8px;
  opacity: 0.6;
}

.most-played .section-heading h4 {
  font-size: 18px;
  color: gray;
  margin-top: 10%; 
  margin-bottom: 2%;
  width: 80%;
  margin-right: 10%;
  margin-left: 10%;
}

.most-played .section-heading h5 {
  font-size: 14px;
  color: gray;
}
.most-played ul li {
  color: grey;
  text-align: center;
}
  .trending ul.trending-filter li {
    margin: 2%;
    margin-bottom: 0%;
  }
  .tabs-content ul.nav-tabs li {
    margin-right: 12px;
    padding-right: 12px;
  }  
  .trending ul.trending-filter li a {
   width: 180px;
  }
  .dropdown-content {
   width: 200px;
    height: fit-content;
  }
    } 




/* -------- Large Screens (<=1200px) -------- */
@media (max-width: 1200px) {
  .page-heading {
    padding: 130px 0 90px;
  }}