html,
body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.page-wrapper {
  overflow-x: clip;
  width: 100%;
  position: relative;
}

/* Brand Colors */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --primary: #084460;
  /* Deep Blue */
  --secondary: #9bb855;
  /* Green */
}



/* Utility Classes for Theme Colors */
.text-theme-primary {
  color: var(--primary) !important;
}

.text-theme-secondary {
  color: var(--secondary) !important;
}

.hover-theme-secondary {
  transition: color 0.3s ease;
}

.hover-theme-secondary:hover {
  color: var(--secondary) !important;
}

/* =============================================
   HAMBURGER BUTTON
   ============================================= */
.nav-toggle-wrapper {
  pointer-events: none;
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.hamburger-btn {
  pointer-events: all;
  background: rgba(8, 68, 96, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  width: 52px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1200;
}

.hamburger-btn:hover {
  background: rgba(8, 68, 96, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 99px;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.3s ease,
    width 0.3s ease;
}

/* Animated X when open */
.hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* =============================================
   FULLSCREEN OVERLAY MENU
   ============================================= */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #052f44 0%, #084460 60%, #0a5570 100%);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at 40px 40px);
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
  overflow: hidden;
}

.fullscreen-menu::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(155, 184, 85, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.fullscreen-menu.is-open {
  clip-path: circle(150% at 40px 40px);
  pointer-events: all;
}

.fullscreen-menu .menu-content {
  text-align: left;
  padding: 40px;
  width: 100%;
  max-width: 600px;
}

.fullscreen-menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fullscreen-menu .menu-list li {
  overflow: hidden;
  margin-bottom: 8px;
}

.fullscreen-menu .menu-list a {
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1.25;
  padding: 4px 0;
  position: relative;
  transform: translateY(60px);
  opacity: 0;
  transition:
    color 0.3s ease,
    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.55s ease;
}

.fullscreen-menu.is-open .menu-list li:nth-child(1) a {
  transition-delay: 0.18s;
  transform: translateY(0);
  opacity: 1;
}

.fullscreen-menu.is-open .menu-list li:nth-child(2) a {
  transition-delay: 0.25s;
  transform: translateY(0);
  opacity: 1;
}

.fullscreen-menu.is-open .menu-list li:nth-child(3) a {
  transition-delay: 0.32s;
  transform: translateY(0);
  opacity: 1;
}

.fullscreen-menu.is-open .menu-list li:nth-child(4) a {
  transition-delay: 0.39s;
  transform: translateY(0);
  opacity: 1;
}

.fullscreen-menu .menu-list a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary);
  border-radius: 99px;
  transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fullscreen-menu .menu-list a:hover {
  color: #ffffff;
}

.fullscreen-menu .menu-list a:hover::after {
  width: 100%;
}

/* Footer logo styles (kept) */
.footer-logo {
  height: 80px;
  border-radius: 8px;
  transform: translateY(0);
  transition: all 0.2s ease;
  background: white;
}

.footer-logo:hover {
  transform: translateY(4px);
  background: white !important;
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 #d1d5db,
    0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-nav-services {
  background-color: var(--secondary);
  color: white !important;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid var(--secondary);
  box-shadow: 0 4px 15px rgba(155, 184, 85, 0.3);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.navbar-brand img,
.footer-logo {
  height: 80px !important;
  border-radius: 8px;
  /* Reduced Corners */
  /* box-shadow:
    0 -2px 0 rgba(255, 255, 255, 0.2),
    /* Subtle Top Highlight 
    0 4px 0 #d1d5db,
    /* Solid Bottom Thickness (Light Grey) 
    0 10px 20px rgba(0, 0, 0, 0.25); */
  /* Soft Drop Shadow */
  transform: translateY(0);
  /* Remove tilt, keep straight */
  transition: all 0.2s ease;
  background: white;
  /* Ensure logo bg is clean */
}

.navbar-brand:hover img,
.footer-logo:hover {
  transform: translateY(4px);
  /* Press down effect */
  background: white !important;
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 #d1d5db,
    /* Thickness disappears on press */
    0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-link {
  font-weight: 500;
  color: white !important;
  transition: color 0.3s ease;
  position: relative;
  /* Needed for absolute positioning of line */
}

.nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s ease-out;
}

.nav-link:hover {
  color: var(--secondary) !important;
}

.nav-link:hover::before {
  width: 100%;
}

/* Navbar Toggler Icon Color */
.navbar:not(.navbar-animate) .navbar-toggler {
  border: 2px solid #fff !important;
  border-radius: 4px;
}

.navbar .navbar-toggler-icon {
  filter: invert(1) brightness(100%);
}

.navbar-animate .navbar-toggler-icon {
  filter: none;
}

.navbar {
  transition: all 0.4s ease;
  transform: translateY(0);
  height: 105px !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  display: flex !important;
  align-items: center !important;
}

/* Custom Dropdown Styling */
.navbar .dropdown-menu {
  background: rgba(8, 68, 96, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin-top: 10px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  /* REUSE: Remove transition here so it snaps OFF when class is removed */
  transition: none;
}

.navbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* REUSE: Add transition ONLY here so it animates IN */
  transition: all 0.3s ease;
}

/* Restore Hover Support for Desktop */




.navbar .dropdown-item {
  color: white !important;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar .dropdown-item:hover {
  background: rgba(155, 184, 85, 0.2) !important;
  color: var(--secondary) !important;
  padding-left: 25px;
}

.navbar .dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--secondary);
  transition: all 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.navbar .dropdown-item:hover::before {
  height: 60%;
}

/* Navbar Animate State Adjustments */
.navbar-animate .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.navbar-animate .dropdown-item {
  color: #0b3c5d !important;
}

.navbar-animate .dropdown-item:hover {
  background: rgba(11, 60, 93, 0.05) !important;
}

/* after scroll */
.navbar-animate {
  background: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  height: 105px !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* nav link color after scroll */
.navbar-animate .nav-link {
  color: #0b3c5d !important;
}

.navbar-animate .nav-link:hover {
  color: var(--secondary) !important;
}



.btn-nav-services {
  background-color: var(--secondary);
  color: white !important;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid var(--secondary);
  box-shadow: 0 4px 15px rgba(155, 184, 85, 0.3);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-nav-services:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(155, 184, 85, 0.5);
  filter: brightness(1.05);
}

.navbar-animate .btn-nav-services {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



/* Floating Callback Icon */
.floating-callback {
  position: fixed;
  bottom: 90px;
  /* Above Scroll to Top */
  right: 25px;
  background: var(--secondary);
  color: white !important;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-callback i {
  font-size: 22px;
  animation: phone-shake 2.5s infinite ease-in-out;
}

@keyframes phone-shake {

  0%,
  100% {
    transform: rotate(0);
  }

  10%,
  30%,
  50%,
  70% {
    transform: rotate(-15deg);
  }

  20%,
  40%,
  60%,
  80% {
    transform: rotate(15deg);
  }
}

.floating-callback:hover {
  transform: translateY(-5px) scale(1.1);
  background: var(--primary);
  box-shadow: 0 10px 30px rgba(8, 68, 96, 0.4);
}

.floating-callback::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: var(--secondary);
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

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


/* logo resize */
.navbar-brand img {
  transition: 0.4s ease;
}



/* KEYFRAMES */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}


/* Hero Section */
.hero {
  /* Removed static background to allow per-slide images */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0;
  /* Removing padding to let slider take full width */
}

/* New styles for carousel items to handle background images */
.hero .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Overlay to darken images for better text readability */
.hero .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  /* Neutral Black Overlay */
  z-index: 1;
}

/* Ensure text container is above overlay and centered */
.hero-slide-inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure buttons are above overlay */
.hero .carousel-item .btn {
  position: relative;
  z-index: 3;
  color: #fff;
}


.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 2s ease-out;
}

.hero span {
  color: var(--secondary);
}



.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #0056b3;
}


.btn-brand {
  position: relative;
  background: transparent;
  color: white !important;
  padding: 12px 30px;
  border: none;
  font-size: 16px;
  border-radius: 30px;
  z-index: 1;
  /* Changed to 1 to match btn-primary-custom pattern */
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-decoration: none;
}

.btn-brand::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  z-index: -2;
  transition: all 0.4s ease;
}

.btn-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  z-index: -1;
  transition: all 0.4s ease;
}

.btn-brand:hover {
  color: white !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.btn-brand:hover::before {
  height: 100%;
}

/* Section Padding */
.section-padding {
  padding: 40px 0;
}

/* Section Titles */
.section-title span {
  color: var(--secondary);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* About Section */


.about-box {
  background: #f7f9fb;
  border-left: 5px solid var(--secondary);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-box ul {
  list-style: none;
  padding-left: 20px;
}

.about-box ul li {
  padding-left: 10px;
}

/* Service Cards */
.service-card {
  position: relative;
  overflow: hidden;
  /* important for animation */
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  padding: 25px;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), #b6e388);
  transition: all 0.5s ease;
  z-index: -1;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover h5,
.service-card:hover p,
.service-card:hover .service-icon {
  color: #fff !important;
}


.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-card h5 {
  font-weight: 600;
  color: var(--primary);
}

/* Why Choose Section */
.why-box {
  background: var(--primary);
  color: white;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-img {
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background: #031f2c !important;
  color: white;
  padding-top: 20px;
  overflow: hidden;
  /* Prevent any floating child from causing scroll */
}

.bg-dark {
  background: #031f2c !important;
}


.footer-title {
  color: var(--secondary);
  font-weight: 600;
}

.footer-links a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

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

.footer-map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: none;
  background: white;
  cursor: pointer;
}

.footer-map-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.footer-map-wrapper::before {
  content: "VIEW";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 10;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--secondary);
}

.footer-map-wrapper:hover {
  transform: translateY(-12px);
  filter: grayscale(0) brightness(1) contrast(1);
  border-color: var(--secondary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(155, 184, 85, 0.15);
}

.footer-map-wrapper:hover::after {
  opacity: 0.4;
}

.footer-map-wrapper:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Enhanced Pulse Dot */
.map-pulse-dot {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 14px;
  height: 14px;
  background: var(--secondary);
  border-radius: 50%;
  z-index: 12;
  box-shadow: 0 0 15px var(--secondary);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.map-pulse-dot::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  animation: mapPulse 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes mapPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

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

.img-wrapper img {
  transition: transform 0.4s ease;
}

.img-wrapper img:hover {
  transform: scale(1.05) rotate(1deg);
}


/* Animations for Hero Section */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  60% {
    opacity: 1;
    transform: scale(1.1);
  }

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

/* Sticky Navbar */
.navbar {
  background: linear-gradient(90deg, #02364f 0%, #045075 50%, #02364f 100%);

  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}



/* Scroll-based Navbar Animation */
.navbar-hidden {
  top: -70px;
  /* Hide navbar when scrolling down */
}



/* Industries */

/*  .industries-section {
            background: #f4f8f9;
        }
        
        .industry-card {
            background: white;
            padding: 35px 15px;
            border-radius: 14px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
            transition: .4s;
        }
        
        .industry-card i {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .industry-card h6 {
            font-weight: 600;
            color: var(--primary);
        }
        
        .industry-card:hover {
            background: var(--primary);
            transform: translateY(-8px);
        }
        
        .industry-card:hover i,
        .industry-card:hover h6 {
            color: white;
        }*/


.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

/* ? 3 CARDS PER ROW */
.creative-cards.style-one {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #14669f 0%, #b6e34a 100%);
  /* Brand Blue-Green Gradient */
}

.creative-cards.style-one .section-title span {
  color: var(--secondary);
}

.card-column {
  width: 33.33%;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.card-details {
  position: relative;
  text-align: center;
  padding: 30px 30px;
  transition: .3s;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  isolation: isolate;
  /* Create stacking context */
}

.card-details:before {
  content: "";
  width: 110%;
  /* Wider background */
  height: 100%;
  min-height: 320px;
  /* Taller background */
  /* Taller background */
  background: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skew(-20deg);
  z-index: -1;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  /* Stronger shadow for better visibility against dark bg */
  border: 1px solid rgba(255, 255, 255, 0.8);
  /* Subtle border */
  border-radius: 20px;
  /* Soft corners */
}

/* Animated Border Container */
.card-details:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  /* Clearly larger than before (110%) */
  height: 104%;
  /* Clearly larger */
  min-height: 330px;
  /* Ensure it covers vertically */
  background: transparent;
  transform: translate(-50%, -50%) skew(-20deg);
  z-index: -2;
  /* Behind the white card */
  border-radius: 16px;
  border: 4px solid transparent;
  /* Fallback/Spacer */
}

.card-details:hover:after {
  background: conic-gradient(from var(--angle), transparent 50%, #ffffff 75%, #d4e157 100%);
  /* High contrast border: White & Light Green */
  animation: rotateBorder 2s linear infinite;
  border: 4px solid transparent;
  /* Maintain spacing */
}

@keyframes rotateBorder {
  to {
    --angle: 360deg;
  }
}

.card-details:hover:before {
  /* Just maintain white bg */
  background: #fff;
  transform: translate(-50%, -50%) skew(-20deg);
  /* Lift effect removed */
  box-shadow: 0 15px 30px rgba(155, 184, 85, 0.2);
}

/* Sync lifting of border with card */
.card-details:hover:after {
  transform: translate(-50%, -50%) skew(-20deg);
}




/* removed old hover */

.card-icons {
  width: 260px;
  height: 260px;
  margin: 0 auto 20px;
  /* Fixed top margin, centered horizontally */
  position: relative;
  background: #fff;
  transform: skew(-20deg);
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  left: 30px;
}

.card-details:hover .card-icons {
  transform: skew(-20deg);
}

.card-icons img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skew(20deg) scale(1.1);
  position: relative;
  z-index: 5;
}

.card-details h3 {
  color: #0b3c5d;
  margin: 35px auto 10px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  display: block;
  transform: translateX(-30px);
}

.card-details p {
  font-size: 15px;
  line-height: 22px;
  color: #1f4f73;
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  transform: translateX(-30px);
}


.card-icons,
.card-icons i {
  position: relative;
  z-index: 5;
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.card-icons,
.card-icons:hover i {

  color: white;
}



.read-more-btn {
  display: inline-block;
  background-color: white;
  color: #0b3c5d;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.4s ease;
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0b3c5d;
  z-index: -1;
  transition: width 0.4s ease;
}

.read-more-btn:hover {
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.read-more-btn:hover::before {
  width: 100%;
}

.full-description {
  font-size: 14px;
  color: #555;
}



.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(22, 70, 118, 0.8) !important;

}


/* About Hero Section - Matches Services Hero */
.about-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../Images/bg-banner2.webp') center/cover no-repeat;
  animation: heroZoom 20s infinite alternate;
  z-index: 1;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 30px;
  background: rgb(77 136 163 / 65%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin: 0 20px;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

.about-hero p {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 0;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* ===== ABOUT ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}


/* About Hero Section - Matches Services Hero */
.about-hero-1 {
  position: relative;
  height: 60vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.about-hero-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../Images/roof-3.webp') center/cover no-repeat;
  animation: heroZoom 20s infinite alternate;
  z-index: 1;
}

.about-hero-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.about-hero-1-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 30px;
  background: rgb(77 136 163 / 65%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin: 0 20px;
}

.about-hero-1 h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

.about-hero-1 p {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 0;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* ===== ABOUT ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}




/* Redundant btn-brand removed - unified at top */


/* ===== MODERN HERO SECTION ===== */
.hero-modern {
  position: relative;
  background-color: #f4f8fb;
  /* Light/Airy background */
  overflow: hidden;
  padding: 80px 0 30px 0;
  /* Reduced bottom padding to merge */
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-modern .carousel-item {
  background-color: #f4f8fb;
  /* Match hero-modern background */
  transition: opacity 0.6s ease-in-out;
}

/* Fix for Text Overlapping in Fade Transition */
/* Hide the text/content of the slide that is fading OUT so it doesn't show through the incoming slide */
.carousel-fade .active.carousel-item-start .hero-text-content,
.carousel-fade .active.carousel-item-end .hero-text-content {
  opacity: 0;
  transition: opacity 0.1s;
  /* Quick fade out */
}

/* Background Shapes/Blobs for depth */
.hero-modern::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(155, 184, 85, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-modern::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(8, 68, 96, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Text Content */
.hero-text-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: rgb(77 136 163 / 65%);
  /* Blue opacity background */
  border-radius: 15px;
  backdrop-filter: blur(4px);
  max-width: 700px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  background: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-title span {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff !important;
  /* Outline effect */
  position: relative;
}

.hero-title span::after {
  content: "Glass";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  width: 0%;
  overflow: hidden;
  white-space: nowrap;
  animation: fillText 3s ease forwards 1s;
}

/* Fix for Google Translate overlapping text in Hero */
.translated-ltr .hero-title span,
.translated-rtl .hero-title span,
body.translated-ltr .hero-title span,
body.translated-rtl .hero-title span {
  color: var(--secondary) !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-fill-color: var(--secondary) !important;
}

.translated-ltr .hero-title span::after,
.translated-rtl .hero-title span::after,
body.translated-ltr .hero-title span::after,
body.translated-rtl .hero-title span::after {
  content: none !important;
  display: none !important;
}

@keyframes fillText {
  to {
    width: 100%;
  }
}

/* ===== HERO CAPABILITIES BAND ===== */
.hero-capabilities {
  position: relative;
  background: #084460;
  /* Exact Primary Brand Blue */
  overflow: hidden;
  z-index: 50;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.capability-item {
  position: relative;
  padding: 40px 30px;
  /* Further reduced height */
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 10;
  overflow: hidden;
  /* Required for shimmer */
}

/* Side Accent Bar */
.capability-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--secondary);
  transition: all 0.4s ease;
  transform: translateY(-50%);
}

.capability-item:hover::after {
  height: 100%;
}

/* Shimmer Light Effect */
.capability-item .shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent);
  transition: all 0.6s ease;
  pointer-events: none;
}

.capability-item:hover .shimmer {
  left: 100%;
}

.capability-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--primary), #0a4f70);
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.capability-item:hover::before {
  height: 100%;
}

.capability-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cap-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 0.8;
  user-select: none;
  transition: all 0.5s ease;
  font-style: italic;
}

.capability-item:hover .cap-number {
  color: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px) scale(1.1);
}

.cap-icon {
  font-size: 45px;
  color: var(--secondary);
  margin-bottom: 25px;
  transition: all 0.5s ease;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

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

.capability-item:hover .cap-icon {
  animation-play-state: paused;
  transform: scale(1.1);
  color: #fff;
}

.cap-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.cap-desc {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 30px;
  transition: all 0.5s ease;
}

.capability-item:hover .cap-desc {
  color: rgba(255, 255, 255, 0.9);
}

.cap-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.read-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  color: #fff;
}

.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
  margin-left: 0;
  /* Starts close to left when text is hidden */
}

.capability-item:hover .read-text {
  max-width: 120px;
  opacity: 1;
  margin-right: 12px;
}

.capability-item:hover .arrow-circle {
  border-color: var(--secondary);
  background: var(--secondary);
}

.capability-item:hover .cap-link {
  color: #fff;
}






.hero-description {
  font-size: 1.1rem;
  color: #f0f0f0 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}

/* Buttons */
.hero-buttons .btn {
  margin-right: 15px;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-custom {
  background-color: transparent;
  color: #fff;
  border: 2px solid var(--secondary);
  box-shadow: 0 10px 20px rgba(155, 184, 85, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-primary-custom::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  z-index: -2;
  transition: all 0.4s ease;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-primary-custom:hover {
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(8, 68, 96, 0.3);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-custom:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

/* Collage Area */
.hero-collage-wrapper {
  position: relative;
  height: 600px;
  /* Fixed height for collage container */
  width: 100%;
  z-index: 1;
}

.collage-image {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background-size: cover;
  background-position: center;
  border: 5px solid #fff;
  transition: all 0.5s ease;
}

.collage-image:hover {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Individual Image Positioning */
.img-main {
  width: 320px;
  height: 420px;
  top: 18%;
  left: 20%;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.img-secondary {
  width: 240px;
  height: 300px;
  bottom: 5%;
  left: 0;
  z-index: 4;
  animation: float 7s ease-in-out infinite 1s;
}

.img-accent {
  width: 200px;
  height: 260px;
  top: 12%;
  right: 10%;
  z-index: 2;
  animation: float 8s ease-in-out infinite 2s;
}

.collage-decoration {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: repeating-linear-gradient(45deg,
      rgba(155, 184, 85, 0.1),
      rgba(155, 184, 85, 0.1) 10px,
      rgba(155, 184, 85, 0.2) 10px,
      rgba(155, 184, 85, 0.2) 20px);
  border-radius: 50%;
  z-index: 1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Responsive */





/* Custom Slider Controls */
.custom-slider-btn {
  width: 50px;
  height: 50px;
  background-color: rgba(8, 68, 96, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}

.custom-slider-btn:hover {
  background-color: var(--primary);
  opacity: 1;
}

.custom-slider-btn .carousel-control-prev-icon,
.custom-slider-btn .carousel-control-next-icon {
  filter: invert(1) grayscale(100%) brightness(200%);
  /* Ensure icon is white on hover */
}

/* Make icons dark by default if background is light */
.custom-slider-btn:not(:hover) .carousel-control-prev-icon,
.custom-slider-btn:not(:hover) .carousel-control-next-icon {
  filter: invert(0) grayscale(100%) brightness(0%);
}

.carousel-control-prev.custom-slider-btn {
  left: 30px;
}

.carousel-control-next.custom-slider-btn {
  right: 30px;
}


/* ===== ABOUT CONTENT ===== */
.about-main {
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 16px;
}

/* ===== MODERNIZED ABOUT TEXT ===== */
.about-modern-text {
  padding-left: 20px;
}

.modern-subtitle {
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
  position: relative;
}

.modern-subtitle::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--secondary);
  vertical-align: middle;
  margin-left: 10px;
}

.modern-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 25px;
}

.modern-title span {
  color: var(--secondary);
}

.modern-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.modern-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.modern-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f0f7f9;
  padding: 12px 20px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
}

.feature-pill:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(8, 68, 96, 0.08);
  border-color: var(--secondary);
}

.pill-icon {
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.feature-pill span {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

.btn-modern-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(8, 68, 96, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-modern-primary:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(155, 184, 85, 0.35);
}






/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(#8bc34a, #a5d6a7, #8bc34a);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.why-card {
  background: #cad1c2;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  transition: .3s;
}

.why-card h4 {
  color: #0b3c5d;
  font-weight: bold;
}

.why-card:hover {
  transform: translateY(-8px);
}


/* ===== MODERN FOOTER ===== */
.modern-footer {
  background: linear-gradient(180deg, #084460 0%, #052636 100%);
  color: white;
  padding-top: 80px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Animated Background Pattern */
.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  /* Grid Pattern */
  opacity: 0.5;
  z-index: -1;
  animation: footerBackgroundMove 60s linear infinite;
}

/* Glass Shine Effect on Top */
.modern-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes footerBackgroundMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-40px, -40px);
  }
}

.modern-footer h5 {
  color: white;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
  font-weight: 700;
  z-index: 2;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 25px;
  /* Fixed width for alignment */
  text-align: center;
  flex-shrink: 0;
}


/* ===== STATS ===== */
.about-stats {
  background: radial-gradient(circle at center, #0b4e6b 0%, #031f2c 100%);
  /* Radial for depth */
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  /* Stronger Blur */
  -webkit-backdrop-filter: blur(15px);
  padding: 60px 40px;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.stat-box:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(155, 184, 85, 0.6);
  /* Brighter border */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(155, 184, 85, 0.2);
  /* Deep shadow + Green Glow */
}

.stat-icon {
  font-size: 60px;
  /* Larger icon */
  color: #9bb855;
  background: linear-gradient(135deg, #9bb855 0%, #d4e157 100%);
  /* Gradient Icon */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 0 8px rgba(155, 184, 85, 0.3));
}

.stat-box:hover .stat-icon {
  transform: scale(1.2) rotate(8deg);
  filter: drop-shadow(0 0 20px rgba(155, 184, 85, 0.6));
}

.stat-box h3 {
  font-size: 64px;
  /* Bigger Numbers */
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-box p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dbe9f1;
  /* Light Blue-ish White */
  margin: 0;
  position: relative;
  z-index: 2;
}




/* Consolidated CTA below in modern section */


/* Contact Hero Section - Matches Services/About Hero */
.contact-hero {
  position: relative;
  height: 60vh;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../Images/cgv.webp') center/cover no-repeat;
  animation: heroZoom 20s infinite alternate;
  z-index: 1;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 30px;
  background: rgb(77 136 163 / 65%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin: 0 20px;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

.contact-hero p {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 0;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}


.contact-section {
  background: linear-gradient(-45deg, #0b3c5d, #14669f, #92a95c, #a3cc5a);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
  /* Strict clip to prevent ANY scrollbars */
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0b3c5d;
  outline: none;
}

.contact-form button {
  background-color: #0b3c5d;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #9bb855;
}

/* Contact Info Redesign - Unique Diamond Box Style */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  padding-left: 30px;
  /* Space for floating icons */
}

.contact-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px 30px 25px 50px;
  /* Extra left padding */
  border-radius: 20px 0 20px 0;
  /* Asymmetric corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* sleek shadow */
  transition: all 0.4s ease;
  border-right: 4px solid var(--primary);
  /* Accent on right */
  position: relative;
  overflow: visible;
  /* Allow icon to float out */
}

/* Floating Diamond Icon */
.contact-card .icon-box {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0b3c5d, #084460);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -32.5px;
  /* Half width to float on edge */
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  /* Diamond shape */
  font-size: 24px;
  color: white;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  /* Bouncy transition */
  z-index: 10;
}

/* Counter-rotate icon so it stands straight */
.contact-card .icon-box i {
  transform: rotate(-45deg);
}

.contact-card:hover {
  transform: translateY(-8px);
  /* Safe lift instead of horizontal shift */
  background: #fff;
  border-right-color: var(--secondary);
  /* Change accent color */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card:hover .icon-box {
  background: linear-gradient(135deg, #9bb855, #7da52d);
  transform: translateY(-50%) rotate(225deg);
  /* Spin layout */
  border-color: #fff;
}

/* Ensure icon stays upright during spin - counter spin 225deg */
/* This is tricky with inherited transform, easier to just rotate the box 
   and let the icon rotate with it or counter it. 
   If box rotates 45 -> 225 (180 deg change), icon needs to rotate -45 -> -225 inside.
*/
.contact-card:hover .icon-box i {
  transform: rotate(-225deg);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #0b3c5d;
}

.contact-card .content-box {
  text-align: left;
  width: 100%;
  /* Take remaining space */
}

.contact-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #0b3c5d;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card p {
  color: #555;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

/* ===== MODERN MAP SECTION ===== */
.map-modern-wrapper {
  position: relative;
  margin-top: 80px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  overflow: visible;
}

.map-modern-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.6);
  border-color: rgba(155, 184, 85, 0.3);
}

.map-glass-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid rgba(155, 184, 85, 0.2);
  border-radius: 35px;
  pointer-events: none;
  z-index: -1;
  transition: all 0.5s ease;
}

.map-modern-wrapper:hover .map-glass-frame {
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-color: var(--secondary);
  opacity: 0.5;
}

.map-container {
  height: 450px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  filter: grayscale(0.2) contrast(1.1);
  transition: all 0.5s ease;
}

.map-modern-wrapper:hover .map-container iframe {
  filter: grayscale(0) contrast(1);
  transform: scale(1.02);
}

.map-accent-dot {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  bottom: -20px;
  right: -20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(155, 184, 85, 0.3);
  animation: pulse 2s infinite;
}

.map-accent-dot::after {
  content: '\f3c5';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  font-size: 24px;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(155, 184, 85, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(155, 184, 85, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(155, 184, 85, 0);
  }
}



.about-img {
  position: relative;
  width: 100%;
  height: 100%;
  /* Or specify the desired height */
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  /* Initially hide both images */
  transition: opacity 2s ease-in-out, visibility 0s linear 2s;
  /* 2s delay for visibility change after opacity */
}

.image.show {
  opacity: 1;
  visibility: visible;
}


.about-cta {
  position: relative;
  padding: 100px 0;
  overflow-x: hidden;
  /* Clips floating blobs */
  background: linear-gradient(-45deg, #0b3c5d, #14669f, #b6e34a, #a3cc5a);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #fff;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Floating Blobs */
.cta-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.blob {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(40px);
  border-radius: 50%;
  animation: floatBlob 20s infinite alternate;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  background: rgba(155, 184, 85, 0.15);
  /* Brand Secondary Green */
}

.blob-2 {
  width: 250px;
  height: 250px;
  bottom: -50px;
  right: -50px;
  background: rgba(8, 68, 96, 0.4);
  /* Brand Primary Blue */
  animation-delay: -5s;
}

@keyframes floatBlob {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(50px, 30px) scale(1.1);
  }
}

.cta-glass-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.about-cta .section-title {
  color: #fff !important;
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-cta .section-title span {
  color: #9bb855;
  text-shadow: 0 0 20px rgba(155, 184, 85, 0.4);
}

.about-cta p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 300;
}

.btn-brand-glow {
  display: inline-block;
  padding: 18px 45px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-brand-glow:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(155, 184, 85, 0.4);
}



.section-title {

  /* font-size: 2.5rem; */
  margin-bottom: 40px;
  padding-top: 20px;
  color: #0b3c5d
}

/* Fade-In Animation */
.fade-in {
  animation: fadeIn 2s ease-in-out forwards;
}

/* Fade-Out Animation */
.fade-out {
  animation: fadeOut 2s ease-in-out forwards;
}

/* Fade-In Keyframes */
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: visible;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* Fade-Out Keyframes */
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}






/* Services Hero Section */
.services-hero {
  position: relative;
  height: 60vh;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../Images/glass-wall.webp') center/cover no-repeat;
  animation: heroZoom 20s infinite alternate;
  z-index: 1;
}

.services-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.15);
  }
}

.services-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 30px;
  background: rgb(77 136 163 / 65%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin: 0 20px;
}

.services-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff !important;
  animation: fadeInUp 1s ease-out;
}

.services-hero p {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 1;
  color: #ffffff !important;
  margin-bottom: 0;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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



.cta-button {
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #0056b3;
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.section-title {

  font-size: 2.5rem;
  margin-bottom: 40px;
  padding-top: 20px;
  color: #0b3c5d
}

/* Section Title */
/* Service Detail Enhancements */
.service-detail-header {
  margin-bottom: 40px;
}

.description-box {
  background: #f8fcf8;
  border-left: 5px solid var(--secondary);
  padding: 20px 25px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(155, 184, 85, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 10px;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--secondary);
  color: #fff;
  transform: rotate(10deg);
}

.feature-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.feature-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}



.why-choose-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 50px;
}

/* FAQ Section */
.faq-section {
  margin-top: 40px;
}

.faq-section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h4 {
  font-size: 1.5rem;
  cursor: pointer;
}

.faq-item p {
  display: none;
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
}

.faq-item.active p {
  display: block;
}

/* Enhanced Sticky Sidebar Styling */
.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, #8bc34a, #66bb6a);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  height: fit-content;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.sidebar h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 1px;
  /* Adds some space between the letters for a cleaner look */
}

/* Sidebar List Styling */
.sidebar ul {
  list-style: none;
  padding-left: 0;
}

.sidebar ul li {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding: 10px 20px;
  /* Adds padding to make the list item bigger */
  background-color: #fff;
  /* White background for each list item */
  border-radius: 8px;
  /* Rounds the corners of the white background */
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
  /* Smooth transform and background-color on hover */
  display: flex;
  justify-content: space-between;
  /* Ensures space between text and chevron icon */
  align-items: center;
  /* Ensures the icon and text are vertically centered */
  padding-right: 40px;
  /* Space for the chevron icon */

}


.sidebar ul li:hover {
  transform: translateX(10px);
  /* Slight move to the right on hover */
  background-color: #ffffff;
  /* Ensures the background color stays white */
}

.sidebar ul li a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  gap: 12px;
  transition: all 0.3s ease;
}

.sidebar ul li a i {
  font-size: 1.3rem;
  /* Icon size */
  transition: transform 0.3s ease;
  /* Smooth transition for icon scale effect */
  position: absolute;
  /* Absolutely positions the icon */
  right: 30px;
  /* Pushes the chevron icon to the far right */
}



.sidebar ul li a:hover {
  color: #8bc34a;
  /* Change color on hover */
}

.sidebar ul li a i {
  font-size: 1.3rem;
  /* Icon size */
  transition: transform 0.3s ease;
  /* Smooth transition for icon scale effect */
}

/* Add custom icons for each service link (if using FontAwesome) */
.sidebar ul li a i {
  margin-right: 10px;
  /* Space between icon and text */
}

.sidebar ul li a:hover i {
  transform: scale(1.1);
  /* Slightly enlarges the icon on hover */
}

/* Chevron Icon Styling */
.sidebar ul li a i {
  font-size: 1.3rem;
  /* Icon size */
  transition: transform 0.3s ease;
  /* Smooth transition for icon scale effect */
  margin-left: auto;
  /* Pushes the chevron icon to the far right */
  display: inline-block;
  /* Ensures the icon stays aligned with the text */
  width: 20px;
  /* Fixed width for the icon container */
  text-align: right;
  /* Ensures the icon stays aligned to the right */
}

/* Responsive Image with Rounded Corners */
.image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  /* Rounded corners */
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  /* Rounded corners on the image */
}


.accordion-button:not(.collapsed) {

  background-color: #8bc34a !important;
}

/* Responsive Layout for Mobile */



/* Responsive Layout */





/* Testimonials Section */
.testimonials-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.testimonial-card {
  padding: 20px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.google-logo {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.google-logo img {
  width: 30px;
  height: 30px;
}

.reviewer-info h5 {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: #333;
}

.stars {
  font-size: 14px;
  margin-top: 3px;
}

.testimonial-body {
  background-color: #ebffeb;
  /* Light Blue-ish Grey */
  padding: 30px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--secondary);
  /* Green accent */
}

/* Speech Bubble Triangle */
.testimonial-body::before {
  content: "";
  position: absolute;
  top: -10px;
  /* Position above the box */
  left: 40px;
  /* Align with logo area */
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f7f9fb;
  /* Match body bg */
}

/* Folded Corner Effect - Blue */
.testimonial-body::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 10px solid #ddecfa;
  /* Darker blue for shadow/fold */
  border-left: 10px solid transparent;
}

.testimonial-body p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  font-style: italic;
}

/* Carousel Indicators Override */
.testimonials-section .carousel-indicators [data-bs-target] {
  background-color: var(--primary);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

/* Contact Form Section */
.contact {
  background-color: #fff;
  padding: 50px 0;
}

.contact .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-button {
  background-color: #007BFF;
  color: #fff;
  padding: 12px 20px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Animation for background movement */
@keyframes moveBackground {
  0% {
    background-position: 0 0, 50px 50px;
  }

  100% {
    background-position: 100px 100px, 150px 150px;
  }
}

/* Responsiveness */



/* Mobile Responsiveness */


/* Mobile Responsiveness */


/* ===== MOBILE ===== */


.service-card {
  border: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  padding-bottom: 30px !important;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Container for Image + Badge */
.service-visual-box {
  position: relative;
  /* width: 170px; */
  margin: 0 auto 15px;
  transform: scale(1.2);
  /* Make 20% bigger visually without layout shift */
  transform-origin: center;
  margin-top: 10px;
}

/* Main Image Wrapper */
/* Main Image Wrapper */
.service-img-wrapper {
  width: 200px;
  /* Enlarged */
  height: 200px;
  /* Enlarged */
  border-radius: 50%;
  background: #fff;
  border: 4px solid #0b3c5d;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-bend {
  background-image: url('../Images/curved-glass-2.webp');
}

.service-display {
  background-image: url('../Images/Glass-Display-Counter.webp');
}

.service-architectural {
  background-image: url('../Images/Glass-Architecture.webp');
}

.service-staircase {
  background-image: url('../Images/staircase-bend-glass.jpeg');
}

.service-furniture {
  background-image: url('../Images/glass-furniture.webp');
}

.service-toughened {
  background-image: url('../Images/toughened-glass.webp');
}

.service-roof {
  background-image: url('../Images/roof-glass.webp');
}

.service-etching {
  background-image: url('../Images/decorative-etching-glass.webp');
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Icon Badge (Overlapping Circle) */
.service-icon-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 4px solid #0b3c5d;
  /* Brand Blue Border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Icon inside badge */
.service-icon-badge i {
  color: #0b3c5d;
  /* Brand Blue Icon */
  font-size: 1.2rem;
}

/* Triangle Arrow pointing down from badge */
.service-icon-badge::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #0b3c5d;
  /* Brand Blue Triangle */
}


/* Text Styling */
.service-card h5 {
  color: #0b3c5d;
  /* Brand Blue Title */
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.35rem;
  /* Slightly larger title */
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.accordion-button:not(.collapsed) {
  color: white !important;

}

/* Read More Button */
.read-more-btn {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  /* Added to center text/icon */
  gap: 8px;
  padding: 8px 30px;
  /* Slightly wider padding */
  background: #b6e34a;
  color: #333;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 160px;
  /* Optional: specific width to ensure uniformity */
}

.read-more-btn:hover {
  background: #0b3c5d;
  /* Brand Blue Hover */
  color: #fff;
}

.read-more-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(4px);
}


/* Sync button hover with card hover */
.service-card:hover .read-more-btn {
  background: #0b3c5d;
  color: #fff;
}

.service-card:hover .read-more-btn i {
  transform: translateX(4px);
}

/* Services Section Background */
.services-bg {
  position: relative;
  background-image: url('../Images/glass-wall.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.services-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(8 68 96 / 47%);
  /* Lighter blue opacity background color */
  z-index: -1;
}

.services-bg .section-title span {
  color: var(--secondary);
}

/* Why Choose Section (Home Page) */
.why-choose-section {
  position: relative;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
}


.why-box {
  background: linear-gradient(145deg, #052c3e, #084460);
  border-radius: 20px;
  color: white;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 100% !important;
  margin: 0 auto !important;
}

.why-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgMWgydjJIMUMxeiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
  opacity: 0.3;
  pointer-events: none;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  cursor: pointer;
  text-decoration: none;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.why-item i {
  font-size: 28px;
  color: #a3cc5a;
  min-width: 40px;
  filter: drop-shadow(0 0 5px rgba(163, 204, 90, 0.5));
  transition: transform 0.3s ease;
}

.why-item:hover i {
  transform: scale(1.1) rotate(10deg);
  color: #fff;
}

.why-item h6 {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.why-img-wrapper,
.why-img-wrapper .carousel,
.why-img-wrapper .carousel-inner,
.why-img-wrapper .carousel-item {
  height: 100%;
}

.why-img-wrapper .carousel-item img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.why-img-wrapper:hover .carousel-item img {
  transform: scale(1.03);
}


/* Why Choose Section Redesign (About Page) */
.why-us {
  position: relative;
  background-image: radial-gradient(#dbe9f4 2px, transparent 2px), linear-gradient(#8bc34a, #a5d6a7, #8bc34a);
  background-size: 30px 30px, cover;
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  /* Subtle dot pattern */
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.why-card {
  background: rgb(255, 255, 255);
  /* Semi-transparent */
  backdrop-filter: blur(10px);
  /* Glass effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy transition */
  position: relative;
  overflow: hidden;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(11, 60, 93, 0.15);
  border-color: #fff;
}

.icon-box {
  width: 80px;
  height: 80px;
  background: #a3cc5a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.why-card:hover .icon-box {
  background: #0b3c5d;
  color: #fff;
  transform: rotate(10deg);
  box-shadow: 0 10px 20px rgba(11, 60, 93, 0.3);
}

.icon-box i {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.4s ease;
}

.icon-box i:hover {
  color: #0b3c5d;
}



.why-card:hover .icon-box i {
  color: #fff;
  transform: scale(1.1);
}


.why-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b3c5d;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.why-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

/* Decorative background shape for extra uniqueness */
.why-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #0b3c5d, rgba(255, 255, 255, 0.8));
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: 0;
  opacity: 0;
}

.why-card:hover::before {
  top: -20px;
  right: -20px;
  opacity: 1;
}


.why-card .read-more-btn {
  background: var(--secondary);
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-radius: 50px;
  min-width: auto;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;

}

.why-card .read-more-btn:hover {
  background: #084460;
  /* Brand Blue on hover */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-card .read-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.why-card .read-more-btn:hover i {
  margin-left: 8px;
  transform: translateX(5px);
}

/* Creative Cards Ribbon Style */
.creative-cards .card-details h3 {
  /* Gradient Split: Left Half = Green Gradient (Hover), Right Half = Blue Gradient (Default) */
  background: linear-gradient(to right, #7da52d 0%, #b6e34a 50%, var(--primary) 50%, #0b5c80 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  /* Start showing Right side (Blue) */
  box-shadow: 0 4px 10px rgba(8, 68, 96, 0.3);
  color: #fff;
  padding: 12px 40px;
  display: inline-block;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
  margin-top: 15px;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.creative-cards .card-details h3:hover {
  background-position: 0 0;
  /* Slide to Left side (Green) */
  color: #fff;
}

/* Fix Layout & Alignment - Aggressive Override */
.creative-cards.style-one .row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.creative-cards.style-one .card-column {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.creative-cards .card-details {
  height: 100% !important;
  min-height: 320px !important;
}





/* Restored original text transforms by removing the reset block */

/* About Us Collage Design */
.about-collage {
  position: relative;
  height: 500px;
  /* Adjust based on image aspect ratios */
  width: 100%;
}

.collage-item {
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid #fff;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.collage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Main Image - Large */
.main-img {
  width: 70%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Secondary Image - Medium Overlap */
.secondary-img {
  width: 55%;
  height: 280px;
  bottom: 0;
  right: 10px;
  z-index: 2;
}

/* Accent Image - Small Decorative */
.accent-img {
  width: 150px;
  height: 150px;
  top: 40px;
  right: 0;
  z-index: 3;
  border-radius: 50%;
  /* Circle */
  border: 4px solid #fff;
  animation: floatImage 4s ease-in-out infinite;
}

/* Floating Small Image 1 (Bottom Left) */
.floating-img-1 {
  width: 180px;
  height: 120px;
  bottom: 30px;
  left: 0;
  z-index: 4;
  border: 3px solid #fff;
  animation: floatImage 5s ease-in-out infinite reverse;
}

/* Floating Small Image 2 (Right Center) */
.floating-img-2 {
  width: 140px;
  height: 140px;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 3;
  border-radius: 20px;
  border: 3px solid #fff;
  animation: floatImage 6s ease-in-out infinite 1s;
}

/* Animation */
@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Decorative Shape */
.collage-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(8, 68, 96, 0.1), transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

/* About List Styling */
.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #555;
  font-weight: 500;
}

.about-list li i {
  color: var(--secondary);
  font-size: 1.25rem;
  background: rgba(182, 227, 74, 0.2);
  /* Light green bg */
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cta {
  position: relative;
  overflow: hidden;
  /* Clips ALL overflowing elements */
  background: linear-gradient(-45deg, #084460, #0a5273, #06364d, #0a5273);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  padding: 80px 0;
  z-index: 1;
  color: #fff;
}

.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(50px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(11, 60, 93, 0.15);
  /* Primary Blue weak */
  top: -50px;
  left: -50px;
  animation: moveShape 15s infinite alternate;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(182, 227, 74, 0.2);
  /* Secondary Green weak */
  bottom: -30px;
  right: -30px;
  animation: moveShape 12s infinite alternate-reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: rgba(11, 60, 93, 0.1);
  top: 40%;
  right: 15%;
  animation: pulseShape 8s infinite ease-in-out;
}

@keyframes moveShape {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

@keyframes pulseShape {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }

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

/* ===== INTERACTIVE ABOUT COLLAGE ===== */
.interactive-collage.about-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 15px;
  position: relative;
  width: 100%;
}

.interactive-collage .collage-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.interactive-collage .collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.interactive-collage .collage-item:hover img {
  transform: scale(1.1);
}

.interactive-collage .collage-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(8, 68, 96, 0.9));
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
}

.interactive-collage .collage-item:hover .collage-content {
  transform: translateY(0);
}

.interactive-collage .collage-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.interactive-collage .collage-content p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* Featured State */
.interactive-collage .collage-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  z-index: 10;
}


/* ===== MODERN FAQ SECTION ===== */
.faq-modern-section {
  padding: 40px 0;
}

.faq-modern-section .section-title span {
  color: var(--secondary);
}

.custom-accordion .accordion-item {
  background: white;
  border: none;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Soft shadow */
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-button {
  background: white;
  color: #0b3c5d;
  /* Brand primary */
  font-weight: 600;
  font-size: 1.1rem;
  padding: 20px 25px;
  border: none;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(to right, rgba(155, 184, 85, 0.1), rgba(255, 255, 255, 0));
  /* Subtle gradient */
  color: var(--secondary);
  border-left: 4px solid var(--secondary);
  /* Accent border */
}

/* Icon Styling */
.custom-accordion .icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 60, 93, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #0b3c5d;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.custom-accordion .accordion-button:not(.collapsed) .icon-wrapper {
  background: var(--secondary);
  color: white;
  transform: rotate(360deg);
}

/* Hide Default Arrow and Use Flex Layout */
.custom-accordion .accordion-button::after {
  margin-left: auto;
  /* Push to right */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b3c5d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239bb855'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  padding: 5px 25px 25px 80px;
  /* Indent to align with text */
  background: white;
}

/* Mobile Responsiveness */


/* ===== INNOVA BRAND BAND ===== */
.innova-brand-band {
  background-color: #0b3c5d;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  /* Essential for marquee */
}

.brand-content-wrapper {
  color: #fff;
  display: inline-block;
  /* MARQUEE SETUP */
  padding-left: 0;
  animation: marqueeLeftToRight 20s linear infinite, slideInLeft 1.5s ease-out forwards;
  animation-delay: -10s, 0s;
  /* Start visible in middle for marquee, 0s for slideInLeft */
  opacity: 0;
  /* Init hidden for animation */
}

.brand-small-text {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
  font-weight: 500;
}

.brand-large-text {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.brand-large-text .underline-white {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

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



/* Footer Social Icons - Manual Add */
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  position: relative;
  z-index: 10;
}

.social-icon {
  width: 50px;
  /* Larger size */
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  /* pure white icon */
  font-size: 1.5rem;
  /* Larger icon */
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  margin-bottom: 15px;
}

.social-icon:hover {
  background: #ffffff;
  color: #084460;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Specific item layout for desktop */


/* Adjustments for when an item is featured on desktop */




/* ===== MODERN FAQ SECTION ===== */
.faq-modern-section {
  padding: 40px 0;
}

.faq-modern-section .section-title span {
  color: var(--secondary);
}

.custom-accordion .accordion-item {
  background: white;
  border: none;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Soft shadow */
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-button {
  background: white;
  color: #0b3c5d;
  /* Brand primary */
  font-weight: 600;
  font-size: 1.1rem;
  padding: 20px 25px;
  border: none;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(to right, rgba(155, 184, 85, 0.1), rgba(255, 255, 255, 0));
  /* Subtle gradient */
  color: var(--secondary);
  border-left: 4px solid var(--secondary);
  /* Accent border */
}

/* Icon Styling */
.custom-accordion .icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 60, 93, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #0b3c5d;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.custom-accordion .accordion-button:not(.collapsed) .icon-wrapper {
  background: var(--secondary);
  color: white;
  transform: rotate(360deg);
}

/* Hide Default Arrow and Use Flex Layout */
.custom-accordion .accordion-button::after {
  margin-left: auto;
  /* Push to right */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b3c5d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b3c5d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  padding: 5px 25px 25px 80px;
  /* Indent to align with text */
  background: white;
}

/* Mobile Responsiveness */



/* ===== BRAND BAND ===== */
.innova-brand-band {
  background-color: #0b3c5d;
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 5;
}

.brand-content-wrapper {
  color: #fff;
  display: inline-block;
  padding-left: 0;
  opacity: 1 !important;
  /* Force visible */
}

/* Text Color Animation */
.brand-small-text,
.brand-large-text {
  animation: colorCycle 4s infinite alternate;
  /* 2-color change */
}

.brand-small-text {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.brand-large-text {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.brand-large-text .underline-white {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

/* Left to Right Marquee using Viewport Width */
@keyframes marqueeLeftToRight {
  0% {
    transform: translateX(-100vw);
    /* Off-screen Left */
  }

  100% {
    transform: translateX(100vw);
    /* Off-screen Right */
  }
}

/* 2-Color Cycle Animation */
@keyframes colorCycle {
  0% {
    color: #ffffff;
    /* White */
  }

  50% {
    color: #9bb855;
    /* Brand Secondary Green */
  }

  100% {
    color: #ffffff;
    /* White */
  }
}



/* Services Scroll Mobile */


/* Brand Band Mobile */


/* =========================================
   ADVANCED PAGE CSS (Desktop & Mobile)
   ========================================= */
.tech-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.tech-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.tech-feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.tech-pill-icon {
  min-width: 40px;
  height: 40px;
  background: rgba(8, 68, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #084460;
  font-size: 1.1rem;
}

.tech-feature-pill span {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}





/* =========================================
   ABOUT PAGE MOBILE RESPONSIVITY
   ========================================= */




.about-carousel-caption-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  text-align: center;
  z-index: 10;
}

.about-carousel-caption-box h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.about-carousel-caption-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.3;
}

/* Feature Pills Styling for About Page on Mobile */


/* Timeline Responsivity */


/* Additional Advanced Page Mobile Overrides */




/* =========================================
   RECONSTRUCTED ADVANCED PAGE STYLES (DESKTOP)
   ========================================= */

/* Technology Introduction Grid */
.tech-intro-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 50px !important;
  align-items: start !important;
  margin-top: 40px !important;
  margin-bottom: 80px !important;
}

.tech-gallery {
  position: relative;
}

.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  background: #f8f9fa;
  height: 450px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.gallery-thumbs {
  display: flex !important;
  gap: 15px !important;
}

.thumb-item {
  width: 100px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thumb-item.active {
  border-color: var(--secondary);
  box-shadow: 0 5px 15px rgba(155, 184, 85, 0.3);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.thumb-item:hover img,
.thumb-item.active img {
  opacity: 1;
}

.tech-text-content {
  padding-top: 20px;
}

.tech-subtitle {
  display: block;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.tech-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.2;
}

.tech-title span {
  color: var(--secondary);
}

.tech-lead {
  font-size: 1.2rem;
  color: #444;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

.tech-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Feature Pills Grid */
.tech-features-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 15px !important;
  margin-top: 25px !important;
  margin-bottom: 30px !important;
  max-width: 450px !important;
}

.tech-feature-pill {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #fff !important;
  padding: 12px 18px !important;
  border-radius: 50px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #eee !important;
  transition: all 0.3s ease !important;
}

.tech-feature-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.tech-pill-icon {
  min-width: 40px !important;
  height: 40px !important;
  background: rgba(8, 68, 96, 0.1) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--primary) !important;
  font-size: 1.1rem !important;
}

.tech-feature-pill span {
  font-weight: 600 !important;
  color: #333 !important;
  font-size: 0.95rem !important;
  line-height: 1.2 !important;
}

.btn-tech-primary {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(8, 68, 96, 0.3);
}

.btn-tech-primary:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(155, 184, 85, 0.4);
}

/* Advanced Glass Technology Timeline */
.timeline-section {
  position: relative;
  padding: 60px 0;
}

.timeline-section::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e9ecef;
  z-index: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 80px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 0 0 10px #fff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item:hover .timeline-marker {
  background: var(--secondary);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 0 10px var(--primary);
}

.timeline-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--primary) !important;
}

.timeline-header {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 20px !important;
  border-bottom: 1px solid #eee !important;
  padding-bottom: 15px !important;
}

.timeline-header h4 {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
}

.timeline-icon {
  font-size: 28px;
  color: var(--secondary);
  margin-right: 15px;
  width: 50px;
  height: 50px;
  background: rgba(155, 184, 85, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  background: var(--secondary);
  color: #fff;
  transform: rotate(-10deg);
}

.timeline-body p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.timeline-specs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  padding-top: 15px !important;
  border-top: 1px solid #f0f0f0 !important;
}

.spec-item {
  font-size: 0.9rem;
  color: #555;
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #eee;
  flex: 1 1 auto;
  min-width: 140px;
}

.spec-item i {
  margin-right: 8px;
  color: var(--secondary);
}

.spec-item b {
  color: var(--primary);
  margin-right: 5px;
  font-weight: 600;
}

.timeline-img-wrapper {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 260px;
  /* Fixed Uniform Height */
  width: 100%;
  /* Fixed Uniform Width */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.timeline-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fills the box completely */
  transition: transform 0.5s ease;
}

/* Reconstructed About Hero & Section Titles */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 350px;
  ;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 40px;
  background: rgb(77 136 163 / 65%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin: 0 20px;
}

.section-title span {
  color: var(--secondary);
}

/* Reconstructed About CTA */
.about-cta {
  position: relative;
  padding: 100px 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-glass-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 60px 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 900px;
  margin: 0 auto;
}

.btn-brand-glow {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(155, 184, 85, 0.4);
  transition: all 0.3s ease;
}

/* =========================================
   RECONSTRUCTED RESPONSIVE OVERRIDES
   ========================================= */







/* =========================================
   ABOUT PAGE UNIQUE MOBILE FIXES
   ========================================= */




.about-carousel-caption-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8) !important;
  padding: 15px !important;
  text-align: center;
  z-index: 10;
}

.about-carousel-caption-box h5 {
  color: #fff !important;
  font-size: 1.1rem !important;
  margin-bottom: 5px !important;
  font-weight: 700 !important;
}

.about-carousel-caption-box p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.85rem !important;
  margin-bottom: 0 !important;
  line-height: 1.3 !important;
}





/* =========================================
   SPECIFIC 320px FIXES FOR ADVANCED PAGE
   ========================================= */


/* Ensure container doesn't overflow */
.advanced-page .container,
.about-main .container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(155, 184, 85, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px rgba(8, 68, 96, 0.5);
  transform: translateY(-3px);
}

.scroll-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}



/* Mobile Hero Collage: Tablet/Mobile Slider Mode */



/* ===== STICKY SIDEBAR FOR ADVANCED PAGE ===== */
.sidebar-navigation-section {
  /* Not used in vertical layout */
  display: none;
}

/* Advanced Page Main Section - Position below hero */
.advanced-main {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 60px;
}

.advanced-layout-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 35px;
  align-items: start;
  padding-top: 50px;
}

.advanced-content-main {
  min-width: 0;
  width: 100%;
  padding-top: 0;
}

.advanced-content-main .tech-text-content {
  margin-top: 50px;
}

.advanced-sidebar-sticky {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  border-top: 5px solid var(--secondary);
  margin-bottom: 20px;
}

/* Desktop Grid Version */
.advanced-layout-wrapper .advanced-sidebar-sticky {
  display: none;
}



/* Custom Scrollbar for Sidebar */
.advanced-sidebar-sticky::-webkit-scrollbar {
  width: 6px;
}

.advanced-sidebar-sticky::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.advanced-sidebar-sticky::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.advanced-sidebar-sticky::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Sidebar Widget Base */
.sidebar-widget {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
  border: none;
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  opacity: 1;
}

.sidebar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  position: relative;
  display: block;
  text-align: left;
}

.sidebar-title::after {
  display: none;
}

/* Sidebar Navigation */
.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.sidebar-nav li {
  margin-bottom: 12px;
}

.sidebar-nav li:last-child {
  margin-bottom: 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: #f4f6f8;
  position: relative;
  overflow: visible;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  z-index: 1;
  margin-bottom: 15px;
  /* Add spacing between items */
}

.sidebar-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  z-index: 0;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  z-index: 10;
}

.sidebar-nav a:hover::before,
.sidebar-nav a.active::before {
  transform: scaleY(1);
}

.sidebar-nav a .nav-text {
  display: flex;
  align-items: center;
  flex: 1;
}

.sidebar-nav a i {
  margin-right: 15px;
  font-size: 16px;
  width: 36px;
  height: 36px;
  background: rgba(8, 68, 96, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sidebar-nav a:hover i,
.sidebar-nav a.active i {
  color: var(--secondary);
  background: rgba(155, 184, 85, 0.15);
  transform: rotate(10deg);
}

.sidebar-nav a::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.sidebar-nav a:hover::after,
.sidebar-nav a.active::after {
  transform: translateX(3px);
  color: var(--secondary);
}

/* Sidebar CTA Widget */
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #0a5a7a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.sidebar-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.sidebar-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sidebar-cta-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 15px;
  display: block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

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

.sidebar-cta h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.sidebar-cta p {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.sidebar-cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 184, 85, 0.3);
}

.sidebar-cta-btn:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Sidebar Info Widget */
.sidebar-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sidebar-stat {
  display: flex;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border-left: 3px solid var(--secondary);
}

.sidebar-stat:last-child {
  margin-bottom: 0;
}

.sidebar-stat:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-stat i {
  font-size: 28px;
  color: var(--secondary);
  margin-right: 15px;
  width: 40px;
  text-align: center;
}

.sidebar-stat div {
  flex: 1;
}

.sidebar-stat strong {
  display: block;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.sidebar-stat span {
  display: block;
  font-size: 16px;
  color: #333;
  font-weight: 700;
}

/* Responsive Behavior */






/* Smooth Scroll Behavior */
/* background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
animation: pulse 3s ease-in-out infinite;
} */

@keyframes pulse {

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

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.sidebar-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sidebar-cta-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 15px;
  display: block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

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

.sidebar-cta h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.sidebar-cta p {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.sidebar-cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 184, 85, 0.3);
}

.sidebar-cta-btn:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Sidebar Info Widget */
.sidebar-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sidebar-stat {
  display: flex;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border-left: 3px solid var(--secondary);
}

.sidebar-stat:last-child {
  margin-bottom: 0;
}

.sidebar-stat:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-stat i {
  font-size: 28px;
  color: var(--secondary);
  margin-right: 15px;
  width: 40px;
  text-align: center;
}

.sidebar-stat div {
  flex: 1;
}

.sidebar-stat strong {
  display: block;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.sidebar-stat span {
  display: block;
  font-size: 16px;
  color: #333;
  font-weight: 700;
}

/* Responsive Behavior */






/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  /* Account for sticky navbar */
}




/* Fixed Service Slider Image Sizes */
.slider-container,
.slider-container .carousel,
.slider-container .carousel-inner,
.slider-container .carousel-item,
.slider-container .carousel-item img {
  height: 500px !important;
  width: 100% !important;
}

/* Specific fix for the class mentioned by user */
.carousel-inner.rounded-3.shadow-lg {
  height: 500px !important;
  border-radius: 12px;
  overflow: hidden !important;
}

.slider-container .carousel-item img {
  object-fit: cover !important;
  display: block !important;
}








/* Toughening Process Area */
.toughening-process-area {
  position: relative;
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  background: radial-gradient(circle at 10% 20%, rgba(155, 184, 85, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(8, 68, 96, 0.03) 0%, transparent 40%);
  border-radius: 40px;
}


.process-flow-container {
  position: relative;
  padding: 40px 0;
}

.process-flow-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 2px;
  opacity: 0.3;
}

.process-step {
  position: relative;
  margin-bottom: 50px;
  padding-left: 80px;
  transition: all 0.4s ease;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: white;
  border: 4px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(8, 68, 96, 0.3);
}

.step-content {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 5px solid transparent;
  transition: all 0.4s ease;
}

.process-step:hover .step-content {
  border-left-color: var(--secondary);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-content h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 20px;
}

.step-content p {
  margin-bottom: 0;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* Unique Capability Box */
.unique-capability-box {
  transition: all 0.3s ease;
}

.unique-capability-box:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(8, 68, 96, 0.1) 0%, rgba(155, 184, 85, 0.1) 100%) !important;
}


/* Design Gallery Items - Glassmorphism style */
.design-item-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(155, 184, 85, 0.2) !important;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.design-item-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.design-item-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--secondary) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.design-item-card:hover::after {
  transform: scaleX(1);
}

.design-item-card i {
  transition: transform 0.4s ease;
}

.design-item-card:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--primary) !important;
}




/* Ultra-Attractive Sidebar Styling */
.sidebar-accordion .accordion-item {
  background: #ffffff;
  border-radius: 12px !important;
  margin-bottom: 15px;
  border: 1px solid rgba(8, 68, 96, 0.06) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.sidebar-accordion .accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(8, 68, 96, 0.08);
}

.sidebar-accordion .accordion-button {
  padding: 15px 20px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  background: #fff !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
}

.sidebar-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #f8fafc 0%, #fff 100%) !important;
}

.sidebar-accordion .accordion-button i {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: var(--secondary);
  border-radius: 8px;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.sidebar-accordion .accordion-button:not(.collapsed) i {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.1);
}

/* Sub-links: Compact, Attractive & Animated */
.sidebar-sub-links {
  padding: 10px !important;
  background: #fff !important;
}

.sidebar-sub-links li {
  margin-bottom: 4px !important;
}

.sidebar-sub-links li a {
  display: flex !important;
  align-items: center !important;
  padding: 10px 15px 10px 42px !important;
  color: #334155 !important;
  text-decoration: none !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative !important;
}

/* Circular Indicator */
.sidebar-sub-links li a::before {
  content: '';
  position: absolute;
  left: 18px;
  width: 6px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.sidebar-sub-links li a:hover,
.sidebar-sub-links li a.active {
  background: rgba(155, 184, 85, 0.1) !important;
  color: var(--primary) !important;
  padding-left: 48px !important;
}

.sidebar-sub-links li a:hover::before,
.sidebar-sub-links li a.active::before {
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(155, 184, 85, 0.15);
  transform: scale(1.2);
}

/* Premium Badge */
.badge-current {
  display: none !important;
  background: var(--primary) !important;
  color: white !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  padding: 3px 8px !important;
  border-radius: 5px !important;
  margin-left: auto !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Mega Menu Styling */
.navbar .nav-item.dropdown {
  position: static;
}

.dropdown-menu.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  /* Ensure it starts exactly at the bottom of the navbar */
  margin-top: 0;
  padding: 40px;
  border-radius: 0 0 20px 20px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background: linear-gradient(270deg, #02202e, #084460, #02202e);
  background-size: 200% 200%;
  animation: megaGradient 6s ease infinite;
  /* Match Default Navbar Blue */
  position: absolute;
  /* Was relative, must be absolute for top:100% to work relative to navbar */
  /* border-top: 3px solid var(--secondary); Removed for animation */
  /* REUSE: Logic for Mega Menu Animation */
  /* Base state (hidden) handled by .dropdown-menu above */
  /* When .show is added, Bootstrap adds display:block, our rule handles opacity */
}

@keyframes megaGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Ensure Mega Menu also snaps out by relying on the parent .dropdown-menu transition rules */
/* We only keep the slideDown animation for the OPEN state if desired, but standard transition is safer */
.dropdown-menu.mega-menu.show {
  animation: megaSlideDown 0.3s ease forwards;
}



.dropdown-menu.mega-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary);
  z-index: 10;
}



/* Fix for Mega Menu Hover Gap: Bridge the space from the menu side */
.dropdown-menu.mega-menu::after {
  content: "";
  position: absolute;
  top: -40px;
  /* Extend upward to cross the gap */
  left: 0;
  width: 100%;
  height: 40px;
  background: transparent;
  z-index: 1;
  /* Ensure it is below the visible menu content but captures hover */
}

.dropdown-menu.mega-menu.show::before {
  animation: expandLine 0.4s ease-out forwards;
}



@keyframes expandLine {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes megaSlideDown {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  20% {
    opacity: 1;
    /* Make visible very early to show line animation */
  }

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




.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* Default Blue Theme (Text Colors) */
.mega-column h6 {
  font-size: 15px;
  text-transform: none;
  /* Removed uppercase */
  font-weight: 800;
  color: #ffffff;
  /* White text on Blue */
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 15px;
}

.mega-column h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width 0.5s ease 0.2s;
  /* Slight delay to follow menu open */
}

/* Animate the column divider line when menu opens */
.dropdown-menu.mega-menu.show .mega-column h6::after {
  width: 40px;
}



.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li {
  margin-bottom: 14px;
}

.mega-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  /* Light text on Blue */
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.mega-column ul li a i {
  font-size: 10px;
  margin-right: 8px;
  color: var(--secondary);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.mega-column ul li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.mega-column ul li a:hover i {
  opacity: 1;
  color: #fff;
}

/* Scrolled White Theme Restored */
.navbar-animate .dropdown-menu.mega-menu {
  background: #ffffff;
}

.navbar-animate .mega-column h6 {
  color: var(--secondary);
}

.navbar-animate .mega-column h6::after {
  background: var(--primary);
}

.navbar-animate .mega-column ul li a {
  color: #666;
}

.navbar-animate .mega-column ul li a:hover {
  color: var(--primary);
}

.navbar-animate .mega-column ul li a i {
  color: var(--secondary);
  opacity: 0.6;
}

.navbar-animate .mega-column ul li a:hover i {
  color: var(--primary);
}


/* Global Hidden Sections */
.toughening-process-area,
.design-possibilities {
  display: none !important;
}


/* Scoped Styles for Contact Form Inputs */
.input-with-icon-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  background-color: #eaf4ff;
  border: 1px solid #b3d7ff;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.input-with-icon-wrapper:focus-within {
  border-color: #0b3c5d;
  box-shadow: 0 0 0 3px rgba(11, 60, 93, 0.1);
}

.icon-span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #555;
  font-size: 1.1rem;
  background-color: #eaf4ff;
  /* Match wrapper bg */
  min-width: 50px;
}

.input-with-icon-wrapper .form-control {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 12px 15px;
  width: 100%;
  color: #333;
  height: auto;
  margin: 0 !important;
  /* Override global margins */
}

.input-with-icon-wrapper textarea.form-control {
  resize: vertical;
}

.contact-btn {
  margin-top: 10px;
  background-color: #0b3c5d;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.contact-btn:hover {
  background-color: #9bb855;
}

/* Service Card Replica Styles */
.replica-service-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border-radius: 0;
  /* Square corners as per image */
  overflow: hidden;
}

.replica-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #9bb855;
  /* Theme Green Border on Hover */
}

.replica-card-img-wrapper {
  width: 100%;
  height: 380px;
  /* Tall image area */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.replica-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Forces the image to fill the container exactly */
  object-position: center;
  transition: transform 0.5s ease;
}

.replica-service-card:hover .replica-card-img-wrapper img {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

/* Separation Line */
.replica-card-divider {
  height: 2px;
  background-color: #9bb855;
  /* Theme Green Line */
  width: 100%;
  margin: 0;
}

.replica-card-body {
  padding: 20px 15px;
  text-align: center;
  flex-grow: 1;
}

.replica-card-title {
  color: #9bb855;
  /* Theme Green Title */
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.replica-subprofile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.replica-subprofile-list li {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 6px;
  line-height: 1.4;
}

.replica-card-footer {
  background-color: #f7f7f7;
  /* Light Grey footer */
  padding: 12px;
  text-align: center;
  border-top: 1px solid #eee;
}

.replica-card-footer a {
  color: #9bb855;
  /* Theme Green Link */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.replica-card-footer a:hover {
  color: #084460;
  /* Theme Blue Hover */
  text-decoration: underline;
}

/* =========================================
   Product Detail Page Styles (Centralized)
   ========================================= */

.product-detail-layout {
  padding: 20px 0;
}

/* Product Gallery Frame */
.product-gallery-container {
  display: flex;
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 6px;
  height: 480px;
  /* Fixed height for consistency */
}

.main-image-frame {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  height: 100%;
  border-right: 1px solid #eee;
  /* Divider between main image and thumbs */
}

.main-image-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Thumbnail Sidebar */
.thumbnail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 85px;
  /* Fixed width for thumbs column */
  min-width: 85px;
  padding: 0 0 0 8px;
  /* Left padding ensures spacing */
  overflow-y: auto;
  height: 100%;
}

.thumb-item {
  width: 100%;
  height: 80px;
  border: 1px solid #eee;
  padding: 3px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.thumb-item:hover {
  opacity: 1;
  border-color: #ccc;
}

.thumb-item.active {
  opacity: 1;
  border: 2px solid #9bb855;
  /* Theme Green */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* Action Buttons */
.btn-outline-custom {
  border: 2px solid #f2c94c;
  /* Gold/Yellow */
  color: #b4860b;
  font-weight: 700;
  transition: all 0.3s ease;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: #f2c94c;
  color: #fff;
  border-color: #f2c94c;
}

.btn-theme-yellow {
  background: #eab308;
  color: #fff;
  border: none;
  transition: background 0.3s ease;
}

.btn-theme-yellow:hover {
  background: #ca9a04;
  color: #fff;
}

.btn-theme-primary {
  background: #9bb855;
  color: #fff;
  border: none;
  transition: background 0.3s ease;
}

.btn-theme-primary:hover {
  background: #809945;
  color: #fff;
}

/* Product Info Table */
.product-specs-table {
  width: 100%;
  margin-bottom: 20px;
}

.product-specs-table td {
  padding: 10px 12px;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.product-specs-table tr:first-child td {
  border-top: none;
}

.product-specs-table tr:last-child td {
  border-bottom: none;
}

.product-specs-table .table-label {
  color: #6c757d;
  font-weight: 500;
  width: 40%;
}

.product-specs-table .table-value {
  color: #212529;
  font-weight: 600;
}

/* Misc */
.product-page-title {
  color: #0b3c5d;
  /* Theme Blue */
  font-weight: 700;
}

.pdf-link {
  color: #dc3545;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.pdf-link:hover {
  color: #a71d2a;
  text-decoration: underline;
}

.additional-info-box {
  background-color: #f8f9fa;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 15px;
  font-size: 0.9rem;
}

.additional-info-box ul li {
  margin-bottom: 4px;
  color: #555;
}

.container-custom {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Custom Slider Navigation Chevrons */
.custom-slider-btn {
  background-color: white !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
}

.custom-slider-btn:hover {
  background-color: var(--secondary) !important;
  opacity: 1;
}

.custom-slider-btn .carousel-control-prev-icon,
.custom-slider-btn .carousel-control-next-icon {
  filter: invert(1);
  /* Makes the white icon black */
  width: 20px;
  height: 20px;
}

.custom-slider-btn:hover .carousel-control-prev-icon,
.custom-slider-btn:hover .carousel-control-next-icon {
  filter: invert(0);
  /* Makes it white again on hover */
}

/* Adjust position */
.carousel-control-prev.custom-slider-btn {
  left: 30px;
}

.carousel-control-next.custom-slider-btn {
  right: 30px;
}


/* Custom Design Tokens */
:root {
  --theme-color: #9bb855;
  /* Green matching the website theme */
  --theme-text-gray: #666;
  --card-border-color: #f0f0f0;
}

.theme-text {
  color: var(--theme-color) !important;
}

/* Card Styling */
.category-card {
  border-color: var(--card-border-color) !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: #dae8b5 !important;
}

/* Image wrapper hover effect */
.card-img-wrapper img {
  transition: transform 0.6s ease;
}

.category-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* Theme Separator Line */
.separator-line {
  width: 100%;
  height: 2px;
  background-color: var(--theme-color);
  opacity: 0.8;
}

/* View All Button */
.view-all-btn {
  background-color: var(--theme-color);
  color: #fff;
  transition: all 0.3s ease;
}

.category-card:hover .view-all-btn {
  background-color: #f8f9fa;
  color: var(--theme-color);
}

.modal-thumb-item.active {
  border-color: #9bb855 !important;
  opacity: 1;
}

.modal-thumb-item {
  opacity: 0.7;
  transition: 0.3s;
}

.modal-thumb-item:hover {
  opacity: 1;
}

/* Responsive Gallery Styles */
.gallery-layout {
  display: flex;
  flex-direction: row;
  height: 400px;
}

.gallery-thumbnails {
  width: 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  border-left: 1px solid #dee2e6;
  padding: 5px;
  margin-left: 5px;
}

.gallery-thumbnails::-webkit-scrollbar {
  width: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.thumb-item {
  width: 75px;
  height: 75px;
  min-height: 75px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
  flex-shrink: 0;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item:hover,
.thumb-item.active {
  opacity: 1;
  border-color: #9bb855 !important;
  transform: scale(0.98);
}

.gallery-main-image {
  flex: 1;
  height: 100%;
  background: #fff;
}

.gallery-main-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* Glass Toughening Page Specific Styles */
.btn-outline-theme {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
  transition: all 0.3s;
}

.btn-outline-theme:hover {
  background: var(--secondary);
  color: white;
}

.btn-callback-floating {
  background: var(--secondary);
  border-radius: 4px;
  transition: all 0.3s ease;
}

a.btn.btn-callback-floating:hover {
  background: #9bb855 !important;
  background-color: #9bb855 !important;
  color: #ffffff !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px);
}

.product-description-text {
  line-height: 1.6;
}

.info-box-container {
  background: #fcfcfc;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.info-box-title {
  color: #0b3c5d;
  font-size: 1rem;
}

.info-item-card {
  border: 1px solid #f0f0f0;
}

.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.icon-box i {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i.fas {
  font-weight: 900;
}

.icon-box-blue {
  background: #eef5f9;
  color: #0b3c5d;
}

.icon-box-yellow {
  background: #fffcf0;
  color: #d9aa00;
}

.icon-box-green {
  background: var(--secondary) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(155, 184, 85, 0.3);
}

.icon-box-green i {
  color: #ffffff !important;
  font-size: 1.2rem;
  font-weight: 900;
}

.info-label {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 0.9rem;
}

.btn-interested {
  background: var(--secondary);
  border: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-interested:hover {
  background: #7da52d !important;
  color: white !important;
}

.modal-thumbs-scroll {
  width: 80px;
  overflow-y: auto;
  max-height: 500px;
}

.modal-main-image-box {
  height: 500px;
  width: 100%;
}

.modal-main-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-thumb-item {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  overflow: hidden;
}

.modal-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-modal-submit {
  background-color: var(--secondary);
  border: none;
}

/* Additional Product Page Utilities */
.gallery-container-height {
  height: 400px;
}

.gallery-container-height .bg-light {
  background-color: #fff !important;
}

.gallery-thumbs-sidebar {
  width: 70px;
  overflow-y: auto;
}

.img-blend-multiply {
  mix-blend-mode: normal;
}

.text-align-left {
  text-align: left;
}

.letter-spacing-wide {
  letter-spacing: 2px;
}

.unique-capability-box-style {
  background: linear-gradient(135deg, rgba(8, 68, 96, 0.05) 0%, rgba(155, 184, 85, 0.05) 100%);
  border: 1px dashed var(--secondary);
}

.text-theme-primary {
  color: #0b3c5d !important;
}

.icon-secondary {
  color: var(--secondary);
}

/* Modal Thumb Styles */
.modal-thumb-item {
  opacity: 0.7;
  transition: 0.3s;
}

.modal-thumb-item:hover {
  opacity: 1;
}

.modal-thumb-item.active {
  border-color: var(--secondary) !important;
  opacity: 1;
}

.product-page-title {
  color: #0b3c5d;
}

.services-slider-section {
  background: #f8fafc !important;
  overflow: hidden !important;
  width: 100% !important;
  padding: 50px 0 !important;
  position: relative !important;
  z-index: 5 !important;
}

.slider-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.slider-container {
  width: 100% !important;
  overflow: hidden !important;
}

.services-track {
  display: flex !important;
  width: max-content !important;
  animation: scrollFast 60s linear infinite !important;
  gap: 30px !important;
}

.services-track:hover {
  animation-play-state: paused !important;
}

.service-slide {
  width: 300px !important;
  flex-shrink: 0 !important;
}

.service-slide-card {
  display: block !important;
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  height: 100% !important;
  border: 1px solid #eee !important;
  overflow: hidden;
  text-decoration: none;
}

.img-box {
  height: 250px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-slide-card:hover .img-box img {
  transform: scale(1.1);
}

/* Extracted Inline Styles from Home Blade */
#servicesCarouselDesktop {
  padding: 0 55px;
}

#servicesCarouselDesktop .img-box {
  height: 190px;
}

#servicesCarouselDesktop .service-card-title {
  font-size: 15px;
}

#servicesCarouselTablet {
  padding: 0 50px;
}

#servicesCarouselMobile {
  padding: 0 45px;
}

#servicesCarouselMobile .img-box {
  height: 110px;
}

#servicesCarouselMobile .service-card-title {
  font-size: 11px;
  line-height: 1.3;
}

#servicesCarouselMobile .service-card-link-text {
  font-size: 10px;
}

#servicesCarouselMobile .service-slide-card .p-3 {
  padding: 0.85rem 0.75rem !important;
}

.service-slide-card-tablet {
  max-width: 320px;
}

.service-slide-card-mobile {
  max-width: none;
}

.service-card-title {
  font-size: 16px;
  margin: 5px 0 0;
  color: var(--primary);
  line-height: 1.2;
  font-weight: bold;
}

.service-card-link-text {
  margin-top: 10px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-chevron-circle {
  opacity: 0.8 !important;
}

#servicesCarouselDesktop .custom-chevron-circle {
  width: 45px;
  height: 45px;
}

#servicesCarouselTablet .custom-chevron-circle {
  width: 35px;
  height: 35px;
}

#servicesCarouselMobile .custom-chevron-circle {
  width: 30px;
  height: 30px;
}

.about-company-subtitle {
  letter-spacing: 2px;
}

.about-company-lead {
  font-size: 1.1rem;
  line-height: 1.8;
}

.services-title {
  color: white !important;
}

.dummy-block {
  display: block;
}

@keyframes scrollFast {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 15px));
  }
}
