*,::before,::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Thin.ttf);
    font-weight: 100;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-ExtraLight.ttf);
    font-weight: 200;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Light.ttf);
    font-weight: 300;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Medium.ttf);
    font-weight: 500;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
    font-weight: 600;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-ExtraBold.ttf);
    font-weight: 800;
}
@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Black.ttf);
    font-weight: 900;
}

body {
    font-family: var(--bodyFont);
    font-size: 16px;
}
:root{
    --primaryColor:#f4b60e;
    --secondaryColor: #000000;
    --textColor:#2e2d2d ;
    --whiteColor: #ffffff;
    --transition:0.3s;
    --borderRadius:10px;
    --bodyFont: "Poppins"; 
    --iconFont: "Font Awesome 5 Free"; 
}
* {
    scrollbar-width: thin;
    scrollbar-color: #f4b60e;
}
.bg-secondary {
    background-color: #EBF0F4 !important;
}
.border, .border-end, .border-start, .border-top, .border-bottom {
    border-color: rgb(175 175 175 / 30%) !important;
}
.btnPrimary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  border-radius: var(--borderRadius);
  background-color: var(--primaryColor);
  color:var(--secondaryColor);
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btnPrimary .icon {
  width: 30px;
  height: 30px;
  background-color: var(--whiteColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.btnPrimary .icon i {
  font-size: 13px;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.btnPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.btnPrimary:hover .icon {
  transform: translateX(6px) scale(1.1);
}
.btnPrimary:hover .icon i {
  transform: translateX(3px);
}
.btnPrimary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background-color: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
}
.btnPrimary:hover::before {
  animation: shine 0.7s;
}

.object-cover{
   object-fit: cover;
   object-position: center;
}


@keyframes shine {
  100% {
    left: 120%;
  }
}
h1,h2,h3,h4,h5{
    color: var(--secondaryColor);
}
h2{
    font-size: 36px;
    font-weight: 600;
}
h3{
    font-size: 20px;
    font-weight: 600;
}
h4{
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
h5{
    font-size: 16px;
    font-weight: 700;
}
header,section,.headerTop,.headerBottom,footer,.footerMiddle,.copyright-wrapper{
    width: 100%;
    float: left;
}
p{
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: var(--textColor);
}
a{
    display: inline-block;
    text-decoration: none;
    color: var(--secondaryColor);
    font-weight: 500;
    font-size: 15px;
}
ul.contentlist li{
    position: relative;
    padding: 5px 0 5px 30px;
    line-height: 30px;
    color: var(--secondaryColor);
    font-size: 16px;
    font-weight: 500;
}
ul.contentlist li:hover{
    color: var(--primaryColor);
}
ul.contentlist li::before{
    position: absolute;
    content: "\f35a";
    top: 6px;
    left: 0;
    font-family: var(--iconFont);
    font-size: 16px;
    font-weight: 900;
    color: var(--primaryColor);
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.royal-title {
  position: relative;
  max-width: 600px;
}
.royal-title h2{
  font-size: 36px;
}
.royal-title .sub-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondaryColor);
  margin-bottom: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  background-color: var(--whiteColor);
}
.royal-title h2 span {
  color: var(--primaryColor);
}
.royal-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 80px;
  height: 4px;
  background: var(--primaryColor);
}

.royal-title h2::before {
  content: "";
  position: absolute;
  left: 90px;
  bottom: -15px;
  width: 20px;
  height: 4px;
  background-color: var(--secondaryColor);
}

.royal-title::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 5px;
  height: 60px;
  background-color: var(--primaryColor);
  border-radius: 3px;
}
/* .royal-title::after {
  content: "ROYAL";
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 90px;
  font-weight: 900;
  color: rgb(255 246 222);
  z-index: -1;
} */

section {
    padding: 70px 0;
}
header .headerBottom {
  width: 100%;
  transition: var(--transition);
  z-index: 999;
}

.headerBottom.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  animation: slideDown 0.4s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
header .headerTop{
  position:relative;
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  padding:10px 0;
  z-index: 1;
}
header .headerTop .container{
  position:relative;
  z-index:2;
}
header .headerTop .top-left{
  display:flex;
  gap:25px;
  font-size:14px;
  overflow: hidden;
}
header .headerTop .top-left span{
  display:flex;
  align-items:center;
  gap:6px;
}
header .headerTop .top-left span {
    display: flex;
    align-items: center;
    gap: 10px;
}
header .headerTop .top-left a{
  color: var(--whiteColor);
  font-size: 14px;
}

header .headerTop .top-left i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primaryColor), #d99a00, #fff707);
    transition: all 0.3s ease;
}
header .headerTop .top-right a{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  transition: var(--transition);
  border:1px solid rgba(255,255,255,0.2);
}

header .headerTop .top-right a:hover{
  background-color: var(--whiteColor);
  color: var(--secondaryColor);
  transform:translateY(-3px);
}

header .headerBottom > .navbar>.container, header .headerTop > .container{
    max-width: 1290px;
}
header .headerTop .divider {
    margin: 0 15px;
  border-left: 1px solid #555;
  height: 20px; 
  display: inline-block;
}
header .headerTop .top-right ul.socialLinks{
    display: flex;
    align-items: center;
    gap: 15px;
}
header .headerTop .top-right ul.socialLinks li i{
  transition: var(--transition);
  color: #bbb;
}

header .headerTop .top-right ul.socialLinks li i:hover {
  color: var(--primaryColor);
}

header .headerTop .top-right.marquee-bar .marquee-track span  {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--whiteColor);
}


header .headerBottom .premium-navbar {
  background-color: var(--whiteColor); 
  padding: 5px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
  z-index: 10;
}
header .headerBottom .premium-navbar.scrolled {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
header .headerBottom a.navbar-brand img {
  height: 70px;
  transition: var(--transition);
}
header .headerBottom a.navbar-brand img:hover {
  transform: scale(1.05);
}
header .headerBottom .navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondaryColor);
  border-radius: var(--borderRadius);
  background-color:rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: var(--transition);
  overflow: hidden;
}
header .headerBottom .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primaryColor);
   border-radius: var(--borderRadius);
  transform: scale(0);
  transition: transform 0.35s ease;
  z-index: -1;
}
header .headerBottom .navbar-nav .nav-link:hover::before {
  transform: scale(1);
}
header .headerBottom .navbar-nav .nav-link:hover {
  color: var(--secondaryColor);
  transform: translateY(-2px);
}
header .headerBottom .navbar-nav .nav-link.active {
  color: var(--whiteColor);
}
header .headerBottom .navbar-nav .nav-link.active::before {
  transform: scale(1);
}


header .headerBottom .navbar-nav .nav-link:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
header .headerBottom .search-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .headerBottom .search-btn {
  width: 45px;
  height: 45px;
  border-radius: var(--borderRadius);
  border: none;
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
header .headerBottom .search-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--borderRadius);
  background-color: var(--secondaryColor);
  animation: pulse 1.8s infinite;
  z-index: -1;
}


@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.marquee-track {
    animation: scrollText 12s linear infinite;
}
.marquee-track {
    animation-direction: reverse;
}
header .headerBottom .search-btn:hover {
  transform: scale(1.1);
}
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
}
.search-popup.active {
  opacity: 1;
  visibility: visible;
}
header .headerBottom .search-btn:active {
  transform: scale(0.95);
}
.search-popup form,
.search-popup {
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-popup .query_button.pull-left {
  width: 300px;
  max-width: 90%;
  padding: 16px 25px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.search-inner {
  position: relative;
}
.search-popup .query_button.pull-left:focus {
  border: 2px solid var(--primaryColor);
  box-shadow: 0 0 15px rgba(0,0,0,0.2),
              0 0 10px var(--primaryColor);
}
.search-inner i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primaryColor);
  font-size: 17px;
  z-index: 9999;
}

.search-popup .query_button.pull-left::placeholder {
  color: #888;
  letter-spacing: 0.5px;
}
.search-popup .query_button.pull-left:focus {
  width: 400px;
  background-color: var(--whiteColor);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
header .headerBottom .navbar-toggler {
  color: var(--secondaryColor);
  border: 2px solid var(--primaryColor);
  background-color: var(--whiteColor);
  font-size: 22px;
  padding: 8px 20px;
}

header .headerBottom .custom-dropdown{
  position:relative;
}
header .headerBottom .custom-dropdown a.nav-link .fas.fa-chevron-down{
  margin-left: 7px;
  font-size: 12px;
  transition: all 0.3s ease;
}
header .headerBottom .custom-dropdown:hover a.nav-link .fas.fa-chevron-down{
  transform: rotate(180deg);
  color: var(--secondaryColor);
}

header .headerBottom .mega-dropdown{
  position:absolute;
  top:100%;
  left:0;
  width:500px;
  padding:20px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  background-color:rgba(0,0,0,0.95);
  border-radius:12px;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:0.4s;
}
header .headerBottom .custom-dropdown:hover .mega-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

header .headerBottom .mega-dropdown a{
  display:block;
  padding:10px;
  border-radius:8px;
  color:#ccc;
  transition: var(--transition);
}

header .headerBottom .mega-dropdown a i{
  margin-right:8px;
  color:var(--primaryColor);
}

header .headerBottom .mega-dropdown a:hover{
  background-color:rgba(244,182,14,0.1);
  color:var(--whiteColor);
  transform:translateX(5px);
}



header .headerBottom .dropdown-preview{
  position:absolute;
  right:-150px;
  top:50%;
  transform:translateY(-50%);
  width:200px;
  height:140px;
  border-radius:10px;
  overflow:hidden;
}

header .headerBottom .dropdown-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
}

section.mainBanner .carousel-control-next, section.mainBanner .carousel-control-prev{
  display: none;
}



@keyframes zoomImg{
  0%{transform:scale(1);}
  100%{transform:scale(1.15);}
}

section.mainBanner {
  position: relative;
}
section.mainBanner .carousel-item,
section.mainBanner .hero-split {
  min-height: auto;
}
section.mainBanner .hero-split {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
section.mainBanner .hero-content {
  position: relative;
  z-index: 5;
  padding: 50px 30px;
  max-width: 100%;
}
.bg1 {
  background-image: url('../img/slider/slider-1.webp');
}

.bg2 {
  background-image: url('../img/slider/slider-2.webp');
}

.bg3 {
  background-image: url('../img/slider/slider-3.webp');
}
section.mainBanner .hero-content h1{
  font-size: 40px;
  font-weight:900;
  line-height:1.1;
  margin:  0 0 20px;
  background: linear-gradient(90deg, var(--whiteColor), var(--primaryColor));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing:1px;
}
section.mainBanner .hero-content h1::after{
  content:'';
  display:block;
  width:80px;
  height:4px;
  margin-top:15px;
  background: linear-gradient(to right, var(--primaryColor), transparent);
}
section.mainBanner .hero-content h2{
  font-size:20px;
  font-weight:500;
  color:#ccc;
  margin: 0 0 25px;
  line-height:1.4;
  max-width: 90%;
}
section.mainBanner .hero-left .hero-content h2 span{
  color:var(--primaryColor);
  font-weight:600;
  position:relative;
}
section.mainBanner .hero-left .hero-content h2 span::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-3px;
  width:100%;
  height:2px;
  background-color:var(--primaryColor);
  opacity:0.5;
}
section.mainBanner .hero-left .hero-content p{
  font-size:17px;
  color:#aaa;
  line-height:1.7;
  position:relative;
  padding-left:20px;
  max-width: 90%;
}
section.mainBanner .hero-left .hero-content p::before{
  content:'';
  position:absolute;
  left:0;
  top:5px;
  width:3px;
  height:80%;
  background:linear-gradient(to bottom, var(--primaryColor), transparent);
}
section.mainBanner .hero-left .reveal{
  opacity:0;
  transform:translateY(40px);
  animation: revealUp 1s forwards;
}

.delay1{animation-delay:0.3s;}
.delay2{animation-delay:0.6s;}

@keyframes revealUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.delay1{animation-delay:0.3s;}
.delay2{animation-delay:0.6s;}
.delay3{animation-delay:0.9s;}

@keyframes revealUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

section.mainBanner .carousel-control-prev span,
section.mainBanner .carousel-control-next span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background-color: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,0.2);
  color: var(--whiteColor);
  transition: var(--transition);
  display: none;
}
section.mainBanner .carousel-control-prev i,
section.mainBanner .carousel-control-next i{
  font-size:18px;
}
section.mainBanner .carousel-control-prev span:hover,
section.mainBanner .carousel-control-next span:hover{
  background-color:var(--primaryColor);
  color: var(--secondaryColor);
  transform:scale(1.1);
  box-shadow:0 0 20px rgba(244,182,14,0.6);
}









section.about-section .about-content .line {
    width: 1px;
    flex-shrink: 0;
    background-color:rgba(118, 118, 118, .3);
}
section.about-section .about-content .about-content-right {
    flex: 0 0 100%;
    width: 100%;
}
section.about-section .about-content {
    flex-direction: column;
}
section.about-section .about-content .about-content-left {
    flex: 0 0 90%;
    width: 90%;
}
section.about-section .about-content .about-content-left span.numberYears{
    font-size: 20px;
    color: #22292F;
    line-height: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

section.about-section .about-content .about-content-right {
    flex: 0 0 100%;
    width: 100%;
}
section.about-section .about-content .about-content-left h2 {
    margin: 30px 0 0;
    font-size: 160px;
    line-height: 1;
    color: var(--primaryColor);
}
section.about-section .cta-card-two {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 200px;
    height: 200px;
    margin: 80px auto 0;
    background-color: var(--whiteColor);
    border-radius: 50%;
    text-align: center;
    transition: all .35s ease;

    
}
section.about-section .cta-card-two h2 {
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--secondaryColor);
    transition: all .35s ease;
}

section.about-section .cta-card-two h3{
  font-size: 18px;
}
section.about-section .cta-card-two h5 {
    color: var(--textColor);
    transition: all .35s ease;
}
section.about-section .cta-card-two .bg-border {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 1px solid rgba(118, 118, 118, .3);
    border-radius: 50%;
    z-index: -1;
    transition: all .35s ease;
}
section.about-section .cta-card-two .bg-border::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    opacity: 0;
    transition: all .35s ease;
}
section.about-section .cta-card-two:hover,
section.about-section .cta-card-two:focus {
    background-color: var(--primaryColor);
}

section.about-section .cta-card-two:hover h2,
section.about-section .cta-card-two:hover h5,
section.about-section .cta-card-two:focus h2,
section.about-section .cta-card-two:focus h5 {
    color: var(--secondaryColor);
}

section.about-section .cta-card-two:hover .bg-border,
section.about-section .cta-card-two:focus .bg-border {
    border-color: var(--primaryColor);
    transform: rotate(45deg);
}
section.about-section .fancy-img {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 60% 40% 55% 45% / 40% 60% 40% 60%;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  animation: float 6s ease-in-out infinite;
  border: 4px solid rgba(255,255,255,0.2);
}
section.about-section .fancy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom 50s ease-in-out infinite;
}
section.about-section .fancy-img::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--primaryColor), transparent, var(--secondaryColor));
  z-index: -1;
  animation: rotateGlow 40s linear infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes zoom {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
section.about-section .about-content-right img{
    border-radius: var(--borderRadius);
}

section.about-section .cta-card-two:hover .bg-border::after,
section.about-section .cta-card-two:focus .bg-border::after {
    opacity: 1;
}

section.contact-section{
    position: relative;
    z-index: 1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0 40px;
}
section.contact-section:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 92px;
    background-color: var(--whiteColor);
}
section.contact-section:after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 92px);;
    background-color: rgb(0 0 0 / 59%);
}
section.contact-section .contact-form{
    padding: 40px;
    background-color: var(--whiteColor);
    border-radius: 18px 18px 0 0;
}
section.contact-section .contact-form .form-group{
    position: relative;
    z-index: 1;
}
section.contact-section .contact-form .form-group label{
    position: absolute;
    top: 11px;
    right: 13px;
    z-index: 2;
    color: #22292F;
}
section.contact-section .form-control {
    border-radius: 8px;
    background-color: var(--whiteColor);
    height: 50px;
    font-size: 16px;
    border: 0;
    padding: 8px 20px;
    color: var(--textColor);
}

section.contact-section .submit-btn {
    padding: 16px 40px;
    background-color: var(--primaryColor);
    border-radius: 0 0 18px 18px;
}
section.contact-section .contact-form .productDrop {
   width: 100%;
    height: 55px;
    padding: 0 45px 0 15px;
    border: none;
    border-radius: 8px;
    background-color: #f1f1f1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--textColor);
    font-size: 15px;
    cursor: pointer;
    background-image: url("https://cdn-icons-png.flaticon.com/512/32/32195.png");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}
section.contact-section .form-control:focus,section.contact-section .contact-form .productDrop:focus{
    outline: none;
    background-color: var(--primaryColor);
    background-color: var(--whiteColor);
    box-shadow: 
        0 0 0 2px rgba(212,175,55,0.2),
        0 8px 20px rgba(0,0,0,0.08);

    transform: translateY(-1px);
}

section.contact-section  textarea.form-control {
    min-height: 130px;
    resize: none;
}
section.contact-section .btnPrimary{
    border: 1px solid var(--whiteColor);
    background-color: var(--whiteColor);
    color: var(--secondaryColor);
    padding: 16px 32px;
    font-size: 16px;
}


section.contact-section .contact-right-box {
    position: relative;
    padding: 40px;
    border-radius: 25px;
    background-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: 0.4s;
}
section.contact-section .contact-right-box::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 204, 0, 0.2);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    filter: blur(80px);
}
section.contact-section .product-highlight h3 {
    color: var(--whiteColor);
    font-size: 24px;
    margin-bottom: 10px;
}

section.contact-section .product-highlight p {
    color: #ccc;
    font-size: 14px;
}
section.contact-section .features-list {
    margin: 30px 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.contact-section .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    background-color: rgba(255,255,255,0.03);
    transition: 0.3s;
}

section.contact-section .feature-item i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffcc00;
    color: var(--secondaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
section.contact-section .feature-item:hover {
    transform: translateX(10px);
    background-color: rgba(255,255,255,0.08);
}
section.contact-section .feature-item h5 {
    color: var(--whiteColor);
    margin: 0;
    font-size: 16px;
}

section.contact-section .feature-item p {
    color: #aaa;
    font-size: 13px;
    margin: 0;
}
section.contact-section .product-image {
    margin: 30px 0 0;
    text-align: center;
}

section.contact-section .product-image img {
    max-width: 100%;
    transition: 0.5s;
}
section.contact-section .product-image img {
    animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
    0% { transform: translateY(0px);}
    50% { transform: translateY(-10px);}
    100% { transform: translateY(0px);}
}
.contact-right-box:hover img {
    transform: scale(1.05);
}
section.contact-section .royal-title h2::before{
    background-color: var(--whiteColor);
}

section.content-inner {
    padding: 100px 0;
    position: relative;
    z-index: 0;
    background-position: center;
    background-size: cover;
}
section.content-inner.overlay-black-light::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondaryColor);
    opacity: 0.6;
    z-index: -1;
}
section.content-inner .dz-card.style-10 {
    position: relative;
    border-radius: 15px;
    transition: all 0.3s;
}
section.content-inner .dz-card.style-10::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(180deg, rgba(0, 0, 0, 0) 45.45%, rgb(0 0 0 / 95%) 100%);
    z-index: 1;
    border-radius: 15px;
}
section.content-inner .dz-media, section.content-inner .dz-post-media {
    position: relative;
    overflow: hidden;
}
section.content-inner .dz-card.style-10 .dz-media {
    border-radius: 15px;
}
section.content-inner .dz-card.style-10 .dz-media img{
    height: 250px;
    object-fit: cover;
    object-position: center;
}
section.content-inner .dz-card.style-10 .dz-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    z-index: 11;
}
section.content-inner .dz-card.style-10 .dz-info .dz-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 5px;
}
section.content-inner .dz-card.style-10 .dz-info .location {
    color: var(--whiteColor);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 20px;
}
section.content-inner .dz-card.style-10 .btn-primary{
    background-color: var(--primaryColor);
    border: none;
}
section.content-inner .dz-card .dz-media {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
section.content-inner .section-head-content .royal-title h2::before{
  background-color: var(--whiteColor);
}

section.content-inner .dz-card .dz-media img {
    transition: 0.6s ease;
}

section.content-inner .dz-card:hover .dz-media img {
    transform: scale(1.1);
}

section.content-inner .dz-card .dz-media::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
}

section.content-inner .dz-card:hover .dz-media::after {
    left: 125%;
    transition: 0.8s;
}

section.content-inner .dz-card.style-10 .dz-info .dz-title a {
    color: var(--whiteColor);
}

section.cta-wrap .cta-strip-box {
    position: relative;
    background: linear-gradient(145deg, #000, #0d0d0d);
    border-radius: var(--borderRadius);
    padding: 55px 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.4),
        inset 0 0 40px rgba(255,255,255,0.03);
}
section.cta-wrap .cta-strip-box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent 30%, 
        rgba(255,255,255,0.15), 
        transparent 70%);
    top: 0;
    left: -100%;
    transform: skewX(-25deg);
    animation: lightSweep 5s infinite linear;
}
section.cta-wrap .cta-strip-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    padding: 1.5px;
    background: linear-gradient(130deg, var(--primaryColor), #fff, var(--primaryColor));
    background-size: 300%;
    animation: borderMove 6s linear infinite;

    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
     mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}
section.cta-wrap .cta-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primaryColor), transparent 70%);
    filter: blur(60px);
    opacity: 0.4;
    z-index: -1;
}

section.cta-wrap .blob1 {
    top: -100px;
    right: -80px;
    animation: float1 8s ease-in-out infinite;
}

section.cta-wrap .blob2 {
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, #fff, transparent 70%);
    animation: float2 9s ease-in-out infinite;
}
section.cta-wrap .cta-strip-text h4 {
    color: var(--whiteColor);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

section.cta-wrap .cta-strip-text p {
    color: #bbb;
    margin: 0;
    font-size: 15px;
}
section.cta-wrap .cta-strip-btn {
    position: relative;
    background: linear-gradient(135deg, var(--primaryColor), #ffd54f);
    color: var(--secondaryColor);
    padding: 16px 32px;
    border-radius: var(--borderRadius);
    font-weight: 600;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(244,182,14,0.3);
}

section.cta-wrap .cta-strip-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    background: var(--primaryColor);
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
    animation: pulseGlow 2s infinite;
}

section.cta-wrap .cta-strip-btn:hover {
    transform: translateY(-6px) scale(1.07);
    box-shadow: 0 15px 40px rgba(244,182,14,0.6);
}
@keyframes lightSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes borderMove {
    0% {background-position: 0%;}
    100% {background-position: 300%;}
}

@keyframes float1 {
    0%,100% {transform: translateY(0);}
    50% {transform: translateY(30px);}
}

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

@keyframes pulseGlow {
    0% {opacity: 0.4;}
    50% {opacity: 0.8;}
    100% {opacity: 0.4;}
}
section.cta-wrap .cta-strip-box .mouse-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(244,182,14,0.25), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: 0.1s;
}
section.cta-wrap .cta-strip-box::before,
section.cta-wrap .cta-strip-box::after,
section.cta-wrap .cta-blob {
    pointer-events: none;
}

section.cta-wrap .cta-strip-btn {
    position: relative;
    z-index: 5;
}

section.cta-royal {
    background-image: url(../img/bg/common-banner.webp);
    background-size: cover;
}
section.cta-royal .cta-royal-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background-color: #ebf0f4;
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
section.cta-royal .cta-royal-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 30px;
    background: linear-gradient(
        1200deg,
        transparent,
        var(--primaryColor),
        transparent
    );
    background-size: 200% 100%;
    animation: borderRun 3s linear infinite;
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
        mask: linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;
}

@keyframes borderRun {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}



section.cta-royal .cta-left .tag {
    display: inline-block;
    background-color: rgba(0,0,0,0.05);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin:0 0 15px;
}

section.cta-royal .cta-royal-box .cta-left h2 {
    font-size: 30px;
    color: var(--secondaryColor);
    margin:0 0 15px;
}

section.cta-royal .cta-royal-box .cta-left p {
    color: #666;
}
section.cta-royal .cta-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 28px;
    border-radius: var(--borderRadius);
    background-color: var(--primaryColor);
    color: var(--secondaryColor);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
section.cta-royal .cta-main-btn::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 100%;
    background-color: rgba(255,255,255,0.4);
    top: 0;
    left: -50px;
    transform: skewX(-25deg);
    transition: var(--transition);
}
section.cta-royal .cta-main-btn:hover::before {
    left: 120%;
}

section.cta-royal .cta-main-btn:hover {
    transform: translateY(-4px);
}
section.cta-royal .cta-right {
    position: relative;
    text-align: center;
    min-width: 220px;
    background-color: var(--secondaryColor);
    border-radius: 50%;
    height: 217px;
    padding: 65px 0 0;
    border: 4px solid var(--primaryColor);
}

section.cta-royal .cta-right h3 {
    font-size: 28px;
    margin: 0 0 5px;
    color: var(--whiteColor);
}

section.cta-royal .cta-right p {
    color: var(--whiteColor);
}
section.cta-royal .cta-circle {
    position: absolute;
    width: 140px;
    height: 140px;
    background-color: rgba(255, 204, 0, 0.2);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    animation: floatCircle 5s infinite ease-in-out;
}

section.cta-royal .cta-circle.small {
    width: 80px;
    height: 80px;
    top: 60px;
    right: 60px;
    animation-delay: 2s;
}

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

section.royalTestimonial {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

section.royalTestimonial .royal-title h2 {
  color: var(--whiteColor);
  font-weight: 700;
}
section.royalTestimonial .royal-title h2::before{
    background-color: var(--whiteColor);
}
section.royalTestimonial .testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: var(--borderRadius);
  margin: 7px;
  padding: 35px 25px;
  color: var(--whiteColor);
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
}
section.royalTestimonial .testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: var(--primaryColor);
}
section.royalTestimonial  .subTag {
  display: inline-block;
  background-color: rgba(201,168,106,0.15);
  color: var(--primaryColor);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin: 0 0 15px;
}
section.royalTestimonial  .testimonial-card .des {
  font-size: 15px;
  line-height: 1.7;
  margin:0 0 20px;
  color: #ddd;
}
section.royalTestimonial .prof h5 {
  font-size: 18px;
  margin: 0;
  color: var(--whiteColor);
}

section.royalTestimonial .prof span {
  font-size: 13px;
  color: #aaa;
}
section.royalTestimonial .royal-slider .owl-nav {
  margin: 30px 0 0;
  text-align: center;
}

section.royalTestimonial .royal-slider .owl-dots .owl-dot span {
  background: #555;
}
section.royalTestimonial  .royal-slider .owl-dots .owl-dot.active span {
  background: var(--primaryColor);
}


section.royalFeatures.white-version {
  background-image: url(../img/bg/common-banner.webp);
    background-size: cover
}
section.royalFeatures.white-version .feature-card {
  background-color: var(--whiteColor);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid #eee;
  height: 100%;
  position: relative;
}
section.royalFeatures.white-version .feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primaryColor);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
section.royalFeatures.white-version .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background-color: var(--primaryColor);
  transition: 0.4s;
  border-radius: 20px 20px 0 0;
}

section.royalFeatures.white-version .feature-card:hover::before {
  width: 100%;
}
section.royalFeatures.white-version .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primaryColor);
  transition: 0.3s;
}

section.royalFeatures.white-version .feature-card:hover .icon {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
section.royalFeatures.white-version h4 {
  font-size: 18px;
  color: #0d1b2a;
  font-weight: 600;
  margin:0 0 10px;
  line-height: 22px;
}
section.royalFeatures.white-version p {
  font-size: 14px;
  line-height: 1.6;
}

section.industriesServe {
  background-color: var(--whiteColor);
}

section.industriesServe .industries-wrapper {
  display: flex;
  gap: 25px;
}

section.industriesServe .industry-card {
  position: relative;
  flex: 1;
  height: 300px;
  border-radius: var(--borderRadius);
  overflow: hidden;
  cursor: pointer;
}

section.industriesServe .industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
section.industriesServe .industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transition: 0.4s;
}
section.industriesServe .industry-card .overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0;
  transition: 0.4s;
}

section.industriesServe .industry-card .overlay h4 {
  font-size: 20px;
  color: var(--whiteColor);
  margin: 0 0 8px;
}

section.industriesServe .industry-card .overlay p {
  font-size: 14px;
  color:var(--whiteColor);
}
section.industriesServe .industry-card:hover .overlay p{
  color: var(--whiteColor);
}
section.industriesServe .industry-card:hover img {
  transform: scale(1.1);
}

section.industriesServe .industry-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

section.industriesServe .industry-card:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

section.royal-contact-creative {
  position: relative;
  background-image: url(../img/bg/contact-us-bg.webp);
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 90px 0;

}
section.royal-contact-creative .innerForm {
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

section.royal-contact-creative .innerForm:hover {
    transform: translateY(-5px);
}
section.royal-contact-creative .innerForm::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(120deg, #fef707, #ebc025, #e3d476);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: gradientBorder 6s ease infinite;
}

@keyframes gradientBorder {
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}
section.royal-contact-creative .formHeader span {
    color: var(--primaryColor);
    font-weight: 600;
    letter-spacing: 1px;
}
section.royal-contact-creative .formHeader h2 {
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: 30px;
    color: #222;
}
section.royal-contact-creative .form-group {
    position: relative;
    margin:0 0 25px;
}
section.royal-contact-creative .forms input, section.royal-contact-creative .forms textarea {
    width: 100%;
    padding: 14px 45px 14px 15px;
    border-radius: var(--borderRadius);
    border: 1px solid #e3e6ef;
    background-color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    resize: none;
}

section.royal-contact-creative .forms input:focus, section.royal-contact-creative .forms textarea:focus {
    border-color: var(--primaryColor);
    box-shadow: 0 0 10px rgba(106,17,203,0.2);
    outline: none;
}

section.royal-contact-creative .form-group label {
    position: absolute;
    left: 15px;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 14px;
    pointer-events: none;
    transition: var(--transition);
    background-color: rgba(255,255,255,0.85);
    padding: 0 5px;
}

section.royal-contact-creative .forms input:focus ~ label,
section.royal-contact-creative .forms input:not(:placeholder-shown) ~ label,
section.royal-contact-creative .forms textarea:focus ~ label,
section.royal-contact-creative .forms textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--primaryColor);
}
section.royal-contact-creative .form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbbbbb;
    transition: var(--transition);
}

section.royal-contact-creative .forms input:focus + i,
section.royal-contact-creative .forms textarea:focus + i {
    color: var(--primaryColor);
    transform: translateY(-50%) scale(1.2);
}
section.royal-contact-creative .submit {
    width: 100%;
    padding: 14px;
    border-radius: var(--borderRadius);
    border: none;
    background: linear-gradient(120deg,var(--primaryColor),#d2da61);
    color: var(--whiteColor);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

section.royal-contact-creative .submit::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.2);
    transition: 0.4s;
}

section.royal-contact-creative .submit:hover::after {
    width: 100%;
}

section.royal-contact-creative .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(207, 189, 56, 0.3);
}

section.breadcrumb-premium {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    padding: 120px 0 80px 0;
    text-align: center;
    overflow: hidden;
}
section.breadcrumb-premium .breadcrumb-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 25px;
    display: inline-block;
    padding: 18px 35px;
    border-radius: 12px;
    background-color: rgba(244,182,14,0.08);
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 30px rgba(244,182,14,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
section.breadcrumb-premium .breadcrumb-title:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(244,182,14,0.25);
}
section.breadcrumb-premium .breadcrumb-nav {
    font-size: 14px;
    margin: 10px 0 0;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.6);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
section.breadcrumb-premium .breadcrumb-link {
    font-weight: 500;
    transition: all 0.3s;
}
section.breadcrumb-premium .breadcrumb-link:hover {
    color: var(--primaryColor);
    transform: translateY(-2px);
}
section.breadcrumb-premium .breadcrumb-sep {
    margin: 0 8px;
    color: #999;
}
section.breadcrumb-premium .breadcrumb-current {
    font-weight: 700;
    color: var(--secondaryColor);
    position: relative;
}
section.breadcrumb-premium .breadcrumb-current::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primaryColor), #ffc94d);
    margin: 5px auto 0;
    border-radius: 2px;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    animation: floatShape 10s ease-in-out infinite;
}
section.breadcrumb-premium .shape1 { 
  width: 120px; 
  height: 120px; 
  background-color: var(--primaryColor); 
  top: -40px; 
  left: -40px; 
}
section.breadcrumb-premium .shape2 { 
  width: 200px; 
  height: 200px; 
  background: linear-gradient(45deg, var(--primaryColor), #ffc94d); 
  bottom: -80px; 
  right: -80px; 
}
section.breadcrumb-premium .shape3 { 
  width: 80px; 
  height: 80px; 
  background-color: var(--primaryColor); 
  top: 50%; 
  right: 10%; 
}
section.breadcrumb-premium .shape4 { 
  width: 60px; 
  height: 60px; 
  background: linear-gradient(45deg, #ffc94d, var(--primaryColor)); 
  top: 30%; 
  left: 15%; 
}
section.breadcrumb-premium {
    position: relative;
    overflow: hidden;
}
section.breadcrumb-premium .container,
section.breadcrumb-premium .breadcrumb-nav,
section.breadcrumb-premium .breadcrumb-link {
    position: relative;
    z-index: 5;
}

section.breadcrumb-premium .shape,
section.breadcrumb-premium .particle,
section.breadcrumb-premium .wave {
    pointer-events: none;
}

section.breadcrumb-premium .particle {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primaryColor);
    opacity: 0.3;
    animation: floatParticle 6s ease-in-out infinite;
}
section.breadcrumb-premium .particle1 { 
  top: 20%; 
  left: 25%; 
  animation-delay: 0s; 
}
section.breadcrumb-premium .particle2 { 
  top: 60%; 
  right: 20%; 
  animation-delay: 2s; 
}
section.breadcrumb-premium .particle3 { 
  top: 40%; 
  left: 70%; 
  animation-delay: 4s; 
}

@keyframes floatShape {
    0%,100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}
@keyframes floatParticle {
    0%,100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.3); }
}
section.breadcrumb-premium .wave {
    position: absolute;
    width: 200%;
    height: 200px;
    background-color: rgba(244,182,14,0.05);
    border-radius: 50%;
    animation: floatWave 12s ease-in-out infinite;
    z-index: 0;
}
section.breadcrumb-premium .wave1 { 
  top: 30%; 
  left: -50%;
 }
section.breadcrumb-premium .wave2 { 
  bottom: -40px; 
  right: -50%; 
  animation-delay: 6s; 
}

@keyframes floatWave {
    0%,100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
    50% { transform: translateX(20px) translateY(-10px) rotate(5deg); }
}

section.contact-panel-animated{
  overflow: hidden;
}
section.contact-panel-animated .contact-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}
section.contact-panel-animated .contact-card {
  background-color: rgba(244,182,14,0.05);
  backdrop-filter: blur(8px);
  border-radius: 25px;
  padding: 40px 30px;
  width: 300px;
  height: 280px;
  text-align: center;
  transition: transform 0.6s ease, background 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
section.contact-panel-animated .card-left { 
  transform: rotate(-3deg); 
}
section.contact-panel-animated .card-center { 
  transform: rotate(0deg); 
}
section.contact-panel-animated .card-right { 
  transform: rotate(3deg); 
}
section.contact-panel-animated .contact-card:hover {
  transform: translateY(-15px) scale(1.07);
  background-color: rgba(244,182,14,0.12);
}
section.contact-panel-animated .icon-circle {
  width: 70px;
  height: 70px;
  background: var(--primaryColor);
  color: var(--whiteColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}
section.contact-panel-animated .contact-card:hover .icon-circle {
  transform: scale(1.25) rotate(15deg);
  background: linear-gradient(135deg, var(--primaryColor), #ffc94d);
  box-shadow: 0 0 15px rgba(244,182,14,0.6);
}
section.contact-panel-animated .contact-card h3 {
  font-size: 22px;
  color: var(--secondaryColor);
  margin:0 0 6px;
  position: relative;
}
section.contact-panel-animated .contact-card:hover h3::after {
  content: '';
  display: block;
  width: 60%;
  height: 2px;
  background: var(--primaryColor);
  margin: 4px auto 0;
  border-radius: 2px;
  animation: slideUnderline 0.5s ease forwards;
}

@keyframes slideUnderline {
  0% { width: 0%; }
  100% { width: 60%; }
}

section.contact-panel-animated .contact-card p,section.contact-panel-animated .contact-card p a{
  font-size: 14px;
  color: #333;
  transition: color 0.4s ease;
}
section.contact-panel-animated .contact-card:hover p {
  color: var(--primaryColor);
}

section.about-premium .about-card {
    background-color: var(--whiteColor);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

section.about-premium .about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
section.about-premium .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primaryColor), #ffd54f);
    color: var(--secondaryColor);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(244,182,14,0.4);
}
section.about-premium .about-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondaryColor);
}
section.about-premium .about-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin:0 0 10px;
}
section.about-premium .about-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primaryColor), var(--secondaryColor));
    transition: 0.4s;
}
section.about-premium .about-card:hover::before {
    height: 100%;
    opacity: 0.06;
}
section.about-premium .about-card::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primaryColor);
    bottom: 0;
    left: 30px;
    transition: 0.4s;
}

section.about-premium .about-card:hover::after {
    width: 100px;
}
section.journey-section {
  padding: 60px 0 160px;
    background: linear-gradient(135deg, #fff, #e9e9e9);
    position: relative;
}
section.journey-section .journey-wrapper {
    position: relative;
    height: 500px;
}
section.journey-section .journey-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border-top: 3px dashed var(--primaryColor);
    border-radius: 50% / 20%;
    top: 40%;
    left: 0;
}
section.journey-section .journey-step {
    position: absolute;
    text-align: center;
}
section.journey-section .step1 { 
  top: 10%; 
  left: 10%; 
}
section.journey-section .step2 { top: 60%; left: 30%; }
section.journey-section .step3 { top: 20%; left: 60%; }
section.journey-section .step4 { top: 70%; left: 85%; }

section.journey-section .dot {
    width: 18px;
    height: 18px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    margin: auto;
    position: relative;
    z-index: 2;
}
section.journey-section .dot::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { opacity: 0; }
}
section.journey-section .card {
    background-color: var(--whiteColor);
    padding: 15px 7px;
    border-radius: var(--borderRadius);
    margin: 15px 0 0;
    width: 250px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primaryColor);
    transition: 0.3s;
}

section.journey-section .journey-step:hover .card {
    transform: translateY(-8px);
}

section.journey-section .card h4 {
    font-size: 17px;
    color: var(--secondaryColor);
}

section.journey-section .card p {
    font-size: 13px;
    color: #555;
    line-height: 22px;
}

/* section.case-horizontal{
  background-color: var(--secondaryColor);
}
section.case-horizontal  h2{
  color:var(--whiteColor);
  font-size:42px;
  font-weight:800;
}

section.case-horizontal  p{
  color:#aaa;
}
section.case-horizontal .case-row{
  display:flex;
  flex-direction:column;
  gap:30px;
}
section.case-horizontal .case-item{
  display:flex;
  align-items:center;
  background-color:rgba(255,255,255,0.03);
  border-radius:20px;
  overflow:hidden;
  transition: var(--transition);
  border:1px solid rgba(255,255,255,0.05);
}
section.case-horizontal .case-img{
  width:40%;
  overflow:hidden;
}
section.case-horizontal .case-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:var(--transition);
}
section.case-horizontal .case-info{
  width:60%;
  padding:40px;
}
section.case-horizontal .case-info h3{
  color: var(--whiteColor);
  font-size:24px;
  margin-bottom:10px;
}
section.case-horizontal .case-info p{
  color:#aaa;
  margin:0 0 15px;
}
section.case-horizontal .case-meta{
  display:flex;
  gap:20px;
  margin: 0 0 15px;
}
section.case-horizontal .case-meta span{
  background-color:rgba(244,182,14,0.1);
  color:var(--primaryColor);
  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
}
section.case-horizontal .case-btn{
  color: var(--whiteColor);
  font-weight:500;
  transition: var(--transition);
}

section.case-horizontal .case-btn:hover{
  color:var(--primaryColor);
}
section.case-horizontal .case-item:hover{
  transform:scale(1.02);
  box-shadow:0 20px 60px rgba(0,0,0,0.7);
}
section.case-horizontal .case-item:hover img{
  transform:scale(1.1);
}
section.case-horizontal .case-item::before{
  content:'';
  width:4px;
  height:0%;
  background:var(--primaryColor);
  transition: var(--transition);
}

section.case-horizontal .case-item:hover::before{
  height:100%;
} */

section.coming-future{
  height:100vh;
  background-color: var(--secondaryColor);
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
section.coming-future #particles-js{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}
section.coming-future .future-content{
  position:relative;
  z-index:2;
}

section.coming-future .glow-text{
  font-size:70px;
  font-weight:900;
  background: linear-gradient(270deg, #ffffff, var(--primaryColor), #ffffff);
  background-size:300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove{
  0%{background-position:0%}
  50%{background-position:100%}
  100%{background-position:0%}
}
section.coming-future .future-content p{
  color:#aaa;
  margin:20px 0 40px;
}
section.coming-future .countdown{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:40px;
}
section.coming-future .future-content p img{
   margin-left: 10px;
}
section.coming-future .countdown div{
  background-color:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  padding:20px;
  border-radius:12px;
  min-width:90px;
  border:1px solid rgba(255,255,255,0.1);
}

section.coming-future .countdown span{
  font-size:30px;
  color: var(--whiteColor);
}

section.coming-future .countdown p{
  font-size:12px;
  color:#aaa;
}
section.coming-future .launch-btn{
  padding:14px 30px;
  border-radius:40px;
  color:var(--secondaryColor);
  background-color:var(--primaryColor);
  font-weight:700;
  transition: var(--transition);
  box-shadow:0 0 20px var(--primaryColor);
}

section.coming-future .launch-btn:hover{
  transform:scale(1.1);
  box-shadow:0 0 40px var(--primaryColor);
}
section.coming-future .launch-btn img{
  margin-right: 6px;
}

section.partner-section {
    background-color: #f9f9f9;
}
section.partner-section .partner-card {
    background-color: var(--whiteColor);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #eee;
    z-index: 0;
}
section.partner-section .partner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(120deg, var(--primaryColor), transparent, var(--primaryColor));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}
section.partner-section .partner-card:hover::before {
    opacity: 1;
}

section.partner-section .partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
section.partner-section .icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primaryColor), #ffd86b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondaryColor);
    margin-bottom: 20px;
}
section.partner-section .partner-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondaryColor);
}
section.partner-section .partner-card p {
    color: var(--textColor);
    margin: 15px 0 20px;
}
section.partner-section .partner-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--secondaryColor), #333);
    color: var(--whiteColor);
    transition: var(--transition);
}

section.partner-section .partner-btn:hover {
    background: var(--primaryColor);
    color: var(--secondaryColor);
}
section.partner-section .partner-card.distributor {
    background: linear-gradient(180deg, #fff, #fff9e6);
}

section.partner-section .partner-card.wholesale {
    background: linear-gradient(180deg, #fff, #f2f6ff);
}

section.presenceWrap {
  background: linear-gradient(135deg, #ffffff, #f7f8fa);
  position: relative;
  overflow: hidden;
}
.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--secondaryColor);
  letter-spacing: -0.5px;
  position: relative;
}
.section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primaryColor);
  display: block;
  margin: 10px auto 0;
  border-radius: var(--borderRadius);
}

section.presenceWrap .presenceImgWrap {
  position: relative;
  padding: 50px;
  perspective: 1200px;
}
section.presenceWrap .bgShape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
section.presenceWrap .shape1 {
  width: 280px;
  height: 280px;
  background-color: rgb(244 182 14 / 23%);
  top: -60px;
  left: -60px;
  animation: floatShape 6s ease-in-out infinite;
}
section.presenceWrap .shape2 {
  width: 220px;
  height: 220px;
  background-color: rgba(0,0,0,0.15);
  bottom: -50px;
  right: -50px;
  animation: floatShape 8s ease-in-out infinite;
}
section.presenceWrap .particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

section.presenceWrap .particles::before,
section.presenceWrap .particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--primaryColor);
  border-radius: 50%;
  box-shadow: 50px 80px var(--primaryColor),
              120px 40px var(--primaryColor),
              200px 150px var(--primaryColor),
              300px 90px var(--primaryColor);
  animation: particleMove 10s linear infinite;
  opacity: 0.6;
}
section.presenceWrap .presenceImg {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  z-index: 2;
  background: var(--whiteColor);
  transform-style: preserve-3d;
  box-shadow: 
    0 40px 100px rgba(0,0,0,0.25),
    0 0 0 10px rgba(255,255,255,0.6);
  transition: transform 0.2s ease;
}
section.presenceWrap .presenceImg img {
  width: 100%;
  display: block;
  border-radius: 25px;
  transition: transform 0.6s ease;
}
section.presenceWrap .presenceImg:hover img {
  transform: scale(1.08);
}
section.presenceWrap .presenceImg::before {
    content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(120deg, transparent, var(--primaryColor), transparent);

  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;

  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;

  pointer-events: none;
}
section.presenceWrap .presenceImg {
  animation: floatImg 5s ease-in-out infinite;
}

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

@keyframes floatShape {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes particleMove {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-200px); }
}

section.presenceWrap .scrollRow {
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
section.presenceWrap .scrollRow::before,
section.presenceWrap .scrollRow::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
}
section.presenceWrap .scrollRow::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

section.presenceWrap .scrollRow::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
section.presenceWrap .scrollTrack {
  display: flex;
  gap: 20px;
  animation: scrollLeft 35s linear infinite;
}
.scrollRow.reverse .scrollTrack {
  animation: scrollRight 40s linear infinite;
}
section.presenceWrap .scrollRow:hover .scrollTrack {
  animation-play-state: paused;
}
section.presenceWrap .scrollTrack span {
  background: var(--whiteColor);
  padding: 12px 22px;
  border-radius: 40px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
section.presenceWrap .scrollTrack span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: radial-gradient(circle at top, rgba(244,182,14,0.25), transparent);
  opacity: 0;
  transition: 0.3s;
}
section.presenceWrap .scrollTrack span:hover {
  background: var(--primaryColor);
  color: var(--secondaryColor);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
section.presenceWrap .scrollTrack span:hover::before {
  opacity: 1;
}
section.presenceWrap .sub-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--secondaryColor);
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes borderMove {
  0% { background-position: 0% }
  100% { background-position: 300% }
}
section.productsWrap{
  position: relative;
  background: var(--whiteColor);
  overflow: hidden;
  padding: 100px 0 70px;
}
section.productsWrap .container{
  position: relative;
  z-index: 1;
}

section.productsWrap::before{
  content:"";
  position:absolute;
  top:-100px;
  left:-150px;
  width:120%;
  height:300px;
  background: linear-gradient(135deg, rgb(244 182 14 / 86%), transparent 70%);
  transform: rotate(-8deg);
  z-index:0;
}

section.productsWrap::after{
  content:"";
  position:absolute;
  bottom:-120px;
  right:-150px;
  width:120%;
  height:300px;
  background:linear-gradient(315deg, rgb(0 0 0 / 45%), transparent 70%);
  transform: rotate(8deg);
  z-index:0;
}

section.productsWrap .productBox {
    background-color: var(--whiteColor);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.20);
    transition: 0.4s ease;
    position: relative;
    padding: 22px 0 10px;
    height: 100%;
}

section.productsWrap .productBox:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}
section.productsWrap .productBox  .productImg > a {
    width: 100%;
    height: 100%;
}
section.productsWrap .productBox .imgColumn {
    background-color: var(--whiteColor);
    border-bottom: 1px solid #eee;
}
section.productsWrap .productBox .productImg{
  position: relative;
}
section.productsWrap .productBox .productImg img {
    transition: 0.4s;
}

.productBox:hover .productImg img {
    transform: scale(1.08);
}
section.productsWrap .productBox .waterMarkImg{
  position: relative;
}
section.productsWrap .productBox .waterMarkImg img{
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

section.productsWrap .productBox .product-content a {
    margin: 6px 0;
    font-weight: 700;
    font-size: 13px;
    color: var(--secondaryColor);
}
section.productsWrap .productBox .product-content span {
    font-size: 12px;
    font-weight: 600;
    color: #888;
}
section.productsWrap .productBox .product-content p {
    font-size: 14px;
    color: #555;
    margin: 0 0 10px;
}
section.productsWrap .productBox .product-content {
    padding: 15px;
}
section.productsWrap .productBox .formBox {
    display: flex;
    align-items: center;
    margin: 0 0 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    width: fit-content;
}

section.productsWrap .productBox .formBox input.qtyminus,section.productsWrap .productBox .formBox input.qtyplus {
    background-color: #111;
    color: var(--whiteColor);
    border: none;
    width: 32px;
    height: 32px;
    transition: var(--transition);
}


section.productsWrap .productBox .formBox input.qty:hover {
    background-color: var(--secondaryColor);
}

section.productsWrap .productBox .formBox input.quantity {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
}
section.productsWrap .productBox .btnBox {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

section.productsWrap .productBox button{
    border: none;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}
section.productsWrap .productBox .addList {
    background-color: #111;
    color: var(--whiteColor);
}
section.productsWrap .productBox .addList:hover {
    background-color: var(--secondaryColor);
}
section.productsWrap .productBox .sendEnq {
    background-color: var(--primaryColor);
    color: var(--secondaryColor);
}

section.productsWrap .productBox .sendEnq:hover {
    background-color: #e6b800;
}

.ctPopUpWrap {
    max-width: 900px;
}
.ctPopUpWrap .modal-content {
    border-radius: 22px;
    overflow: hidden;
    border: none;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    position: relative;
}
.ctPopUpWrap .modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffcc00, transparent, #000);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}
.ctPopUpWrap .modal-header {
    position: absolute;
    right: 15px;
    top: 15px;
    border: none;
    z-index: 10;
}

.ctPopUpWrap .btn-close {
    background-color: var(--primaryColor);
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
    transition: var(--transition);
}

.ctPopUpWrap .btn-close:hover {
    transform: rotate(90deg) scale(1.1);
}
.ctPopUpWrap .productInformation {
    display: flex;
    min-height: 380px;
    position: relative;
}
.ctPopUpWrap .imageBox {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #fff, #f1f1f1);
}
.ctPopUpWrap .imageBox::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #ffcc00, transparent);
    border-radius: 50%;
    top: -60px;
    left: -60px;
    opacity: 0.4;
}
.ctPopUpWrap .imageBox img {
    max-width: 100%;
    z-index: 2;
    transition: 0.5s ease;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

.ctPopUpWrap .imageBox:hover img {
    transform: scale(1.1) rotate(-2deg);
}
.ctPopUpWrap .content-product {
    width: 50%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.ctPopUpWrap .content-product h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    position: relative;
}
.ctPopUpWrap .content-product h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #ffcc00;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.ctPopUpWrap .productList li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #444;
    display: flex;
    gap: 20px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 6px;
}

.ctPopUpWrap .productList strong {
    color: var(--secondaryColor);
}
.ctPopUpWrap .productInformation::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 15%;
    bottom: 15%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #ffcc00, transparent);
    opacity: 0.6;
}
.ctPopUpWrap .modal-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    opacity: 0;
    transition: 0.6s;
}

.ctPopUpWrap .modal-content:hover::after {
    opacity: 1;
}
section.apply-clean{
    padding:100px 0;
}
section.apply-clean .apply-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}
section.apply-clean .apply-image{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 30px 70px rgba(0,0,0,0.12);
}

section.apply-clean .apply-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

section.apply-clean .apply-image:hover img{
    transform:scale(1.05);
}

section.apply-clean .image-overlay{
    position:absolute;
    bottom:20px;
    left:20px;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(10px);
    padding:15px 18px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

section.apply-clean .image-overlay h3{
    font-size:16px;
    margin:0;
    color:var(--secondaryColor);
}

section.apply-clean .image-overlay p{
    font-size:12px;
    margin:0;
    color:var(--textColor);
    opacity:0.8;
}
section.apply-clean .apply-form{
    background-color:var(--whiteColor);
    border-radius:25px;
    padding:45px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}
section.apply-clean .form-head span{
    color:var(--primaryColor);
    font-weight:700;
    font-size:13px;
    letter-spacing:1px;
}

section.apply-clean .form-head h2{
    font-size:28px;
    margin:10px 0;
    color:var(--secondaryColor);
    font-weight:800;
}

section.apply-clean .form-head p{
    font-size:13px;
    color:var(--textColor);
    margin:0 0 20px;
}
section.apply-clean .apply-form input,
section.apply-clean .apply-form select,
section.apply-clean .apply-form textarea{
    width:100%;
    float: left;
    padding:13px 15px;
    margin-bottom:12px;
    border-radius:12px;
    border:1px solid #eee;
    background-color:#fafafa;
    transition: var(--transition);
    font-size:14px;
    resize: none;
}
section.apply-clean .apply-form input:focus,
section.apply-clean .apply-form select:focus,
section.apply-clean .apply-form textarea:focus{
    border-color:var(--primaryColor);
    background-color: var(--whiteColor);
    box-shadow:0 0 0 4px rgba(244,182,14,0.15);
}
section.apply-clean .apply-form button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,var(--primaryColor),#ffcc4d);
    font-weight:600;
    transition: var(--transition);
}

section.apply-clean .apply-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(244,182,14,0.3);
}
a.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background-color: #25d366;
    color: var(--whiteColor);
    border-radius: 50%;
    font-size: 32px;
    z-index: 99999;
}

section.vision-growth {
    background: linear-gradient(135deg, #fff 60%, #f9f9f9 100%);
}

section.vision-growth .vg-box {
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

section.vision-growth .vg-left {
    flex: 1.5;
    padding: 50px;
    background: var(--whiteColor);
}

section.vision-growth .vg-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-bottom: 25px;
    position: relative;
}

section.vision-growth .vg-left h2::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 10px;
    width: 6px;
    height: 30px;
    background: var(--primaryColor);
}

section.vision-growth .vg-left p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
section.vision-growth .vg-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: 500;
}

section.vision-growth .vg-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primaryColor);
}

section.vision-growth .vg-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}
section.vision-growth .vg-right {
    flex: 0.7;
    position: relative;
}
section.vision-growth .vg-right::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: var(--primaryColor);
    transform: rotate(35deg);
    top: -50%;
    left: -50%;
    opacity: 0.08;
}
section.vision-growth.vg-bottom {
    margin-top: 25px;
    font-weight: 500;
    color: #333;
}
.custom-modal .modal-content {
  border-radius: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.custom-modal .modal-title {
  font-weight: 700;
  color: var(--secondaryColor);
  position: relative;
}
.custom-modal .modal-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--primaryColor);
  display: block;
  margin-top: 6px;
  border-radius: 5px;
}
.custom-modal .form-control {
  border-radius: var(--borderRadius);
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 14px;
  transition: var(--transition);
  width: 100%;
  float: left;
  resize: none;
  margin: 0 0 15px;
}
.custom-modal label{
  font-size: 14px;
  margin: 0 0 8px;
}
.custom-modal .form-control:focus {
  border-color: var(--primaryColor);
  box-shadow: 0 0 0 2px rgba(244,182,14,0.2);
}

.custom-modal .submit-btn {
  background-color: var(--primaryColor);
  color: var(--secondaryColor);
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.custom-modal .submit-btn:hover {
  background: var(--secondaryColor);
  color: var(--whiteColor);
  transform: translateY(-2px);
}
.custom-modal .btn-close {
  filter: invert(0);
}
.custom-modal .modal-dialog {
  transform: scale(0.8);
  transition: 0.3s;
}

.custom-modal.show .modal-dialog {
  transform: scale(1);
}

.modal.fade.enquiryModal{
  z-index: 9999;
}

.enquiry-topbar {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 105;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fb, #eef1f5);
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.enquiry-topbar  .selected-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--whiteColor);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s;
}

.enquiry-topbar .selected-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.enquiry-topbar .thumb {
    width: 50px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-topbar .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.enquiry-topbar  .item-info strong {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    display: block;
}

.enquiry-topbar  .item-info p {
    font-size: 12px;
    color: #666;
    margin: 2px 0 0;
}

.enquiry-topbar  #removeItem {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff4d4d;
    color:  var(--whiteColor);
    width: 18px;
    height: 18px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

#removeItem:hover {
    background-color: #d93636;
}
.enquiry-topbar .send-enquiry-btn {
    background: linear-gradient(135deg, #1e6fb9, #0d4f8b);
    color: var(--whiteColor);
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(30,111,185,0.3);
}

.enquiry-topbar .send-enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30,111,185,0.4);
}




footer.footer-wrapper {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(244,182,14,0.12),
        rgba(0,0,0,0.05)
    );
    overflow: hidden;
}

footer.footer-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(244,182,14,0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0,0,0,0.08), transparent 40%);
    z-index: 0;
}
footer.footer-wrapper{
    background-color: rgb(244 182 14 / 11%);
    position: relative;
}
footer.footer-wrapper .container{
    max-width: 1290px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

footer.footer-wrapper .footer-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
}
footer.footer-wrapper .footer-top-content .ft-item {
    display: flex;
    align-items: center;
    gap: 24px;
}
footer.footer-wrapper .footer-top-content .vr-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, transparent, #ccc, transparent);
  margin: 0 25px;
  flex-shrink: 0;
}
footer.footer-wrapper .footer-top-content .ft-item .icon {
    width: 65px;
    height: 65px;
    border-radius: var(--borderRadius);
    background: linear-gradient(135deg, var(--primaryColor), var(--secondaryColor));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(244,182,14,0.4);
    transition: var(--transition);
}
footer.footer-wrapper .footer-top-content .ft-item:hover .icon::before {
    top: 100%;
    left: 100%;
}
footer.footer-wrapper .footer-top-content .ft-item:hover .icon {
    transform: translateY(-6px) scale(1.05);
}
footer.footer-wrapper .footer-top-content .ft-item .icon svg {
    fill: var(--whiteColor);
}
footer.footer-wrapper .footer-top-content .ft-item div{
  color: var(--secondaryColor);
  font-size: 22px;
  font-weight: 600;
}
footer.footer-wrapper .footer-top-content .ft-item p,footer.footer-wrapper .footer-top-content .ft-item a{
  color: var(--textColor);
  font-size: 15px;
  font-weight: 500;
}

footer.footer-wrapper .border-top {
    border: none !important;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.3), transparent);
}
footer.footer-wrapper .plane-img {
    position: absolute;
    top: 50%;
    left: 1%;
    z-index: 0;
    transform: translateY(-50%);
}
footer.footer-wrapper .tree-img {
    position: absolute;
    top: 50%;
    right: 1%;
    z-index: 0;
    transform: translateY(-50%);
}
footer.footer-wrapper .footer-card .card-title {
    position: relative;
    z-index: 1;
    color: var(--secondaryColor);
}
footer.footer-wrapper .footer-card .card-title {
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  padding: 7px 18px 7px 16px;
  margin:  0 0 30px;
  letter-spacing: 0.5px;
  z-index: 1;
  background: var(--primaryColor);
  border-radius: 6px;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
footer.footer-wrapper .footer-card .card-title::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background-color: var(--primaryColor);
  z-index: -1;
  transition: 0.35s;
}
footer.footer-wrapper .footer-card:hover .card-title {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, #eaeaea, #ffffff);
}
footer.footer-wrapper .footer-card:hover .card-title::before {
  background: linear-gradient(135deg, #eaeaea, #ffffff);
}













footer.footer-wrapper .footer-card .footer-nav {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
}
footer.footer-wrapper .footerMiddle{
  padding: 80px 0;
}
footer.footer-wrapper .copyright-wrapper {
    position: relative;
    background: linear-gradient(180deg, #0a0a0a, #050505);
    padding: 25px 0;
    overflow: hidden;
}
footer.footer-wrapper .copyright-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primaryColor),
        transparent
    );
    animation: goldRun 4s linear infinite;
}

@keyframes goldRun {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}
footer.footer-wrapper .copyright-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.03),
        transparent 40%,
        transparent 60%,
        rgba(255,255,255,0.03)
    );
    pointer-events: none;
}
footer.footer-wrapper .copyright-wrapper .container {
    position: relative;
}
footer.footer-wrapper .copyright-wrapper .container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 150px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(244,182,14,0.12), transparent 70%);
    z-index: 0;
}

footer.footer-wrapper .copyright-wrapper p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.6px;
}
footer.footer-wrapper .copyright-wrapper a {
    color: var(--primaryColor);
    font-weight: 500;
    position: relative;
}
footer.footer-wrapper .copyright-wrapper a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background-color:var(--primaryColor);
    transition: var(--transition);
}
footer.footer-wrapper .copyright-wrapper a:hover::after {
    width: 100%;
}
footer.footer-wrapper .copyright-wrapper a:hover {
    color: var(--whiteColor);
}
footer.footer-wrapper .footerMiddle a.footer-logo img{
    height: 80px;
}
footer.footer-wrapper .footerMiddle  ul.socialLinks {
  display: flex;
  gap: 10px;
}
footer.footer-wrapper .socialLinks a {
    width: 48px;
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--whiteColor);
    background: #111;
    border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 8px 20px rgb(0 0 0 / 39%);
}
footer.footer-wrapper .socialLinks a:hover {
    border-radius: 50%;
    transform: translateY(-8px) rotate(-6deg) scale(1.15);
}
footer.footer-wrapper .socialLinks a::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: rotate(25deg) translateX(-120%);
    transition: 0.6s;
}
footer.footer-wrapper .socialLinks a:hover::before {
    transform: rotate(25deg) translateX(120%);
}
footer.footer-wrapper .socialLinks a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,255,255,0.25), transparent 70%);
    opacity: 0;
    transition: 0.4s;
}
footer.footer-wrapper .socialLinks a:hover::after {
    opacity: 1;
}
footer.footer-wrapper .socialLinks a:hover i {
    transform: rotate(8deg) scale(1.1);
    transition: 0.3s;
}
footer.footer-wrapper .socialLinks a.facebook:hover {
    background: #1877f2;
    box-shadow: 0 0 25px #1877f2;
}

footer.footer-wrapper .socialLinks a.instagram:hover {
    background: #e1306c;
    box-shadow: 0 0 25px #e1306c;
}

footer.footer-wrapper .socialLinks a.twitter:hover {
    background: #1da1f2;
    box-shadow: 0 0 25px #1da1f2;
}

footer.footer-wrapper .socialLinks a.linkedin:hover {
    background: #0a66c2;
    box-shadow: 0 0 25px #0a66c2;
}
footer.footer-wrapper .footer-card p{
    color: #313030;
    font-size: 15px;
}
footer.footer-wrapper .footer-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #313030;
  font-size: 14px;
  transition: var(--transition);
}
footer.footer-wrapper .footer-nav a::before {
  content: "\f105";
  font-family: var(--iconFont);
  font-weight: 900;
  color: var(--primaryColor);
  transition: var(--transition);
}
footer.footer-wrapper .footer-nav a:hover {
  color: var(--primaryColor);
  transform: translateX(6px);
}
footer.footer-wrapper .footer-nav a:hover::before {
  transform: translateX(5px);
}
footer.footer-wrapper .footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: var(--primaryColor);
  transition: var(--transition);
}
footer.footer-wrapper .footer-nav a:hover::after {
  width: 100%;
}














@media screen and (min-width: 1424px) {
    header .headerBottom > .navbar>.container, header .headerTop > .container {
        max-width: 1290px;
    }
    section.about-section .about-content .about-content-left h2 {
        font-size: 180px;
    }
    section.contact-section:before{
        height: 80px;
    }
    section.contact-section:after{
        height: calc(100% - 80px);
    }
    section.mainBanner .hero-content h1{
      font-size: 60px;
    }
    section.mainBanner .hero-left .hero-content{
      padding: 80px;
    }
    section.mainBanner .hero-left .hero-content p{
      max-width: 100%;
    }
    section.mainBanner .hero-left .hero-content h2{
      max-width: 100%;
    }
    header .headerTop::after{
      width: 50%;
    }
    section.mainBanner .carousel-item,
    section.mainBanner .hero-split {
      min-height: 650px;
    }
}

@media only screen and (min-width: 576px) {
  section.about-section .about-content .about-content-right {
        flex: 0 0 40%;
        width: 40%;
    }
   section.about-section .about-content .about-content-left {
        flex: 0 0 50%;
        width: 50%;
    }
     section.about-section .about-content {
        flex-direction: row;
    }
}
@media(max-width: 991px) {
 section.industriesServe  .industries-wrapper {
    flex-direction: column;
  }
  header .headerTop .top-right.marquee-bar .marquee-track span{
    color: red;
  }
    section.breadcrumb-premium .breadcrumb-title { 
      font-size:32px; 
      padding:12px 20px; 
    }
    section.cta-wrap .cta-strip-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 35px;
    }
    section.breadcrumb-premium .breadcrumb-nav { 
      font-size:13px; 
      padding:8px 15px; 
    }
    header .headerTop .top-left{
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    justify-content: center;
  }
    section.mainBanner .hero-content h1::after{
        display: none;
    }
      section.contact-panel-animated .contact-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  header .headerBottom .custom-dropdown .mega-dropdown{
  display:none;
}
header .headerBottom .custom-dropdown.open .mega-dropdown{
  display:block;
}
  section.contact-panel-animated .contact-card { 
    width: 90%; 
    transform: rotate(0deg) !important; 
  }
  section.contact-panel-animated .icon-circle { 
    width: 60px; 
    height: 60px; 
    font-size: 24px; 
  }
  section.royal-contact-creative .form-group label{
        background-color: rgb(255 255 255 / 0%);
  }
   header .headerBottom .mega-dropdown{
    position: static;
    width: 100%;
    display: none; 
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  header .headerBottom .custom-dropdown.open .mega-dropdown{
    display: block;
  }
  header .headerBottom .mega-dropdown{
    grid-template-columns: 1fr;
  }
  header .headerBottom .dropdown-preview{
    display: none;
  }
   section.case-horizontal .case-item{
    flex-direction:column;
  }

  section.case-horizontal .case-img,
  section.case-horizontal .case-info{
    width:100%;
  }
  section.case-horizontal .case-info{
    padding:20px;
  }
  footer.footer-wrapper .footer-top-content{
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
  }
  footer.footer-wrapper .copyright-wrapper p,footer.footer-wrapper .copyright-wrapper p a{
    font-size: 12px;
  }
  section.content-inner .divider-line{
    margin: 30px 0 0;
  }
   section.mainBanner .hero-split{
    flex-direction:column;
    height:auto;
  }
  section.mainBanner .hero-content h1{
    font-size:30px;
  }

  section.mainBanner .hero-content h2{
    font-size:20px;
  }

  section.mainBanner .hero-content p{
    font-size:14px;
    padding-left:0;
  }

  section.mainBanner .hero-content p::before{
    display:none;
  }
  section.mainBanner .carousel-control-prev,
  section.mainBanner .carousel-control-next{
    display: none;
  }


}
@media screen and (max-width: 767px) {
  .search-box {
    width: 90%;
  }
  section.hero-slide .hero-content h1{
    font-size:28px;
  }
    .enquiry-topbar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
      section.mainBanner .hero-split {
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
     background-position: 60% center;
  }
  section.mainBanner .hero-content h1{
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(4px);
      border-radius: 10px;
      -webkit-text-fill-color:var(--whiteColor);
      color: var(--whiteColor);
      font-size: 20px;
      font-weight: 600;
      padding: 10px;
  }
  section.mainBanner .hero-content {
    padding: 20px;
    text-align: center;
  }

    .enquiry-topbar .send-enquiry-btn {
        width: 100%;
    }
  section.hero-slide .hero-content h2{
    font-size:18px;
  }
  section.cta-royal .cta-royal-box {
        flex-direction: column;
        text-align: center;
    }
     .cta-strip-box {
        flex-direction: column;
        text-align: center;
    }
     section.royal-contact-creative .creative-wrap {
    flex-direction: column;
  }
  header .headerTop .top-left span{
    gap: 9px;
  }
  
  section.royal-contact-creative .creative-left,
  section.royal-contact-creative .creative-form {
    width: 100%;
  }
   section.coming-future .glow-text{
    font-size:36px;
  }
header .headerTop::after{
    width:100%;
    clip-path:none;
    opacity:0.1;
  }

 header .headerTop .container{
    flex-direction:column;
    gap:8px;
  }
  section.coming-future .countdown{
    flex-wrap:wrap;
  }
     
      section.presenceWrap .presenceWrap {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .scrollTrack span {
    font-size: 13px;
    padding: 10px 16px;
  }
    .ctPopUpWrap .productInformation {
        flex-direction: column;
    }

    .ctPopUpWrap .imageBox,
    .ctPopUpWrap .content-product {
        width: 100%;
    }

    .ctPopUpWrap .productInformation::after {
        display: none;
    }

    .ctPopUpWrap .content-product {
        padding: 25px;
        text-align: center;
    }

    .ctPopUpWrap .content-product h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
  header .headerBottom a.navbar-brand img{
    height: 50px;
  }
  header .headerBottom .navbar-nav{
    gap: 8px !important;
  }
  .royal-title h2{
    font-size: 25px;
  }
  section.contact-section{
    padding: 50px 0;
  }
  section.contact-section .contact-right-box{
    padding: 20px;
  }
  section.contact-section .contact-form{
    padding: 20px;
  }
  section.cta-wrap .cta-strip-text h4{
    font-size: 22px;
  }
  footer.footer-wrapper .footer-top-content .ft-item{
    gap: 10px;
  }
  footer.footer-wrapper .footer-top-content .ft-item p, footer.footer-wrapper .footer-top-content .ft-item a{
    font-size: 13px;
  }
  footer.footer-wrapper .footer-top-content .ft-item div{
    font-size: 18px;
  }
  footer.footer-wrapper .footer-top-content .ft-item .icon{
    width: 55px;
    height: 55px;
  }
  section.journey-section .journey-step{
    position: static;
  }
  section.journey-section .journey-wrapper{
      height: auto;
  }
  section.journey-section{
    padding: 60px 0;
  }
  section.journey-section .card{
    margin: 20px 0 0;
  }
   section.apply-clean .apply-grid{
        grid-template-columns:1fr;
    }

    section.apply-clean .apply-form{
        padding:25px;
    }
      section.vision-growth .vg-box {
        flex-direction: column;
    }

   section.vision-growth .vg-left {
        padding: 30px;
    }

    section.vision-growth.vg-left h2::before {
        display: none;
    }

    section.vision-growth .vg-right {
        height: 120px;
    }
}



