:root {
  --primary: #0d6efd;
  --hero-dark: #0b2340;
  --accent1: #6ad1ff;
  --accent2: #7b61ff;
}
/* ✅ Enable smooth scrolling site-wide */
html {
  scroll-behavior: smooth;
}

/* ✅ Optimize transitions (use GPU-accelerated properties only) */
* {
  will-change: transform, opacity;
}

/* ✅ Reduce gradient background animation load */
.services-bg,
.testimonials-bg,
.next-step-bg,
.categories-bg {
  animation-duration: 20s; /* slower => less CPU usage */
  background-size: 300% 300%; /* smaller than 600% for less redraw */
}

/* ✅ Optimize hover effects (avoid box-shadow reflow) */
.service-box,
.about-box,
.process-step {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.service-box:hover,
.about-box:hover,
.process-step:hover {
  transform: translateY(-8px) scale(1.03);
  filter: brightness(1.05);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
}

body {
  background-color: #f8f9fa;
  color: #2d2d2d;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

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

/* ----------------------------------- Header styles */

.logo-tagline {
    font-size: 0.9rem;
    color: #03045e !important; 
    margin: 0;
    text-wrap: wrap;
}

.logo-text {
  font-size: 26px;
  font-weight: 800;
  color: #1291c8; /* Picked from your brand blue */
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* On smaller screens, shrink text */
@media (max-width: 768px) {
  .logo-text {
    font-size: 18px;
    font-weight: 500;
    text-wrap: wrap;
  }
  .logo-tagline {
    font-size: 10px;
    font-weight: 400;
  }
}
header {
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: #5c5c5c;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

nav a:hover {
  color: #2b50ec;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2b50ec;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #5c5c5c;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }

  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    transition: left 0.3s ease;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  nav li {
    width: 100%;
    text-align: center;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
    color: #5c5c5c;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
  }

  nav a:hover {
    background: #f7f9fc;
    color: #2b50ec;
  }

  nav a::after {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* -------------------------------- slider css  */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-carousel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Each Slide */
.hero-slide {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

/* Content Section */
.hero-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  min-height: 100%;
}

.text-bg {
  background: linear-gradient(135deg, #004e92, #000428);
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f1f1f1;
  max-width: 500px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  padding: 12px 28px;
  background: #1291c8;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1291c8;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #1291c8;
  color: #1291c8;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #1291c8;
  color: #fff;
}

/* Image Section */
.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #004e92, #000428);
  min-height: 100%;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-slide {
    flex-direction: column;
  }
  .hero-content,
  .hero-image {
    flex: unset;
    width: 100%;
    min-height: auto;
    padding: 40px 20px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* ------------------------------------ ABOUT SECTION */
.about-section {
  background: #f8f9fa;
}
.about-img {
  animation: floatImg 6s ease-in-out infinite alternate;
  max-width: 90%;
}
.about-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Floating animation */
@keyframes floatImg {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

/* ------------------------------------ SERVICE SECTION */
.services-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Animated Gradient Background */
.services-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #0d6efd, #6f42c1, #20c997, #fd7e14);
  background-size: 600% 600%;
  animation: gradientFlow 15s ease infinite;
  z-index: 0;
  opacity: 0.9;
}

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

.service-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-box:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* ------------------------------------ TESTIMONIALS SECTION */
/* Testimonials animated gradient background */
.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3c72, #2a5298, #203a43);
  background-size: 200% 200%;
  animation: gradientMove 10s ease infinite alternate;
  z-index: 0;
}

@keyframes gradientMove {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

/* Make sure canvas and gradient sit behind content */
#testimonials canvas,
.testimonials-bg {
  z-index: 0;
}

#testimonials .container {
  position: relative;
  z-index: 2;
}

/* Optional: testimonial card styling */
.testimonial-card {
  max-width: 600px;
}

/* ------------------------------------ NEXT STEP SECTION */

/* Next Step Background */
.next-step-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff512f, #dd2476, #1e3c72);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite alternate;
  z-index: 0;
  opacity: 0.95;
}

@keyframes gradientShift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

/* Make sure text is above background */
#next-step .container {
  position: relative;
  z-index: 2;
}

/* ------------------------------------ COMPANIES SECTION */

/* Logos wrapper */
.logos-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.logos-slide {
  display: flex;
  animation: scroll 25s linear infinite;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
  transition: transform 0.3s ease;
}

.logos-slide img:hover {
  transform: scale(1.05);
}

/* Scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause animation on hover */
.logos-wrapper:hover .logos-slide {
  animation-play-state: paused;
}

/* ------------------------- OUR PROCESS */
.process-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.process-icon {
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease;
}

.process-box:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Background effect */
#process {
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
  position: relative;
  overflow: hidden;
}

#process::before,
#process::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 8s ease-in-out infinite alternate;
}

#process::before {
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: #0d6efd;
}

#process::after {
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #ffc107;
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-25px);
  }
}

/* ------------------------- CATEGORIES */
.categories-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #1f1c2c, #928dab);
  background-size: 200% 200%;
  animation: gradientMove 10s infinite alternate;
  z-index: 0;
}

@keyframes gradientMove {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}

/* ------------------------- BUSINESS LINES */
.business-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.business-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-img {
  width: 80px;
  height: auto;
  filter: grayscale(50%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.business-card:hover .icon-img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ------------------------- BUSINESS LINES */

/* Business Lines Section */
#business-lines .card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#business-lines .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#business-lines .card-img-top {
  height: 220px; /* fix image height for consistency */
  object-fit: cover; /* crops image neatly without distortion */
  transition: transform 0.4s ease;
}

#business-lines .card:hover .card-img-top {
  transform: scale(1.08); /* zoom effect on hover */
}

#business-lines h5 {
  color: #1a3d7c; /* professional corporate blue */
}

#business-lines p {
  font-size: 0.95rem;
  color: #555;
}

/* ------------------------- INDUSTRIES WE SERVE */
/* Section Background */
.industries {
  background: linear-gradient(135deg, #f0f4ff, #e6f7ff);
  position: relative;
  overflow: hidden;
}

/* Abstract background circles */
.industries::before,
.industries::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(18, 145, 200, 0.1);
  z-index: 0;
}
.industries::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}
.industries::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
}

/* Modular Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Box */
.industry-box.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Icon Styling */
.industry-box i {
  color: #1291c8;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effects */
.industry-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #1291c8;
}

.industry-box:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #0d6efd;
}

/* Shapes (custom corners) */
.shape-1 {
  border-radius: 50px 20px 20px 20px;
}
.shape-2 {
  border-radius: 20px 50px 20px 20px;
}
.shape-3 {
  border-radius: 20px 20px 50px 20px;
}
.shape-4 {
  border-radius: 20px 20px 20px 50px;
}
.shape-5 {
  border-radius: 40px 10px 40px 10px;
}
.shape-6 {
  border-radius: 10px 40px 10px 40px;
}
.shape-7 {
  border-radius: 60px 20px;
}
.shape-8 {
  border-radius: 20px 60px;
}
.shape-9 {
  border-radius: 30px 10px 50px 10px;
}

/* ------------------------- SCROLL TO TOP */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15); /* Glass effect */
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

#scrollTopBtn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #00d4ff; /* Neon glow */
  box-shadow: 0 0 15px #00d4ff, 0 0 25px #00d4ff;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
  #scrollTopBtn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }
}

/* ------------------------- ABOUT US PAGE START */
/* About Hero */
.about-hero {
  position: relative;
  min-height: 60vh;
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1600")
    center/cover no-repeat;
}

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

.about-hero .container {
  position: relative;
  z-index: 2;
}

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

.about-hero p {
  font-size: 1.2rem;
  color: #ddd;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 15px;
}

.breadcrumb-item a {
  color: #0093d1;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item.active {
  color: #fff;
}

/* our story section */
/* Our Story Section */
.our-story {
  background: linear-gradient(135deg, #f8faff, #eef4fb);
  position: relative;
  overflow: hidden;
}

.our-story::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(0, 78, 146, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.our-story::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.story-content {
  position: relative;
  z-index: 1;
}

.story-content h2 {
  font-size: 2.5rem;
  color: #000428;
}

.text-gradient {
  background: linear-gradient(45deg, #004e92, #ff6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

.story-image img {
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.story-image img:hover {
  transform: scale(1.03);
}

/* ===== Our Mission Section ===== */
.our-mission {
  background: linear-gradient(135deg, #004e92, #000428);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.our-mission h2 {
  font-size: 2.5rem;
  color: #ffc107;
}

.mission-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.mission-card i {
  color: #ffc107;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Our Vision (Modern Minimal) ===== */
.our-vision-modern {
  background: #fafafa;
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.vision-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.vision-content {
  flex: 1 1 50%;
  padding: 40px;
}

.vision-content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
  position: relative;
}

.vision-content h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #0093d1;
  margin-top: 10px;
}

.vision-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  max-width: 600px;
}

.btn-vision-modern {
  padding: 14px 34px;
  background: #111;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-vision-modern:hover {
  background: #0093d1;
  color: #fff;
  transform: translateY(-2px);
}

/* Abstract image side */
.vision-abstract {
  flex: 1 1 40%;
  text-align: center;
}

.vision-abstract img {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.vision-abstract img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .vision-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .vision-content {
    padding: 20px;
  }

  .vision-content h2 {
    font-size: 2.2rem;
  }

  .vision-abstract {
    margin-top: 40px;
  }
}

/* ===== Our Values & Culture Section ===== */
.our-values {
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
  position: relative;
  overflow: hidden;
}

.our-values h2 {
  font-size: 2.5rem;
  color: #004e92;
}

.our-values p {
  color: #555;
}

/* Abstract background shapes */
.our-values::before,
.our-values::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 78, 146, 0.08);
  z-index: 0;
}

.our-values::before {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -100px;
}

.our-values::after {
  width: 250px;
  height: 250px;
  bottom: -100px;
  right: -80px;
}

.value-card {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.value-card i {
  color: #0093d1;
}

.value-card h5 {
  font-weight: 600;
  margin-top: 15px;
}

.value-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .our-values h2 {
    font-size: 2rem;
  }
  .value-card {
    padding: 20px;
  }
}

/* ===== Our Process Section ===== */
.our-process {
  background: #f9f9fb;
  padding: 100px 20px;
  position: relative;
}

.section-title1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
}

/* Steps Layout */
.process-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0059ff, #40a3fa);
}

.process-step {
  position: relative;
  margin-bottom: 60px;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: #0093d1;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.process-step h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.process-step p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .process-steps::before {
    left: 20px;
  }
  .process-step {
    padding-left: 70px;
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ===== Our Impact Section ===== */
.our-impact {
  background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
  color: #fff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: -webkit-linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 60px;
  color: #f9f9f9;
}

/* Stats */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px 20px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1rem;
  color: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .stat-box h3 {
    font-size: 2rem;
  }
}

/* ------------------------- SERVICES */
.section-header {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 4rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ ensures heading & paragraph align */
  justify-content: center;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center; /* ✅ extra safeguard */
}

.section-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  text-align: center; /* ✅ ensures proper centering */
}

.services-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.service-tabs {
  display: flex;
  background: linear-gradient(90deg, #f8f9fa, #e9ecef);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-tabs::-webkit-scrollbar {
  display: none;
}

.tab-button {
  flex: 1;
  min-width: 200px;
  padding: 1.5rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #6c757d;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.tab-button:hover::before {
  left: 100%;
}

.tab-button:hover {
  color: #495057;
  background-color: rgba(102, 126, 234, 0.05);
}

.tab-button.active {
  color: #667eea;
  background-color: white;
  border-bottom-color: #667eea;
  box-shadow: 0 -5px 15px rgba(102, 126, 234, 0.2);
}

.service-content {
  padding: 3rem;
}

.service-panel {
  display: none;
  animation: fadeInUp 0.6s ease;
}

.service-panel.active {
  display: block;
}

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

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2rem;
  font-style: italic;
}

.service-description {
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.detail-box {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #667eea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.detail-box h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.detail-box h4::before {
  content: "→";
  color: #667eea;
  margin-right: 0.5rem;
  font-weight: bold;
}

.detail-box ul {
  list-style: none;
  padding-left: 0;
}

.detail-box li {
  padding: 0.5rem 0;
  color: #495057;
  position: relative;
  padding-left: 1.5rem;
}

.detail-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.cta-section {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  margin-top: 2rem;
  border-radius: 15px;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .service-tabs {
    flex-direction: column;
  }

  .tab-button {
    min-width: auto;
    text-align: left;
  }

  .service-content {
    padding: 2rem 1.5rem;
  }

  .service-details {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-title {
    font-size: 2rem;
  }
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.office-location {
  padding:4rem 2rem;
  text-align:center;
  background:#fff;
}
.office-location h2 {
  font-size:2rem;
  font-weight:800;
  margin-bottom:.5rem;
}
.office-location .subtitle {
  color:#555;
  margin-bottom:2rem;
}
.map-container {
  max-width:1000px;
  margin:0 auto;
  border-radius:1rem;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,0.1);
}
.office-address {
  margin-top:2rem;
  font-size:1rem;
  color:#444;
}
.office-address h3 {
  font-size:1.25rem;
  font-weight:700;
  color:#2563eb;
  margin-bottom:.3rem;
}

.contact-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #eef2f7, #f9fafc);
}
.contact-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* Contact Form Styling */
.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #2563eb;
}
.contact-form .form-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0.8rem;
  border: 1.5px solid #ccc;
  border-radius: 0.8rem;
  font-size: 1rem;
  background: #fdfdfd;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}
.form-group label {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 0.3rem;
  font-size: 0.9rem;
  color: #666;
  pointer-events: none;
  transition: 0.3s ease;
}
.form-group textarea + label {
  top: 1.2rem;
  transform: none;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.7rem;
  font-size: 0.75rem;
  color: #2563eb;
  background: #fff;
}

.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Company Info Styling */
.contact-info {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #16a34a;
}
.contact-info p {
  margin-bottom: 1rem;
  color: #444;
  font-size: 1rem;
}
.contact-info a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.contact-info a:hover {
  text-decoration: underline;
}



/* ------------------------- FOOTER */
/* Footer Background with Gradient & Overlay */
.footer {
  background: linear-gradient(135deg, #004e92, #000428); /* vibrant gradient */
  color: #fff;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.footer .logo-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  padding: 11px 11px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  margin-bottom: 18px;
  max-width: 100%; /* stay within column */
}

.footer .logo-box img {
  max-height: 45px;
  width: auto;
}

.footer .logo-text {
  margin-left: 5px;
  font-weight: 600;
  font-size: 12px;
  background: linear-gradient(45deg, #0d6efd, #12c2e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Headings */
.footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
}

.footer h5::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #ffc107;
  position: absolute;
  bottom: -8px;
  left: 0;
}

/* Links */
.footer a {
  color: #dcdcdc;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #ffc107;
}

/* Contact Icons */
.footer .contact-info i {
  color: #ffc107;
  margin-right: 10px;
}

/* Social Links */
.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}

.footer .social-icons a:hover {
  background: #ffc107;
  color: #000;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.2);
  margin-top: 30px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer .row {
    text-align: center;
  }

  .footer .logo-box {
    justify-content: center;
    margin: 0 auto 18px;
  }

  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-links {
    padding-left: 0;
  }

  .footer .footer-links li {
    display: inline-block;
    margin: 4px 8px;
  }
}
