/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --primary-color: #0c1f40; /* Navy Blue from Logo */
  --secondary-color: #6c757d; /* Grey/Silver */
  --accent-color: #a8aeb4; /* Light Silver */
  --text-dark: #222222;
  --text-light: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.4s ease-in-out;
}
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.border-secondary { border-color: var(--secondary-color) !important; }
.text-wt{ color: var(--white) !important; }
html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
}

/* Navbar Customization */
.navbar {
  transition: var(--transition);
  padding: 1.5rem 0;
  background-color: transparent !important;
}

.navbar.scrolled {
  background-color: var(--white) !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 0.8rem 0;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--white) !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.navbar-logo {
  height: 45px;
  object-fit: contain;
  transition: var(--transition);
}

.navbar.scrolled .navbar-logo {
  height: 40px;
}

.header-logo-bg {
  background: #ffffff;
  padding: 10px 30px 10px 97vw;
  margin-left: -100vw;
  border-radius: 0 50px 50px 0;
  box-shadow: 2px 0 15px rgba(0,0,0,0.1);
}
.navbar.scrolled .header-logo-bg {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-left: 0;
}


.navbar.scrolled .navbar-brand {
  color: var(--primary-color) !important;
}

.mobile-menu-icon {
  color: var(--white);
  font-size: 1.8rem;
  transition: var(--transition);
}

.navbar.scrolled .mobile-menu-icon {
  color: var(--primary-color);
}

.nav-link {
  color: var(--white) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
   margin: 0 8px; 
  position: relative;
  transition: var(--transition);
 white-space: nowrap;
}

.navbar.scrolled .nav-link {
  color: var(--primary-color) !important;
}

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

.navbar.scrolled .nav-link::before {
  background: var(--primary-color);
}

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

.btn-custom {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
 white-space: nowrap;
  font-size: 0.9rem;
}

.btn-custom:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.navbar .btn-custom {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.navbar .btn-custom:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.navbar.scrolled .btn-custom {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.navbar.scrolled .btn-custom:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

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

.navbar.scrolled .nav-link::before {
  background: var(--primary-color);
}

.nav-link:hover::before {
  width: 100%;
}
/* Dropdown Menu Customization */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  background-color: var(--white);
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 15px 0;
  min-width: 220px;
}

.navbar:not(.scrolled) .dropdown-menu {
  background-color: rgba(12, 31, 64, 0.95);
  backdrop-filter: blur(10px);
}

.dropdown-item {
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 25px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar:not(.scrolled) .dropdown-item {
  color: var(--white) !important;
}

.dropdown-item:hover {
  background-color: rgba(108, 117, 125, 0.1);
  color: var(--primary-color) !important;
  padding-left: 30px;
}

.navbar:not(.scrolled) .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
}

.dropdown-divider {
  border-color: rgba(0,0,0,0.05);
}

.navbar:not(.scrolled) .dropdown-divider {
  border-color: rgba(255,255,255,0.1);
}

.dropdown-toggle::after {
  border: none !important;
  content: '\f107' !important;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  vertical-align: middle;
  margin-left: 8px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Mobile Dropdown Adjustments */
@media (max-width: 991.98px) {
  .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent !important;
    box-shadow: none;
    padding: 0;
    text-align: center;
  }
  
  .nav-item.dropdown.show .dropdown-menu {
    display: block;
  }
  
  .dropdown-item {
    color: var(--white) !important;
    padding: 12px 20px;
  }

  .navbar:not(.scrolled) .dropdown-item {
  color: var(--primary-color) !important;
}
  
  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 20px;
  }
}
/* Hero Section with Video */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #000;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 7%); /* Darker overlay */
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

.hero-title {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* Left Vertical Text */
.hero-left-text {
  position: absolute;
  left: 30px;
  top: 50%;
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateY(50%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
}

/* Right Social Links */
.hero-right-social {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-right-social a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.hero-right-social a:hover {
  color: var(--secondary-color);
}

/* Mute Button */
.hero-mute-btn {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 999;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  pointer-events: auto;
}

.hero-mute-btn:hover {
  color: var(--secondary-color);
}

/* Scroll Down Icon */
.hero-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 25px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background-color: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* Industries Ticker */
.industries-ticker {
  background-color: #08152e; /* Slightly darker than primary for contrast */
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
  border-bottom: 4px solid var(--secondary-color);
  position: relative;
  z-index: 10;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.ticker-item i {
  color: var(--accent-color); /* Silver color for icons */
  font-size: 1.5rem;
  margin-right: 15px;
  transition: var(--transition);
}

.ticker-item:hover i {
  color: var(--white);
  transform: scale(1.1);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Gratings Intro Section */
.gratings-intro-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(rgba(12, 31, 64, 0.85), rgba(12, 31, 64, 0.95)), url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover fixed;
  color: var(--white);
  border-bottom: 4px solid var(--secondary-color);
}

.gratings-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 25px;
  font-family: 'Montserrat', sans-serif;
}

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

.title-underline {
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.gratings-content-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gratings-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 0;
  font-family: 'Open Sans', sans-serif;
  color: #e0e0e0;
}

.gratings-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: block;
}

.gratings-icon-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  display: block;
  font-family: 'Montserrat', sans-serif;
}

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

.section-title {
 display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* About Section Premium Design */
.about-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

/* Badge */
.section-badge {
  display: inline-block;
  background-color: rgba(12, 31, 64, 0.1);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Typography */
.about-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}
.about-title span {
  color: var(--primary-color);
}
.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* Image Composition */
.about-image-composition {
  position: relative;
  padding-right: 50px;
  padding-bottom: 50px;
  z-index: 1;
}
.image-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}
.image-main img {
  width: 100%;
  height: auto;
  display: block;
}
.image-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: -10px -10px 30px rgba(0,0,0,0.15);
  border: 10px solid var(--white);
  z-index: 3;
}
.image-overlay img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.image-overlay:hover img {
  transform: scale(1.05);
}
.experience-badge {
  position: absolute;
  top: 2px;
  left: -30px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(12, 31, 64, 0.3);
  z-index: 4;
}
.experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 5px;
}
.experience-badge .text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.composition-bg-shape {
  position: absolute;
  top: -20px;
  bottom: 30px;
  left: -20px;
  right: 30px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  opacity: 0.1;
  z-index: 0;
}

/* Features Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(12, 31, 64, 0.05);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--white);
}
.feature-item h5 {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 700;
  color: var(--text-dark);
}

/* Services / Products Cards */
.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  text-align: center;
  height: 100%;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-bottom: 4px solid var(--primary-color);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--secondary-color);
}

.service-card h4 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Why Choose Us */
.features-section {
  background-color: var(--primary-color);
  color: var(--white);
}

.features-section .section-title h2 {
  color: var(--white);
}

.features-section .section-title h2::after {
  background-color: var(--white);
}

.feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-right: 20px;
}

.feature-content h4 {
  color: var(--white);
  margin-bottom: 10px;
}

.feature-content p {
  color: #ccc;
  font-size: 0.9rem;
}

/* Call to Action */
.cta-section {
  background: linear-gradient(rgba(12, 31, 64, 0.8), rgba(12, 31, 64, 0.8)), url('image/tr3.png') center/cover fixed;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
}

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

/* Footer */
footer {
  background-color: #050d1a;
  color: #a8aeb4;
  padding: 60px 0 20px;
}

.footer-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a8aeb4;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-logo {
  max-width: 200px;
 
  max-width: 250px;
}
.footer-logo-bg {
  background: #ffffff;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}
.footer-logo-bg .footer-logo {
  margin-bottom: 0 !important;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Footer Premium Design */
.footer-section {
  background: linear-gradient(rgba(5, 13, 26, 0.9), rgba(5, 13, 26, 0.95)), url('image/a5.JPG') center/cover fixed;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  padding-top: 60px;
}

.footer-top {
  position: relative;
  margin-top: -100px;
  margin-bottom: 50px;
  z-index: 5;
}

.contact-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: var(--transition);
  height: 100%;
}

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

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(220, 150, 50, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-card:hover .contact-icon {
  background: var(--secondary-color);
  color: var(--white);
}

.contact-details h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.contact-details p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-main {
  padding: 20px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  max-width: 200px;
 
}

.footer-about {
  color: #a8aeb4;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-heading {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a8aeb4;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer-links a i {
  font-size: 0.7rem;
  margin-right: 8px;
  color: var(--secondary-color);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-address p {
  color: #a8aeb4;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  padding: 20px 0;
  background-color: #030810;
  color: #888;
  font-size: 0.9rem;
}

.designed-by {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
  .gratings-content-box {
    padding: 30px 20px;
  }
  .gratings-title {
    font-size: 2rem;
  }
  .about-image-composition {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .image-overlay {
    width: 40%;
  }
  .glass-text {
    font-size: 0.95rem;
  }
}

/* Updated Textured Features & Glass Text Box */
.premium-textured-features {
  position: relative;
  background-color: var(--primary-color);
  color: var(--white);
  overflow: hidden;
}

.texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.texture-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--primary-color) 90%);
}

.glass-text-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.glass-text-box:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

@media (min-width: 992px) {
  .mobile-nav-item {
    width: auto !important;
    margin: 0 5px;
  }
  .mobile-btn {
    width: auto !important;
    padding: 10px 25px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .experience-badge {
    left: 10px;
    top: -20px;
    padding: 15px;
  }
  .experience-badge .years {
    font-size: 2rem;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .hero-mute-btn {
    left: 20px;
    bottom: 20px;
  }
  .hero-scroll-down {
    bottom: 20px;
  }
  .ticker-item {
    font-size: 0.95rem;
    padding: 0 30px;
  }
  .ticker-item i {
    font-size: 1.2rem;
    margin-right: 10px;
  }
  .offcanvas-lg {
    background-color: var(--white);
    border-right: none;
    box-shadow: 5px 0 25px rgba(0,0,0,0.1);
  }
  .offcanvas-logo {
    height: 60px;
    object-fit: contain;
  }
  .offcanvas-lg .nav-link {
    color: var(--primary-color) !important;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(12, 31, 64, 0.1);
    transition: var(--transition);
  }
  .offcanvas-lg .nav-link:hover {
    background-color: rgba(12, 31, 64, 0.05);
    letter-spacing: 2px;
  }
  .offcanvas-lg .nav-link::after {
    display: none;
  }
  .offcanvas-lg .mobile-btn {
    width: 75% !important;
    margin-top: 20px !important;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 15px;
  }
  .social-links-mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .social-links-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
  }
  .social-links-mobile a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
  }


}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Custom Cursor Styles */
body, a, button, .nav-link, .btn-custom {
  cursor: none !important;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 999999;
  pointer-events: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 999998;
  pointer-events: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
}

/* Hover effects */
.cursor-dot.hover {
  width: 0;
  height: 0;
}

.cursor-outline.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-outline {
    display: none;
  }
  body, a, button, .nav-link, .btn-custom {
    cursor: auto !important;
  }
}

/* Premium Product Cards */
.product-premium-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid transparent;
}

.product-premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(12, 31, 64, 0.15);
  border-bottom: 4px solid var(--secondary-color);
}

.product-premium-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-premium-card:hover img {
  transform: scale(1.08);
}

.product-premium-content {
  padding: 30px 25px;
  background-color: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.product-premium-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.product-premium-card:hover .product-premium-content h4 {
  color: var(--secondary-color);
}

.product-premium-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.read-more-btn {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.read-more-btn:hover {
  color: var(--secondary-color);
}

.product-premium-card:hover .read-more-btn i {
  transform: translateX(8px);
}

/* Major Clients Section */
.clients-section {
  overflow: hidden;
  background-color: #f8f9fa;
}

.clients-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.clients-ticker {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-ticker::before,
.clients-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
}

.clients-ticker::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.clients-ticker::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa, transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  animation: clientsScroll 25s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo {
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-height: 50px;
  max-width: 150px;
  object-fit: contain;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 5px;
}

.client-logo:hover img {
  transform: scale(1.15);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

@keyframes clientsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .clients-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .clients-title br {
    display: none;
  }
  .title-underline {
    margin: 10px auto 20px !important;
  }
}

/* Parallax Stats Section */
.parallax-stats-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1565514020179-026b92b84bb6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat fixed;
  color: var(--white);
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 31, 64, 0.92) 0%, rgba(12, 31, 64, 0.8) 100%);
  z-index: 1;
}

.min-vh-50 {
  min-height: 50vh;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 15px;
  border-radius: 10px;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  height: 100%;
}

.stat-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.2rem;
  }
  .parallax-stats-section .display-4 {
    font-size: 2.2rem;
  }
  .stat-box {
    padding: 20px 10px;
  }
}

/* Premium Features Alternate Rows */
.premium-features-container {
  padding-top: 20px;
}

.premium-feature-row {
  margin-bottom: 80px;
}

.premium-feature-row:last-child {
  margin-bottom: 0;
}

.premium-feature-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.premium-feature-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.premium-feature-row:hover .premium-feature-img img {
  transform: scale(1.05);
}

.feature-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  border: 3px solid var(--secondary-color);
  z-index: 2;
}

.flex-lg-row-reverse .feature-number {
  left: auto;
  right: 20px;
}

@media (max-width: 991px) {
  .premium-feature-row {
    margin-bottom: 50px;
  }
  .premium-feature-img {
    margin-bottom: 20px;
  }
  .premium-feature-img img {
    height: 300px;
  }
  .flex-lg-row-reverse .feature-number {
    left: 20px;
    right: auto;
  }
}

/* Stats Counter Section */
.stats-counter-section {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.counter-box {
  padding: 15px;
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 5px;
  line-height: 1;
}

.counter-text {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

/* Premium Parallax Features */
.premium-parallax-features {
  position: relative;
  background: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat fixed;
  color: var(--white);
}

.parallax-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 31, 64, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
  z-index: 1;
}

.badge-light {
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

.glass-feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.glass-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.glass-feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.08);
}

.glass-feature-card:hover::before {
  transform: translateX(100%);
}

.glass-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.glass-feature-card:hover .glass-icon {
  transform: scale(1.1) rotate(5deg);
}

.glass-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
}

.glass-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.glass-text {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.glass-text strong {
  color: var(--secondary-color);
}
/* =========================================
   Contact Page Styles
   ========================================= */

/* Page Hero */
.page-hero {
  position: relative;
  height: 80vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* Offset for fixed navbar */
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.page-hero-subtitle {
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-hero-title {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
}

.custom-breadcrumb {
  background: rgba(255,255,255,0.1);
  padding: 10px 25px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
}

.custom-breadcrumb .breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: var(--white);
}

.custom-breadcrumb .breadcrumb-item.active {
  font-weight: 700;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary-color);
}

/* Contact Info Cards */
.contact-info-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding-bottom: 80px;
}

.glass-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(12, 31, 64, 0.15);
}

.glass-card:hover::before {
  transform: scaleX(1);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(12, 31, 64, 0.05);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.glass-card:hover .icon-wrapper {
  background: var(--primary-color);
  color: var(--white);
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--secondary-color);
}

/* Form Section */
.contact-form-section {
  background: #f8f9fa;
  position: relative;
}

.contact-form-image-wrapper {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}

.contact-form-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  object-fit: cover;
  min-height: 500px;
}

.form-bg-shape {
  position: absolute;
  top: -20px;
  right: 0;
  width: 80%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.1;
  z-index: 1;
}

.support-badge {
  position: absolute;
  bottom: -30px;
  left: -20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 30px rgba(12, 31, 64, 0.3);
  z-index: 3;
}

.support-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.premium-input {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  background: var(--white);
  padding-left: 20px;
}

.premium-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(12, 31, 64, 0.1);
}

.form-floating > label {
  padding-left: 20px;
  color: #6c757d;
}

/* FAQ Section */
.custom-accordion .accordion-item {
  border: none;
  background: var(--white);
  border-radius: 15px !important;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

.custom-accordion .accordion-button {
  padding: 20px 25px;
  font-size: 1.1rem;
  color: var(--primary-color);
  background: var(--white);
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: rgba(12, 31, 64, 0.03);
}

.custom-accordion .accordion-button::after {
  background-image: none;
  content: '\f067'; /* FontAwesome Plus */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary-color);
  transform: none !important;
  transition: var(--transition);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  content: '\f068'; /* FontAwesome Minus */
  color: var(--primary-color);
}

.custom-accordion .accordion-body {
  padding: 0 25px 25px;
  color: #666;
  line-height: 1.8;
  background: rgba(12, 31, 64, 0.03);
}

/* Map Section */
.map-section {
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  transition: filter 0.5s ease;
}

.map-section:hover iframe {
  filter: grayscale(0%) contrast(100%) !important;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-light);
}
.contact-title span {
  color: var(--text-light);
}

/* =========================================
   About Page Styles
   ========================================= */

.about-page-wrapper {
  position: relative;
  background: var(--white);
  z-index: 2;
  box-shadow: 0 -20px 50px rgba(0,0,0,0.4);
}

/* Hero Parallax */
.parallax-hero {
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  overflow: hidden;
}

/* Our Story Section */
.story-image-wrapper {
  position: relative;
  z-index: 1;
}

.story-blob-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 90%;
  height: 90%;
  background: var(--primary-color);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: -1;
  opacity: 0.05;
  animation: morphing 10s infinite alternate;
}

@keyframes morphing {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.story-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

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

.story-stats-grid {
  display: flex;
  background: transparent;
  border-radius: 15px;
  padding: 20px;
}

.story-stat-item {
  flex: 1;
  text-align: center;
  transition: all 0.3s ease;
}

.story-stat-item .icon-wrapper {
  background: rgba(12,31,64,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.story-stat-item:hover .icon-wrapper {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(12,31,64,0.2);
}

/* Vision & Mission */
.vm-bg-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(12,31,64,0.05) 0%, rgba(255,255,255,0) 70%);
}

.vm-bg-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108,117,125,0.05) 0%, rgba(255,255,255,0) 70%);
}

.hover-elevate {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-elevate:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.transition-all {
  transition: all 0.3s ease;
}

/* Director Section */
.director-image-wrapper {
  perspective: 1000px;
}

.director-img {
  transition: transform 0.5s;
}

.director-image-wrapper:hover .director-img {
  transform: scale(1.02);
}

/* Advantage Card */
.advantage-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12,31,64,0.02) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card:hover::before {
  opacity: 1;
}

.adv-icon {
  transition: all 0.3s ease;
}

.advantage-card:hover .adv-icon {
  background: var(--primary-color) !important;
}

.advantage-card:hover .adv-icon i {
  color: var(--white) !important;
}

/* Core Values */
.value-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(12,31,64,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon-box {
  background: var(--primary-color);
  color: var(--white) !important;
  transform: rotateY(180deg);
}

.value-card:hover .value-icon-box i {
  color: var(--white) !important;
}

/* Dark Premium Glass Cards */
.dark-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}

.hover-glow:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glow-icon {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.05), 0 0 20px rgba(255,255,255,0.1);
}

/* Glowing Orbs */
.vm-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}

.orb-1 {
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(108, 117, 125, 0.3);
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(12, 31, 64, 0.8);
  animation: float 10s ease-in-out infinite reverse;
}

/* Infographic Timeline Layout */
.vm-infographic-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(12,31,64,0.03) 0%, transparent 60%);
  z-index: 0;
}

.vm-node {
  transition: all 0.4s ease;
}

.vm-row:hover .vm-node {
  background-color: var(--primary-color) !important;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(12,31,64,0.5) !important;
}

.vm-info-box {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.vm-info-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12,31,64,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.vm-info-box:hover::after {
  opacity: 1;
}

.vm-info-box > * {
  position: relative;
  z-index: 1;
}

/* Image Reveal Effect for Our Story */
.img-reveal-effect {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.8s ease;
}

.story-image-wrapper:hover .img-reveal-effect {
  transform: scale(1.03);
  filter: contrast(110%);
}

/* Product Page Styles */
.product-hero .page-hero-bg {
    background-size: cover;
    background-position: center;
}

.product-featured-img {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.product-featured-img:hover {
    transform: translateY(-10px);
}

.product-img-bg-blob {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 220%;
    background: radial-gradient(circle, rgba(12, 31, 64, 0.05) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
}

.small-badge {
    padding: 15px 10px !important;
    left: -20px !important;
    top: 20px !important;
}

.small-badge .years {
    font-size: 1.5rem !important;
}

.feature-icon-sm {
    width: 35px;
    height: 35px;
    background-color: rgba(12, 31, 64, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9rem;
}

/* Glass Table Styling */
.glass-table-wrapper {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
}

.custom-premium-table thead th {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.custom-premium-table tbody td {
    font-size: 1rem;
    color: #444;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    vertical-align: middle;
}

.custom-premium-table tbody tr:hover {
    background-color: rgba(12, 31, 64, 0.02);
}

/* Luxury Feature Cards */
.feature-luxury-card {
    background: var(--white);
    border-color: rgba(0,0,0,0.05) !important;
}

.feature-luxury-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 20px 40px rgba(12, 31, 64, 0.1);
}

.luxury-icon-box {
    transition: var(--transition);
}

.feature-luxury-card:hover .luxury-icon-box {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.feature-luxury-card:hover .luxury-icon-box i {
    color: var(--white) !important;
}

/* Application Images */
.hover-scale {
    transition: var(--transition);
    cursor: pointer;
}

.hover-scale:hover {
    transform: scale(1.05);
    z-index: 5;
    position: relative;
}

.custom-list li {
    font-weight: 600;
    font-size: 1.05rem;
}

/* Product CTA Overlay */
.product-cta {
    background: linear-gradient(rgba(12, 31, 64, 0.9), rgba(12, 31, 64, 0.95)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover fixed;
}

/* Variant & Comparison Styles */
.accent-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.variant-features li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #555;
    font-weight: 500;
}

.variant-img-wrapper img {
    transition: var(--transition);
}

.variant-img-wrapper:hover img {
    transform: scale(1.03);
}

.comparison-card {
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-10px);
}

.border-top-5 {
    border-top: 5px solid;
}

.comparison-list li {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--white);
}

.badge-light {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Advanced Visual Effects */
.img-glow-effect {
    position: relative;
    border-radius: 20px;
}

.img-glow-effect::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: var(--primary-color);
    filter: blur(30px);
    opacity: 0.15;
    z-index: -1;
    border-radius: inherit;
    transition: var(--transition);
}

.variant-img-wrapper:hover .img-glow-effect::after {
    opacity: 0.3;
    filter: blur(40px);
}

.hover-scale-lg {
    transition: var(--transition);
}

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

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.fw-500 { font-weight: 500; }

/* Product Gallery Styling */
.gallery-item-premium {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.gallery-img-box {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(12, 31, 64, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-overlay-v2 h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-overlay-v2 p {
    font-size: 0.85rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.gallery-item-premium:hover .gallery-img-box img {
    transform: scale(1.1);
}

.gallery-item-premium:hover .gallery-overlay-v2 {
    transform: translateY(0);
}
/* Animated Border Effect */
.animated-border-box {
    position: relative;
    padding: 10px;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.animated-border-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        var(--primary-color),
        var(--secondary-color),
        transparent 30%
    );
    animation: rotate-border 4s linear infinite;
    z-index: -2;
}

.animated-border-box::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--white);
    border-radius: 16px;
    z-index: -1;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Unique Detailed Section Styles */
.overlap-card-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.overlap-img-box {
    position: relative;
}

.overlap-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 5;
    margin-top: -80px;
    margin-left: 50px;
}

@media (max-width: 991px) {
    .overlap-card {
        margin-left: 0;
        margin-top: 30px;
    }
}

/* Load Capacity Section */
.load-capacity-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.capacity-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
}

.capacity-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
}

/* Applications Overlay Section */
.apps-overlay-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.apps-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12, 31, 64, 0.95) 0%, rgba(12, 31, 64, 0.4) 100%);
    z-index: 1;
}

.apps-content-box {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.app-pill {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    margin-bottom: 15px;
    margin-right: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.app-pill:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Luxury Glassmorphism & Advanced Effects */
.glass-luxury {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(12, 31, 64, 0.2);
}

.text-gradient-animate {
  background: linear-gradient(-45deg, #0c1f40, #1e3a8a, #6c757d, #0c1f40);
    background-size: 400% 400%;
    animation: gradient-shift 10s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-animatess {
  background: linear-gradient(
    -45deg,
    #ffffff,
    #f1f5f9,
    #dfe7ef,
    #ffffff
);
    background-size: 400% 400%;
    animation: gradient-shift 10s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-element {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 20px); }
    100% { transform: translate(0, -0px); }
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.shape-divider .shape-fill {
    fill: #ffffff;
}

/* Spec Card System (Replacing Table) */
.spec-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.spec-glass-card {
    background: rgba(12, 31, 64, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(12, 31, 64, 0.05);
    text-align: center;
    transition: var(--transition);
}

.spec-glass-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(12, 31, 64, 0.08);
    transform: translateY(-10px);
}

.spec-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.spec-value {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.spec-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.decor-line {
    width: 100px;
    height: 2px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.decor-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: line-shimmer 2s infinite;
}

@keyframes line-shimmer {
    100% { left: 100%; }
}
/* Modern Industrial Accents */
.industrial-accent-box {
    position: relative;
    padding: 60px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(12, 31, 64, 0.05);
}

.industrial-accent-box::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.02;
    border-radius: 50%;
    z-index: -1;
}

.step-card-modern {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border-bottom: 5px solid transparent;
    transition: var(--transition);
}

.step-card-modern:hover {
    border-color: var(--primary-color);
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(12, 31, 64, 0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(12, 31, 64, 0.05);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.neon-accent {
    color: #00d2ff;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

.dark-industrial-section {
    background: #081226;
    color: var(--white);
}

.premium-stat-card {
    text-align: center;
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
    .premium-stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

/* Geometric Industrial Styles */
.slanted-section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.slanted-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    z-index: -1;
}

.slanted-bg-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
    z-index: -1;
}

.highlight-float-card {
    background: var(--white);
    padding: 60px;
    border-radius: 0 50px 50px 50px;
    box-shadow: 30px 30px 60px rgba(12, 31, 64, 0.1);
    border-left: 10px solid var(--primary-color);
}

.info-circle-badge {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px;
    right: -20px;
    box-shadow: 0 10px 30px rgba(12, 31, 64, 0.3);
    z-index: 10;
}

.art-img-mask {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
/* Heavy Duty Brutalist Styles */
.brutalist-card {
    background: var(--white);
    border: 5px solid #1a1a1a;
    padding: 50px;
    box-shadow: 20px 20px 0px #1a1a1a;
    transition: var(--transition);
}

.brutalist-card:hover {
    transform: translate(-10px, -10px);
    box-shadow: 30px 30px 0px var(--primary-color);
}

.safety-accent {
    color: #ffcc00; /* Safety Yellow */
}

.bg-safety {
    background-color: #ffcc00;
}

.heavy-text-stroke {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    color: transparent;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.load-bar-container {
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.load-bar-fill {
    height: 100%;
    background: #ffcc00;
    width: 0%;
    transition: width 2s ease-in-out;
}


/* High-Tech Industrial Styles */
.dark-tech-section {
    background: #081226;
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.neon-border-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 242, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.neon-border-card:hover {
    border-color: #00f2ff;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
    transform: translateY(-10px);
}

.tech-icon-glow {
    font-size: 3rem;
    color: #00f2ff;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
    margin-bottom: 20px;
}

.ghost-text {
    position: absolute;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
}

.modern-step-card {
    background: var(--white);
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: var(--transition);
}

.modern-step-card:hover {
    background: var(--primary-color);
    color: var(--white);
}

.modern-step-card:hover .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

 @media (max-width: 991.98px) {
  #mainNav .offcanvas-body .dropdown-item {
    color: var(--primary-color) !important;
  }
}

@media (max-width: 991.98px) {
  #mainNav .offcanvas-body .dropdown-item {
    color: var(--primary-color) !important;
  }
  .header-logo-bg {
    margin-left: -15px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .navbar-logo {
    height: 35px !important;
  }
  .brand-text {
    font-size: 0.9rem !important;
  }
}