/* --- Premium Light Theme System --- */
:root {
  --primary: #b20501;
  /* Deep Red */
  --primary-glow: rgba(178, 5, 1, 0.2);
  --secondary: #fff18b;
  /* Cream Orange */
  --secondary-glow: rgba(255, 204, 139, 0.3);
  --accent: #daa520;
  /* Metallic Gold Accent */
  --bg-main: #ffffff;
  --bg-soft: #fcfcfc;
  --text-main: #2d3436;
  --text-muted: #636e72;
  --surface: rgba(255, 255, 255, 0.85);
  /* Increased opacity for readability */
  --surface-border: rgba(0, 0, 0, 0.08);
  --font-heading: "Trade Winds", cursive;
  --font-main: "Eczar", serif;
}

/* --- Global Styles --- */
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Floating Particles (Gold Dust) --- */
.floating-circle {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  /* Changed to Gold Accent */
  z-index: -1;
  pointer-events: none;
  filter: blur(25px);
  animation: floatAnimation 25s infinite ease-in-out;
  opacity: 0.6;
}

.fc-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}

.fc-2 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  right: -100px;
  background: radial-gradient(
    circle,
    var(--secondary-glow) 0%,
    transparent 70%
  );
  animation-delay: -5s;
}

.fc-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 5%;
  animation-delay: -10s;
  opacity: 0.4;
}

.fc-4 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: 10%;
  animation-delay: -7s;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 40px) scale(1.1);
  }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--secondary));
  border-radius: 10px;
  border: 2px solid var(--bg-soft);
}

/* --- Marquee --- */
.top-marquee {
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  /* Blue to Green Gradient */
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.aurora-banner {
  width: 100%;
  padding: 50px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 60px;
}

.aurora-bg {
  position: absolute;
  width: 200%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
        rgba(178, 5, 1, 0.05) 0%,
    rgba(255, 204, 139, 0.05) 50%,
    transparent 100%
  );
  animation: auroraMove 15s infinite alternate ease-in-out;
  z-index: 0;
}

.capsule-track {
  display: flex;
  white-space: nowrap;
  animation: luxuryScroll 30s linear infinite;
  gap: 40px;
  z-index: 1;
}

.promo-capsule {
  padding: 15px 35px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid var(--surface-border);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-main);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: 0.4s;
  animation: capsuleFloat 4s infinite ease-in-out;
}

.promo-capsule:nth-child(even) {
  animation-delay: -2s;
}

.promo-capsule b {
  color: var(--primary);
  font-weight: 900;
}

.promo-capsule span {
  color: var(--secondary);
}

.badge-icon {
  width: 45px;
  height: 45px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.promo-capsule:hover {
  transform: scale(1.1) translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px var(--primary-glow);
  background: #fff;
}
.lin {
  cursor: pointer;
}

@keyframes luxuryScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes capsuleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes auroraMove {
  0% {
    transform: translate(-20%, -10%) rotate(0deg);
  }

  100% {
    transform: translate(10%, 10%) rotate(5deg);
  }
}

.aurora-banner:hover .capsule-track {
  animation-play-state: paused;
}

/* --- Simple Text Marquee --- */
.simple-marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  width: fit-content;
  animation: simpleMarqueeScroll 40s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 80px;
  padding-right: 80px;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 22px;
  white-space: nowrap;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-item b {
  color: var(--primary);
}

.marquee-item i {
  color: var(--secondary);
  font-size: 18px;
}

@keyframes simpleMarqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Mobile optimizations for marquee */
@media (max-width: 768px) {
  .marquee-item {
    font-size: 24px;
    gap: 10px;
  }

  .marquee-group {
    gap: 40px;
    padding-right: 40px;
  }
}

.simple-marquee:hover .marquee-inner {
  animation-play-state: paused;
}

/* --- Modern Navbar Redesign --- */
.nav-container-wrapper {
  position: sticky;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 0px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-container-wrapper.scrolled {
  padding-top: 0;
}

.nav-outer {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 100px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.nav-container-wrapper.scrolled .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.nav-container-wrapper.scrolled .nav-outer {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  margin: 0;
  background: transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  width: 100%;
  height: 85px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
}

.nav-container-wrapper.scrolled .nav-inner {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 70px;
}

.nav-line {
  width: 100%;
  height: 100%;
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #131718;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-50%);
  border-radius: 10px;
}

.nav-links li a:hover {
  color: var(--primary);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.btn-nav-cta {
  padding: 12px 28px;
  background: linear-gradient(178deg, var(--primary), #373523);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px var(--primary-glow);
  transition: all 0.3s ease;
}

.btn-nav-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px var(--primary-glow);
}

/* Mobile Icon Animation */
.line-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  transition: 0.3s;
}

.line-icon:hover {
  background: rgba(0, 0, 0, 0.1);
}

.hamburger-inner {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-inner span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--primary);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.line-icon.active .hamburger-inner span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.line-icon.active .hamburger-inner span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.line-icon.active .hamburger-inner span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Slide */
@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    gap: 25px;
    padding: 40px;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .mobile-menu-overlay.active {
    /* opacity: 1; */
    visibility: visible;
    z-index: 1;
  }

  .nav-inner {
    padding: 0 15px;
  }

  .nav-line {
    padding: 0 15px;
  }
}

/* --- Social Sidebar --- */
.social-sidebar {
  position: fixed;
  left: 25px;
  top: 90%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.social-icon {
  width: 55px;
  height: 55px;
  border-radius: 18px;
  display: flex;
  margin-top: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: 0.4s;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--surface-border);
}

.social-icon:hover {
  transform: scale(1.1) translateX(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.social-icon.instagram {
  color: #e1306c;
}

.social-icon.whatsapp {
  color: #25d366;
}

.social-icon.facebook {
  color: #1877f2;
}

/* --- Aurora Parallax Slider System --- */
.aurora-slider {
    width: 100%;
    height: 600px; /* Standardizing height for better visual balance */
    position: relative;
    overflow: hidden;
    background: #000;
}

@media (max-width: 1200px) {
    .aurora-slider { height: 500px; }
}

@media (max-width: 768px) {
    .aurora-slider { height: 350px; }
}

@media (max-width: 480px) {
    .aurora-slider { height: 250px; }
}

.aurora-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
    background-size: 100% 100%; /* Force image to fit container exactly */
    background-position: center;
    background-repeat: no-repeat;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff00;
    z-index: 1;
}

.slider-item.active {
    opacity: 10;
    visibility: visible;
    z-index: 2;
}

.slide-content-box {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 40px;
    max-width: 650px;
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.slider-item.active .glass-card {
    transform: translateX(0);
    opacity: 1;
}

.card-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px var(--secondary-glow);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.slide-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.slider-cta-group {
    display: flex;
    gap: 20px;
}

.btn-neon {
    padding: 18px 40px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.btn-neon:hover {
    background: transparent;
    transform: translateY(-5px);
    color: var(--primary);
}

.btn-ghost {
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .glass-card {
        padding: 40px 30px;
        border-radius: 25px;
        margin: 0 15px;
    }
    .col-lg-3s{
        margin-left: 220px;
    margin-top: -250px;
    }
    .slide-title {
        font-size: 40px;
    }
    .slide-desc {
        font-size: 16px;
    }
    .slider-cta-group {
        flex-direction: column;
    }
    .slide-content-box {
        padding: 0;
    }
}

/* --- Slider Controls --- */
.aurora-controls {
    position: absolute;
    bottom: 50px;
    right: 80px;
    z-index: 10;
    display: flex;
    gap: 20px;
}
.control-btn {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(5px);
}

@media screen and (max-width: 768px) {
    .control-btn {
        width: 30px;
        height: 30px;
        font-size: 8px;
    }
}
.control-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    left: 80px;
    bottom: 50px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.dot.active {
    background: rgba(255, 255, 255, 0.4);
}

.dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--secondary);
    animation: sliderProgress 5s linear forwards;
}

@keyframes sliderProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

@media (max-width: 768px) {
    .aurora-controls {
        right: 20px;
        bottom: 20px;
    }
    .slider-dots {
        left: 20px;
        bottom: 20px;
        display: none;
    }
}

/* --- Feature Section --- */
.feature-item {
  text-align: center;
  padding: 60px 40px;
  background: #fff;
  border-radius: 35px;
  border: 1px solid var(--surface-border);
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(178, 5, 1, 0.1);
  border-color: var(--primary);
}

.feature-icon-box {
  width: 110px;
  height: 110px;
  background: var(--bg-soft);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px auto;
  color: var(--primary);
  font-size: 44px;
  transition: 0.5s;
  transform: translateZ(30px);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
}

.feature-item:hover .feature-icon-box {
  background: var(--primary);
  color: #fff;
  transform: translateZ(60px) rotate(15deg);
  box-shadow: 0 15px 30px var(--primary-glow);
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  color: var(--text-main);
  margin-bottom: 20px;
  transform: translateZ(20px);
}

.feature-desc {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
  transform: translateZ(10px);
}

.hover-underline {
  width: 60px;
  height: 5px;
  background: var(--secondary);
  margin: 25px auto 0 auto;
  transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
  transform: translateZ(10px);
}

.feature-item:hover .hover-underline {
  width: 100%;
  background: var(--primary);
}

/* --- Who We Are Section --- */
.who-we-are {
  background: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--surface-border);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 60px;
  margin-bottom: 35px;
  margin-left: 60px;
  background: linear-gradient(16s3deg, var(--primary), #ebb11c);
  -webkit-background-clip: text;
  background-clip: text;
  /*-webkit-text-fill-color: transparent;*/
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  background: var(--accent);
  margin-top: 15px;
  border-radius: 10px;
  margin-left: px;
}
.who-desc {
  font-size: 20px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 45px;
  text-align: justify;
}

.btn-custom {
  padding: 18px 50px;
  background: linear-gradient(90deg, var(--primary), #e74c3c);
  background-size: 200% auto;
  color: #fff;
  border-radius: 100px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px var(--primary-glow);
}

.btn-custom:hover {
  background-position: right center;
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(178, 5, 1, 0.4);
  letter-spacing: 3px;
}

.blob-img {
  width: 100%;
  border-radius: 35px;
  animation: imgFloat 10s ease-in-out infinite;
  object-fit: cover;
  min-height: 500px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

@keyframes imgFloat {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    border-radius: 35px;
  }

  50% {
    transform: scale(1.05) rotate(1deg);
    border-radius: 50px;
  }
}

/* --- Magic Cards Styles --- */
.cards-section {
  width: 100%;
  background: var(--bg-soft);
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

.card {
  width: 380px;
  height: 560px;
  background: #fff;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 35px;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--surface-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- Rotating Border Effect --- */
.card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    var(--primary),
    var(--secondary),
    transparent 40%
  );
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}

.card:hover::before {
  opacity: 1;
}

.card::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #fff;
  border-radius: 32px;
  z-index: 0;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-20px);
  box-shadow: 0 40px 80px rgba(178, 5, 1, 0.15);
  border-color: transparent;
}

.card-info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  z-index: 2;
  background: transparent;
}

.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 25px;
  margin-bottom: 25px;
  transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card:hover .card-img {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.card .title {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  transition: 0.4s;
}

.card:hover .title {
  color: var(--primary);
}

.card .description {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.card-btn {
  width: 100%;
  height: 60px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.card-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.card:hover .card-btn::before {
  transform: translate(-50%, -50%) scale(1);
}

.card-btn:hover {
  color: #fff;
  box-shadow: 0 10px 25px var(--primary-glow);
  border-color: transparent;
}

.card-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.card-btn:hover::before {
  left: 100%;
}

.card-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 10px 25px var(--primary-glow);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.card-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.02);
}

/* --- Mobile Responsive --- */
@media (max-width: 991px) {
  .nav-outer {
    margin: 15px auto;
    width: 92%;
  }

  .nav-inner {
    height: 75px;
  }

  .nav-line {
    padding: 0 25px;
  }

  .brand-text {
    font-size: 22px;
  }

  .brand-img {
    width: 85px;
    height: 45px;
  }

  /* FIXED SLIDER FOR MOBILE */
  .slider-container {
    height: 400px;
    border-radius: 20px;
  }

  .slide .item {
    width: 150px;
    height: 200px;
    display: none;
  }

  .slide .item:nth-child(1),
  .slide .item:nth-child(2) {
    display: block;
  }

  .slide .item:nth-child(2) {
    display: none;
  }

  .content {
    left: 20px;
    width: 90%;
    padding-right: 20px;
  }

  .content .name {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .content .des {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 8px 12px;
    width: 100%;
  }

  .content button {
    padding: 12px 25px;
    font-size: 12px;
  }

  /* Hide side items on mobile */
  .slide .item:nth-child(3),
  .slide .item:nth-child(4),
  .slide .item:nth-child(5),
  .slide .item:nth-child(6) {
    display: none;
  }

  .slider-buttons {
    bottom: 20px;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    margin: 0 10px;
  }

  .card {
    width: 100%;
    max-width: 450px;
    height: 500px;
  }

  .card-img {
    height: 180px;
  }

  .card .title {
    font-size: 24px;
  }

  .card .description {
    font-size: 14px;
  }

  .social-sidebar {
    display: none;
  }

  /* Mobile Menu Styling */
  .nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    padding: 40px 20px;
    gap: 30px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    border: 1px solid var(--surface-border);
    align-items: center;
    animation: premiumMenuFade 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: top center;
  }

  s .nav-links.active li {
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: menuItemFade 0.4s ease forwards;
  }

  .nav-links.active li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav-links.active li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav-links.active li:nth-child(4) {
    animation-delay: 0.4s;
  }

  @keyframes premiumMenuFade {
    from {
      opacity: 0;
      transform: translateY(-20px) scale(0.95);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes menuItemFade {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: clamp(30px, 8vw, 42px);
    /* Fluid typography */
    text-align: center;
    line-height: 1.3;
    margin-left: 10px;
  }
  .brand-img {
    width: 85px;
    height: 45px;
  }
  .section-title::after {
    margin: 15px auto;
    width: 80px;
    height: 5px;
  }

  .slider-container {
    height: 350px;
  }

  .content .name {
    font-size: 22px;
  }

  .content .des {
    font-size: 12px;
  }

  .content button {
    padding: 10px 20px;
    font-size: 11px;
  }

  .who-we-are {
    padding: 60px 0;
    text-align: center;
  }

  .who-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-muted);
  }

  .blob-img {
    min-height: 300px;
    margin-top: 40px;
  }

  .cards-section {
    padding: 60px 0;
  }

  .promo-capsule {
    padding: 12px 25px;
    font-size: 16px;
  }

  .badge-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .premium-footer {
    padding: 60px 0 0 0;
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto 30px auto;
  }

  .footer-heading::after {
    left: 0;
    transform: none;
  }

  .footer-links,
  .premium-footer .col-6 {
    text-align: left;
  }

  .social-grid,
  .premium-footer .brand {
    justify-content: center;
  }

  .footer-links li a {
    justify-content: flex-start;
  }

  .footer-contact-item {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 20px;
  }

  .copyright-text {
    text-align: center;
  }

  /* Feature Items */
  .feature-item {
    padding: 40px 25px;
  }

  .feature-icon-box {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-desc {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    height: 65px;
  }
  .brand-img {
    width: 105px;
    height: 45px;
  }
  .brand-text {
    font-size: 18px;
  }

  .slider-container {
    height: 300px;
  }

  .content .name {
    font-size: 20px;
  }

  .content .des {
    font-size: 11px;
    padding: 6px 10px;
  }

  .content button {
    padding: 8px 16px;
    font-size: 10px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    margin: 0 8px;
  }

  .promo-capsule {
    font-size: 14px;
    gap: 10px;
    padding: 10px 20px;
  }

  .nav-outer {
    border-radius: 50px;
  }

  .nav-inner {
    border-radius: 50px;
  }

  .floating-circle {
    display: none;
  }

  .feature-item {
    padding: 30px 20px;
    border-radius: 25px;
  }

  .feature-icon-box {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .cards-container {
    gap: 25px;
  }

  .card {
    height: 450px;
    border-radius: 25px;
  }

  .card-info {
    padding: 25px;
  }

  .card-img {
    height: 150px;
  }

  .card .title {
    font-size: 20px;
  }

  .card .description {
    font-size: 13px;
  }

  .card-btn {
    height: 50px;
    font-size: 12px;
  }
}

/* --- Fix for Touch Device Hover --- */
@media (hover: none) {
  .card::before {
    opacity: 0.5;
  }

  .feature-item:hover {
    transform: none;
  }

  .card:hover {
    transform: translateY(-10px);
  }
}

/* SIMPLIFIED SLIDER FOR MOBILE */
.slider-container.mobile-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slider-container.mobile-slider .slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-container.mobile-slider .item {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

/* --- Premium Footer --- */
.premium-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 50px 0 0 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.footer-logo .brand-text {
  font-size: 32px;
  margin-bottom: 25px;
  display: inline-block;
}

.footer-desc {
  color: #a0a0a0;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 35px;
  max-width: 350px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  /* Refined for mobile */
  height: 3px;
  background: var(--secondary);
  border-radius: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 18px;
}

.footer-links li a {
  color: #a0a0a0;
  text-decoration: none;
  transition: 0.4s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.footer-links li a i {
  font-size: 12px;
  color: var(--primary);
  transition: 0.4s;
}

.footer-links li a:hover {
  color: var(--secondary);
  transform: translateX(8px);
}

.footer-links li a:hover i {
  transform: scale(1.5);
  color: var(--secondary);
}

.social-grid {
  display: flex;
  gap: 15px;
}

.social-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.5s;
}

.social-box:hover {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  transform: translateY(-8px) rotate(8deg);
  border-color: transparent;
  box-shadow: 0 10px 20px var(--primary-glow);
}

.footer-contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-text p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.ocu a {
  color: #da8920;
  cursor: pointer;
  text-decoration: none;
}
.footer-bottom {
  background: #000;
  padding: 10px 40px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
  color: #666;
  margin: 0;
  font-size: 15px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

.footer-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary-glow);
  filter: blur(150px);
  border-radius: 50%;
  bottom: -200px;
  right: -100px;
  opacity: 0.5;
  pointer-events: none;
}

/* --- Breadcrumb Wrapper --- */
.breadcrumb-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  /* Space between breadcrumb and title */
}

.breadcrumb-item {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.breadcrumb-item:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.breadcrumb-item i {
  font-size: 14px;
}

.breadcrumb-item.active {
  color: var(--primary);
  font-weight: 700;
  pointer-events: none;
  background: rgba(178, 5, 1, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
}

.breadcrumb-separator {
  margin: 0 15px;
  color: var(--secondary);
  font-size: 12px;
  opacity: 0.7;
}

/* Dark mode / overlay adjustments if needed */
.about-hero .breadcrumb-wrapper,
.contact-hero .breadcrumb-wrapper {
  position: relative;
  z-index: 5;
}

/* --- Wavy Text Animation --- */
.wavy-text {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  margin-top: 50px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 5px;
  -webkit-box-reflect: below -30px
    linear-gradient(transparent, rgba(0, 0, 0, 0.15));
}

.wavy-text span {
  display: inline-block;
  animation: wavyAnimate 2s ease-in-out infinite;
  animation-delay: calc(0.1s * var(--i));
  transition: 0.3s;
}

.wavy-text:hover span {
  animation: wavyAnimate 0.8s ease-in-out infinite;
  animation-delay: calc(0.05s * var(--i));
  color: var(--accent);
}

@keyframes wavyAnimate {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  50% {
    transform: translateY(-25px) scale(1.1);
    color: var(--secondary);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}

/* Mobile Responsiveness for Wavy Text */
@media (max-width: 768px) {
  .wavy-text {
    font-size: 28px;
    /* Slightly smaller to fit better */
    line-height: 1.4;
    -webkit-box-reflect: unset;
    /* Disable reflection to prevent overlap on wrap */
    white-space: normal;
    /* Allow text to wrap */
    margin-bottom: 10px;
  }

  .wavy-text span {
    animation: wavyAnimate 1.5s ease-in-out infinite;
  }

  @keyframes wavyAnimate {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }

    /* Subtle wave on mobile */
  }
}
.footer2-widget__item-text {
  margin-left: -20px;
  text-align: justify;
}

/* ===== Estimate Floating Button ===== */
.price-style {
  position: fixed;
  bottom: 160px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: var(--transition);
}

.pricelist_icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}

.pricelist_icon:hover {
  transform: scale(1.1);
}

.bounce2 {
  animation: bounce2 2s infinite ease-in-out;
}

@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.wapp {
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* --- Glass Modern Card UI --- */
.glass-ui-wrapper {
  color: white;
  position: relative;
  font-family: 'Poppins', sans-serif;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-ui-wrapper::before,
.glass-ui-wrapper::after {
  content: "";
  /* background: linear-gradient(135deg, #fab570 0%, #ff8300 100%); */
  position: absolute;
  z-index: 1;
  opacity: 0.6; /* Increased opacity for better blur visibility */
}

.glass-ui-wrapper::before {
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  top: 15%;
  right: -5%;
  filter: blur(2px);
}

.glass-ui-wrapper::after {
  content: "";
  position: absolute;
  height: 5rem;
  width: 2px;
  top: -10%;
  left: 10%;
  background: #fab570;
  transform: rotate(35deg);
}

.glass-ui-box {
  width: 100%;
  min-height: 340px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  position: relative;
  box-shadow: 
    0 8px 32px 0 rgba(31, 38, 135, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

/* Glass Glare Effect */
.glass-ui-box::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.glass-ui-box:hover::after {
  opacity: 1;
}

.glass-ui-box .title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #0c1c2c; /* Switched to dark for readability on light bg */
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.glass-ui-box .glass-content-area strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #ff8300;
  font-size: 1.2rem;
}

.glass-ui-box .glass-content-area p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #333; /* Darker for readability */
}

.glass-ui-box .glass-content-area span {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.glass-ui-box:hover {
  box-shadow: 0px 0px 30px 1px #ffbb763f;
  border: 1px solid rgba(255, 255, 255, 0.454);
  transform: translateY(-5px);
}

.specialty-bg {
    background-color: #f7f9fc !important; /* Slightly cleaner light bg */
    padding: 25px 0;
    position: relative;
    z-index: 1;
    width: 100%;
}

.specialty-bg h1.clr {
    color: #0c1c2c !important;
}

.specialty-bg p.regular {
    color: #555;
}

/* --- Animated Specialty Cards --- */
.animated-specialty-card {
  --border: 4px;
  --rounded: 24px;
  margin: 0;
  width: 100%;
  min-height: 380px;
  border-radius: var(--rounded);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--border);
  z-index: 1;
  transition: transform 0.3s ease;
}

.animated-specialty-card:hover {
  transform: translateY(-10px);
}

.animated-specialty-card::before,
.animated-specialty-card::after {
  content: "";
  z-index: -1;
  position: absolute;
  will-change: auto;
  --size: calc(100%);
  width: var(--size);
  height: var(--size);
  border-radius: var(--rounded);
  background-size: 400% 400%;
  animation: bg-spin-special 3s linear 0s infinite normal none running;
  background-image: radial-gradient(
      circle farthest-side at 0 100%,
      #00ccb1,
      transparent
    ),
    radial-gradient(circle farthest-side at 100% 0, #5ddcff, transparent),
    radial-gradient(circle farthest-side at 100% 100%, #3c67e3, transparent),
    radial-gradient(circle farthest-side at 0 0, #4e00c2, #0000);
}

.animated-specialty-card::after {
  transition: 0.5s;
  animation-delay: 0.5s;
  filter: blur(24px);
  opacity: 0.6;
}

@keyframes bg-spin-special {
  25% {
    background-position: right 20% bottom 40%;
  }
  75% {
    background-position: left 45% top 20%;
  }
}

.specialty-points-wrapper {
  position: absolute;
  overflow: hidden;
  width: calc(100% - (var(--border) * 4));
  height: calc(100% - (var(--border) * 4));
  border-radius: calc(var(--rounded) - 4px);
  pointer-events: none;
  z-index: 80;
}

.specialty-points-wrapper .point {
  --sz-point: 4px;
  top: -8px;
  position: absolute;
  animation: floating-points-special infinite ease-in-out;
  pointer-events: none;
  width: var(--sz-point);
  height: var(--sz-point);
  background-color: #5ddcff;
  border-radius: 9999px;
}

@keyframes floating-points-special {
  0% { transform: translate(0, 0); }
  95% { opacity: 0; }
  100% {
    opacity: 0;
    transform: translate(150px, 300px);
  }
}

.specialty-points-wrapper .point:nth-child(1) { left: 10%; opacity: 1; animation-duration: 2.35s; animation-delay: 0.2s; }
.specialty-points-wrapper .point:nth-child(2) { left: 30%; opacity: 0.7; animation-duration: 2.5s; animation-delay: 0.5s; }
.specialty-points-wrapper .point:nth-child(3) { left: 25%; opacity: 0.8; animation-duration: 2.2s; animation-delay: 0.1s; }
.specialty-points-wrapper .point:nth-child(4) { left: 44%; opacity: 0.6; animation-duration: 2.05s; }
.specialty-points-wrapper .point:nth-child(5) { left: 50%; opacity: 1; animation-duration: 1.9s; }
.specialty-points-wrapper .point:nth-child(6) { left: 75%; opacity: 0.5; animation-duration: 1.5s; animation-delay: 1.5s; }
.specialty-points-wrapper .point:nth-child(7) { left: 88%; opacity: 0.9; animation-duration: 2.2s; animation-delay: 0.2s; }
.specialty-points-wrapper .point:nth-child(8) { left: 58%; opacity: 0.8; animation-duration: 2.25s; animation-delay: 0.2s; }
.specialty-points-wrapper .point:nth-child(9) { left: 98%; opacity: 0.6; animation-duration: 2.6s; animation-delay: 0.1s; }
.specialty-points-wrapper .point:nth-child(10) { left: 65%; opacity: 1; animation-duration: 2.5s; animation-delay: 0.2s; }

.animated-specialty-card .card-inner-content {
  position: absolute;
  width: calc(100% - (var(--border) * 2));
  height: calc(100% - (var(--border) * 2));
  border-radius: calc(var(--rounded) - 4px);
  overflow: hidden;
  z-index: 7;
  background-color: #fff;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.animated-specialty-card .feature-icon {
  width: 70px;
  height: 70px;
  background: rgb(226 172 44 / 86%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 30px;
  color: var(--primary);
  transition: 0.5s;
}

.animated-specialty-card:hover .feature-icon {
  background: var(--primary);
  color: #fff;
  transform: rotateY(360deg);
}

.animated-specialty-card .title {
  background: linear-gradient(to right, var(--primary), #da6115);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800 !important;
  font-size: 28px !important;
}

/* --- Who We Are: The "Floating Blade" Model --- */
.who-animated-card {
  all: unset; /* Reset previous styles */
  display: block;
  position: relative;
  width: 100%;
  background: #eee; /* This acts as the border track */
  border-radius: 50px;
  overflow: hidden;
  padding: 3px; /* Border thickness */
  box-shadow: 0 40px 100px rgba(9, 31, 50, 0.1);
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.who-animated-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent, 
    var(--primary), 
    var(--secondary), 
    transparent 40%
  );
  animation: border-orbit 4s linear infinite;
  z-index: -1;
}

@keyframes border-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.who-animated-card::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #fff;
  border-radius: 47px;
  z-index: 0;
}

.who-animated-card .blade-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
  transition: 0.8s ease;
}

.who-animated-card:hover .blade-bg {
  width: 60%;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.who-animated-card .card-inner-content {
  position: relative;
  z-index: 5;
  padding: 80px 60px;
  background: transparent !important;
}

.who-animated-card .floating-image-core {
  position: relative;
  transition: 0.6s;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.3));
}

.who-animated-card:hover .floating-image-core {
  transform: scale(1.05) translate(-10px, -10px);
}

.who-animated-card .stat-float {
  position: absolute;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  z-index: 10;
  bottom: 40px;
  left: -20px;
  animation: float-slow 4s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.who-animated-card .feature-icon-circle {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 30px;
  transition: 0.5s;
  border: 1px solid #eee;
}

.who-animated-card:hover .feature-icon-circle {
  background: var(--primary);
  color: #fff;
  transform: rotate(15deg) scale(1.1);
}

.who-animated-card:hover {
  transform: translateY(-10px);
}

/* --- Mobile Responsiveness for Floating Blade --- */
@media (max-width: 991px) {
  .who-animated-card .blade-bg {
    width: 100%;
    height: 40%;
    top: auto;
    bottom: 0;
    border-radius: 50px;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  }
  
  .who-animated-card:hover .blade-bg {
    width: 100%;
    height: 45%;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }

  .who-animated-card .card-inner-content {
    padding: 50px 30px;
  }

  .who-animated-card .stat-float {
    left: 20px;
    bottom: 20px;
  }

  .who-animated-card .section_tittle h2 {
    font-size: 50px !important;
    top: -20px !important;
  }
}

@media (max-width: 991px) {
  .about-features-list {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile Responsiveness for About Page --- */
@media (max-width: 575px) {
  /* Hero */
  .about-hero {
    min-height: 300px;
  }
  
  .about-hero h1 {
    font-size: 1.8rem;
  }

  /* Headings */
  .about-heading-animated {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 20px !important;
  }
  
  .about-crystal-box .section-title::after {
    width: 60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 70px;
  }

  /* Sections */
  .premium-about {
    padding: 40px 0;
  }

  .about-crystal-box {
    padding: 20px 15px;
    border-radius: 20px;
  }

  .about-features-grid {
    gap: 10px;
  }

  .about-feature-card {
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
  }
  
  .about-feature-card i {
    margin-bottom: 5px;
  }

  /* Stats */
  .stats-section {
    padding: 20px 0 !important;
    margin-top: 30px !important;
    border-radius: 20px !important;
  }
  
  .counter-box {
    margin-bottom: 20px;
    padding: 10px;
  }
  
  .counter-box i {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .counter-box .count {
    font-size: 28px;
    margin-bottom: 5px;
  }
  
  .counter-box p {
    font-size: 12px;
  }
  
  /* CTA Section */
  .bgcolor {
    padding: 30px 15px !important;
    margin-top: 30px !important;
    border-radius: 20px !important;
  }
  
  .bgcolor h2 {
    font-size: 22px;
    padding-bottom: 10px !important;
  }
  
  .bgcolor p {
    font-size: 14px;
    margin-bottom: 20px !important;
  }
  
  .bgcolor .btn-custom {
    padding: 10px 30px !important;
    font-size: 1rem !important;
  }

  /* Safety Cards */
  .safety-glass-card {
    padding: 20px;
    border-radius: 20px;
  }
  
  .safety-list li {
    padding-left: 25px;
    font-size: 14px;
  }
  
  .safety-list li i {
    top: 2px;
  }
}
@media (max-width: 575px) {
  .who-animated-card {
    border-radius: 30px;
  }
  
  .who-animated-card .card-inner-content {
    padding: 40px 20px;
  }

  .who-animated-card .stat-float {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
    display: inline-block;
  }
  
  .who-animated-card .feature-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* --- Product Cards sibling focus animation --- */
.product-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0; /* Maintain grid gap via Bootstrap columns */
  transition: 0.3s;
}

.product-cards-row .glossy-card {
  transition: transform 400ms, filter 400ms, box-shadow 400ms;
}

.product-cards-row .glossy-card:hover {
  transform: scale(1.08);
  z-index: 10;
}
/* 
.product-cards-row:hover .col-lg-4:not(:hover) .glossy-card {
  filter: blur(8px);
} */

/* Adjust glossy card for better display */
.glossy-card {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

/* --- Redesigned Premium About: Crystal Narrative --- */
.premium-about {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
  margin-top: 50px;
  overflow: hidden;
}

/* Removed overlay pseudo-element since background image is gone */

.about-heading-wrapper {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.about-heading-animated {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(to right, #091f32 0%, var(--primary) 50%, var(--secondary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow 3s linear infinite;
  display: inline-block;
  position: relative;
}

.about-heading-animated::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--secondary);
  border-radius: 10px;
  animation: width-pulse 2s infinite ease-in-out;
}

@keyframes gradient-flow {
  to { background-position: 200% center; }
}

@keyframes width-pulse {
  0%, 100% { width: 100px; opacity: 1; }
  50% { width: 150px; opacity: 0.7; }
}

.premium-about::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(178, 5, 1, 0.05) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

.about-crystal-box {
  background: #fff;
  border-radius: 50px;
  padding: 60px;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0, 32, 96, 0.08);
  border: 1px solid rgba(0, 32, 96, 0.05);
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-crystal-box:hover {
  transform: translateX(20px);
  box-shadow: 0 50px 120px rgba(0, 32, 96, 0.12);
}

.about-crystal-box .section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  margin-left: 0px;
}

.about-crystal-box .section-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 15%;
  height: 4px;
  background: var(--secondary);
  border-radius: 10px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}

.about-feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fcfcfc;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  transition: 0.4s;
}

.about-feature-card i {
  width: 50px;
  height: 50px;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.4s;
}

.about-feature-card:hover {
  background: #fff;
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.about-feature-card:hover i {
  background: var(--secondary);
  color: #fff;
  transform: rotate(10deg);
}

.about-image-portal {
  position: relative;
  z-index: 2;
}

.about-image-portal::before {
  content: "";
  position: absolute;
  inset: -20px;
  border: 2px dashed var(--secondary);
  border-radius: 40px;
  opacity: 0.2;
  animation: rotate-portal 20s linear infinite;
}

@keyframes rotate-portal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-image-portal img {
  border-radius: 40px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
  transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  animation: aboutImgFloat 6s ease-in-out infinite;
}

.about-image-portal:hover img {
  transform: scale(1.05) rotate(-2deg);
}

/* --- About Page Specific Enhancements --- */
.about-hero {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9, 31, 50, 0.7), rgba(9, 31, 50, 0.4));
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: linear-gradient(to bottom, #fff, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Safety Section Class Refinement */
.safety-wrapper {
  background: #f8f9fa;
  position: relative;
}

.safety-glass-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.safety-glass-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.safety-glass-card.do-card {
  border-top: 6px solid #28a745;
}

.safety-glass-card.dont-card {
  border-top: 6px solid #dc3545;
}

.safety-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: 0.6s;
}

.do-card .safety-icon-box { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.dont-card .safety-icon-box { background: rgba(220, 53, 69, 0.1); color: #dc3545; }

.safety-glass-card:hover .safety-icon-box {
  transform: rotateY(360deg) scale(1.1);
}

.safety-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.safety-list li {
  margin-bottom: 20px;
  padding-left: 35px;
  position: relative;
}

.safety-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 18px;
}

.do-card .safety-list li i { color: #28a745; }
.dont-card .safety-list li i { color: #dc3545; }

.safety-list li strong {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 2px;
}

.safety-list li span {
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.8rem; }
}

/* --- About Page: Stats & Journey --- */
.stats-section {
  background: linear-gradient(193deg, var(--primary), #ebb11c);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  width: 100%;
  margin-top: 50px;
}

.counter-box {
  text-align: center;
  color: #fff;
}

.counter-box i {
  font-size: 45px;
  margin-bottom: 20px;
  display: block;
  opacity: 0.8;
}

.counter-box .count {
  font-size: 56px;
  font-weight: 900;
  font-family: var(--font-heading);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}


/* --- Premium Contact Page Styles (Re-applied) --- */
.contact-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  width: 100%;
  background: linear-gradient(135deg, #002060 0%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  margin-top: -1px; /* Seamless integration with header */
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../../images/back.jpg') center/cover;
  opacity: 0.4;
  animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* .contact-card-wrapper {
  padding: 80px 0;
  background: var(--bg-soft);
  position: relative;
} 

/* Elegant Glass Form */
.glass-form-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 32, 96, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.glass-form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 32, 96, 0.15);
}

.glass-form-container::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.floating-group {
  position: relative;
  margin-bottom: 30px;
}

.floating-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #eef1f5;
  border-radius: 12px;
  background: #f8faff;
  font-size: 16px;
  transition: all 0.3s;
}

.floating-control:focus {
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 5px 20px rgba(178, 5, 1, 0.15);
  outline: none;
}

.floating-label {
  position: absolute;
  left: 20px;
  top: 18px;
  color: #181616;
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s;
  padding: 0 5px;
}

.floating-control:focus ~ .floating-label,
.floating-control:not(:placeholder-shown) ~ .floating-label {
  top: -10px;
  left: 15px;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  background: #fff;
  border-radius: 4px;
}

/* Animated Contact Info Box */
.contact-info-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.4s;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.contact-info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-icon-large {
  width: 70px;
  height: 70px;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: 0.4s;
}

.contact-info-box:hover .contact-icon-large {
  background: var(--secondary);
  color: #fff;
  transform: rotateY(180deg);
}

.map-wrapper-premium {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border: 5px solid #fff;
}
/* ===== NEW PREMIUM ABOUT SECTION STYLES ===== */

/* Main Section */
.premium-about-new {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #091f32 100%);
  overflow: hidden;
  width: 100%;
}

/* Animated Background Particles */
.about-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.about-particles .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #b20501, transparent);
  border-radius: 50%;
  animation: floatParticles 15s infinite ease-in-out;
  opacity: 0.6;
  box-shadow: 0 0 20px rgba(178, 5, 1, 0.5);
}

.about-particles .particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.about-particles .particle:nth-child(2) {
  left: 70%;
  top: 40%;
  animation-delay: 2s;
  animation-duration: 15s;
}

.about-particles .particle:nth-child(3) {
  left: 30%;
  top: 70%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.about-particles .particle:nth-child(4) {
  left: 85%;
  top: 15%;
  animation-delay: 1s;
  animation-duration: 14s;
}

.about-particles .particle:nth-child(5) {
  left: 50%;
  top: 50%;
  animation-delay: 3s;
  animation-duration: 16s;
}

@keyframes floatParticles {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -30px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translate(-20px, 40px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(40px, 20px) scale(1.1);
    opacity: 0.7;
  }
}

/* Image Wrapper */
.about-image-wrapper-new {
  position: relative;
  z-index: 2;
}

.image-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(178, 5, 1, 0.2), rgba(107, 0, 0, 0.2));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.image-frame:hover::before {
  opacity: 1;
}

.about-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.image-frame:hover .about-main-img {
  transform: scale(1.05);
}

/* Glow Effect */
.image-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(178, 5, 1, 0.3), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  animation: floatBadge 3s infinite ease-in-out;
  border: 2px solid rgba(178, 5, 1, 0.3);
}

.floating-badge i {
  color: #daa520;
  font-size: 20px;
  animation: rotateStar 4s infinite linear;
}

.floating-badge span {
  color: #091f32;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotateStar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Glass Box */
.about-glass-box-new {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  z-index: 100;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Floating Buttons Visibility Fix */
.estimate-style, 
.pricelist-style, 
.fixed-bottom.point,
.bouncing-element,
.bounce2,
.bounce2a {
  z-index: 999999 !important;
}

.about-glass-box-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-glass-box-new:hover::before {
  opacity: 1;
}

.about-glass-box-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  border-color: rgba(178, 5, 1, 0.3);
}

/* Title Wrapper */
.about-title-wrapper {
  margin-bottom: 30px;
}

.about-subtitle {
  display: inline-block;
  color: #e7b626;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease;
}

.section-title-new {
  /* font-family: var(--font-heading); */
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
  background:linear-gradient(177deg, #d89e22, #ebb11c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #b20501, #daa520);
  border-radius: 10px;
  animation: expandWidth 1.5s ease;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* Description */
.about-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

/* Features Grid */
.about-features-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item-new {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.feature-item-new:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #b20501;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(178, 5, 1, 0.3);
}

.feature-icon-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #b23f01, #6b0000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.5s ease;
  box-shadow: 0 10px 25px rgba(178, 5, 1, 0.3);
}

.feature-icon-new i {
  color: #fff;
  font-size: 24px;
  transition: transform 0.5s ease;
}

.feature-item-new:hover .feature-icon-new {
  transform: rotateY(360deg) scale(1.1);
  background: linear-gradient(135deg, #daa520, #b20501);
}

.feature-item-new:hover .feature-icon-new i {
  transform: scale(1.2);
}

.feature-item-new span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: block;
  transition: color 0.3s ease;
}

.feature-item-new:hover span {
  color: #b20501;
}

/* Custom Button */
.btn-custom-new {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #b23f01, #6b0000);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 15px 35px rgba(178, 5, 1, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-custom-new::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.6s ease;
}

.btn-custom-new:hover::before {
  left: 100%;
}

.btn-custom-new:hover {
  transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(178, 5, 1, 0.6);
  background: linear-gradient(135deg, #b23f01, #6b0000);
  color: #fff;
}

.btn-custom-new i {
  transition: transform 0.4s ease;
}

.btn-custom-new:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .premium-about-new {
    padding: 60px 0;
  }
  
  .about-glass-box-new {
    padding: 35px;
    margin-top: 30px;
  }
  
  .section-title-new {
    font-size: 32px;
  }
  
  .about-features-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .premium-about-new {
    padding: 50px 0;
  }
  
  .about-glass-box-new {
    padding: 25px;
  }
  
  .section-title-new {
    font-size: 28px;
  }
  
  .about-description {
    font-size: 15px;
  }
  
  .about-features-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .feature-item-new {
    padding: 20px 10px;
  }
  
  .feature-icon-new {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon-new i {
    font-size: 20px;
  }
  
  .feature-item-new span {
    font-size: 12px;
  }
  
  .floating-badge {
    bottom: 15px;
    right: 15px;
    padding: 10px 20px;
  }
  
  .floating-badge i {
    font-size: 16px;
  }
  
  .floating-badge span {
    font-size: 12px;
  }
  
  .btn-custom-new {
    padding: 15px 30px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .about-features-grid-new {
    grid-template-columns: 1fr;
  }
  
  .section-title-new {
    font-size: 24px;
  }
}

/* About Section Background Overlay */
.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00658cb0 5%, #00658c9c 100%, #00658c80 0% 5%);
  z-index: 0;
}

/* Update premium-about-new to ensure background is fixed */
.premium-about-new {
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Ensure all content is above the overlay */
.premium-about-new .container {
  position: relative;
  z-index: 3;
}

/* Mobile: Disable fixed background for better performance */
@media (max-width: 768px) {
  .premium-about-new {
    background-attachment: scroll !important;
  }
}
