
/* Fonts */
:root {
  --default-font: "Plus Jakarta Sans", sans-serif;
  --heading-font: 'Continuum';
  --nav-font: 'Continuum';
}

@font-face {
    font-family: 'Continuum';
    src: url('../fonts/ContinuumBold.woff2') format('woff2'),
        url('../fonts/ContinuumBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root { 
  --background-color: #2C1017; 
  --default-color: #fff; 
  --heading-color: #F0AF03; 
  --accent-color: #FEBB00; 
  --surface-color: #2C1017; 
  --contrast-color: #ffffff; 
}


:root {
  --nav-color: #ffffff;  
  --nav-hover-color: #FEBB00; 
  --nav-mobile-background-color: #2C1017; 
  --nav-dropdown-background-color: #2C1017; 
  --nav-dropdown-color: #ffffff; 
  --nav-dropdown-hover-color: #FEBB00; 
}



.light-background {
  --background-color: #fff;
  --surface-color: #ffffff;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
h1{
  font-size: 48px;
}
h2{
  font-size: 26px;
}
/* Pulsating Play Button
------------------------------*/


.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.content p{font-size: 20px;}
.caption-about{font-size: 30px !important; font-weight: 700; color: #f15928;}


.header {
  color: var(--default-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  height: 108px;
  
  background: rgba(0, 0, 0, 0.1); /* semi-transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 75px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.navmenu{
  font-family: var(--heading-font);
}

@media (max-width: 1200px) {
  
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 18px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    letter-spacing: 1px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    height: 230px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
     height: 100vh;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --heading-font: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .copyright {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}
.footer-links a {
  font-size: 16px;
  color: var(--default-color);
  margin-left: 5px;
  margin-right: 5px;
}
.footer-links a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
  z-index: 10;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  width: 100%;
  position: relative;
  padding: 0px;
  height: 100vh;
  align-items: center;
  margin-top: -108px;
}

.hero h1 {
  margin: 0;
  line-height: 60px;
  text-transform: uppercase;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 20px 0 20px 0;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.custom-banner-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.custom-banner-text {
}

.custom-banner-text h1 {
  font-size: 60px;
  margin-bottom: 10px;
  line-height: 75px;
}

.custom-banner-text p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color));
  padding-bottom: 15px;
}
.custom-banner-text span {
  font-size: 95px;
}
.banner-characters{
  position: relative;
}
.banner-characters .character1{
  position: absolute;
  width: 267px;
  height: 641px;
  top: -118px;
  right: 267px;
  background-image: url('../img/banner-characters1.webp');
}
.banner-characters .character2{
  position: absolute;
  width: 378px;
  height: 683px;
  top: -155px;
  right: 0px;
  background-image: url('../img/banner-characters2.webp');
}


.banner-characters .about-elemt1 {
    position: absolute;
    width: 204px;
    height: 418px;
    top: 0px;
    left: -65px;
    z-index: 75;
    background-image: url(../img/about-elemt1.webp);
}
.banner-characters .about-elemt2 {
    position: absolute;
    width: 189px;
    height: 213px;
    top: 113px;
    left: -219px;
    background-image: url(../img/about-elemt2.webp);
}
.banner-characters .about-elemt3 {
    position: absolute;
    width: 298px;
    height: 117px;
    top: -91px;
    left: -45px;
    background-image: url(../img/about-elemt3.webp);
}

.down-arrow{
  position: absolute;
   bottom: 20px;    
  left: 50%;       
  transform: translateX(-50%);
  animation: jump 1.5s ease-in-out infinite;
}


@keyframes jump {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  background-image: url('../img/about-bg.webp');
  height: 100vh;
      display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 90px);
}
.about p{
  font-size: 16px;
  line-height: 28px;
}
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-list ul{
  margin: 10px 0 25px 0;
  padding: 0;
  list-style-type: none;
}
.about-list ul li{
  margin: 20px 0;
  padding: 0 0 0 25px;
  background: url('../img/list-arrow.svg') no-repeat;
  background-position: 0 0;
}
.mt-n3{
  margin-top: -40px;
}


/*--------------------------------------------------------------
# features Section
--------------------------------------------------------------*/
.features {
  background-repeat: no-repeat; 
  background-image: url('../img/features-middle-bg.webp');
  background-position: center center; 
  position: relative;
}
.features h1{
  text-align: center;
}
.features-btns{
  width:226px;
  height: 257px;
  position: absolute;
  background: url('../img/features-buttons-bg.webp') no-repeat;
  z-index: 50;
   transition:
    transform 0.4s ease,
    filter 0.4s ease;
}
.features-btns img{
  width: 20%;
  height: auto;
}
.features-btns:hover{
  background: url('../img/features-buttons-bg-over.webp') no-repeat;
  transform: scale(1.05); /* smooth zoom */
  filter: brightness(1.1); /* slight glow */
}
.features-btns:hover h2{
  color: #000 !important;
}
:root {
  --gap-x: 12%;   
  --gap-y: 10%;   
}

.top-left {
  top: var(--gap-y);
  left: var(--gap-x);
}

.top-right {
  top: var(--gap-y);
  right: var(--gap-x);
}

.bottom-left {
  bottom: var(--gap-y);
  left: var(--gap-x);
}

.bottom-right {
  bottom: var(--gap-y);
  right: var(--gap-x);
}

.circle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;  
}

.circle-container {
  position: relative;
  width: 90vw;  
  max-width: 686px; 
  aspect-ratio: 686 / 676; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  position: absolute;
  object-fit: cover;  
}

.small {
  width: 46%;  
  height: 46%;
  animation: rotateCW 15s linear infinite;
}

.medium {
   width: 74%;  
  height: 74%;
  animation: rotateCCW 25s linear infinite;
}

.large {
  width: 100%;  
  height: 100%;
  animation: rotateCW 70s linear infinite;
}
.fetures-character {
  max-width: 100%;   
  max-height: 100%;  
  width: auto;       
  height: auto;     
  min-width: 200px; 
  min-height: auto; 
}
/* Rotation animations */
@keyframes rotateCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}


/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  background-color: var(--background-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 15px;
  padding: 10px 5px;
  transition: 0.3s;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--default-font);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.menu .tab-content .menu-item {
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: var(--default-font);
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact{
  background: url('../img/contact-bg.webp') no-repeat;
  
}
.contact h1{
  text-align: center;
}
.contact p{
  text-align: center;
}

.contact-field-main{
  background: url('../img/contact.webp') no-repeat;
  width: 883px;
  height: 460px;
  padding: 80px;
  margin: 0 auto;
  position: relative;
}
.form-group textarea{
  background-color: rgba(100, 57, 42, 0.3);
  height: 140px;
  border: 1px solid #F2B102;
  border-radius: 0;
  color: #fff;
}

.form-group input{
  background-color: rgba(100, 57, 42, 0.3);
  height: 48px;
  border: 1px solid #F2B102;
  border-radius: 0;
  color: #fff;
}

.form-control:focus {
  background-color: #64392A4D; 
  box-shadow: none; 
  color: #fff;           
}
.form-control::placeholder {
  color: #fff;       
  opacity: 0.7;  
}  

.submit-btn {
  background: #f1b600; /* yellow color */
  color: black;
  font-weight: bold;
  font-family: var(--heading-font);
  font-size: 24px;
  width: 202px;
  padding-bottom: 8px;
  border-radius: 0;
  display: inline-block;
  clip-path: polygon(
    0 0,     
    100% 0,  
    100% 80%,
    95% 100%,
    0 100%  
  );
}
.submit-btn:hover{
  background: #f1b600; /* yellow color */
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

     body.no-scroll {
      overflow: hidden;
    }

      .blur-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(12px);
       -webkit-backdrop-filter: blur(12px);
      z-index: 1050;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      overflow: auto; /* allows scrolling inside if needed */
      padding: 40px;
    }

    .blur-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* Content scaling animation */
  .overlay-content {
    max-height: calc(100vh - 80px); /* 40px top + 40px bottom gap */
    overflow-y: auto;
    padding: 40px 0px; /* ✅ adds vertical and horizontal breathing space */
    max-width: 900px;
    color: white;
    transform: scale(0.95);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-sizing: border-box;
  }

    .blur-overlay.active .overlay-content {
      transform: scale(1);
      opacity: 1;
    }

    .overlay-content h2 {
      color: #ffcc00;
      font-weight: bold;
    }

    .overlay-close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 32px;
      color: #F2B102;
      cursor: pointer;
    }
    .feature-details-ico{
      padding-right: 34px;
      padding-top: 10px;
    }

    @media (max-width: 768px) {
      .overlay-content {
        padding: 20px;
      }
    }


/* Medium screens (laptops/tablets landscape) */
@media (max-width: 1200px) {
.features {
    height:auto;
}
.contact {
    height:auto;
}
  .banner-characters .character1 {
    position: absolute;
    width: 212px;
    height: 523px;
    top: -0px;
    right: 222px;
    background-size: contain;
    background-image: url(../img/banner-characters1.webp);
}
.banner-characters .character2 {
    position: absolute;
    width: 339px;
    height: 537px;
    top: -25px;
    right: 30px;
    background-size: contain;
    background-image: url(../img/banner-characters2.webp);
}

.custom-banner-text h1 {
    font-size: 57px;
    margin-bottom: 10px;
    line-height: 75px;
}
.custom-banner-text span {
    font-size: 90px;
}

.about {
    background-image: url(../img/about-bg.webp);
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
    .banner-characters {
        position: relative;
        min-height: 133px;
    }
.banner-characters .about-elemt1 {
        position: absolute;
        width: 158px;
        height: 324px;
        top: 0px;
        left: -42px;
        z-index: 75;
        background-size: 100%;
        background-image: url(../img/about-elemt1.webp);
    }
.banner-characters .about-elemt2 {
        position: absolute;
        width: 147px;
        height: 166px;
        top: 113px;
        left: -160px;
        background-size: 100%;
        background-image: url(../img/about-elemt2.webp);
    }
    .banner-characters .about-elemt3 {
        position: absolute;
        width: 225px;
        height: 93px;
        top: -57px;
        left: -23px;
        background-size: 100%;
        background-image: url(../img/about-elemt3.webp);
    }

    h1 {
    font-size: 38px;
}
.about p {
    font-size: 14px;
    line-height: 24px;
}

.about-list ul li{
  font-size: 14px;
}
}

/* Tablets portrait */
@media (max-width: 992px) {

  .down-arrow {
    position: absolute;
    bottom: 3px;
    left: 54%;
    transform: translateX(-50%);
    animation: jump 1.5s ease-in-out infinite;
}
  .features {
    height:auto;
}
.contact {
    height:auto;
}

.navmenu ul {
   right: 20px !important;
   top: 50px;
   width: 250px;
   inset: 60px 0 auto auto;
    }
    
    .hero {
    height: auto;
}

.custom-banner-text {
    padding: 150px 0 50px 0;
}

        .banner-characters .character2 {
        position: absolute;
        width: 306px;
        height: 435px;
        top: 101px;
        right: -126px;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../img/banner-characters2.webp);
    }

         .banner-characters .character1 {
         position: absolute;
        width: 176px;
        height: 523px;
        top: 110px;
        right: 118px;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../img/banner-characters1.webp);
    }
        .custom-banner-text h1 {
        font-size: 42px;
        line-height: 62px;
    }
        .custom-banner-text span {
        font-size: 66px;
    }
    .custom-banner-text p {
    font-size: 16px;
}

    .banner-characters {
        min-height: 450px;
        align-items: normal !important;

    }
        .banner-characters .about-elemt3 {
        position: absolute;
        width: 225px;
        height: 93px;
        top: -20px;
        left: -23px;
        background-size: 100%;
        background-image: url(../img/about-elemt3.webp);
    }
        .banner-characters .about-elemt1 {
        position: absolute;
        width: 158px;
        height: 324px;
        top: 45px;
        left: -42px;
        z-index: 75;
        background-size: 100%;
        background-image: url(../img/about-elemt1.webp);
    }
    .banner-characters .about-elemt2 {
        position: absolute;
        width: 147px;
        height: 166px;
        top: 150px;
        left: -160px;
        background-size: 100%;
        background-image: url(../img/about-elemt2.webp);
    }


:root {
  --gap-x: 0%;   
  --gap-y: 8%;   
}

    .contact-field-main {
        background: url(../img/contact.webp) no-repeat;
        background-size: contain;
        width: 92%;
        height: 363px;
        padding: 25px;
        margin: 0 auto;
    }

    .txt-area{
  margin-top: 25px !important;
}
}

/* Large phones */
@media (max-width: 768px) {
  
.features {
    height:auto;
}
.contact {
    height:auto;
}

:root {
  --gap-x: 5%;   
  --gap-y: 2%;   
}
.features-btns {
    width: 226px;
    height: 257px;
    float: left;
    position: static;
    background: url(../img/features-buttons-bg.webp) no-repeat;
    z-index: 50;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.fetures-character {
    max-width: 82%;
    max-height: 83%;
    width: auto;
    height: auto;
    min-width: 141px;
    min-height: auto;
}
.circle-container {
    position: relative;
    width: 70vw;
    max-width: 539px;
    aspect-ratio: 398 / 335;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.form-group input{
  margin-bottom: 15px;
}
.txt-area{
  margin-top: 0 !important;
}
    .contact-field-main {
        background: url(../img/contact.webp) no-repeat;
        background-size: contain;
        width: 100%;
        height: 363px;
        padding: 25px;
        margin: 0 auto;
    }
        .banner-characters {
        min-height: 485px;
        align-items: normal !important;
    }

            .banner-characters .character1 {
        position: absolute;
        width: 167px;
        height: 374px;
        top: 129px;
        right: 130px;
        background-size: contain;
        background-image: url(../img/banner-characters1.webp);
    }

            .banner-characters .character2 {
        position: absolute;
        width: 216px;
        height: 383px;
        top: 116px;
        right: -26px;
        background-size: contain;
        background-image: url(../img/banner-characters2.webp);
    }

    .form-group textarea {
    background-color: rgba(100, 57, 42, 0.3);
    height: 99px;
    border: 1px solid #F2B102;
    border-radius: 0;
    color: #fff;
}

}

@media (max-width: 750px) {
 .contact-field-main {
        background: none;
        background-size: contain;
        width: 100%;
        height: 363px;
        padding: 0px 15px;
        margin: 0 auto;
    }
    .overlay-content{
  display: block !important;
  padding: 0 !important;
}
.blur-overlay{
  padding: 24px !important;
}
.overlay-close {
    top: 0px;
    right: 12px;
}
.features-btns{
  margin: 0 auto !important;
  float: none;
}
.contact {
    height:auto;
}
.captcha-button{
  display: block !important;
}
.captcha-main{
  position: static !important;
  margin-bottom: 15px;
}
}

/* Small phones */
@media (max-width: 480px) {
.features {
    height:auto;
}
.overlay-content{
  display: block !important;
  padding: 0 !important;
}
.blur-overlay{
  padding: 24px !important;
}
.overlay-close {
    top: 0px;
    right: 12px;
}
.features-btns{
  margin: 0 auto !important;
  float: none;
}
.contact {
    height:auto;
}
.captcha-button{
  display: block !important;
}
.captcha-main{
  position: static !important;
  margin-bottom: 15px;
}
.form-group textarea {
    background-color: rgba(100, 57, 42, 0.3);
    height: 99px;
    border: 1px solid #F2B102;
    border-radius: 0;
    color: #fff;
}

.contact-field-main {
        background: none;
        background-size: contain;
        width: 100%;
        height: 363px;
        padding: 0px 15px;
        margin: 0 auto;
    }

           .banner-characters .character1 {
        position: absolute;
        width: 148px;
        height: 355px;
        top: -2px;
        right: 177px;
        background-size: contain;
        background-image: url(../img/banner-characters1.webp);
    }

           .banner-characters .character2 {
        position: absolute;
        width: 234px;
        height: 380px;
        top: -21px;
        right: -21px;
        background-size: contain;
        background-image: url(../img/banner-characters2.webp);
    }

}

.captcha-main{
  position: absolute;
  top: 5px;
  left: 0;
}

.success-message{
  width: 100%;
  padding: 15px 25px;
  background: #B6382C;
  position: fixed;
  border: 2px solid #F0AF03;
  left: 0;
  top: 0; 
  z-index: 9999;
  text-align: center;
}
.success-message h1{
  font-size: 40px
}

.ok-button {
  background: #f1b600;
    color: black;
    font-weight: bold;
    font-family: var(--heading-font);
    font-size: 24px;
    width:105px;
    padding-bottom: 8px;
    border-radius: 0;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 95% 100%, 0 100%);
    margin-bottom: 10px;
}

.ok-button:hover {
  background-color: #d99802;
}
.blurred {
  filter: blur(5px);
  pointer-events: none; 
  user-select: none;
}



/*--------------------------------------------------------------
# Privacy Policy & End User Agreement Sections
--------------------------------------------------------------*/

/* Scroll Width */
::-webkit-scrollbar {
  width: 8px;
}

/* Scroll Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/*Scroll Handle */
::-webkit-scrollbar-thumb {
  background: #f1b600;
  border-radius: 10px;
}

/*Scroll Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #f1b600;
}

.subsec-container small {
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}
.subsec-container .sub-head {
  color: var(--heading-color);
  font-weight: 600;
  padding: 0px;
  font-size: 18px;
}

.subsec-container .inner-sub-head {
  color: var(--heading-color);
  font-weight: 500;
  padding: 0px;
  font-size: 17px;
}

.subsec-container .pd-lft-35 {
  padding-left: 35px !important;
}

.subsec-container ul {
  list-style: disc;
  padding-left: 30px;
  margin-top: 0;
}
.subsec-container ul li {
  font-size: 16px;
  font-weight: 400;

  padding-bottom: 5px;
}

.subsec-container ul li span {
  font-weight: 500;
  color: var(--heading-color);
}

.yellow-text {
  color: var(--heading-color);
}