/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Loading Animation Removed */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #2d3748;
  overflow-x: hidden;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


:root {
  --body-font-family: 'Rubik', sans-serif;
  --heading-font-family: 'Rajdhani', sans-serif;
  --link-font-family: 'Rajdhani', sans-serif;
}

body {
  font-family: var(--body-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
}

a,
p {
  font-family: var(--link-font-family);
  font-weight: 600;
  font-size: 15px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {

  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

ul,
li,
ol,
a {
  text-decoration: none;
}

li {
  text-decoration: none;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
  overflow-x: hidden;
}

/* * Fix Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  /* or your preferred bg */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0.3rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 50px;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #2d3748;
  font-weight: 500;
  transition: color 0.3s ease;
}

body {
  /* Adjust to your navbar’s height */
  padding-top: 60px;
}

/* Optional smooth transition when scrolling */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Base CTA Button */
.cta-button {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #3516ff, #22009b);
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(177, 158, 255, 0.3);
}

/* Moving gradient glow */
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: all 0.6s ease;
}

/* Hover effect — shine animation */
.cta-button:hover::before {
  left: 100%;
}

/* Hover scaling + shadow pulse */
.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(81, 38, 255, 0.45);
}



.cta-button {
  animation: glowPulse 3s infinite ease-in-out;
}


/* Toggle (Hamburger/X) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  /* Change Hamburger to X */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Show full product images (no cropping) on all viewports
   - Use object-fit: contain and height:auto so whole image is visible
   - Limit max-height to avoid overly tall cards on very large images
*/
.product-card img,
.product-img {
  width: 100% !important;
  height: auto !important;
  /* maintain natural aspect ratio */
  object-fit: contain !important;
  /* show entire image, no cropping */
  aspect-ratio: auto !important;
  max-height: 360px;
  /* feel free to tweak: controls visual size on desktop */
  display: block;
  margin: 0 auto;
  padding: 0.5rem 0;
}

@media (min-width: 1200px) {

  /* Allow slightly larger thumbnails on very wide screens */
  .product-card img,
  .product-img {
    max-height: 420px;
  }
}

@media (max-width: 480px) {

  /* On narrow phones, allow images to scale naturally but cap height */
  .product-card img,
  .product-img {
    max-height: 320px;
    padding: 0.25rem 0;
  }
}

/* Product cards grid and card layout */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  padding: 2rem 1rem;
  align-items: start;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(31, 41, 55, 0.12);
}

.product-card h3 {
  margin-top: 6px;
  font-size: 1.05rem;
}

.product-card p {
  color: #4b5563;
  font-size: 0.95rem;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 8px;
  background: #25D366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-btn i {
  margin-right: 8px;
}


/* Hero Section */
.hero {
  height: 100vh;
  display: flex;

  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(48, 28, 114, 0.8) 0%, rgba(30, 27, 75, 0.7) 50%, rgba(49, 46, 129, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  z-index: 3;
  position: relative;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.4s both;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.6s both;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button-large {
  display: inline-block;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 180px;
}

.cta-button-large.primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.cta-button-large.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-button-large.primary:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.cta-button-large.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

.floating-element:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 1.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  25% {
    transform: translateY(-20px) scale(1.1);
  }

  50% {
    transform: translateY(-40px) scale(0.9);
  }

  75% {
    transform: translateY(-20px) scale(1.1);
  }
}

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: block;
  margin: 0 auto;
}

.product-card h3 {
  font-size: 1.25rem;
  color: #333;
  margin: 1rem;
  font-weight: 600;
}

.product-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.product-card .boldee {
  font-weight: 600;
  color: #444;
  margin: 1rem;
  font-size: 0.9rem;
  background: #f5f5f5;
  padding: 0.5rem;
  border-radius: 5px;
}

.product-card .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  margin: 1rem;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.product-card .whatsapp-btn:hover {
  background: #128C7E;
}

.product-card .whatsapp-btn i {
  margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
  }

  .product-card h3 {
    font-size: 1.1rem;
  }

  .product-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card img {
    height: 200px;
  }
}

/* Make product images fully visible (no crop) on small/mobile screens */
@media (max-width: 768px) {

  /* If images use .product-img square sizing, override to show full image */
  .product-img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
    margin: 0 auto;
    padding: 0.5rem 0;
  }

  /* Also ensure generic product-card img follows same rule */
  .product-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
    padding: 0.5rem 0 !important;
  }

  /* Reduce card padding on small screens to fit layout */
  .product-card {
    padding: 0.75rem;
  }
}

.section-header {
  text-align: center;
  padding: 10px;
}

/* Infrastructure image/text sections styled as cards
   - Cards with background, rounded corners, and shadow
   - Odd sections: text left, image right
   - Even sections: image left, text right (row-reverse)
   - Responsive: stack vertically on small screens
*/
.ourinfra {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  max-width: 1400px;
  margin: 0 auto 2rem;
  align-items: stretch;
  /* ensure grid items stretch to same height */
}

.ourinfra .image-text-section {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.04);
  overflow: hidden;
  align-items: stretch;
  height: 100%;
  /* make each card fill the grid cell */
}

.ourinfra .image-text-section .image {
  width: 100%;
}

.ourinfra .image-text-section .image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* square like product cards */
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.ourinfra .image-text-section .content {
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* keep title at top and description below */
  flex: 1 1 auto;
  /* allow content area to grow to fill card */
}

.ourinfra .image-text-section .title {
  font-size: 1.05rem;
  margin: 0 0 0.35rem 0;
  color: #0f172a;
  font-weight: 700;
}

.ourinfra .image-text-section .description {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Hover lift for cards */
.ourinfra .image-text-section:hover {
  transform: translateY(-6px);
  transition: transform 180ms ease;
}

/* Responsive column counts */
@media (max-width: 1200px) {
  .ourinfra {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .ourinfra {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ourinfra {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

.section-header h2 {
  color: #301c72;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  border-radius: 2px;
}

.section-header p {
  color: #718096;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */



.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(48, 28, 114, 0.1), transparent);
}

.services-grid {
  display: grid;

  gap: 3rem;
  align-items: start;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(48, 28, 114, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(48, 28, 114, 0.05);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-image {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
  border-radius: 20px 20px 0 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card:hover .image-overlay {
  opacity: 0.6;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(48, 28, 114, 0.2);
}

.service-card.featured {
  background: linear-gradient(135deg, #301c72 0%, #6b46c1 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  padding: 2%;
}

.service-card.featured .service-image {
  height: 450px;
  border-radius: 20px;
}

.service-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 25px 70px rgba(48, 28, 114, 0.3);
}

.service-card .service-content {
  padding: 2.5rem;
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  z-index: 10;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 5;
}

.service-card:not(.featured) .service-icon {
  background: linear-gradient(135deg, rgba(48, 28, 114, 0.1), rgba(107, 70, 193, 0.1));
  color: #301c72;
  box-shadow: 0 8px 25px rgba(48, 28, 114, 0.1);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.9rem;
  font-weight: 700;
}

.service-card p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.service-features i {
  margin-right: 12px;
  color: #059669;
  font-size: 1rem;
  background: rgba(16, 185, 129, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card.featured .service-features i {
  color: #6ee7b7;
  background: rgba(110, 231, 183, 0.2);
}

.service-button {
  display: inline-block;
  background: linear-gradient(135deg, #301c72, #6b46c1);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(48, 28, 114, 0.3);
  position: relative;
  overflow: hidden;
}

.service-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.service-button:hover {
  background: linear-gradient(135deg, #4c1d95, #7c3aed);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(48, 28, 114, 0.4);
}

.service-button:hover::before {
  left: 100%;
}

.service-button.secondary {
  background: transparent;
  border: 2px solid #301c72;
  color: #301c72;
  box-shadow: none;
}

.service-button.secondary:hover {
  background: #301c72;
  color: white;
  box-shadow: 0 6px 20px rgba(48, 28, 114, 0.3);
}

.service-card.featured .service-button {
  background: white;
  color: #301c72;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.service-card.featured .service-button:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* About Section */
.about {

  padding-top: 100px;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro {
  font-size: 1.2rem;
  color: #301c72;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #301c72;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #301c72, #6b46c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: #718096;
  font-weight: 600;
  margin-top: 0.5rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(48, 28, 114, 0.15);
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 28, 114, 0.8), rgba(107, 70, 193, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image-container:hover .about-main-img {
  transform: scale(1.05);
}

.about-image-container:hover .about-image-overlay {
  opacity: 1;
}

.experience-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.experience-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
}

.experience-text {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(48, 28, 114, 0.1), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(48, 28, 114, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(48, 28, 114, 0.05);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-bg-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 6rem;
  color: rgba(38, 7, 142, 0.475);
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(48, 28, 114, 0.15);
  border-color: rgba(48, 28, 114, 0.1);
}

.feature-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #301c72, #6b46c1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(48, 28, 114, 0.3);
  position: relative;
  z-index: 2;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(48, 28, 114, 0.4);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: #301c72;
  font-weight: 700;
  font-size: 1.4rem;
}

.feature-card p {
  color: #718096;
  line-height: 1.7;
  font-size: 1rem;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-header h3 {
  color: #301c72;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #718096;
  font-size: 1.1rem;
}

.contact-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(48, 28, 114, 0.05);
  opacity: 0;
  transform: translateY(20px);
}

.contact-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(48, 28, 114, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #301c72, #6b46c1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(48, 28, 114, 0.3);
  transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(48, 28, 114, 0.4);
}

.contact-card h3 {
  color: #301c72;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-card p {
  color: #718096;
  margin: 0;
  font-weight: 500;
}

.contact-form {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(48, 28, 114, 0.05);
  box-shadow: 0 10px 40px rgba(48, 28, 114, 0.05);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h3 {
  color: #301c72;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #718096;
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(48, 28, 114, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #301c72;
  box-shadow: 0 0 0 4px rgba(48, 28, 114, 0.1);
  transform: translateY(-2px);
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #301c72, #6b46c1);
  color: white;
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(48, 28, 114, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-button:hover {
  background: linear-gradient(135deg, #4c1d95, #7c3aed);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(48, 28, 114, 0.4);
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.footer {
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('../images/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
  margin-top: auto;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #301c72;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 35px;
  width: auto;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #301c72;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-section ul li a:hover {
  color: #301c72;
  transform: translateX(5px);
}

.contact-item {
  display: flex;

  margin-bottom: 0.8rem;
  color: #e2e8f0;
  font-weight: 500;
}

.contact-item i {
  margin-right: 10px;
  color: #d3c6ff;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #cbd5e0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-card.featured {
    grid-column: span 2;
    order: -1;
    transform: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .ourinfra {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */


  /* Typography */
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button-large {
    width: 100%;
    max-width: 280px;
  }

  /* Sections */
  .hero,
  .services,
  .about,
  .why-choose,
  .contact {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    justify-content: space-around;
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .image-placeholder {
    height: 200px;
    font-size: 2rem;
  }

  .about-image-container {
    height: 300px;
  }

  .service-image {
    height: 180px;
  }

  .service-card.featured .service-image {
    height: 200px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .service-card,
  .feature-card {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-card .service-content {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .hero-badge {
    margin-bottom: 1.5rem;
  }

  .badge-text {
    font-size: 0.8rem;
  }
}



/* Infrastructure Section */
.infrastructure {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.infrastructure .container {
  max-width: 1100px;
  margin: auto;
  padding-top: 30px;
}



.infra-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.infra-item {
  background: #301c72;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.infra-item:hover {
  transform: translateY(-8px);
}

.infra-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.infra-item h3 {
  padding: 15px;
  background: #301c72;
  color: #fff;
  margin: 0;
  font-size: 1rem;
}



.infra-highlight {
  background: #312e81;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
}



/* Mission & Vision Section */
.mission-vision {
  padding: 60px 20px;


}

.mission-vision .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.mission-vision .card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.mission-vision .card .icon {
  font-size: 60px;
  color: #4c1d95;
  /* Primary brand color */
  margin-bottom: 15px;
}





.mission-vision .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Mobile friendly adjustments */
@media (max-width: 768px) {
  .mission-vision {
    padding: 40px 15px;
  }

  .mission-vision .card {
    padding: 25px 18px;
  }

  .mission-vision .card h2 {
    font-size: 1.4rem;
  }

  .mission-vision .card p {
    font-size: 0.95rem;
  }
}



/* Floating Icons */
.floating-icon {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 26px;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  animation: pulse-wave 2s infinite;
  transition: transform 0.3s ease;
}

.floating-icon:hover {
  transform: scale(1.1);
}

/* WhatsApp */
.floating-icon.whatsapp {
  right: 20px;
  background: #25D366;
}

/* Phone */
.floating-icon.phone {
  right: 85px;
  background: #0073e6;
}

/* Wave Animation */
@keyframes pulse-wave {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

a {
  text-decoration: none;
}



/* Gallery Section */
.gallery {
  padding: 120px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery-header p {
  color: #555;
  margin-bottom: 30px;
}

/* Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

/* Hover Animation */
.gallery-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.2) rotate(3deg);
  filter: brightness(1.1);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .infra-about {
    padding: 40px 5%;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* Home Hero Section */
.home-hero {
  width: 100%;
  height: 100vh;
  background: url("images/CNC Shearing  Cutting.jpg") no-repeat center center/cover;
  /* Background image */
  display: flex;
  align-items: center;
  justify-content: center;

}

.home-hero-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 50/50 split */
  align-items: center;
  gap: 40px;
}

/* Left Content */
.home-hero-text {
  color: #111;
}

.home-hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.home-hero-text h1 span {
  color: #4c1d95;
}

.home-hero-text p {
  margin: 20px 0;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.home-hero-buttons {

  gap: 15px;
  margin-top: 20px;
}

/* Buttons */
.home-hero-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.home-hero-btn.primary {
  background: #002b80;
  color: #fff;
}

.home-hero-btn.primary:hover {
  background: #001a4d;
}

.home-hero-btn.secondary {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
}

.home-hero-btn.secondary:hover {
  background: #f5f5f5;
}

/* Right Image */
.home-hero-image {
  display: flex;
  justify-content: center;
}

.home-hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .home-hero-container {
    grid-template-columns: 1fr 1fr;
    /* Keep 2 columns on tablet if possible, or stack if too narrow */
    gap: 30px;
  }

  .home-hero-text h1 {
    font-size: 2.5rem;
  }

  .home-hero-image {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .home-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-hero-text h1 {
    font-size: 2.2rem;
  }

  .home-hero-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .home-hero {
    padding: 0px 15px;
  }

  .home-hero-text h1 {
    font-size: 1.8rem;
  }

  .home-hero-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.4rem;
  color: #bbb;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fff;
}


.product-section {
  padding: 50px 20px;

}

.product-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #10006d9d;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #333;
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background: #20b954;
}

/* Responsive Grid */
@media (min-width: 600px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .product-container {
    grid-template-columns: repeat(3, 1fr);
  }
}



.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.whatsapp-btn i {
  font-size: 18px;
}

.whatsapp-btn:hover {
  background: #20b954;
}


/* Certifications Section */
.certifications {
  padding: 60px 20px;
  background: #f9f9f9;
}

.certifications .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.certifications .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.certifications .section-header p {
  font-size: 1rem;
  color: #666;
}

/* Certification Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Certification Card */
.cert-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Icon */
.cert-card .cert-icon {
  font-size: 40px;
  color: #007bff;
  /* blue highlight */
  margin-bottom: 15px;
}

.cert-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.cert-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}



/* Industries Section */
.industries {
  padding: 60px 20px;
  background: #f9f9f9;
}

.industries .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.industries .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.industries .section-header p {
  font-size: 1rem;
  color: #666;
}

/* Industries List */
.industries-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Industry Card */
.industry-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}






.industry-card span {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}




/* Projects Section */
.projects {
  padding: 60px 20px;
  background: #fff;
}

.projects .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.projects .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.projects .section-header p {
  font-size: 1rem;
  color: #666;
}

/* Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Project Card */
.project-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-caption {
  padding: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  background: #fff;
}


.quality-section {
  background-color: #f8f9fa;
  /* Light grey background */
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Inner content styling */
.quality-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon styling */
.quality-icon {
  font-size: 50px;
  color: #28a745;
  /* Green color */
  margin-bottom: 20px;
}

/* Heading styling */
.quality-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333333;
}

/* Paragraph styling */
.quality-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
}


.center {
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 40px;
}


.boldee {
  font-weight: 900;
  color: #301c72;
}

.certifications {
  position: relative;
  background: url("../backround/7.png") no-repeat center center/cover;
  z-index: 1;
  overflow: hidden;


}


.industries {
  position: relative;
  background: url("../backround/8.png") no-repeat center center/cover;
  z-index: 1;
  overflow: hidden;


}




.why-choose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
  pointer-events: none;
}

.why-choose>.container,
.why-choose .features-grid {
  position: relative;
  z-index: 3;
  color: #fff;
  /* Make text visible on dark overlay */
}

.why-choose>.container,
.why-choose .section-header {
  background: transparent !important;
  box-shadow: none !important;
}

.why-choose {
  border: none;
}


/* Base state: hidden before scroll */
.product-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* When visible: fade and slide up */
.product-card.show {
  opacity: 1;
  transform: translateY(0);
}

.video-wrapper {
  position: relative;
  width: 100%;

  overflow: hidden;
}

.responsive-video {
  width: 100%;
  height: auto;
  display: block;


}

/* Mute Button Style */
.mute-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Base hidden state */
.home-hero-text,
.home-hero-image {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

/* When visible: fade and slide up */
.home-hero.show .home-hero-text,
.home-hero.show .home-hero-image {
  opacity: 1;
  transform: translateY(0);
}

/* Add a slight delay for smoother stagger */
.home-hero.show .home-hero-image {
  transition-delay: 0.3s;
}

/* Initial hidden state */
.industry-card {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s ease-out;
}

/* When visible (triggered by JS) */
.industries.show .industry-card {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay for each card */
.industries.show .industry-card:nth-child(1) {
  transition-delay: 0.1s;
}

.industries.show .industry-card:nth-child(2) {
  transition-delay: 0.2s;
}

.industries.show .industry-card:nth-child(3) {
  transition-delay: 0.3s;
}

.industries.show .industry-card:nth-child(4) {
  transition-delay: 0.4s;
}

.industries.show .industry-card:nth-child(5) {
  transition-delay: 0.5s;
}

.industries.show .industry-card:nth-child(6) {
  transition-delay: 0.6s;
}

.image-text-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 60px 10%;
  background-color: #f9f9f9;
}

.image-text-section .content {
  flex: 1;
}

.image-text-section .title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.image-text-section .description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.image-text-section .btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #222;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.image-text-section .btn:hover {
  background-color: #444;
}

.image-text-section .image {
  flex: 1;
  text-align: right;
}

.image-text-section .image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ✅ Responsive for mobile */
@media (max-width: 768px) {
  .image-text-section {
    flex-direction: column-reverse;

    padding: 40px 5%;
  }

  .image-text-section .image {
    text-align: center;
  }

  .image-text-section .image img {
    width: 90%;
  }
}


.product-section {
  width: 100%;
  padding: 20px 20px;
  background: #f7f7f7;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* PRODUCT CARD STYLING */
.product-card {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(241, 210, 210, 0.1);
  transition: all .4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.product-card:nth-child(1) {
  animation-delay: .1s;
}

.product-card:nth-child(2) {
  animation-delay: .2s;
}

.product-card:nth-child(3) {
  animation-delay: .3s;
}

.product-card:nth-child(4) {
  animation-delay: .4s;
}

.product-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 30px;
  transition: transform .4s ease;

}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card h3 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
}

.product-card p {
  font-size: 14px;
  margin-top: 8px;
  color: #666;
}

/* ULTRA SMOOTH FADE + SLIDE ANIMATION */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🔥 RESPONSIVE GRID */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .product-card img {
    height: 150px;
  }
}

/* Infra About: two-column image + content (responsive) */
.infra-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 60px 6%;
  background: #ffffff;
}

.infra-about .image {
  flex: 1 1 50%;
  text-align: left;
}

.infra-about .image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
  display: block;
}

.infra-about .content {
  flex: 1 1 48%;
  padding: 0 1rem;
}

.infra-about .content .title {
  font-size: 2rem;
  color: #301c72;
  margin-bottom: 0.75rem;
}

.infra-about .content .description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .infra-about {
    flex-direction: column-reverse;
    padding: 30px 5%;

  }

  .infra-about .image,
  .infra-about .content {
    flex: 1 1 100%;
    width: 100%;
  }

  .infra-about .image img {
    height: 300px;
    width: 90%;
    margin: 0 auto 1rem;
  }
}

.facility-section {
  width: 100%;
  padding: 50px 20px;
  display: grid;
  gap: 50px;
}

.fc-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.fc-row.reverse {
  flex-direction: row-reverse;
}

.fc-image {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
}

.fc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.fc-row:hover .fc-image img {
  transform: scale(1.08);
}

.fc-content {
  flex: 1;
}

.fc-content h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.fc-content p {
  font-size: 16px;
  opacity: .8;
}

/* Entrance Animation */
.fc-animate {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease forwards;
}

.fc-animate.left {
  animation-delay: .2s;
}

.fc-animate.right {
  animation-delay: .4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 850px) {

  .fc-row,
  .fc-row.reverse {
    flex-direction: column;
  }
}


/* ===== SERVICES SECTION - NEW ANIMATIONS ===== */

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hoverFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes hoverGlow {
  0% {
    box-shadow: 0 5px 15px rgba(76, 29, 149, 0.2);
  }

  50% {
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.4), 0 0 30px rgba(124, 58, 237, 0.3);
  }

  100% {
    box-shadow: 0 5px 15px rgba(76, 29, 149, 0.2);
  }
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(10deg) scale(1.2);
  }

  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes borderPulse {

  0%,
  100% {
    border-color: rgba(76, 29, 149, 0.2);
  }

  50% {
    border-color: #7c3aed;
  }
}

.services-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 40px;
  background: #fafafa;
}

@media (max-width: 1100px) {
  .services-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-section {
    grid-template-columns: 1fr;
  }
}

.service-box {
  background: white;
  border: 2px solid rgba(76, 29, 149, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);

  /* Initial state - invisible */
  opacity: 0;
}

/* Entrance animations - triggered by scroll */
.service-box.animate-in {
  opacity: 1;
  animation: slideInFromBottom 0.8s ease-out forwards;
}

.service-box:nth-child(1).animate-in {
  animation: slideInFromLeft 0.8s ease-out 0.1s forwards;
}

.service-box:nth-child(2).animate-in {
  animation: slideInFromBottom 0.8s ease-out 0.2s forwards;
}

.service-box:nth-child(3).animate-in {
  animation: slideInFromRight 0.8s ease-out 0.3s forwards;
}

.service-box:nth-child(4).animate-in {
  animation: slideInFromLeft 0.8s ease-out 0.4s forwards;
}

.service-box:nth-child(5).animate-in {
  animation: slideInFromBottom 0.8s ease-out 0.5s forwards;
}

.service-box:nth-child(6).animate-in {
  animation: slideInFromRight 0.8s ease-out 0.6s forwards;
}

/* Icon styling */
.service-box i {
  font-size: 50px;
  color: #4c1d95;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.4s ease;
}

/* Title styling */
.service-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
  transition: all 0.4s ease;
  letter-spacing: 0.3px;
}

/* Description styling */
.service-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  transition: all 0.4s ease;
  margin: 0;
}

/* Hover effects */
.service-box:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8f5ff 100%);
  border-color: #7c3aed;
  transform: scale(1.05);
  animation: hoverGlow 2s ease-in-out infinite;
}

.service-box:hover i {
  animation: iconRotate 0.6s ease-in-out;
  color: #7c3aed;
  filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.216));
}

.service-box:hover h3 {
  color: #7c3aed;
  transform: translateY(-5px);
}

.service-box:hover p {
  color: #2d3748;
  transform: translateY(-2px);
}

/* Focus state for accessibility */
.service-box:focus {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .services-section {
    padding: 40px 20px;
    gap: 20px;
  }

  .service-box {
    padding: 30px 20px;
  }

  .service-box i {
    font-size: 40px;
  }

  .service-box h3 {
    font-size: 18px;
  }

  .service-box:hover {
    transform: scale(1.02);
  }
}

/* Popup Modal */
.popup-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.popup-content {
  background-color: #fefefe;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-popup {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-popup:hover,
.close-popup:focus {
  color: #333;
}

.popup-header {
  text-align: center;
  margin-bottom: 20px;
}

.popup-logo {
  height: 60px;
  margin-bottom: 10px;
}

.popup-header h2 {
  color: #333;
  margin-bottom: 5px;
}

.popup-header p {
  color: #666;
  font-size: 0.9rem;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.popup-form input:focus,
.popup-form textarea:focus {
  border-color: #4c1d95;
  outline: none;
}

.popup-submit {
  background: linear-gradient(90deg, #4c1d95, #6d28d9);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 29, 149, 0.3);
}

/* Floating Action Button */
.fab-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
  animation: bounceIn 1s ease-out 2s both;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

.fab-btn {
  background: linear-gradient(135deg, #4c1d95, #7c3aed);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(76, 29, 149, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.fab-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(76, 29, 149, 0.5);
}

.fab-btn i {
  font-size: 1.2rem;
}

@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .fab-wrapper {
    bottom: 20px;
    right: 20px;
  }

  .fab-btn .fab-text {
    display: none;
  }

  .fab-btn {
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }

  .fab-btn i {
    margin: 0;
  }
}

/* Infrastructure Page Redesign */
.infra-split-container {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
  padding-top: 120px;
}

.infra-split-image,
.infra-split-text {
  flex: 1;
  min-width: 300px;
}

.facility-showcase .grid-layout {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem;
}

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem;
}

/* Pagination Styles */
.pagination-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

  .facility-showcase .grid-layout,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .infra-split-container {
    padding-top: 80px;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .infra-split-container {
    flex-direction: column;
    padding-top: 40px;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .infra-split-text h2 {
    font-size: 2rem !important;
  }

  .facility-showcase .grid-layout,
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Contact Page Redesign */
.contact-split-layout {
  display: flex;
  gap: 4rem;
  align-items: stretch;
}

.contact-form-wrapper,
.contact-info-wrapper {
  flex: 1;
  width: 100%;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
  .contact-split-layout {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
}

