/* ---------------------------------------------------
   HI-AGE CABLES & WIRES (ALPHAFLEX) - CUSTOM STYLES
--------------------------------------------------- */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --primary-color: #E62A32;       /* Brand vibrant red */
  --primary-dark: #B5181F;        /* Crimson red */
  --primary-glow: rgba(230, 42, 50, 0.15); /* Soft Red Neon Glow */
  --secondary-color: #0F0F11;     /* Tech Black */
  --secondary-light: #1A1A1E;    /* Light Slate Black */
  --body-color: #4C525A;          /* Premium Charcoal */
  --light-bg: #F5F7FA;            /* Soft off-white */
  --white: #FFFFFF;
  --border-color: #E2E8F0;        /* Slate gray border */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--body-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-dark);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--white);
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition-smooth);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 42, 50, 0.35);
  color: var(--white);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 42, 50, 0.25);
}

/* Section Header Styles */
.section-padding {
  padding: 50px 0;
}

.section-header {
  margin-bottom: 0;
}

.section-subtitle {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-description {
  max-width: 700px;
  margin: 15px auto 0 auto;
  font-size: 1.05rem;
  color: #6C757D;
}

/* ---------------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------------- */

/* Top Bar */
.top-bar {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-left a {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}

.top-bar-left a i {
  color: var(--primary-color);
  margin-right: 8px;
}

.top-bar-left a:hover {
  color: var(--white);
}

.top-bar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 15px;
  font-size: 0.9rem;
}

.social-links a:hover {
  color: var(--primary-color);
}

/* Navbar */
.navbar {
  padding: 18px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  z-index: 9;
}

.navbar.navbar-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar-brand .logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary-color);
  padding: 10px 18px !important;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 18px;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 36px);
}

/* Nav Dropdown Customization */
.dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  margin-top: 15px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 4px solid var(--primary-color);
  animation: dropdownFade 0.3s ease-out;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  font-family: var(--font-body);
  font-weight: 500;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: var(--secondary-color);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  background-color: var(--primary-glow);
  color: var(--primary-color);
  padding-left: 24px;
}

.dropdown-item i {
  font-size: 0.85rem;
  margin-right: 10px;
  transition: var(--transition-smooth);
}

/* ---------------------------------------------------
   HERO CAROUSEL
--------------------------------------------------- */
/* Container settings */
.hero-carousel-section, .carousel, .carousel-inner, .carousel-item {
  height: 100vh; /* Full viewport height */
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

/* Video background configuration */
.carousel-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 82vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1; /* Lowest layer */
}

/* Gradient overlay to ensure text is visible over moving video */
.carousel-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 2; /* Sits over video, below text */
}

/* Text Fade-In Animation when slide becomes active */
.carousel-item.active .animated-text h1 {
  animation: fadeInUp 0.8s ease forwards;
}

.carousel-item.active .animated-text p {
  animation: fadeInUp 0.8s ease forwards 0.3s; /* 0.3s delay */
}

.carousel-item.active .animated-text .btn-box {
  animation: fadeInUp 0.8s ease forwards 0.6s; /* 0.6s delay */
}

/* Prepare elements for animation */
.animated-text h1, 
.animated-text p, 
.animated-text .btn-box {
  opacity: 0;
  transform: translateY(30px);
}

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

.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--white);
}

.carousel-caption-content {
  max-width: 850px;
}

.carousel-caption-content h1 {
  font-size: 3.85rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-caption-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-caption-content .btn-box {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slide stagger animations */
.carousel-item.active .carousel-caption-content h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.carousel-item.active .carousel-caption-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.carousel-item.active .carousel-caption-content .btn-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* Carousel Indicators & Controls */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}

.carousel-indicators .active {
  background-color: var(--primary-color);
  width: 30px;
  border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0;
  transition: var(--transition-smooth);
}

.hero-carousel-section:hover .carousel-control-prev,
.hero-carousel-section:hover .carousel-control-next {
  opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  padding: 25px;
  border-radius: 4px;
  background-size: 40%;
}
/* Override Bootstrap outline-light hover state */
.btn-box .btn-outline-light:hover {
    background-color: transparent !important;
    color: var(--white) !important;
}


/* ---------------------------------------------------
   TRUST STATS COUNTER
--------------------------------------------------- */
.stats-counter-row {
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  margin-top: -60px;
  position: relative;
  z-index: 20;
  border-radius: var(--radius-md);
  border-bottom: 5px solid var(--primary-color);
  padding: 10px;
}

.stat-item {
  padding: 35px 20px;
  text-align: center;
  border-right: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
}

.stat-item:hover {
  background-color: var(--light-bg);
  transform: translateY(-4px);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------------------------------------------------
   ABOUT US SECTION
--------------------------------------------------- */
/* --- CSS REVEAL ANIMATIONS (NO RIGHT SIDE TRANSITIONS) --- */

/* Base setup for hidden elements */
.reveal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              visibility 0.8s;
  will-change: transform, opacity;
}

/* Initial States (Where they start) */
.reveal-slide-left {
  transform: translate3d(-50px, 0, 0); /* Starts hidden on the left */
}

.reveal-slide-up {
  transform: translate3d(0, 50px, 0); /* Starts hidden on the bottom */
}

/* Active States (Triggered by your JavaScript scroll listener) */
.reveal.active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0); /* Snaps smoothly into perfect placement */
}

.section-minititle{
  font-weight: 800px;
  font-size: large;
  font-size: 20px;
}

/* --- EXISTING PROJECT CSS KEEP UNCHANGED BELOW --- */
.about-image-container {
  position: relative;
  padding-right: 30px;
}

.about-image-container img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  height: 450px;
}

.experience-years-badge {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(230, 42, 50, 0.3);
  text-align: center;
  width: 170px;
  transition: var(--transition-smooth);
}

.experience-years-badge:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 30px rgba(230, 42, 50, 0.4);
}

.experience-years-badge h3 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-years-badge p {
  font-size: 0.85rem;
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.about-feature-point {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.about-feature-point i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

/* ---------------------------------------------------
   PRODUCT CATEGORIES SECTION
--------------------------------------------------- */
.product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.product-img-wrapper {
  background-color: #F8FAFC;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.product-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit:scale-down;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.1) rotate(2deg);
}

.product-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-tag {
  color: var(--primary-color);
  background-color: var(--primary-glow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

.product-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--secondary-color);
  transition: var(--transition-smooth);
}

.product-card:hover .product-title {
  color: var(--primary-color);
}

.product-description {
  font-size: 0.925rem;
  color: var(--body-color);
  margin-bottom: 22px;
  flex-grow: 1;
  line-height: 1.6;
}

.product-explore-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.product-explore-link i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.product-card:hover .product-explore-link {
  color: var(--primary-color);
}

.product-card:hover .product-explore-link i {
  transform: translateX(6px);
}

/* ---------------------------------------------------
   INDUSTRY APPLICATIONS (SECTOR SWITCHER)
--------------------------------------------------- */
.sector-switcher-section {
  background-color: var(--light-bg);
}

.sector-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 20px;
}

.sector-nav-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--body-color);
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.sector-nav-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.sector-nav-btn.active {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.sector-nav-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

.sector-nav-btn.active::after {
  width: 100%;
}

.sector-panel {
  display: none;
}

.sector-panel.active {
  display: block;
  animation: sectorSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.sector-content-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 45px;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition-smooth);
}

.sector-content-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,0,0,0.08);
}

.sector-title-large {
  font-size: 1.95rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sector-feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.sector-feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.sector-feature-list li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-right: 12px;
}

.sector-image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 400px;
}

.sector-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.sector-panel.active:hover .sector-image-wrapper img {
  transform: scale(1.04);
}

/* ---------------------------------------------------
   TECHNICAL DOWNLOADS
--------------------------------------------------- */
.downloads-table-container {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.downloads-table {
  width: 100%;
  margin-bottom: 0;
}

.downloads-table th {
  background-color: var(--secondary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 18px 20px;
  border: none;
}

.downloads-table td {
  padding: 18px 20px;
  vertical-align: middle;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.downloads-table tr:hover td {
  background-color: var(--light-bg);
}

.file-type-icon {
  font-size: 1.5rem;
  color: #E03E3E;
  margin-right: 12px;
}

.download-link-btn {
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 6px 16px;
  font-size: 0.85rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.download-link-btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(214, 34, 39, 0.2);
}

.download-link-btn i {
  margin-right: 6px;
}

/* ---------------------------------------------------
   CONTACT SECTION
--------------------------------------------------- */
.contact-info-wrapper {
  padding-right: 20px;
}

.contact-card-box {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-card-box:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-box-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.35rem;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px var(--primary-glow);
}

.contact-card-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.contact-card-box p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--body-color);
  line-height: 1.6;
}

.contact-card-box p a {
  color: var(--body-color);
  font-weight: 500;
}

.contact-card-box p a:hover {
  color: var(--primary-color);
}

/* Form Styles */
.inquiry-form-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 45px;
  border: 1px solid var(--border-color);
}

.inquiry-form-card .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--light-bg);
  transition: var(--transition-smooth);
}

.inquiry-form-card .form-control:focus {
  background-color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-glow);
  outline: none;
}

.inquiry-form-card label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* ---------------------------------------------------
   BLOG SECTION
--------------------------------------------------- */
.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.blog-img-wrapper {
  overflow: hidden;
  height: 230px;
  position: relative;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color);
  background-color: var(--primary-glow);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
}

.blog-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--secondary-color);
  transition: var(--transition-smooth);
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  font-size: 0.925rem;
  color: var(--body-color);
  margin-bottom: 22px;
  flex-grow: 1;
  line-height: 1.6;
}

.blog-read-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.blog-read-link i {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-read-link {
  color: var(--primary-color);
}

.blog-card:hover .blog-read-link i {
  transform: translateX(6px);
}

/* ---------------------------------------------------
   INNER PAGES GLOBAL ELEMENTS
--------------------------------------------------- */
.page-header-banner {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--primary-color);
}

.page-header-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(214, 34, 39, 0.15) 0%, rgba(26, 26, 26, 0.9) 100%);
  z-index: 1;
}

.page-header-banner .container {
  position: relative;
  z-index: 2;
}

.page-header-banner h1 {
  color: var(--white);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.breadcrumb-custom li {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom li a {
  color: var(--white);
  font-weight: 500;
}

.breadcrumb-custom li a:hover {
  color: var(--primary-color);
}

.breadcrumb-custom li::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin: 0 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-custom li:last-child::after {
  display: none;
}

/* Specifications Table styling */
.spec-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
}

.spec-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.1rem;
  padding: 18px 25px;
  background-color: var(--light-bg);
}

.spec-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--white);
  box-shadow: none;
  border-bottom: 1px solid var(--border-color);
}

.spec-table {
  width: 100%;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.spec-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary-color);
  background-color: var(--light-bg);
  padding: 10px 15px;
}

.spec-table td {
  padding: 10px 15px;
}

/* Our Presence Section Starts */
/* --- HI-AGE NATIONAL PRESENCE ENGINE --- */
:root {
  --hiage-navy: #0f172a;
  --hiage-slate: #475569;
  --hiage-accent: #e62a32; /* Sleek brand red indicator tint */
  --hiage-light-bg: #f8fafc;
}

.presence-section {
  background-color: var(--hiage-light-bg);
  padding: 100px 0;
  width: 100%;
}

.presence-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hiage-accent);
  margin-bottom: 8px;
}

.presence-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--hiage-navy);
  margin: 0;
}

.title-bar-center {
  width: 60px;
  height: 3px;
  background-color: var(--hiage-accent);
  margin: 15px auto 0 auto;
}

/* Stats Layout Architecture */
.presence-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.stat-number-wrapper {
  font-size: 42px;
  font-weight: 800;
  color: var(--hiage-navy);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.stat-suffix {
  color: var(--hiage-accent);
  margin-left: 2px;
}

.stat-label {
  font-size: 15px;
  color: var(--hiage-slate);
  margin: 0;
  font-weight: 500;
}

/* Map Display Sandbox Container */
.map-showcase-container {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.map-base-img {
  width: 100%;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 15px 30px rgba(15,23,42,0.06));
}

/* Geolocation Pins System */
.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--hiage-accent);
  border-radius: 50%;
  z-index: 5;
  transform: scale(0);
  border: 2px solid #ffffff;
  box-shadow: 0 0 10px rgba(230, 42, 50, 0.5);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Triggers pin pop-up when section is visible */
.reveal-scale-in.active .map-pin {
  transform: scale(1);
}

/* Pulsing radar effects underneath the pins */
.pulse-ring {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  border: 2px solid var(--hiage-accent);
  border-radius: 50%;
  opacity: 0;
  animation: pinPulse 2s infinite ease-out;
}

@keyframes pinPulse {
  0% { transform: scale(0.2); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* Scaled Multi-Region Plot Mapping Vectors */
.pin-1 { top: 22%; left: 35%; transition-delay: 0.1s; } /* H.P. */
.pin-2 { top: 38%; left: 22%; transition-delay: 0.2s; } /* Rajasthan */
.pin-3 { top: 48%; left: 33%; transition-delay: 0.3s; } /* M.P. */
.pin-4 { top: 58%; left: 28%; transition-delay: 0.4s; } /* Maharastra */
.pin-5 { top: 72%; left: 38%; transition-delay: 0.5s; } /* Telengana */
.pin-6 { top: 35%; left: 42%; transition-delay: 0.6s; } /* U.P. */
.pin-7 { top: 40%; left: 58%; transition-delay: 0.7s; } /* Bihar */
.pin-8 { top: 62%; left: 41%; transition-delay: 0.8s; } /* A.P. */
.pin-9 { top: 52%; left: 48%; transition-delay: 0.9s; } /* Chattishgarh */
.pin-10 { top: 29%; left: 32%; transition-delay: 1.0s; } /* Haryana */
.pin-11 { top: 32%; left: 34%; transition-delay: 1.1s; } /* Delhi */
.pin-12 { top: 17%; left: 29%; transition-delay: 1.2s; } /* J&K */
.pin-13 { top: 14%; left: 36%; transition-delay: 1.3s; } /* Ladakh */
.pin-14 { top: 25%; left: 29%; transition-delay: 1.4s; } /* Punjab */

/* Staggered Delay Hooks for Base Layout */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.reveal-scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale-in.active {
  opacity: 1;
  transform: scale(1);
}

@media(max-width: 576px) {
  .presence-stats-grid { grid-template-columns: 1fr; }
  .presence-title { font-size: 28px; }
}
/* Our Presence Section Ends */

/* Alpha Flex Product Section */
/* --- HI-AGE FULL-WIDTH STRIP BLOCKS --- */
.fullwidth-brands-section {
  width: 100%;
  background-color: #f8fafc; /* Ultra-light clean gray background */
}

/* Individual Full Width Rows */
.brand-strip-row {
  width: 100%;
  border-bottom: 1px solid #e2e8f0;
  background-color: #ffffff;
}

.brand-strip-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 500px; /* Controlled professional display height */
}

/* 50/50 Split Systems */
.brand-strip-info {
  flex: 0 0 50%;
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #ffffff;
}

.brand-strip-media {
  flex: 0 0 50%;
  width: 50%;
  position: relative;
  overflow: hidden;
}

/* Image Presentation and Scaling Engine */
.brand-strip-media img {
  height: 100%;
  padding: 0 0 0 100px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- TYPOGRAPHY & INTERACTIVE BUTTONS --- */
.info-inner-content {
  max-width: 520px; /* Keeps reading line length comfortable */
}

.brand-badge-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c21a22; /* Matches the Hi-Age corporate dark red from your logo */
  margin-bottom: 15px;
}

.brand-strip-title {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.brand-strip-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 30px;
}

/* --- NEW PREMIUM SOLID BUTTON LAYOUT --- */
.brand-strip-btn-box {
  margin-top: 35px;
}

.brand-premium-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  
  /* Sizing and Shape */
  padding: 16px 36px; /* Noticeably larger target area */
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  
  /* Colors */
  background-color: #0f172a; /* Slate Black Base */
  color: #ffffff !important;
  border: 1px solid #0f172a;
  
  /* Typography */
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  
  /* Smooth Transformations */
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.3s ease, 
              box-shadow 0.3s ease;
}

/* Background Sliding Layer for Animation */
.brand-premium-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c21a22; /* Hi-Age Corporate Red Fill */
  z-index: -1;
  
  /* Initial state: completely hidden to the left */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.brand-premium-btn .arrow-icon {
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- HOVER INTERACTIONS & LAYOUT REVERSAL --- */
/* The Z-Pattern Flip Mechanism */
.brand-strip-row.row-reversed .brand-strip-container {
  flex-direction: row-reverse;
}

/* Micro-interactions on Hover */
.brand-strip-row:hover .brand-strip-media img {
  transform: scale(1.04); /* Soft corporate image scaling */
}

/* Interactive Hover States for Button */
.brand-premium-btn:hover {
  transform: translateY(-3px); /* Subtle physical lift */
  border-color: #c21a22;
  box-shadow: 0 10px 25px rgba(194, 26, 34, 0.25); /* Red tinted shadow glow */
}

/* Slide background layer into view on hover */
.brand-premium-btn:hover::before {
  transform: scaleX(1);
}

/* Push arrow icon forward slightly on hover */
.brand-premium-btn:hover .arrow-icon {
  transform: translateX(5px);
}

/* Active micro-press click feedback */
.brand-premium-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(194, 26, 34, 0.2);
}

/* --- MOBILE RESPONSIVE BREAKDOWN --- */
@media (max-width: 991px) {
  .brand-strip-container, 
  .brand-strip-row.row-reversed .brand-strip-container {
    flex-direction: column-reverse; /* Stacks image safely on top of text on tablets/mobile */
  }
  
  .brand-strip-info, .brand-strip-media {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .brand-strip-media {
    height: 320px; /* Fixed height for image blocks on mobile layouts */
  }
  
  .brand-strip-info {
    padding: 40px 20px;
  }
  
  .brand-strip-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .brand-premium-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
}
/* Alpha Flex Section Ending*/

/* Client Review Section Starts Here */
@import url('https://googleapis.com');

  .reviews-section {
    background-color: #f8f9fa; /* Soft gray background to match site transitions */
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
  }

  .reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .section-subtitle {
    color: #e31e24; /* Signature HI-AGE Red */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
  }

  .section-title {
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }

  .review-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Clean card shadow matching the site */
    border-top: 4px solid #e31e24; /* Top red anchor accent */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
  }

  .review-card:hover {
    transform: translateY(-5px);
  }

  .stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .review-heading {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .review-text {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
  }

  .review-author {
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
  }

  .review-author strong {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
  }

  .review-author span {
    color: #777777;
    font-size: 13px;
    margin-top: 2px;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .section-title {
      font-size: 26px;
    }
    .reviews-section {
      padding: 40px 15px;
    }
  }
/* Client Review Section Ends Here */

/* ---------------------------------------------------
   FOOTER SECTION
--------------------------------------------------- */
.footer {
  background: linear-gradient(180deg, var(--secondary-color) 0%, #050506 100%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 85px 0 0 0;
  border-top: 5px solid var(--primary-color);
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 25px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-desc {
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-widget h2 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 2px;
}

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

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

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.footer-links li a:hover {
  color: var(--primary-color);
  transform: translateX(6px);
}

.footer-links li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.75rem;
  color: var(--primary-color);
}

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

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 1.15rem;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  margin-top: 50px;
}

.copyright {
  margin-bottom: 0;
}

.footer-bottom-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
}

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

.footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-smooth);
}

.footer-bottom-links li a:hover {
  color: var(--primary-color);
}

.certified-badges-row {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.certified-badge-item {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.certified-badge-item:hover {
  background-color: rgba(230, 42, 50, 0.1);
  border-color: rgba(230, 42, 50, 0.3);
  transform: translateY(-2px);
}

.certified-badge-item i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 0.95rem;
}

/* ---------------------------------------------------
   SCROLL TO TOP BUTTON
--------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ---------------------------------------------------
   RESPONSIVENESS
--------------------------------------------------- */
@media (max-width: 991.98px) {
  .carousel-bg-gradient {
    height: 500px;
  }
  .carousel-caption-content h1 {
    font-size: 2.5rem;
  }
  .stats-counter-row {
    margin-top: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .about-image-container {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .about-image-container img {
    height: 350px;
  }
  .sector-nav-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
  .footer-bottom-links li {
    margin-left: 0;
    margin-right: 20px;
  }
  .navbar-collapse {
    background-color: var(--white);
    padding: 15px;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    margin-top: 15px;
  }
  .navbar-nav .nav-link::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .carousel-bg-gradient {
    height: 400px;
  }
  .carousel-caption-content h1 {
    font-size: 2rem;
  }
  .carousel-caption-content p {
    font-size: 1rem;
  }
  .section-padding {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .about-features-list {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------
   SCROLL REVEAL & PAGE ANIMATIONS
--------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.reveal-slide-left {
  transform: translateX(-50px);
}

.reveal.reveal-slide-right {
  transform: translateX(50px);
}

.reveal.reveal-zoom {
  transform: scale(0.92);
}

.reveal.reveal-fade {
  transform: none;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger delays helper classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Floating WhatsApp Button Layout */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  text-align: center;
  font-size: 34px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Physical Scale micro-interaction */
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  background-color: #128c7e; /* Darker WhatsApp teal color */
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

/* Precise alignment for the vector icon */
.whatsapp-icon {
  margin: 0;
  padding: 0;
  display: block;
}
