:root {
  --primary-blue: #0a1a3d;
  --accent-blue: #1a3a7d;
  --light-blue: #2a5ab5;
  --white: #ffffff;
  --light-gray: #f8fafd;
  --medium-gray: #edf2f9;
  --dark-gray: #5a6785;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 24px rgba(10, 26, 61, 0.08);
  --shadow-hover: 0 16px 32px rgba(10, 26, 61, 0.12);
  --border-radius: 8px;
  --card-bg-blue: #e8eff9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  color: var(--primary-blue);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(10, 26, 61, 0.05);
}

header.scrolled {
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(10, 26, 61, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--white);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-icon:hover {
  transform: rotate(15deg);
}

.logo-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.logo-text span {
  color: var(--light-blue);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 35px;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
  letter-spacing: 0.5px;
}

.nav-links a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--light-blue);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--light-blue);
}

.nav-links a:hover:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
  z-index: 1001;
}

/* Carousel Section - ADDED SPACING BELOW */
.carousel-section {
  margin-top: 90px;
  /* Added spacing for fixed header */
  margin-bottom: 80px;
  /* Added spacing between carousel and hero */
}

.carousel {
  width: 100%;
  height: 100vh;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Section with Background Image - ADDED SPACING */
.hero {
  padding: 120px 0;
  /* Increased padding */
  background-color: var(--primary-blue);
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
  /* Added spacing */
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 30px;
  position: relative;
  color: var(--white);
}

.hero-title span {
  color: #a0c1ff;
  position: relative;
}

.hero-title span:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(160, 193, 255, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: var(--primary-blue);
  padding: 16px 40px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--light-blue);
  transition: var(--transition);
}

.cta-button span {
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(10, 26, 61, 0.25);
  color: var(--white);
}

.cta-button:hover:before {
  left: 0;
}

/* Content Sections - ADDED SPACING */
section {
  padding: 0px 0;
  /* Increased padding */
  position: relative;
}

/* Added spacing utility class */
.section-spacing {
  margin-bottom: 80px !important;
  /* Extra spacing between sections */
}

.section-header {
  margin-bottom: 80px;
  /* Increased spacing */
  position: relative;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--light-blue);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-gray);
  max-width: 700px;
}

/* About Section - Image + Content Layout - ADDED SPACING */
.about {
  background-color: var(--white);
  margin-bottom: 100px;
  /* Added spacing */
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  /* Increased gap */
  align-items: flex-start;
}

.about-image {
  position: sticky;
  top: 120px;
  /* IMPORTANT: offset for fixed header */
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-image:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  line-height: 1.3;
}

.about-content p {
  margin-bottom: 25px;
  color: var(--dark-gray);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  /* Increased spacing */
}

.about-card {
  background-color: var(--card-bg-blue);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-top: 4px solid var(--light-blue);
}

.about-card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(42, 90, 181, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: var(--light-blue);
  transition: var(--transition);
}

.about-card:hover .about-card-icon {
  background-color: var(--light-blue);
  color: var(--white);
  transform: rotate(15deg);
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* ===============================
   COMMITMENT SECTION (STICKY FIX)
================================ */

.commitment {
  background-color: var(--light-gray);
  padding: 100px 0;
  margin-bottom: 100px;
}

/* Layout wrapper */
.commitment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Sticky image */
.commitment-image {
  position: sticky;
  top: 120px;
  /* header offset */
  height: 500px;
  width: 100%;
  max-width: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.commitment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.commitment-image:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.commitment-image:hover img {
  transform: scale(1.05);
}

/* Right side content */
.commitment-right {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Text block */
.commitment-text {
  padding: 20px;
}

.commitment-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--accent-blue);
}

/* Cards grid */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

/* Individual cards */
.commitment-item {
  background-color: var(--card-bg-blue);
  border-radius: var(--border-radius);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.commitment-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
  transform: translateX(-100%);
  transition: var(--transition);
}

.commitment-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.commitment-item:hover::before {
  transform: translateX(0);
}

/* Icons */
.commitment-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(42, 90, 181, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2rem;
  color: var(--light-blue);
  transition: var(--transition);
}

.commitment-item:hover .commitment-icon {
  background-color: var(--light-blue);
  color: var(--white);
  transform: scale(1.1);
}

.commitment-item h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* ===============================
   RESPONSIVE (IMPORTANT)
================================ */

@media (max-width: 992px) {
  .commitment-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .commitment-image {
    position: static;
    /* disable sticky on mobile */
    height: 350px;
  }
}

/* Products Section with Product Images - ADDED SPACING */
.products {
  background-color: var(--white);
  margin-bottom: 100px;
  /* Added spacing */
}

.product-card:nth-child(1) {
  grid-row: span 2;
}

.product-card:hover {
  transform: scale(1.1);
}

.product-card:hover {
  background-color: var(--light-blue);
  color: var(--white);
  transform: rotate(15deg);
}

/* ===============================
   WHY CHOOSE US – MODERN DESIGN
================================ */

.why-us {
  background-color: var(--light-gray);
  padding: 100px 0;
  margin-bottom: 100px;
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT SIDE */
.why-us-left h3 {
  font-size: 1.8rem;
  margin: 30px 0 15px;
  color: var(--primary-blue);
}

.why-us-left p {
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

.why-us-image {
  height: 420px;
  width: 100%;
  max-width: 380px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* RIGHT SIDE – FEATURE GRID */
.why-us-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-us-card {
  background-color: var(--card-bg-blue);
  padding: 35px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-us-card i {
  font-size: 1.8rem;
  color: var(--light-blue);
  margin-bottom: 15px;
}

.why-us-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.why-us-card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.why-us-left {
  position: sticky;
  top: 120px;
  /* header height offset */
  align-self: flex-start;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-us-image {
    height: 360px;
  }

  .why-us-features {
    grid-template-columns: 1fr;
  }
}

/* Statement Section with Background Image - ADDED SPACING */
.statement {
  background:
    linear-gradient(
      135deg,
      rgba(10, 26, 61, 0.85) 0%,
      rgba(26, 58, 125, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 150px 0;
  /* Increased padding */
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0px;
  /* Added spacing */
}

.statement-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.statement h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: var(--white);
}

.statement p {
  font-size: 1.2rem;
  margin: 0 auto 30px;
  opacity: 0.9;
  max-width: 800px;
}

.statement-quote {
  font-size: 1.6rem;
  font-style: italic;
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.95);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer - ADDED SPACING */
footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 100px 0 40px;
  /* Increased padding */
  position: relative;
  margin-top: 0px;
  /* Added spacing */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  align-items: start;
  
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  /* Increased spacing */
}

/* Explicit column placement */
.footer-about {
  grid-column: 1 / 2;
}

.footer-quick {
  grid-column: 2 / 3;
}

.footer-products {
  grid-column: 3 / 4;
}

/* Move Contact Us to top-right */
.footer-contact {
  grid-column: 4 / 5;
  grid-row: 1;
}

.footer-logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--white);
  margin-right: 1rem;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-icon i {
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.footer-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo-text span {
  color: #a0c1ff;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 30px;
  /* Increased spacing */
  color: var(--white);
  position: relative;
  padding-bottom: 15px;
}

.footer-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--light-blue);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 10px;
  width: 20px;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Custom Cursor */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--light-blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  display: none;
}

.custom-cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--light-blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: none;
}

@media (hover: hover) {
  .custom-cursor,
  .custom-cursor-outline {
    display: block;
  }
}

.cursor-hover {
  transform: scale(1.5);
  background: rgba(42, 90, 181, 0.1);
  border-color: transparent;
}

.cursor-white {
  border-color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(to right, var(--light-blue), var(--primary-blue));
  z-index: 2000;
}

/* Spotlight Mask Effect */
.spotlight {
  position: relative;
}

.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.08) 0%,
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.spotlight:hover::after {
  opacity: 1;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Staggered entry classes */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* Text reveal word-by-word animation */
.reveal-text {
  overflow: hidden;
  display: inline-block;
}

.reveal-text span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-text.active span {
  transform: translateY(0);
}

/* Letter Split Reveal */
.reveal-letters {
  display: inline-block;
  overflow: hidden;
}

.reveal-letters .char {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--char-index) * 0.02s);
}

.reveal-letters.active .char {
  transform: translateY(0);
}

/* Enhanced Button Interaction */
.cta-button {
  overflow: hidden;
  z-index: 1;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease-out,
    height 0.6s ease-out;
  z-index: 0;
}

.cta-button:hover::after {
  width: 300px;
  height: 300px;
}

/* Hover glow for cards */
.about-card,
.commitment-item,
.product-card,
.why-us-card {
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease,
    background-color 0.4s ease;
}

/* Floating effect for images */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating-img {
  animation: float 4s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--light-blue);
  border-radius: 5px;
  border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* Fixed Background Layer (for clipping overflow without breaking sticky) */
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Noise Texture Overlay */
.bg-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

/* Floating Background Shapes */
.shape {
  position: absolute;
  opacity: 0.1;
  filter: blur(40px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--light-blue);
  top: 10%;
  left: -5%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 15s linear infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-blue);
  top: 60%;
  right: -5%;
  border-radius: 50%;
  animation: morph 20s linear infinite reverse;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) translate(0, 0);
  }

  33% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: rotate(120deg) translate(50px, 50px);
  }

  66% {
    border-radius: 30% 70% 40% 60% / 60% 40% 70% 30%;
    transform: rotate(240deg) translate(-50px, 30px);
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(360deg) translate(0, 0);
  }
}

/* Card Glare Effect */
.spotlight::after {
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
}

/* Magnetic Nav Hover */
.nav-links a {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-container,
  .commitment-content,
  .why-us-content {
    grid-template-columns: 1fr;
    gap: 60px;
    /* Adjusted for mobile */
  }

  .why-us-timeline:before {
    left: 30px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .timeline-item {
    flex-direction: row !important;
    margin-left: 60px;
    margin-bottom: 60px;
    /* Adjusted for mobile */
  }

  .timeline-icon {
    left: 30px;
  }

  .timeline-content {
    margin: 0 !important;
  }

  .about-image,
  .commitment-image,
  .why-us-image {
    height: 400px;
  }

  /* Adjust spacing for mobile */
  section {
    padding: 80px 0;
  }

  .hero {
    margin-bottom: 60px;
    padding: 100px 0;
  }

  .about,
  .commitment,
  .products,
  .why-us,
  .statement {
    margin-bottom: 60px;
  }

  .commitment,
  .why-us {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 30px 30px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 0 0 25px 0;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 10px 0;
    display: block;
    width: 100%;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .carousel {
    height: 50vh;
    margin-top: 70px;
    margin-bottom: 40px;
  }

  .about-image,
  .commitment-image,
  .why-us-image {
    height: 350px;
  }

  .commitment-item,
  .product-content,
  .timeline-content {
    padding: 30px;
  }

  .statement {
    padding: 100px 0;
    margin-bottom: 60px;
  }

  .statement h2 {
    font-size: 2.2rem;
  }

  /* Adjust spacing for mobile */
  .section-header {
    margin-bottom: 50px;
  }

  .commitment-intro,
  .why-us-header {
    margin-bottom: 50px;
  }

  .commitment-content,
  .why-us-content {
    margin-bottom: 50px;
  }

  .commitment-grid {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .about-card,
  .commitment-item {
    padding: 25px 20px;
  }

  .statement-quote {
    font-size: 1.3rem;
  }

  .about-image,
  .commitment-image,
  .why-us-image {
    height: 250px;
  }

  .carousel {
    height: 40vh;
    margin-top: 60px;
    margin-bottom: 30px;
  }

  /* Adjust spacing for mobile */
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 80px 0 40px;
    margin-bottom: 40px;
  }

  .about,
  .commitment,
  .products,
  .why-us,
  .statement {
    margin-bottom: 40px;
  }

  .commitment,
  .why-us {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  footer {
    padding: 60px 0 30px;
    margin-top: 40px;
  }
}

.container {
  width: 100%;
  padding: 0 20px;
}

/* =====================================================
   PRODUCTS SECTION – FINAL & STABLE
===================================================== */

.products {
  background-color: var(--white);
  padding: 60px 0;
  margin: 40px 0;
  box-shadow: var(--shadow);
}

.products-container {
  width: 100%;
}

/* ---------- SECTION HEADER ---------- */

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.section-title {
  font-size: 2.6rem;
  color: var(--darker-gray);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--light-blue);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-top: 22px;
  line-height: 1.6;
}

/* ---------- PRODUCTS LAYOUT ---------- */

.product-masonry {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

/* Top row – 3 cards */
.product-masonry > .product-card:nth-child(-n + 3) {
  display: inline-flex;
}

/* Top row wrapper */
.product-masonry {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  row-gap: 48px;
}

/* Bottom row wrapper */
.product-row-center {
  display: flex;
  gap: 48px;
  justify-content: center;
  grid-column: 1 / -1;
}

/* ---------- PRODUCT CARD ---------- */

.product-card {
  width: 300px;
  background-color: var(--card-bg-blue);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover .product-card p {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  color: white;
}

/* Image */
.product-image {
  height: 180px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  object-position: center top;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

/* Content */
.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-icon {
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--light-blue);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--darker-gray);
}

.product-card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
  flex-grow: 1;
}

/* Button */
.product-btn {
  margin-top: auto;
  padding: 8px 16px;
  background: var(--light-blue);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.product-btn:hover .product-card p {
  background: var(--dark-blue);
  color: white;
}

.product-card:hover .product-btn {
  border: solid 1px white;
}

.product-card:hover p {
  color: white;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
  .product-masonry {
    grid-template-columns: repeat(2, 300px);
  }

  .product-row-center {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .product-masonry {
    grid-template-columns: 1fr;
  }

  .product-row-center {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 100%;
    max-width: 340px;
  }
}

.product-image {
  height: 180px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* 🔥 FIX */
}

.product-masonry {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  align-items: start;
  /* 🔥 FIX */
  row-gap: 48px;
}


/* ===============================
   FOOTER RESPONSIVE FIX
================================ */

/* Tablet */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-about,
  .footer-quick,
  .footer-products,
  .footer-contact {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-heading {
    margin-bottom: 20px;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .copyright {
    font-size: 0.85rem;
    padding-top: 30px;
  }
}
/* ===============================
   PRODUCTS – RESPONSIVE FIX
================================ */

/* Tablet */
@media (max-width: 992px) {
  .product-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    padding: 0 20px;
  }

  .product-card {
    width: 100%;
    max-width: 100%;
  }

  .product-row-center {
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .product-masonry {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .product-row-center {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .product-card {
    max-width: 340px;
  }
}
/* =========================================
   GLOBAL STICKY & GRID RESPONSIVE FIX
========================================= */

/* Disable sticky on tablet & mobile */
@media (max-width: 992px) {
  .about-image,
  .commitment-image,
  .why-us-left {
    position: static !important;
    height: auto !important;
    top: auto !important;
  }

  .about-container,
  .commitment-layout,
  .why-us-layout {
    grid-template-columns: 1fr !important;
  }
}

/* Extra safety for small mobile */
@media (max-width: 576px) {
  .about-image,
  .commitment-image,
  .why-us-image {
    height: 260px !important;
  }
}


/* ---------------------------------dropdown--------------------------------- */

/* ===============================
   NAV DROPDOWN – PRODUCTS
================================ */

.nav-dropdown {
  position: relative;
}

/* Arrow */
.nav-dropdown i {
  font-size: 0.7rem;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* Dropdown box */
.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

/* Items */
.dropdown-menu li a {
  padding: 12px 20px;
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background-color: var(--light-gray);
  color: var(--light-blue);
}

/* Desktop hover */
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown:hover i {
    transform: rotate(180deg);
  }
}

/* -------------------------------
   MOBILE BEHAVIOR
-------------------------------- */

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 10px 0;
    font-size: 1rem;
  }

  .nav-dropdown.active i {
    transform: rotate(180deg);
  }
}
  