@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

/*===========================
  GLOBAL ANIMATIONS
===========================*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(220, 20, 60, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
  }
}

@keyframes slideInRotate {
  from {
    opacity: 0;
    transform: translateX(-100px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: var(--red);
  }
  50% {
    border-color: var(--yellow);
  }
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
}

.animate-on-scroll.fade-up {
  transform: translateY(60px);
}
.animate-on-scroll.fade-up.animated {
  transform: translateY(0);
}

.animate-on-scroll.fade-down {
  transform: translateY(-60px);
}
.animate-on-scroll.fade-down.animated {
  transform: translateY(0);
}

.animate-on-scroll.fade-left {
  transform: translateX(-60px);
}
.animate-on-scroll.fade-left.animated {
  transform: translateX(0);
}

.animate-on-scroll.fade-right {
  transform: translateX(60px);
}
.animate-on-scroll.fade-right.animated {
  transform: translateX(0);
}

.animate-on-scroll.scale-in {
  transform: scale(0.8);
}
.animate-on-scroll.scale-in.animated {
  transform: scale(1);
}

.animate-on-scroll.rotate-in {
  transform: rotate(-10deg) scale(0.9);
}
.animate-on-scroll.rotate-in.animated {
  transform: rotate(0) scale(1);
}

/* Stagger Animation Delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/*===========================
  COMMON css 
===========================*/
:root {
  --font-family: "Inter", sans-serif;
  /* IAS Brand Colors - Black, Yellow & Red Theme */
  --primary: #1a1a1a;
  --primary-dark: #000000;
  --primary-light: #f0f0f0;
  --accent: #FFD700;
  --accent-dark: #E6C200;
  --accent-light: #FFF8DC;
  --yellow: #FFD700;
  --yellow-dark: #E6C200;
  --yellow-light: #FFFACD;
  --red: #DC143C;
  --red-dark: #B22222;
  --red-light: #FFE4E9;
  --success: #2E8B57;
  --success-dark: #1D6B42;
  --success-light: #E8F5EE;
  --secondary: #404040;
  --secondary-dark: #2a2a2a;
  --secondary-light: #f5f5f5;
  --info: #4a4a4a;
  --info-dark: #333333;
  --info-light: #f0f0f0;
  --caution: #D4A017;
  --caution-dark: #B8860B;
  --caution-light: #FDF5E0;
  --error: #DC143C;
  --error-dark: #B22222;
  --error-light: #FFE5E9;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  --gradient-2: linear-gradient(180deg, #DC143C 13.02%, #FFD700 85.42%);
  --gradient-3: linear-gradient(180deg, #FFD700 0%, #DC143C 100%);
  --gradient-4: linear-gradient(180deg, #1a1a1a 0%, #404040 100%);
  --gradient-5: linear-gradient(180deg, #DC143C 0%, #B22222 100%);
  --gradient-6: linear-gradient(180deg, #FFD700 0%, #E6C200 100%);
  --gradient-7: linear-gradient(180deg, #333333 0%, #1a1a1a 100%);
  --gradient-8: linear-gradient(180deg, #000000 0%, #2a2a2a 100%);
  --gradient-9: linear-gradient(180deg, #DC143C 13.02%, #FFD700 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}

/*===========================
  Product Cards CSS 
===========================*/
.product-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
.product-card:hover::before {
  left: 100%;
}
.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(220, 20, 60, 0.2) !important;
}
.product-card .product-image {
  position: relative;
  overflow: hidden;
}
.product-card .product-image img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image img {
  transform: scale(1.15) rotate(2deg);
}
.product-card .product-content {
  transition: all 0.3s ease;
}
.product-card:hover .product-content h5 {
  color: var(--red);
}
.product-card .product-content h5 {
  color: var(--black);
  font-weight: 600;
  transition: color 0.3s ease;
}

/*===========================
  Language Switcher Mobile CSS
===========================*/
@media (max-width: 991px) {
  .navbar-btn {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
  }
  .language-switcher {
    gap: 8px !important;
  }
  .language-switcher a svg {
    width: 24px;
    height: 17px;
  }
}

/*===========================
  Footer Enhancements CSS
===========================*/
.footer-widget.f-about .logo img {
  border-radius: 8px;
}
.footer-widget .social-links a:hover {
  background: var(--yellow) !important;
  color: var(--primary) !important;
  transform: translateY(-3px);
}
.footer-widget .social-links a {
  transition: all 0.3s ease;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0px;
}

h1,
.h1 {
  font-size: 2.75em;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 2.25em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.75em;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
}

h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: 0.875em;
  line-height: 1.25;
}

.display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}

.display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}

.display-3 {
  font-size: 4em;
  line-height: 1.25;
}

.display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.btn:hover {
  color: inherit;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}
.btn.btn-sm {
  padding: 8px 16px;
}
.btn.square {
  border-radius: 0px;
}
.btn.semi-rounded {
  border-radius: 12px;
}
.btn.rounded-full {
  border-radius: 50px;
}
.btn.icon-left span,
.btn.icon-left i {
  margin-right: 8px;
}
.btn.icon-right span,
.btn.icon-right i {
  margin-left: 8px;
}
.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}
.btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}
.btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}


/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus {
  background: var(--red-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--red);
  color: var(--red);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--red-dark);
  color: var(--white);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}


/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--red);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 5px;
  animation: float 3s ease-in-out infinite;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4) !important;
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4) !important;
  -webkit-transform: translate3d(0, -8px, 0) scale(1.1);
  transform: translate3d(0, -8px, 0) scale(1.1);
  background-color: var(--yellow);
  color: var(--primary) !important;
  animation: none;
}

.scroll-top i {
  transition: transform 0.3s ease;
}

.scroll-top:hover i {
  transform: translateY(-3px);
}

/*===========================
  Section Title Five CSS
===========================*/
.section-title-five {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-title-five {
    margin-bottom: 35px;
  }
}
.section-title-five h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 30px;
  padding: 8px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.section-title-five h6::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
  transition: left 0.6s ease;
}
.section-title-five:hover h6::before {
  left: 100%;
}
.section-title-five:hover h6 {
  background: var(--red);
  color: var(--white);
  transform: scale(1.05);
}
.section-title-five h2 {
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.section-title-five:hover h2 {
  color: var(--red);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-five h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.section-title-five p {
  color: var(--dark-3);
}

.made-in-ayroui{
  position: fixed;
  left: 5px;
  bottom: 5px;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.made-in-ayroui:hover{
  transform: translateY(-5px);
}


/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR NINE =====*/
.navbar-area.navbar-nine {
  background: var(--primary);
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}
.sticky {
  position: fixed !important;
  z-index:99 !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine {
    padding: 10px 0;
    z-index: 9999;
  }
}
.navbar-area.navbar-nine .navbar-brand {
  margin: 0;
}
.navbar-area.navbar-nine .navbar {
  position: relative;
  padding: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
/* Mobile ≤767px: logo 52px + padding 20px = 72px */
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse.show,
  .navbar-area.navbar-nine .navbar .navbar-collapse.collapsing {
    position: fixed !important;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 9999;
    padding: 10px 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    overflow-y: auto;
    max-height: calc(100vh - 72px);
  }
}
/* Tablet 768-991px: logo 80px + padding 20px = 100px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse.show,
  .navbar-area.navbar-nine .navbar .navbar-collapse.collapsing {
    position: fixed !important;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 9999;
    padding: 10px 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    overflow-y: auto;
    max-height: calc(100vh - 100px);
  }
}
/* Nav links mobile + tablet */
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    color: var(--white) !important;
    padding: 12px 4px !important;
    display: block !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
  }
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item:last-child a {
    border-bottom: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-left: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-right: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 14px 0;
  opacity: 0.7;
  overflow: hidden;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover::before,
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active::before {
  width: 60%;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
    border: 0;
    margin: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
  font-size: 12px;
  font-weight: 700;
  padding-left: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
    position: relative;
    top: -5px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 130%;
  width: 230px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  z-index: 5;
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
  color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
    color: var(--primary);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
  color: var(--primary);
  padding-left: 22px;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a i {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
    color: var(--primary);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a::after {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a::before {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 115%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn {
  margin-top: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
  font-size: 22px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(238, 238, 238, 0.425);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
  border-color: transparent;
  color: var(--primary);
  background-color: var(--white);
}

/*===== SIDEBAR ONE =====*/
.sidebar-left {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white);
  height: 100%;
  width: 350px;
  padding-top: 80px;
  z-index: 999;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  text-align: left;
}
.sidebar-left.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 767px) {
  .sidebar-left {
    width: 250px;
  }
}
.sidebar-left .sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.sidebar-left .sidebar-close .close {
  font-size: 18px;
  color: var(--black);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.sidebar-left .sidebar-close .close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sidebar-left .sidebar-content {
  padding: 0px 30px;
}
.sidebar-left .sidebar-content .sidebar-menu {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-menu .menu-title {
  font-size: 18px;
  font-weight: 600;
}
.sidebar-left .sidebar-content .sidebar-menu ul {
  margin-top: 15px;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--dark-3);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.sidebar-left .sidebar-content .text {
  margin-top: 20px;
}
.sidebar-left .sidebar-content .sidebar-social {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-social .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.sidebar-left .sidebar-content .sidebar-social ul li {
  display: inline-block;
  margin-right: 5px;
}
.sidebar-left .sidebar-content .sidebar-social ul li:last-child {
  margin: 0;
}
.sidebar-left .sidebar-content .sidebar-social ul li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-left .sidebar-content .sidebar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

.overlay-left {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99;
}
.overlay-left.open {
  display: block;
}


/* ===== Buttons Css ===== */
.header-eight .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-eight .active.primary-btn, .header-eight .primary-btn:hover, .header-eight .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-eight .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eight {
  position: relative;
  padding:160px 0 100px 0;
  background: var(--primary);
  overflow: hidden;
}
.header-eight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight {
    padding: 130px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .header-eight {
    padding: 100px 0 60px 0;
  }
}
.header-eight .header-image {
  animation: fadeInRight 1s ease-out 0.5s both;
}
.header-eight .header-image img {
  width: 100%;
  border-radius: 8px;
  transition: all 0.5s ease;
  animation: float 6s ease-in-out infinite;
}
.header-eight .header-image img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-eight .header-image {
    margin-top: 40px;
  }
}
.header-eight .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
  animation: fadeInLeft 1s ease-out both;
}
.header-eight .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight .header-content h1  {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .header-eight .header-content h1  {
    font-size: 30px;
    line-height: 42px;
  }
}
.header-eight .header-content h1 span {
  display: block;
}
.header-eight .header-content p {
  margin-top: 30px;
  color: var(--white);
  opacity: 0.7;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.header-eight .button {
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.header-eight .primary-btn {
  margin-right: 12px;
  background-color: var(--yellow);
  color: var(--primary);
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.header-eight .primary-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.header-eight .primary-btn:hover::before {
  width: 300px;
  height: 300px;
}
.header-eight .primary-btn:hover {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}
.header-eight .video-button {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header-eight .video-button {
    margin-top: 20px;
  }
}
.header-eight .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--white);
  font-weight: 600;
  transition: color 0.3s ease;
}
.header-eight .video-button:hover .text {
  color: var(--yellow);
}
.header-eight .video-button .icon-btn {
  background: var(--yellow);
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 2s ease-in-out infinite;
}
.header-eight .video-button:hover .icon-btn {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
  animation: none;
}

/*===========================
  about-05 css
===========================*/
.about-five {
  background-color: var(--light-3);
  padding-top: 120px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five {
    padding-top: 100px;
    padding-bottom:70px;
  }
}
@media (max-width: 767px) {
  .about-five {
    padding-top: 80px;
    padding-bottom:60px;
  }
}
.about-five-content{
  padding-left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five-content {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .about-five-content {
    padding-left: 0;
  }
}
.about-five-content .small-title {
  position: relative;
  padding-left: 30px;
}
.about-five-content .small-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 20px;
  margin-top: -1px;
}
.about-five-content .main-title {
  margin-top: 20px;
}
.about-five-content .about-five-tab {
  margin-top: 40px;
}
.about-five-content .about-five-tab nav {
  border: none;
  background-color: var(--light-1);
  padding: 15px;
  border-radius: 5px;
}
.about-five-content .about-five-tab nav .nav-tabs {
  border: none;
}
.about-five-content .about-five-tab nav button {
  border: none;
  color: var(--dark-1);
  font-weight: 600;
  padding: 0;
  margin-right: 20px;
  position: relative;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .about-five-content .about-five-tab nav button {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .about-five-content .about-five-tab nav button:last-child {
    margin: 0;
  }
}
.about-five-content .about-five-tab nav button:hover {
  color: var(--red);
}
.about-five-content .about-five-tab nav button.active {
  background-color: var(--red);
  color: var(--white);
}
.about-five-content .about-five-tab nav button:last-child {
  margin-right: 0;
}
.about-five-content .about-five-tab .tab-content {
  border: none;
  padding-top: 30px;
}
.about-five-content .about-five-tab .tab-content p {
  margin-bottom: 20px;
}
.about-five-content .about-five-tab .tab-content p:last-child {
  margin: 0;
}

.about-image-five {
  padding-left: 60px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five {
    margin-bottom: 70px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .about-image-five {
    margin-bottom: 60px;
    padding-left: 0;
  }
}
.about-image-five .shape {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five .shape {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five::before {
    right: -15px;
    bottom: -15px;
  }
}
@media (max-width: 767px) {
  .about-image-five::before {
    display: none;
  }
}
.about-image-five img {
  width: 100%;
  z-index: 2;
}


/*===========================
  services css 
===========================*/
.services-eight {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-eight {
    padding: 80px 0 50px 0;
  }
}
@media (max-width: 767px) {
  .services-eight {
    padding: 60px 0 30px 0;
  }
}
.services-eight .single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.services-eight .single-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services-eight .single-services:hover::before {
  opacity: 1;
}
.services-eight .single-services:hover {
  box-shadow: 0 20px 40px rgba(220, 20, 60, 0.15);
  border-color: var(--yellow);
  transform: translateY(-10px);
}
.services-eight .single-services:hover .service-icon {
  color: var(--white);
  border-color: transparent;
  background: var(--red);
  transform: scale(1.1) rotate(5deg);
}
.services-eight .single-services:hover .service-icon::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1.2);
}
.services-eight .single-services:hover .service-content h4 {
  color: var(--red);
}
.services-eight .single-services .service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-bottom: 25px;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 40px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.services-eight .single-services .service-icon i {
  transition: transform 0.4s ease;
}
.services-eight .single-services:hover .service-icon i {
  transform: scale(1.2);
}
.services-eight .single-services .service-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: var(--red);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 50%;
  border: 1px solid transparent;
  transform: scale(0.8);
}
.services-eight .single-services .service-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.services-eight .single-services .service-content p {
  color: var(--dark-3);
}



/*===== VIDEO ONE =====*/
.video-one {
  background-color: var(--light-3);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-one {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .video-one {
    padding: 60px 0;
  }
}
.video-one .video-title h5 {
  font-weight: 600;
  color: var(--primary);
}
.video-one .video-title h2 {
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}
.video-one .video-title .text-lg {
  margin-top: 24px;
  color: var(--dark-3);
}
.video-one .video-content {
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.video-one .video-content img {
  border-radius: 8px;
}
.video-one .video-content a {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding-left: 3px;
}
@media (max-width: 767px) {
  .video-one .video-content a {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 20px;
  }
}
.video-one .video-content a:hover {
  background-color: var(--white);
  color: var(--primary);
}


/*===== PRICING THIRTEEN =====*/
.pricing-fourteen {
  padding: 100px 0;
  background-color: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fourteen {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .pricing-fourteen {
    padding: 60px 0;
  }
}
.pricing-style-fourteen {
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-top: 30px;
  background-color: var(--white);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 50px 35px;
  text-align: center;
  z-index: 0;
  position: relative;
  overflow: hidden;
}
.pricing-style-fourteen::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(220, 20, 60, 0.03), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}
.pricing-style-fourteen:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}
.pricing-style-fourteen:hover {
  box-shadow: 0 25px 50px rgba(220, 20, 60, 0.15);
  border-color: var(--yellow);
  transform: translateY(-15px) scale(1.02);
}
.pricing-style-fourteen:hover .title {
  animation: pulse 0.6s ease-in-out;
}
.pricing-style-fourteen:hover .table-list li {
  transform: translateX(5px);
}
.pricing-style-fourteen.middle {
  box-shadow: var(--shadow-4);
  border-color: var(--red);
  transform: scale(1.05);
}
.pricing-style-fourteen.middle:hover {
  transform: scale(1.08) translateY(-10px);
}
.pricing-style-fourteen.middle .title {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.pricing-style-fourteen .title {
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--red);
  padding: 8px 20px;
  border: 2px solid var(--red);
  display: inline-block;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.pricing-style-fourteen .table-head p {
  color: var(--dark-3);
  margin-bottom: 24px;
}
.pricing-style-fourteen .price {
  padding-top: 30px;
}
.pricing-style-fourteen .amount {
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  font-size: 55px;
}
.pricing-style-fourteen .currency {
  font-weight: 400;
  color: var(--dark-3);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}
.pricing-style-fourteen .duration {
  display: inline-block;
  font-size: 18px;
  color: var(--dark-3);
  font-weight: 400;
}
.pricing-style-fourteen .light-rounded-buttons {
  margin: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}
.pricing-style-fourteen .table-list li {
  position: relative;
  margin-bottom: 16px;
  color: var(--dark-3);
  text-align: left;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.pricing-style-fourteen .table-list li:last-child {
  margin: 0;
}
.pricing-style-fourteen .table-list li i {
  color: var(--red);
  font-size: 16px;
  margin-right: 8px;
  flex-shrink: 0;
  min-width: 20px;
  transition: transform 0.3s ease;
}
.pricing-style-fourteen:hover .table-list li i {
  transform: scale(1.2);
}
.pricing-style-fourteen .table-list li i.deactive {
  color: var(--dark-3);
}




/* ===== Buttons Css ===== */
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.call-action .inner-content .light-rounded-buttons .active.primary-btn-outline, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
}
.call-action .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action {
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.call-action::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: pulse 5s ease-in-out infinite;
  pointer-events: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .call-action {
    padding: 60px 0;
  }
}
.call-action:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* overlay.png removed - section already uses gradient */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}
.call-action .inner-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.call-action .inner-content h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
  animation: fadeInDown 0.8s ease-out both;
}
.call-action .inner-content p {
  color: var(--white);
}
.call-action .inner-content .light-rounded-buttons {
  margin-top: 45px;
  display: block;
}
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--yellow);
  color: var(--yellow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.call-action .inner-content .light-rounded-buttons .primary-btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover::before {
  left: 100%;
}
.call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover {
  background: var(--yellow);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* ====== Template Images Styling ====== */
.template-images-row {
  margin: 50px -10px 40px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0;
}

.template-images-row .col-lg-4 {
  padding: 0 10px;
  flex: 0 0 calc(33.333% - 20px);
}

.template-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
              0 0 1px rgba(0, 0, 0, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
  height: 100%;
  background: var(--white);
}

.template-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: 16px;
}

.template-image-wrapper:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
              0 0 1px rgba(0, 0, 0, 0.1);
}

.template-image-wrapper:hover::before {
  opacity: 1;
}

.template-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.template-image-wrapper:hover .template-image {
  transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .template-images-row .col-lg-4 {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 991px) {
  .template-images-row {
    flex-wrap: wrap;
    margin: 40px -8px 30px;
  }
  
  .template-images-row .col-lg-4 {
    padding: 0 8px;
    flex: 0 0 calc(50% - 16px);
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  /* ISO: tetap 3 kolom sejajar, kecil */
  .template-images-row {
    margin: 20px -4px 16px;
    flex-wrap: nowrap;
  }
  .template-images-row .col-lg-4 {
    padding: 0 4px;
    flex: 0 0 calc(33.333% - 8px);
    margin-bottom: 0;
  }
  .template-image-wrapper {
    border-radius: 8px;
  }
  .template-image-wrapper:hover {
    transform: none;
  }
  .call-action {
    padding: 40px 0 !important;
  }
  .call-action .inner-content h2 {
    font-size: 1.3rem;
  }
  .call-action .inner-content .light-rounded-buttons {
    margin-top: 20px;
  }
}

/*===== latest-news-area =====*/
.latest-news-area {
  background: var(--white);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-news-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .latest-news-area {
    padding: 60px 0;
  }
}
.latest-news-area .single-news {
  margin-top: 30px;
}
.latest-news-area .single-news .image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.latest-news-area .single-news .image img {
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}
.latest-news-area .single-news .image .meta-details {
  display: inline-block;
  padding: 6px 15px 6px 7px;
  border-radius: 30px;
  background-color: var(--primary);
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.latest-news-area .single-news .image .meta-details img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: inline-block;
}
.latest-news-area .single-news .image .meta-details span {
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}
.latest-news-area .single-news .content-body .title {
  margin: 30px 0 20px 0;
}
.latest-news-area .single-news .content-body .title a {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.latest-news-area .single-news .content-body .title a:hover {
  color: var(--primary);
}
.latest-news-area .single-news .content-body p {
  color: var(--dark-3);
}
.latest-news-area .single-news:hover .image .thumb {
  transform: scale(1.1) rotate(1deg);
}


/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 100px 0;
  background: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .brand-area {
    padding: 60px 0;
  }
}
.brand-area .clients-logos {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}
.brand-area .clients-logos .single-image {
  display: inline-block;
  margin: 13px 10px;
  background-color: var(--white);
  line-height: 100px;
  padding: 8px 25px;
  border-radius: 8px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #eee;
}
.brand-area .clients-logos .single-image:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.brand-area .clients-logos img {
  max-width: 170px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

/* ===== Buttons Css ===== */
.contact-form-wrapper .contact-form .primary-btn {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.contact-form-wrapper .contact-form .active.primary-btn, .contact-form-wrapper .contact-form .primary-btn:hover, .contact-form-wrapper .contact-form .primary-btn:focus {
  background: var(--yellow);
  color: var(--primary);
  box-shadow: var(--shadow-4);
}
.contact-form-wrapper .contact-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
	Contact CSS
========================================*/
/* Contact Section Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

.contact-section {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 150px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section {
    padding-top: 80px;
    padding-bottom: 130px;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.contact-section .contact-item-wrapper .contact-item {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
  padding: 20px 30px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.contact-section .contact-item-wrapper .contact-item:hover {
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-8px);
  border-color: rgba(220, 20, 60, 0.5);
}
.contact-section .contact-item-wrapper .contact-item:hover .contact-icon {
  animation: iconBounce 0.6s ease-in-out;
  background: var(--yellow);
  color: var(--primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: row;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 12px;
  }
}
.contact-section .contact-item-wrapper .contact-item .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  max-width: 50px;
  max-height: 50px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  flex-shrink: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-section .contact-item-wrapper .contact-item .contact-content {
  margin-left: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 14px;
    margin-top: 0;
  }
}
.contact-section .contact-item-wrapper .contact-item .contact-content h4 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}
.contact-section .contact-item-wrapper .contact-item .contact-content p {
  color: var(--dark-3);
}

.contact-form-wrapper {
  padding: 50px 40px;
  background: var(--white);
  border: 1px solid var(--gray-4);
  margin-left: 0px;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.contact-form-wrapper:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-wrapper {
    margin-left: 30px;
  }
}
.contact-form-wrapper .section-title {
  margin-bottom: 30px;
}
.contact-form-wrapper .section-title span {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}
.contact-form-wrapper .section-title h2 {
  margin-bottom: 10px;
}
.contact-form-wrapper .section-title p {
  color: var(--dark-3);
}
.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid var(--gray-4);
  margin-bottom: 25px;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 24px 16px;
    margin-top: 20px;
  }
  .contact-form-wrapper .contact-form input,
  .contact-form-wrapper .contact-form textarea {
    padding: 10px 16px;
    margin-bottom: 14px;
    font-size: 14px;
  }
  .contact-form-wrapper .section-title {
    margin-bottom: 18px;
  }
  .contact-section .contact-item-wrapper .contact-item .contact-content h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .contact-section .contact-item-wrapper .contact-item .contact-content p {
    font-size: 13px;
  }
  .contact-section .contact-item-wrapper .contact-item .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
  }
}
.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 10px rgba(220, 20, 60, 0.2);
}
.contact-form-wrapper .contact-form textarea {
  border-radius: 18px;
}
.contact-form-wrapper .contact-form .btn {
  transition: all 0.3s ease;
}
.contact-form-wrapper .contact-form .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}
.map-style-9 {
  margin-top: -130px;
}


/* Footer eleven css */
.footer-eleven {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--white);
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-eleven {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .footer-eleven .footer-widget {
    margin-top: 22px;
    text-align: left;
  }
  .footer-eleven .footer-widget h5 {
    margin-bottom: 14px;
    font-size: 14px;
  }
  /* Quick Links + Our Services side by side */
  .footer-eleven .col-lg-2 {
    width: 50%;
    float: left;
  }
  .footer-eleven .f-link li {
    margin-bottom: 8px;
  }
  .footer-eleven .f-link li a {
    font-size: 13px;
  }
  /* About widget ringkas */
  .footer-eleven .f-about {
    padding: 0;
  }
  .footer-eleven .f-about p {
    font-size: 13px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .footer-eleven .f-about .copyright-text {
    margin-top: 10px;
    font-size: 12px;
  }
  .footer-eleven .f-about .copyright-text span {
    display: inline;
  }
  /* Contact info widget ringkas */
  .footer-eleven .newsletter p {
    font-size: 13px;
    margin-bottom: 6px !important;
  }
  .footer-eleven .newsletter .social-links {
    margin-top: 12px !important;
  }
  .footer-eleven .newsletter .social-links a {
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    font-size: 14px;
  }
}
.footer-eleven .footer-widget h5 {
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--black);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-eleven .footer-widget h5 {
    margin-bottom: 25px;
  }
}
.footer-eleven .f-about {
  padding-right: 30px;
}
@media (max-width: 767px) {
  .footer-eleven .f-about {
    padding: 0;
  }
}
.footer-eleven .f-about p {
  color: var(--dark-3);
  margin-top: 20px;
}
.footer-eleven .f-about .copyright-text {
  color: var(--dark-3);
  margin-top: 40px;
}
.footer-eleven .f-about .copyright-text span {
  display: block;
}
@media (max-width: 767px) {
  .footer-eleven .f-about .copyright-text {
    margin-top: 20px;
  }
}
.footer-eleven .f-about .copyright-text a {
  color: var(--red);
}
.footer-eleven .f-about .copyright-text a:hover {
  color: var(--yellow);
}
.footer-eleven .f-link li {
  display: block;
  margin-bottom: 12px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}
.footer-eleven .f-link li:hover {
  transform: translateX(8px);
}
.footer-eleven .f-link li:last-child {
  margin: 0;
}
.footer-eleven .f-link li a {
  color: var(--dark-3);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.footer-eleven .f-link li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}
.footer-eleven .f-link li a:hover::before {
  left: -15px;
  opacity: 1;
  color: var(--red);
}
.footer-eleven .f-link li a:hover {
  color: var(--red);
  padding-left: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .footer-eleven .newsletter {
    padding-left: 80px;
  }
}
.footer-eleven .newsletter p {
  color: var(--dark-3);
}
.footer-eleven .newsletter-form {
  margin-top: 30px;
  position: relative;
}
.footer-eleven .newsletter-form input {
  height: 55px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--gray-4);
  box-shadow: none;
  text-shadow: none;
  padding-left: 18px;
  padding-right: 65px;
  transition: all 0.4s ease;
}
.footer-eleven .newsletter-form input:focus {
  border-color: var(--primary);
}
.footer-eleven .newsletter-form .button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}
.footer-eleven .newsletter-form .sub-btn {
  height: 42px;
  width: 42px;
  border-radius: 6px;
  background-color: var(--red);
  color: var(--white);
  text-align: center;
  line-height: 42px;
  border: none;
  box-shadow: none;
  text-shadow: none;
  font-size: 17px;
  transition: all 0.4s ease;
}
.footer-eleven .newsletter-form .sub-btn:hover {
  color: var(--primary);
  background-color: var(--yellow);
}

/* ===========================
   VIDEO MODAL STYLES
=========================== */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.video-overlay.active .video-modal-container {
  transform: scale(1);
}

.video-wrapper {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.video-close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.video-close-btn i {
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .video-modal-container {
    width: 95%;
  }
  
  .video-close-btn {
    top: -45px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  
  .video-wrapper {
    border-radius: 8px;
  }
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.toast-notif {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 300px;
  max-width: 380px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  pointer-events: all;
  animation: toastIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
  border-left: 4px solid #DC143C;
  position: relative;
  overflow: hidden;
}
.toast-notif.toast-success { border-left-color: #22c55e; }
.toast-notif.toast-error   { border-left-color: #DC143C; }
.toast-notif.toast-info    { border-left-color: #3b82f6; }
.toast-notif.toast-warning { border-left-color: #f59e0b; }
.toast-notif.toast-hide {
  animation: toastOut 0.3s ease forwards;
}
.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.toast-success .toast-icon { background: #dcfce7; color: #16a34a; }
.toast-error   .toast-icon { background: #fee2e2; color: #DC143C; }
.toast-info    .toast-icon { background: #dbeafe; color: #2563eb; }
.toast-warning .toast-icon { background: #fef3c7; color: #d97706; }
.toast-body { flex: 1; }
.toast-title {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  margin: 0 0 3px;
}
.toast-msg {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.toast-close {
  background: none;
  border: none;
  font-size: 16px;
  color: #aaa;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}
.toast-close:hover { color: #555; }
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  opacity: 0.3;
  animation: toastProgress linear forwards;
}
.toast-success .toast-progress { color: #22c55e; }
.toast-error   .toast-progress { color: #DC143C; }
.toast-info    .toast-progress { color: #3b82f6; }
.toast-warning .toast-progress { color: #f59e0b; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(60px) scale(0.9); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); max-height: 120px; margin-bottom: 0; }
  to   { opacity: 0; transform: translateX(60px); max-height: 0; padding: 0; margin: 0; }
}
@keyframes toastProgress {
  from { width: 100%; }
  to   { width: 0%; }
}
@media (max-width: 480px) {
  #toast-container {
    top: 16px;
    right: 12px;
    left: 12px;
  }
  .toast-notif {
    min-width: unset;
    max-width: 100%;
  }
}

/* ============================================
   RECAPTCHA BADGE — selalu di atas semua elemen
   ============================================ */
.grecaptcha-badge {
  z-index: 99999 !important;
  visibility: visible !important;
}

/* ============================================
   MOBILE RESPONSIVE FIXES (max-width: 767px)
   ============================================ */

/* --- Navbar Logo --- */
.navbar-logo-img {
  width: 80px;
  height: 80px;
  background: #f0f0f0;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}
@media (max-width: 767px) {
  .navbar-logo-img {
    width: 52px;
    height: 52px;
  }
  /* Kurangi padding navbar saat mobile */
  .navbar-area.navbar-nine {
    padding: 6px 0;
  }
  /* Dropdown menu lebih rapat */
  .navbar-area.navbar-nine .navbar .navbar-collapse {
    top: 100%;
    padding: 8px 12px;
  }
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 8px 0;
    font-size: 14px;
    margin: 0;
  }
  /* Language switcher geser kiri agar tidak nabrak toggler */
  .navbar-area.navbar-nine .navbar .navbar-btn {
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
  }
  .language-switcher {
    gap: 6px !important;
  }
  .language-switcher a svg {
    width: 22px !important;
    height: 16px !important;
  }
}

/* --- Heading Sizes Mobile --- */
@media (max-width: 767px) {
  h2, .h2 { font-size: 1.5em; }
  h3, .h3 { font-size: 1.25em; }
  h4, .h4 { font-size: 1.1em; }
  h5, .h5 { font-size: 1em; }

  /* Section title */
  .section-title-five .content h2,
  .section-title .content h2 {
    font-size: 1.5rem;
  }
}

/* --- Hero Section Mobile --- */
@media (max-width: 767px) {
  .header-eight {
    padding: 100px 0 60px 0;
    text-align: center;
  }
  .header-eight .header-content {
    text-align: center;
    padding: 0 8px;
  }
  .header-eight .header-content h1 {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0.3px;
  }
  .header-eight .header-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    opacity: 0.85;
    padding: 0 4px;
  }
  .header-eight .button {
    margin-top: 28px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .header-eight .primary-btn {
    margin-right: 0;
    font-size: 14px;
    padding: 12px 22px;
  }
  .header-eight .video-button {
    margin-top: 0;
  }
  /* Sembunyikan gambar pabrik di HP kecil agar hero tidak terlalu panjang */
  .header-eight .header-image {
    display: none;
  }
}

/* --- Products Section Mobile --- */
@media (max-width: 767px) {
  #products.portfolio-area {
    padding: 60px 0 !important;
  }
  .product-image {
    height: 180px !important;
  }
  .product-content h5 {
    font-size: 15px !important;
  }
}

/* --- Services Section Mobile --- */
@media (max-width: 767px) {
  .single-service {
    padding: 28px 20px;
  }
}

/* --- Pricing Section Mobile --- */
@media (max-width: 767px) {
  .pricing-style-fourteen {
    padding: 30px 20px;
    margin-top: 20px;
  }
  .pricing-style-fourteen.middle {
    transform: scale(1);
  }
  .pricing-style-fourteen .amount {
    font-size: 40px;
  }
}

/* --- Market Targeting Chart Mobile --- */
@media (max-width: 575px) {
  .market-targeting-chart svg text {
    font-size: 10px;
  }
  .market-targeting-chart {
    padding: 10px !important;
  }
}

/* --- Map Section Mobile --- */
@media (max-width: 767px) {
  .map-section iframe {
    height: 250px !important;
  }
  .map-style-9 {
    margin-top: 0 !important;
  }
}

/* --- Footer Mobile --- */
@media (max-width: 767px) {
  .footer-area {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* --- General Section Padding Mobile --- */
@media (max-width: 767px) {
  section {
    overflow-x: hidden;
  }
}

/* --- Footer Bottom Bar --- */
.footer-eleven {
  padding-bottom: 0 !important;
}
.footer-top {
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-top {
    padding-bottom: 20px;
  }
}
.footer-bottom {
  border-top: 1px solid #e8e8e8;
  background: #fafafa;
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom-copy {
  font-size: 13px;
  color: #888;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #DC143C;
}
.footer-bottom-links span {
  color: #ccc;
  font-size: 12px;
}
@media (max-width: 576px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ============================================================
   REFACTOR: classes for previously-inline styles
   ============================================================ */

/* Logo image inside navbar/sidebar/footer */
.brand-logo-circle {
  width: 80px;
  height: 80px;
  background: #f0f0f0;
  border-radius: 50%;
  padding: 8px;
}

/* Language switcher */
.language-switcher {
  display: flex;
  gap: 15px;
  align-items: center;
}
.language-switcher a {
  display: inline-block;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  position: relative;
  z-index: 9999;
  opacity: 0.5;
  transition: all 0.2s ease;
}
.language-switcher a.active {
  outline: 2px solid #DC143C;
  background-color: rgba(220, 20, 60, 0.1);
  opacity: 1;
}
.language-switcher a svg {
  pointer-events: none;
}

/* Products section */
#products.portfolio-area {
  padding: 100px 0;
  background-color: #f9f9f9;
}
.product-card {
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.product-card .product-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-card .product-content {
  padding: 20px;
}
.product-card .product-content h5 {
  margin-bottom: 10px;
  font-weight: 600;
}
.product-card .product-content p {
  color: #6d6d6d;
  font-size: 14px;
}
.product-card .badge-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #DC143C;
}
.product-card .badge-tag.badge-yellow {
  background: #FFD700;
  color: #1a1a1a;
}

/* Market targeting section */
.market-targeting-chart {
  text-align: center;
  padding: 20px;
}
.market-targeting-chart svg {
  height: auto;
  max-width: 440px;
  display: block;
  margin: 0 auto;
}
.market-descriptions {
  padding: 20px;
}
.market-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #DC143C;
}
.market-item .market-percent {
  min-width: 60px;
  text-align: center;
}
.market-item .market-percent span {
  font-size: 24px;
  font-weight: bold;
}
.market-item .market-text {
  padding-left: 15px;
}
.market-item .market-text h5 {
  margin: 0 0 5px 0;
  font-weight: bold;
}
.market-item .market-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.market-item.market-household   { border-left-color: #DC143C; }
.market-item.market-automotive  { border-left-color: #B22222; }
.market-item.market-consumption { border-left-color: #FFD700; }
.market-item.market-wwtp        { border-left-color: #E6C200; }
.market-item.market-wtp         { border-left-color: #1a1a1a; }
.market-household   .market-percent span,
.market-household   .market-text h5 { color: #DC143C; }
.market-automotive  .market-percent span,
.market-automotive  .market-text h5 { color: #B22222; }
.market-consumption .market-percent span { color: #E6C200; }
.market-consumption .market-text h5,
.market-wwtp        .market-text h5,
.market-wtp         .market-text h5 { color: #1a1a1a; }
.market-wwtp        .market-percent span { color: #E6C200; }
.market-wtp         .market-percent span { color: #1a1a1a; }

/* OTP modal */
#otpModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.otp-modal-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.otp-modal-card .otp-icon {
  width: 60px;
  height: 60px;
  background: #DC143C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.otp-modal-card .otp-icon i {
  color: #fff;
  font-size: 24px;
}
.otp-modal-card h4 {
  margin: 0 0 8px;
  color: #1a1a1a;
}
.otp-spinner {
  margin: 24px auto 16px;
  width: 44px;
  height: 44px;
  border: 4px solid #f0f0f0;
  border-top-color: #DC143C;
  border-radius: 50%;
  animation: otpSpin 0.8s linear infinite;
}
@keyframes otpSpin { to { transform: rotate(360deg); } }
#otpLoadingState p   { color: #666; font-size: 14px; margin: 0 0 8px; }
#otpLoadingState p + p { color: #aaa; font-size: 12px; }
#otpDesc { color: #666; font-size: 14px; margin: 0 0 24px; line-height: 1.5; }
.otp-input-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.otp-input-row input {
  width: 44px;
  height: 52px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
}
#otpError {
  color: #DC143C;
  font-size: 13px;
  margin: 0 0 16px;
  display: none;
}
#otpVerifyBtn {
  width: 100%;
  padding: 13px;
  background: #DC143C;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
}
.otp-resend-line {
  margin: 0;
  font-size: 13px;
  color: #888;
}
.otp-resend-line a {
  color: #DC143C;
  font-weight: 600;
}
#otpTimer {
  margin: 8px 0 0;
  font-size: 12px;
  color: #aaa;
}

/* Footer contact icons */
.footer-widget.newsletter p {
  margin-bottom: 10px;
}
.footer-widget.newsletter p i {
  margin-right: 8px;
}
.footer-widget .social-links {
  margin-top: 20px;
}
.footer-widget .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #DC143C;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s;
}
.footer-widget .social-links a:hover {
  background: #a8102f;
}
