/* =============================
   BASE NAVBAR
============================= */
.main-navbar {
  background: #0d1b2a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  padding: 0.6rem 0;
}

.navbar-brand {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #00b4d8 !important;
}

/* =============================
   DROPDOWN (ABOUT US)
============================= */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  padding: 10px;
  animation: fadeDown 0.2s ease-in;
}

.dropdown-menu .dropdown-item {
  color: #333;
  padding: 8px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #00b4d8;
  color: #fff;
  border-radius: 10px;
}

/* =============================
   MEGA MENU
============================= */
.mega-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: none;
  min-width: 700px;
  animation: fadeInUp 0.3s ease;
  z-index: 999;
}

.mega-menu .col-md-3, .mega-menu .col-md-4 {
  min-width: 200px;
}

.mega-menu h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  color: #0d1b2a;
  border-bottom: 2px solid #00b4d8;
  display: inline-block;
  padding-bottom: 4px;
}

.mega-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu ul li {
  margin-bottom: 6px;
}

.mega-menu ul li a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.mega-menu ul li a:hover {
  color: #00b4d8;
}

/* Hover Interaction */
.mega-dropdown:hover .mega-menu {
  display: block;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translate(-50%, 10px); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 991px) {
  .mega-menu {
    position: static;
    transform: none;
    box-shadow: none;
    width: 100%;
    min-width: auto;
    border-radius: 0;
    display: none;
    padding: 15px;
  }

  .mega-dropdown:hover .mega-menu {
    display: none;
  }

  .navbar-nav {
    background: #0d1b2a;
  }
}

/* =============================
   MOBILE MENU
============================= */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(15px);
  color: white;
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  animation: fadeInBackground 0.4s forwards;
}

@keyframes fadeInBackground {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-menu-content {
  width: 100%;
  padding: 70px 25px;
  transform: translateY(30px);
  opacity: 0;
  animation: slideInContainer 0.6s ease forwards;
}

@keyframes slideInContainer {
  to { transform: translateY(0); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.9;
  transition: 0.3s;
}
.close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Mobile Nav */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin: 20px 0;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInItem 0.6s ease forwards;
}

.mobile-nav li:nth-child(1) { animation-delay: 0.15s; }
.mobile-nav li:nth-child(2) { animation-delay: 0.25s; }
.mobile-nav li:nth-child(3) { animation-delay: 0.35s; }
.mobile-nav li:nth-child(4) { animation-delay: 0.45s; }
.mobile-nav li:nth-child(5) { animation-delay: 0.55s; }
.mobile-nav li:nth-child(6) { animation-delay: 0.65s; }
.mobile-nav li:nth-child(7) { animation-delay: 0.75s; }

@keyframes slideInItem {
  to { opacity: 1; transform: translateX(0); }
}

.mobile-nav li a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}
.mobile-nav li a:hover {
  color: #00b4d8;
}
.mobile-nav li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00b4d8;
  transition: width 0.3s ease;
}
.mobile-nav li a:hover::after {
  width: 100%;
}

/* Mobile Dropdowns */
.mobile-dropdown .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-dropdown .dropdown-toggle i {
  transition: 0.3s;
}
.mobile-submenu {
  display: none;
  margin-top: 10px;
  padding-left: 15px;
  border-left: 2px solid #00b4d8;
  animation: fadeInSub 0.4s ease;
}
.mobile-submenu li a {
  font-size: 1rem;
  opacity: 0.9;
}
.mobile-submenu strong {
  color: #00b4d8;
  font-size: 1.1rem;
  display: block;
  margin-top: 10px;
}
@keyframes fadeInSub {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-overlay.fade-out {
  animation: fadeOutBackground 0.4s forwards;
}
@keyframes fadeOutBackground {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* =============================
   NAVBAR GRADIENT LINE
============================= */
.navbar-gradient-line {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #00c853, #001e60, #ff6f00);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==============================
   HERO SECTION (INFOSYS STYLE)
============================== */

.hero-section-infosys {
  position: relative;
  background: linear-gradient(135deg, #001e60 0%, #021a3a 50%, #0d1b2a 100%);
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Glassy Overlay Effect */
.hero-section-infosys::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  z-index: 0;
}

/* Layout */
.hero-row {
  position: relative;
  z-index: 2;
}
.hero-left {
  padding-right: 30px;
}
.hero-right {
  position: relative;
  text-align: center;
}

/* Headline */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  animation: fadeSlideUp 1s ease both;
}
.highlight-text {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  animation: fadeSlideUp 1.3s ease both;
}

/* Buttons */
.hero-buttons .btn {
  padding: 12px 28px;
  font-size: 1.1rem;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}

.btn-primary-glow {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.4);
  animation: gradientGlow 4s ease infinite;
}
.btn-primary-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.6);
}
.btn-outline-light {
  border: 1.5px solid #fff;
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: #001e60;
}

/* Right Side Visual */
.hero-image {
  width: 80%;
  max-width: 450px;
  z-index: 2;
  position: relative;
  animation: fadeSlideUp 1.5s ease both;
}

.floating-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0,180,216,0.4), transparent 70%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  animation: pulseGlow 6s ease-in-out infinite;
  z-index: 0;
}

/* Animated Circles */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: floatBlob 8s infinite ease-in-out;
  z-index: 0;
}
.circle1 {
  background: #00b4d8;
  width: 180px; height: 180px;
  top: 10%; left: 20%;
  animation-delay: 0s;
}
.circle2 {
  background: #00c853;
  width: 200px; height: 200px;
  bottom: 10%; right: 25%;
  animation-delay: 2s;
}
.circle3 {
  background: #ff6f00;
  width: 150px; height: 150px;
  top: 40%; right: 10%;
  animation-delay: 4s;
}

/* Animations */
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes gradientGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes floatBlob {
  0% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
  100% { transform: translate(0, 0); }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section-infosys { text-align: center; padding: 90px 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-image { width: 65%; margin-top: 30px; }
}

/* ====================================
   COMPANY OVERVIEW (FINAL FIXED VERSION)
==================================== */

.company-overview {
  position: relative;
  background: #f9fbfd;
  padding: 120px 0;
  overflow: hidden;
}

/* Moving Gradient Stripes (Infosys Effect) */
.company-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 180, 216, 0.12) 0px,
    rgba(0, 180, 216, 0.12) 2px,
    transparent 2px,
    transparent 20px
  ),
  linear-gradient(120deg, rgba(0, 30, 96, 0.05), rgba(255, 111, 0, 0.08));
  background-size: 300% 100%;
  animation: moveWaves 18s linear infinite;
  z-index: 0;
  opacity: 0.8;
}

@keyframes moveWaves {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3%); }
}

/* Overlay Tint */
.company-overview::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  z-index: 1;
}

/* Layout */
.overview-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Text Section */
.overview-text {
  flex: 1 1 50%;
  text-align: left;
  padding-right: 40px;
}

.section-tag {
  color: #00b4d8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #0d1b2a;
}
.section-title span {
  color: #00b4d8;
}

.section-desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.overview-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.overview-points li {
  font-size: 1rem;
  color: #222;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.overview-points i {
  color: #00b4d8;
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Buttons */
.overview-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.overview-buttons .btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-primary-glow {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  animation: gradientGlow 4s ease infinite;
}
.btn-primary-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
}

.btn-outline-dark {
  border: 1.5px solid #0d1b2a;
  color: #0d1b2a;
}
.btn-outline-dark:hover {
  background: #0d1b2a;
  color: #fff;
}

@keyframes gradientGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Right Image */
.overview-image {
  position: relative;
  flex: 1 1 45%;
  text-align: center;
}
.overview-visual {
  width: 80%;
  max-width: 480px;
  position: relative;
  z-index: 3;
  animation: fadeSlideUp 1.2s ease both;
}

/* Floating Glow Blobs */
.floating-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: 1;
  animation: floatBlob 10s infinite ease-in-out;
}
.blur1 {
  background: #00c853;
  width: 260px; height: 260px;
  top: 15%; left: 15%;
  animation-delay: 1s;
}
.blur2 {
  background: #00b4d8;
  width: 300px; height: 300px;
  bottom: 10%; right: 20%;
  animation-delay: 3s;
}

/* Animations */
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes floatBlob {
  0% { transform: translate(0, 0); opacity: 0.7; }
  50% { transform: translate(30px, -20px); opacity: 0.9; }
  100% { transform: translate(0, 0); opacity: 0.7; }
}

/* =======================
   RESPONSIVE FIXES
======================= */
@media (max-width: 991px) {
  .overview-row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .overview-text {
    padding-right: 0;
    text-align: center;
    margin-top: 40px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .section-desc {
    font-size: 1rem;
    color: #444;
    margin: 0 auto 25px;
    max-width: 90%;
  }

  .overview-points {
    display: inline-block;
    text-align: left;
    margin: 0 auto 30px;
  }
  .overview-points li {
    justify-content: flex-start;
  }

  .overview-buttons {
    justify-content: center;
  }

  .overview-buttons .btn {
    width: auto;
    min-width: 160px;
  }

  .overview-image {
    margin-top: 0;
  }

  .overview-visual {
    width: 70%;
  }
}

/* ==============================
   OUR SERVICES SECTION (MNC STYLE + READ MORE)
============================== */

.services-section {
  position: relative;
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 50%, #f9fbfd 100%);
  padding: 120px 0;
  overflow: hidden;
}

/* Moving Digital Lines (Infosys effect) */
.services-section::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 200%; height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 180, 216, 0.05) 0px,
    rgba(0, 180, 216, 0.05) 2px,
    transparent 2px,
    transparent 25px
  );
  animation: moveStripes 25s linear infinite;
  opacity: 0.4;
  z-index: 0;
}
@keyframes moveStripes {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* Section Headings */
.section-tag {
  color: #00b4d8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.3px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0d1b2a;
}
.section-title span {
  color: #00b4d8;
}
.section-desc {
  max-width: 750px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* Service Box */
.service-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 2;
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #00b4d8, #00c853, #ff6f00);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.service-box:hover::before {
  opacity: 0.15;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 180, 216, 0.2);
}

/* Icons */
.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00b4d8, #00c853, #ff6f00);
  background-size: 200% 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 20px;
  animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Service Text */
.service-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
}
.service-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Read More Link */
.read-more {
  display: inline-block;
  color: #00b4d8;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.read-more::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #00b4d8;
  transition: width 0.3s ease;
  margin-top: 4px;
}
.read-more:hover {
  color: #00c853;
}
.read-more:hover::after {
  width: 100%;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .services-section { padding: 90px 0; }
  .section-title { font-size: 2rem; }
  .service-box { padding: 35px 20px; }
  .icon-wrapper { width: 70px; height: 70px; font-size: 1.6rem; }
}

/* ==============================
   DIGITAL CAPABILITIES / KEY STRENGTHS
============================== */

.digital-capabilities {
  position: relative;
  background: linear-gradient(135deg, #001e60 0%, #0d1b2a 50%, #021a3a 100%);
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
}

/* Background animation (soft digital wave) */
.digital-capabilities::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 180, 216, 0.08) 0px,
    rgba(0, 180, 216, 0.08) 2px,
    transparent 2px,
    transparent 25px
  );
  animation: waveShift 18s linear infinite;
  opacity: 0.3;
  z-index: 0;
}
@keyframes waveShift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* Section Titles */
.digital-capabilities .section-tag {
  color: #00b4d8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.digital-capabilities .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}
.digital-capabilities .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.digital-capabilities .section-desc {
  max-width: 750px;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* Counter Boxes */
.counter-box {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.counter-box:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-8px);
}

/* Counter Icons */
.counter-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00c853, #00b4d8, #ff6f00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background-size: 200% 200%;
  animation: gradientPulse 6s ease infinite;
}
@keyframes gradientPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Numbers */
.counter-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* Counter Text */
.counter-box p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin: 0;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .digital-capabilities { padding: 90px 0; }
  .digital-capabilities .section-title { font-size: 2.1rem; }
  .counter-number { font-size: 2.2rem; }
}

.industries-slider-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f6f9fc 0%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

.section-intro .section-tag {
  text-transform: uppercase;
  font-weight: 600;
  color: #00b4d8;
  margin-bottom: 10px;
}

.section-intro .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.section-intro .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-intro .section-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Animated Carousel Transition */
.custom-slide .carousel-inner {
  overflow: hidden;
}

.custom-slide .carousel-item {
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease-in-out;
}

.custom-slide .carousel-item-next.carousel-item-start,
.custom-slide .carousel-item-prev.carousel-item-end {
  opacity: 0;
  transform: scale(0.95);
}

/* Slide Content */
.industry-slide {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  animation: slideUpFade 1s ease both;
}

@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.industry-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,180,216,0.2);
}

.industry-slide img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
  transform: scale(0.95);
  animation: floatSlow 4s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.industry-slide:hover img {
  transform: scale(1);
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.industry-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
  animation: fadeInLeft 0.9s ease both;
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

.industry-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  animation: fadeIn 1s ease both 0.2s;
}

.industry-text .read-more {
  font-weight: 600;
  color: #00b4d8;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.industry-text .read-more:hover {
  color: #00c853;
}

/* Gradient Glow Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background: linear-gradient(135deg, #00b4d8, #00c853);
  border-radius: 50%;
  padding: 20px;
  background-size: 60%;
  filter: drop-shadow(0 0 10px rgba(0,180,216,0.5));
  transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(0,180,216,0.7));
}

/* Responsive */
@media (max-width: 991px) {
  .industry-slide {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .industry-slide img {
    margin-bottom: 20px;
  }
  .section-intro {
    text-align: center;
    margin-bottom: 40px;
  }
}

/*client section*/
.clients-section {
  padding: 120px 0;
  background:#ffffff;
  position: relative;
  overflow: hidden;
}

.clients-section::before,
.clients-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  filter: blur(100px);
  z-index: 0;
}

.clients-section::before {
  top: -50px;
  left: -50px;
  background: radial-gradient(circle at top left, rgba(0,180,216,0.25), transparent 70%);
}

.clients-section::after {
  bottom: -50px;
  right: -50px;
  background: radial-gradient(circle at bottom right, rgba(0,200,83,0.25), transparent 70%);
}

.section-tag {
  text-transform: uppercase;
  font-weight: 600;
  color: #00b4d8;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: #555;
  font-size: 1rem;
  max-width: 720px;
  margin-bottom: 60px;
}

/* Carousel Core */
.logo-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(250px * 10);
  animation: scrollLeft 40s linear infinite;
}

.logo-track.reverse {
  animation: scrollRight 40s linear infinite;
}

/* Animation Keyframes */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.logo-track img {
  width: 160px;
  height: 70px;
  object-fit: contain;
  margin: 0 40px;
  filter: grayscale(100%) brightness(90%);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.logo-track img:hover {
  filter: grayscale(0%) brightness(110%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991px) {
  .logo-track img {
    width: 110px;
    height: 50px;
    margin: 0 25px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
}

/* CTA Horizontal Section */
.cta-horizontal-section {
  padding: 100px 0;
  background: linear-gradient(120deg, #ffffff 0%, #f3f8ff 50%, #e6f0ff 100%);
  position: relative;
  overflow: hidden;
}

.cta-horizontal-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top left, rgba(0,180,216,0.25), transparent 70%);
  filter: blur(100px);
}

.cta-horizontal-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at bottom right, rgba(0,200,83,0.25), transparent 70%);
  filter: blur(100px);
}

/* Text Side */
.cta-text .section-tag {
  color: #00b4d8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta-text .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.cta-text .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-text .section-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 500px;
}

/* Inline Form */
.cta-inline-form {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  animation: fadeUp 1s ease both;
}

.cta-inline-form .form-group {
  flex: 1 1 30%;
}

.cta-inline-form .form-control {
  height: 48px;
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-inline-form .form-control:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 8px rgba(0,180,216,0.4);
  outline: none;
}

/* Button Glow */
.btn-primary-glow {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.4s ease;
  animation: gradientGlow 4s ease infinite;
  white-space: nowrap;
}

.btn-primary-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,180,216,0.5);
}

/* Animations */
@keyframes gradientGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991px) {
  .cta-inline-form {
    flex-direction: column;
    align-items: stretch;
    padding: 25px 20px;
  }

  .cta-inline-form .form-group {
    width: 100%;
  }

  .cta-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .cta-text .section-title {
    font-size: 1.7rem;
  }
}

.main-footer {
  background: #0d1b2a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Top Section */
.footer-top {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.footer-top::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at top right, rgba(0,180,216,0.2), transparent 70%);
  filter: blur(100px);
}

.footer-about img {
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-links a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.3rem;
  color: #00b4d8;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #00c853;
  transform: translateY(-3px);
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #00b4d8;
}

.footer-contact i {
  color: #00b4d8;
  margin-right: 10px;
}

/* Headings */
.main-footer h5 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.main-footer h5::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.1);
}

.footer-bottom a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin: 0 6px;
}

.footer-bottom a:hover {
  color: #00b4d8;
}

.footer-gradient-line {
  height: 4px;
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 991px) {
  .footer-bottom {
    text-align: center;
    flex-direction: column;
  }

  .footer-legal {
    margin-top: 10px;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c853, #00b4d8, #ff6f00);
  background-size: 200% 200%;
  color: #fff;
  font-size: 1.3rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2000;
  box-shadow: 0 5px 20px rgba(0, 180, 216, 0.4);
  transition: all 0.4s ease;
  animation: gradientGlow 4s ease infinite;
}

.back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.6);
}

/* Gradient Animation (shared from theme) */
@keyframes gradientGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Scroll Fade Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-chat {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 2500;
}

.whatsapp-btn {
  background: #25d366;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Popup Form */

.whatsapp-popup select {
  background-color: #fff;
  cursor: pointer;
}

.whatsapp-popup label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.whatsapp-popup select:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 5px rgba(0,180,216,0.3);
}

.whatsapp-popup option {
  color: #333;
}

.whatsapp-popup {
  position: absolute;
  bottom: 70px;
  left: 0;
  background: #ffffff;
  width: 320px;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.15);
  display: none;
  animation: slideUp 0.4s ease;
}

.popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #075e54;
  margin-bottom: 10px;
  font-size: 1rem;
}

.popup-header i {
  font-size: 1.4rem;
  color: #25d366;
}

.close-btn {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}

.mb-2 {
  margin-bottom: 10px;
}

.whatsapp-popup input,
.whatsapp-popup select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: 0.3s;
}

.whatsapp-popup input:focus,
.whatsapp-popup select:focus {
  border-color: #25d366;
  outline: none;
}

.btn-whatsapp-send {
  width: 100%;
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-whatsapp-send:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,180,216,0.4);
}

/* Animation */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .whatsapp-popup {
    width: 90vw;
    left: 5vw;
  }
}

/* =============================
   ABOUT HERO SPLIT STYLE
============================= */
.about-hero-split {
  position: relative;
  background: linear-gradient(135deg, #001e60 0%, #003973 40%, #007bbf 100%);
  color: #fff;
  overflow: hidden;
  padding: 130px 0;
}

/* Left Content */
.about-hero-text {
  z-index: 2;
  position: relative;
}

.section-tag {
  font-size: 1rem;
  font-weight: 600;
  color: #00b4d8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-hero-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 35px;
}

.about-hero-btns .btn {
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background: #fff;
  color: #001e60 !important;
}

/* Right Visual */
.about-hero-visual {
  position: relative;
  z-index: 1;
}

.about-hero-image {
  width: 90%;
  max-width: 450px;
  z-index: 2;
  position: relative;
  animation: fadeUp 1.5s ease forwards;
}

/* Glowing Background Animation */
.animated-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: floatGlow 10s infinite ease-in-out;
  z-index: 0;
}
.glow1 {
  width: 350px;
  height: 350px;
  background: #00b4d8;
  top: -50px;
  right: 60px;
  animation-delay: 0s;
}
.glow2 {
  width: 400px;
  height: 400px;
  background: #00c853;
  bottom: -80px;
  left: 40px;
  animation-delay: 3s;
}
.glow3 {
  width: 250px;
  height: 250px;
  background: #ff6f00;
  top: 100px;
  left: 100px;
  animation-delay: 5s;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(30px, -20px); opacity: 0.8; }
  100% { transform: translate(0, 0); opacity: 0.5; }
}

/* Animation for text reveal */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .about-hero-split {
    text-align: center;
    padding: 100px 20px;
  }
  .about-hero-title {
    font-size: 2.1rem;
  }
  .about-hero-desc {
    font-size: 1rem;
    margin: 0 auto 25px;
  }
  .about-hero-btns .btn {
    display: inline-block;
    margin-bottom: 10px;
  }
  .about-hero-image {
    max-width: 320px;
  }
}

/* =============================
   COMPANY OVERVIEW (Infosys Style)
============================= */
.company-overview-infosys {
  position: relative;
  background: #f9fbff;
  padding: 100px 0;
  overflow: hidden;
}

/* Floating Gradient Background Accents */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: 0;
  animation: floatBlob 9s ease-in-out infinite;
}

.shape1 {
  width: 350px;
  height: 350px;
  top: -80px;
  left: -100px;
  background: #00b4d8;
  animation-delay: 0s;
}
.shape2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -80px;
  background: #00c853;
  animation-delay: 4s;
}

@keyframes floatBlob {
  0% { transform: translate(0,0); opacity: 0.6; }
  50% { transform: translate(40px, -20px); opacity: 0.8; }
  100% { transform: translate(0,0); opacity: 0.6; }
}

/* Image Styling */
.overview-main-img {
  width: 90%;
  max-width: 420px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1.5s ease forwards;
}

/* Right Side Text */
.overview-text {
  position: relative;
  z-index: 2;
}

.overview-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.4;
  margin-bottom: 20px;
}
.overview-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.overview-desc {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.7;
  max-width: 500px;
}

.overview-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.overview-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}
.overview-list i {
  color: #00b4d8;
  margin-right: 8px;
}

/* Button */
.overview-btn .btn {
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Up animation (used for images) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991px) {
  .company-overview-infosys {
    padding: 80px 20px;
    text-align: center;
  }
  .overview-title {
    font-size: 1.9rem;
  }
  .overview-desc {
    font-size: 1rem;
    margin: 0 auto 20px;
  }
  .overview-main-img {
    max-width: 320px;
    margin-bottom: 30px;
  }
}

/* =============================
   INTERACTIVE VISION, MISSION & VALUES
============================= */
.vmv-modern-section {
  position: relative;
  background: linear-gradient(135deg, #f9fbff 0%, #eef4ff 100%);
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
}

/* Soft gradient overlay background */
.vmv-modern-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(0,180,216,0.15), transparent 60%),
              radial-gradient(circle at 85% 80%, rgba(0,200,83,0.15), transparent 60%);
  z-index: 0;
}

/* Section Headings */
.vmv-modern-section .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.vmv-modern-section .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vmv-modern-section .section-desc {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 750px;
  position: relative;
  z-index: 2;
}

/* Card Container */
.vmv-modern-card {
  background: #fff;
  border-radius: 18px;
  padding: 45px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}
.vmv-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,180,216,0.08), rgba(0,200,83,0.08));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.vmv-modern-card:hover::before {
  opacity: 1;
}
.vmv-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 180, 216, 0.15);
}

/* Animated Gradient Ring */
.vmv-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: conic-gradient(#00c853, #00b4d8, #ff6f00, #00c853);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spinRing 8s linear infinite;
  transition: all 0.4s ease;
}
.vmv-ring::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
}
.vmv-ring i {
  font-size: 1.8rem;
  color: #00b4d8;
  z-index: 2;
  transition: transform 0.4s ease, color 0.4s ease;
}

/* Hover effects */
.vmv-modern-card:hover .vmv-ring {
  animation: spinRingFast 3s linear infinite;
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.5);
}
.vmv-modern-card:hover .vmv-ring::before {
  background: rgba(255,255,255,0.95);
}
.vmv-modern-card:hover .vmv-ring i {
  transform: scale(1.2);
  color: #007bbf;
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spinRingFast {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Text Styling */
.vmv-modern-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.vmv-modern-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .vmv-modern-section {
    padding: 80px 20px;
    text-align: center;
  }
  .vmv-modern-card {
    padding: 30px 20px;
  }
  .vmv-ring {
    width: 75px;
    height: 75px;
  }
  .vmv-ring i {
    font-size: 1.6rem;
  }
  .vmv-modern-section .section-title {
    font-size: 2rem;
  }
}

/* =============================
   LEADERSHIP / OUR TEAM (MODERN)
============================= */
.leadership-modern {
  background: #f9fbff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Soft gradient background blobs */
.leadership-modern::before,
.leadership-modern::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  z-index: 0;
  animation: floatBlob 10s ease-in-out infinite;
}
.leadership-modern::before {
  width: 400px;
  height: 400px;
  background: #00b4d8;
  top: -100px;
  left: -80px;
}
.leadership-modern::after {
  width: 350px;
  height: 350px;
  background: #00c853;
  bottom: -120px;
  right: -100px;
}
@keyframes floatBlob {
  0% { transform: translate(0,0); opacity: 0.4; }
  50% { transform: translate(40px, -30px); opacity: 0.6; }
  100% { transform: translate(0,0); opacity: 0.4; }
}

/* Section Title */
.leadership-modern .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
}
.leadership-modern .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.leadership-modern .section-desc {
  color: #555;
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto;
}

/* Leader Card */
.leader-modern-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.leader-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 180, 216, 0.2);
}

/* Profile Image */
.leader-photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  background: linear-gradient(90deg, #00b4d8, #00c853, #ff6f00);
  background-clip: padding-box;
  position: relative;
  transition: all 0.4s ease;
}
.leader-modern-card:hover .leader-photo {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,180,216,0.3);
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name + Role */
.leader-modern-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 6px;
}
.leader-modern-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* LinkedIn Icon */
.leader-modern-card .linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #00b4d8;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.leader-modern-card .linkedin:hover {
  background: #0077b5;
  transform: scale(1.15);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .leadership-modern {
    padding: 80px 20px;
  }
  .leader-photo {
    width: 110px;
    height: 110px;
  }
  .leader-modern-card {
    padding: 25px 15px;
  }
  .leadership-modern .section-title {
    font-size: 2rem;
  }
}

/* =============================
   SUSTAINABILITY / CORPORATE RESPONSIBILITY
============================= */
.sustainability-section {
  background: linear-gradient(135deg, #002a12 0%, #004d25 40%, #007a3d 100%);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

/* Floating gradient lights */
.sustainability-section::before,
.sustainability-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.3;
  animation: floatGlow 10s ease-in-out infinite;
  z-index: 0;
}
.sustainability-section::before {
  width: 400px;
  height: 400px;
  background: #00c853;
  top: -80px;
  left: -100px;
}
.sustainability-section::after {
  width: 350px;
  height: 350px;
  background: #00b4d8;
  bottom: -120px;
  right: -100px;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(40px, -20px); opacity: 0.7; }
  100% { transform: translate(0, 0); opacity: 0.4; }
}

/* Text Styling */
.section-tag.light {
  color: #a8ffbf;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.section-title.light {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
}
.section-title.light span {
  background: linear-gradient(90deg, #00e676, #00b4d8, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc.light {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto 60px;
}

/* Sustain Cards */
.sustain-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 35px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.sustain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00c853, #00b4d8, #ff6f00);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.sustain-card:hover::before {
  opacity: 0.15;
}
.sustain-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.25);
}

/* Icon */
.sustain-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c853, #00b4d8);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.sustain-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.sustain-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Button */
.btn-glow-light {
  background: linear-gradient(90deg, #00e676, #00b4d8, #ffb300);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.4);
  transition: 0.3s ease-in-out;
}
.btn-glow-light:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.6);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .sustainability-section {
    padding: 80px 20px;
  }
  .section-title.light {
    font-size: 2rem;
  }
}

/* =============================
   SERVICE DETAILS HERO SECTION
============================= */
.service-hero {
  position: relative;
  background: linear-gradient(135deg, #001a3d 0%, #003c78 50%, #005fa3 100%);
  color: #fff;
  padding: 160px 0 120px;
  text-align: center;
  overflow: hidden;
}

/* Gradient Floating Orbs */
.service-hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatOrb 10s ease-in-out infinite;
  z-index: 0;
}
.service-hero .orb1 {
  width: 400px;
  height: 400px;
  background: #00b4d8;
  top: -100px;
  left: -80px;
  animation-delay: 0s;
}
.service-hero .orb2 {
  width: 350px;
  height: 350px;
  background: #00c853;
  bottom: -100px;
  right: -100px;
  animation-delay: 3s;
}
.service-hero .orb3 {
  width: 250px;
  height: 250px;
  background: #ff6f00;
  top: 30%;
  right: 20%;
  animation-delay: 5s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(30px, -30px); opacity: 0.6; }
  100% { transform: translate(0, 0); opacity: 0.4; }
}

/* Hero Content */
.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.service-hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #00e1ff, #00b4d8, #00c853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(0, 180, 216, 0.3);
  margin-bottom: 20px;
}

.service-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.breadcrumb-nav .breadcrumb {
  background: transparent;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
.breadcrumb-item a {
  color: #a8e0ff;
  text-decoration: none;
  transition: 0.3s;
}
.breadcrumb-item a:hover {
  color: #fff;
}
.breadcrumb-item.active {
  color: #ffffff;
  opacity: 0.8;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #a8e0ff;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .service-hero {
    padding: 120px 20px 90px;
  }
  .service-hero-title {
    font-size: 2.2rem;
  }
  .service-hero-subtitle {
    font-size: 1rem;
  }
}

/* =============================
   WEB DEVELOPMENT DETAIL SECTION
============================= */
.webdev-detail-section {
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 100px 0;
  overflow: hidden;
}

/* Animated background gradient waves */
.webdev-bg-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 300px;
  background: radial-gradient(circle at 30% 40%, rgba(0, 180, 216, 0.15), transparent 70%),
              radial-gradient(circle at 70% 60%, rgba(0, 200, 83, 0.15), transparent 70%);
  animation: moveWave 10s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes moveWave {
  0% { transform: translateX(0); opacity: 0.5; }
  100% { transform: translateX(-25%); opacity: 0.7; }
}

/* Image */
.webdev-image-wrapper {
  position: relative;
  display: inline-block;
}
.webdev-image {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
}
.floating-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: 1;
  animation: floatGlow 10s infinite ease-in-out;
}
.floating-blur.blur1 {
  width: 250px;
  height: 250px;
  background: #00b4d8;
  top: -40px;
  left: -50px;
}
.floating-blur.blur2 {
  width: 300px;
  height: 300px;
  background: #00c853;
  bottom: -50px;
  right: -60px;
}
@keyframes floatGlow {
  0% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(30px, -20px); opacity: 0.6; }
  100% { transform: translate(0, 0); opacity: 0.4; }
}

/* Content */
.webdev-content {
  position: relative;
  z-index: 2;
}
.webdev-content .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d1b2a;
}
.webdev-content .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.webdev-content .section-desc {
  font-size: 1.05rem;
  color: #555;
  margin-top: 15px;
  margin-bottom: 25px;
}

/* Highlights */
.webdev-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.webdev-highlights li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.webdev-highlights i {
  color: #00b4d8;
  font-size: 1.2rem;
}

/* CTA Button */
.btn-primary-glow {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.4);
}
.btn-primary-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.6);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .webdev-detail-section {
    padding: 80px 20px;
  }
  .webdev-content {
    text-align: center;
  }
  .webdev-content .section-title {
    font-size: 1.9rem;
  }
  .webdev-highlights {
    align-items: center;
  }
}

/* =============================
   OUR DEVELOPMENT PROCESS SECTION
============================= */
.dev-process {
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 100px 0;
  overflow: hidden;
}

/* Floating Gradient Lights */
.process-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.4;
  z-index: 0;
  animation: floatGlow 10s ease-in-out infinite;
}
.process-glow.glow1 {
  width: 400px;
  height: 400px;
  background: #00b4d8;
  top: -100px;
  left: -100px;
}
.process-glow.glow2 {
  width: 350px;
  height: 350px;
  background: #00c853;
  bottom: -120px;
  right: -100px;
}
@keyframes floatGlow {
  0% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(30px, -20px); opacity: 0.6; }
  100% { transform: translate(0, 0); opacity: 0.4; }
}

/* Titles */
.dev-process .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d1b2a;
}
.dev-process .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dev-process .section-desc {
  color: #555;
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto 60px;
}

/* Timeline */
.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 30px;
  padding: 30px 0;
}
.process-timeline::-webkit-scrollbar {
  display: none;
}

/* Gradient line connector */
.process-line {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  background-size: 300% 300%;
  animation: gradientShift 5s linear infinite;
  z-index: 1;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Process Step */
.process-step {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 240px;
  flex-shrink: 0;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  z-index: 2;
  border: 2px solid transparent;
}
.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 180, 216, 0.25);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
}

/* Icon */
.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c853, #00b4d8, #ff6f00);
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  animation: floatIcon 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive (vertical layout) */
@media (max-width: 991px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .process-line {
    display: none;
  }
}

/* =============================
   TECHNOLOGIES WE USE SECTION
============================= */
.tech-stack {
  position: relative;
  background: linear-gradient(180deg, #001a3d 0%, #003c78 50%, #005fa3 100%);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

/* Floating Glow Orbs */
.tech-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
  animation: floatGlow 10s ease-in-out infinite;
}
.tech-glow.glow1 {
  width: 400px;
  height: 400px;
  background: #00b4d8;
  top: -80px;
  left: -100px;
}
.tech-glow.glow2 {
  width: 350px;
  height: 350px;
  background: #00c853;
  bottom: -100px;
  right: -120px;
}
@keyframes floatGlow {
  0% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(40px, -30px); opacity: 0.6; }
  100% { transform: translate(0, 0); opacity: 0.4; }
}

/* Title Styling */
.tech-stack .section-title {
  font-size: 2.4rem;
  font-weight: 700;
}
.tech-stack .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tech-stack .section-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 750px;
  margin: 0 auto 60px;
}

/* Tech Cards */
.tech-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px 10px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transform: translateY(0);
}
.tech-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
  border-color: rgba(0,180,216,0.4);
}
.tech-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}
.tech-card:hover img {
  transform: rotate(10deg) scale(1.1);
}
.tech-card p {
  color: #fff;
  margin-top: 10px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .tech-stack {
    padding: 80px 20px;
  }
  .tech-card img {
    width: 50px;
    height: 50px;
  }
}

/* =============================
   WHY CHOOSE US SECTION
============================= */
.why-choose-us {
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 100px 0;
  overflow: hidden;
}
.why-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.4;
  z-index: 0;
  animation: floatGlow 10s ease-in-out infinite;
}
.why-glow.glow1 {
  width: 400px;
  height: 400px;
  background: #00b4d8;
  top: -100px;
  left: -100px;
}
.why-glow.glow2 {
  width: 350px;
  height: 350px;
  background: #00c853;
  bottom: -100px;
  right: -100px;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 180, 216, 0.25);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
}
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c853, #00b4d8, #ff6f00);
  color: #fff;
  font-size: 1.8rem;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 3s ease-in-out infinite;
}
.why-card h4 {
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 10px;
}
.why-card p {
  color: #555;
  font-size: 0.95rem;
}

/* =============================
   INDUSTRIES WE SERVE SECTION
============================= */
.industries-serve {
  background: linear-gradient(135deg, #001a3d 0%, #004078 50%, #0062a3 100%);
  color: #fff;
  padding: 100px 0;
}
.industry-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 10px;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}
.industry-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
}
.industry-card i {
  font-size: 2rem;
  color: #00e1ff;
  margin-bottom: 10px;
}
.industry-card p {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

/* =============================
   ENGAGEMENT MODELS SECTION
============================= */
.engagement-models {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 100px 0;
}
.model-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}
.model-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 180, 216, 0.25);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.2);
}
.model-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c853, #00b4d8, #ff6f00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 15px;
  animation: floatIcon 3s ease-in-out infinite;
}
.model-card h4 {
  color: #0d1b2a;
  font-weight: 600;
  margin-bottom: 10px;
}
.model-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Common animations */
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   CLIENTS PAGE HERO SECTION
============================= */
.clients-hero {
  position: relative;
  background: linear-gradient(135deg, #001a3d 0%, #003c78 50%, #005fa3 100%);
  color: #fff;
  padding: 150px 0 120px;
  overflow: hidden;
  text-align: center;
}

.clients-hero .hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.clients-hero .hero-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clients-hero .hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}
.breadcrumb-item a {
  color: #a8e0ff;
  text-decoration: none;
  transition: 0.3s;
}
.breadcrumb-item a:hover {
  color: #fff;
}
.breadcrumb-item.active {
  color: #ffffff;
  opacity: 0.8;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #a8e0ff;
}

/* Floating gradient orbs */
.clients-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatOrb 10s ease-in-out infinite;
  z-index: 0;
}
.clients-orb.orb1 {
  width: 400px;
  height: 400px;
  background: #00b4d8;
  top: -100px;
  left: -80px;
  animation-delay: 0s;
}
.clients-orb.orb2 {
  width: 350px;
  height: 350px;
  background: #00c853;
  bottom: -100px;
  right: -120px;
  animation-delay: 3s;
}
.clients-orb.orb3 {
  width: 250px;
  height: 250px;
  background: #ff6f00;
  top: 30%;
  right: 20%;
  animation-delay: 5s;
}
@keyframes floatOrb {
  0% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(30px, -20px); opacity: 0.6; }
  100% { transform: translate(0, 0); opacity: 0.4; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .clients-hero {
    padding: 120px 20px 100px;
  }
  .clients-hero .hero-title {
    font-size: 2rem;
  }
  .clients-hero .hero-subtitle {
    font-size: 1rem;
  }
}

/* =============================
   CLIENTS STATIC GRID SHOWCASE (LIGHT BACKGROUND)
============================= */
.clients-grid-section {
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
  color: #001a3d;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

/* Decorative floating shapes for elegance */
.clients-grid-section::before,
.clients-grid-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  z-index: 0;
}
.clients-grid-section::before {
  width: 400px;
  height: 400px;
  background: #00b4d8;
  top: -100px;
  left: -100px;
}
.clients-grid-section::after {
  width: 300px;
  height: 300px;
  background: #ff6f00;
  bottom: -120px;
  right: -80px;
}

.clients-grid-section .section-title {
  color: #001a3d;
}
.clients-grid-section .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.clients-grid-section .section-desc {
  color: #444;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
}

/* Client Logo Cards */
.client-logo-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 25px 15px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}
.client-logo-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,180,216,0.3);
  border-color: rgba(0,180,216,0.4);
}

/* Logos */
.client-logo-card img {
  height: 55px;
  width: auto;
  max-width: 100%;
  opacity: 0.8;
  transition: all 0.4s ease;
  filter: brightness(0.1);
}
.client-logo-card:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(0,180,216,0.5)) brightness(1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .clients-grid-section {
    padding: 80px 20px;
  }
  .client-logo-card img {
    height: 45px;
  }
}

/* =============================
   INDUSTRIES PAGE HERO
============================= */
.industries-hero {
  position: relative;
  background: linear-gradient(135deg, #001a3d 0%, #003c78 50%, #005fa3 100%);
  color: #fff;
  text-align: center;
  padding: 150px 0 120px;
  overflow: hidden;
}

.industries-hero .hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.industries-hero .hero-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.industries-hero .hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 750px;
  margin: 0 auto 30px;
}

.industries-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatOrb 10s ease-in-out infinite;
}
.industries-orb.orb1 {
  width: 400px; height: 400px;
  background: #00b4d8; top: -80px; left: -100px;
}
.industries-orb.orb2 {
  width: 350px; height: 350px;
  background: #00c853; bottom: -100px; right: -100px;
}
.industries-orb.orb3 {
  width: 250px; height: 250px;
  background: #ff6f00; top: 40%; right: 25%;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(30px, -20px); opacity: 0.6; }
}

/* =============================
   INDUSTRIES GRID SECTION
============================= */
.industries-grid-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
  color: #001a3d;
  padding: 100px 20px;
}

.industries-grid-section .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.industries-grid-section .section-desc {
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Industry Card */
.industry-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.industry-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(0,200,83,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.industry-card:hover::after {
  opacity: 1;
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,180,216,0.3);
}

.icon-wrapper {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.industry-card:hover .icon-wrapper {
  color: #00c853;
  transform: scale(1.1);
}

.industry-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}
.read-more {
  color: #00b4d8;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.read-more:hover {
  color: #00c853;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .industries-hero {
    padding: 120px 20px 100px;
  }
  .industries-hero .hero-title {
    font-size: 2rem;
  }
  .industry-card {
    padding: 30px 20px;
  }
}

/* HERO SECTION */
.industry-detail-hero {
  position: relative;
  background: linear-gradient(135deg, #001a3d 0%, #003c78 50%, #005fa3 100%);
  color: #fff;
  text-align: center;
  padding: 150px 0 120px;
  overflow: hidden;
}
.industry-detail-hero .hero-title {
  font-size: 2.6rem;
  font-weight: 700;
}
.industry-detail-hero .hero-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.industry-detail-hero .hero-subtitle {
  max-width: 750px;
  margin: 15px auto 30px;
  color: rgba(255,255,255,0.9);
}
.industry-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatOrb 10s infinite ease-in-out;
}
.industry-glow.glow1 { width: 400px; height: 400px; background: #00b4d8; top: -100px; left: -100px; }
.industry-glow.glow2 { width: 350px; height: 350px; background: #00c853; bottom: -100px; right: -120px; }

/* INDUSTRY OVERVIEW */
.industry-overview {
  background: #f8fbff;
  padding: 100px 20px;
}
.industry-overview .section-title span {
  color: #00b4d8;
}
.overview-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

/* HOW CYBERSOFT HELPS */
.how-cybersoft-helps {
  background: linear-gradient(180deg, #001a3d 0%, #003c78 50%, #005fa3 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.how-cybersoft-helps .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.help-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.help-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,180,216,0.4);
}
.help-card i {
  font-size: 2rem;
  color: #00b4d8;
  margin-bottom: 15px;
}
.help-card:hover i {
  color: #00c853;
}

/* KEY SOLUTIONS */
.industry-solutions {
  background: #f8fbff;
  padding: 100px 20px;
  text-align: center;
}
.solution-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 20px;
  transition: 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.solution-card i {
  font-size: 2.2rem;
  color: #00b4d8;
  margin-bottom: 15px;
  transition: 0.3s;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,180,216,0.3);
}
.solution-card:hover i {
  color: #00c853;
}

/* HERO SECTION */
.insights-hero {
  position: relative;
  background: linear-gradient(135deg, #001a3d 0%, #003c78 50%, #005fa3 100%);
  color: #fff;
  text-align: center;
  padding: 150px 0 120px;
  overflow: hidden;
}
.insights-hero .hero-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insights-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatOrb 10s infinite ease-in-out;
}
.insights-glow.glow1 { width: 400px; height: 400px; background: #00b4d8; top: -100px; left: -100px; }
.insights-glow.glow2 { width: 350px; height: 350px; background: #00c853; bottom: -100px; right: -120px; }

/* GRID SECTION */
.insights-grid {
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
  padding: 100px 20px;
  color: #001a3d;
}
.insights-grid .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insights-grid .section-desc {
  max-width: 700px;
  color: #555;
}

/* INSIGHT CARD */
.insight-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,180,216,0.3);
}
.insight-img {
  position: relative;
}
.insight-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s ease;
}
.insight-card:hover .insight-img img {
  transform: scale(1.05);
}
.insight-img .category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(90deg, #00b4d8, #00c853);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 12px;
}

/* CONTENT */
.insight-content {
  padding: 25px;
  text-align: left;
}
.insight-content h5 a {
  color: #001a3d;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.insight-content h5 a:hover {
  color: #00b4d8;
}
.insight-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 12px 0 20px;
}
.insight-content .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #666;
}
.insight-content .read-more {
  color: #00b4d8;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.insight-content .read-more:hover {
  color: #00c853;
}

/* BUTTON */
.btn-glow {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 35px;
  font-weight: 600;
  transition: 0.4s ease;
  animation: gradientShift 6s ease infinite;
}
.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,180,216,0.4);
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 991px) {
  .insight-img img { height: 180px; }
  .insight-content { padding: 20px; }
}

/* HERO SECTION */
.insight-detail-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.insight-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.insight-detail-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,26,61,0.8), rgba(0,60,120,0.6));
}
.insight-detail-hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 800px;
}
.insight-detail-hero .hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
}
.insight-detail-hero .meta {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin-top: 10px;
}
.insight-detail-hero .meta span {
  color: #00b4d8;
  font-weight: 600;
}

/* ARTICLE CONTENT */
.insight-article {
  padding: 80px 20px;
  background: #fff;
  color: #001a3d;
}
.article-content .lead {
  font-size: 1.15rem;
  color: #444;
  font-weight: 500;
}
.article-content h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  color: #003c78;
}
.article-content p, .article-content ul {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}
.article-content ul {
  list-style: disc;
  padding-left: 20px;
}
.article-content blockquote {
  background: #f1f8fc;
  border-left: 4px solid #00b4d8;
  padding: 20px 30px;
  margin: 30px 0;
  font-style: italic;
  color: #003c78;
  border-radius: 6px;
}
.article-content blockquote span {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}
.article-image {
  width: 100%;
  border-radius: 16px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* AUTHOR BOX */
.author-box {
  background: linear-gradient(135deg, #f8fbff, #eef3fa);
  border-radius: 16px;
  padding: 25px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info {
  flex: 1;
  margin-left: 20px;
}
.author-info h5 span {
  color: #00b4d8;
}
.social-icons a {
  color: #003c78;
  margin-left: 10px;
  font-size: 1.2rem;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #00b4d8;
}

/* RELATED INSIGHTS */
.related-insights {
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fa 100%);
  padding: 100px 20px;
  text-align: center;
}
.related-insights .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.related-insights .insight-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  background: #fff;
  transition: all 0.3s;
}
.related-insights .insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,180,216,0.3);
}
.related-insights .insight-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.related-insights .insight-content {
  padding: 20px;
}
.related-insights .insight-content h5 a {
  color: #001a3d;
  text-decoration: none;
  transition: 0.3s;
}
.related-insights .insight-content h5 a:hover {
  color: #00b4d8;
}


/* SIDEBAR WRAPPER */
.sidebar {
  margin-top: 30px;
}
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.sidebar-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,180,216,0.15);
}
.widget-title {
  font-weight: 700;
  color: #003c78;
  margin-bottom: 18px;
  border-bottom: 2px solid #00b4d8;
  display: inline-block;
  padding-bottom: 4px;
}

/* SEARCH BOX */
.search-box form {
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}
.search-box button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #00b4d8;
  font-size: 1.2rem;
}

/* CATEGORIES */
.categories ul {
  list-style: none;
  padding: 0;
}
.categories li {
  margin-bottom: 10px;
}
.categories li a {
  color: #003c78;
  text-decoration: none;
  transition: 0.3s;
}
.categories li a:hover {
  color: #00b4d8;
}

/* RECENT POSTS */
.recent-posts ul {
  list-style: none;
  padding: 0;
}
.recent-posts li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.recent-posts img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 12px;
}
.recent-posts .info a {
  color: #003c78;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}
.recent-posts .info a:hover {
  color: #00b4d8;
}
.recent-posts .info span {
  font-size: 0.8rem;
  color: #777;
}

/* TAG CLOUD */
.tags .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags .tag-cloud a {
  background: #eef3fa;
  color: #003c78;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.3s;
}
.tags .tag-cloud a:hover {
  background: #00b4d8;
  color: #fff;
}

/* SUBSCRIBE BOX */
.subscribe-box p {
  font-size: 0.9rem;
  color: #555;
}
.subscribe-box input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  outline: none;
}
.subscribe-box .btn-glow {
  width: 100%;
  padding: 10px 0;
}

/* HERO SECTION */
.contact-hero {
  position: relative;
  background: linear-gradient(135deg, #001a3d 0%, #003c78 50%, #005fa3 100%);
  color: #fff;
  text-align: center;
  padding: 150px 0 120px;
  overflow: hidden;
}
.contact-hero .hero-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatOrb 10s infinite ease-in-out;
}
.contact-glow.glow1 { width: 400px; height: 400px; background: #00b4d8; top: -100px; left: -100px; }
.contact-glow.glow2 { width: 350px; height: 350px; background: #00c853; bottom: -100px; right: -120px; }

/* INFO CARDS */
.contact-info {
  background: #f8fbff;
  padding: 100px 20px;
}
.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,180,216,0.3);
}
.info-card i {
  font-size: 2rem;
  color: #00b4d8;
  margin-bottom: 12px;
}
.info-card h5 {
  font-weight: 700;
  color: #003c78;
  margin-bottom: 10px;
}

/* FORM SECTION */
.contact-form-section {
  background: linear-gradient(180deg, #001a3d 0%, #003c78 50%, #005fa3 100%);
  color: #fff;
  padding: 100px 20px;
}
.contact-form-section .section-title span {
  background: linear-gradient(90deg, #00c853, #00b4d8, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-form-section .form-control,
.contact-form-section .form-select {
  border-radius: 10px;
  border: none;
  padding: 12px 15px;
}
.contact-form-section .form-control:focus {
  box-shadow: 0 0 8px rgba(0,180,216,0.5);
}
.contact-form-section textarea {
  resize: none;
}
.contact-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.contact-points li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.contact-points i {
  color: #00c853;
  margin-right: 8px;
}

/* MAP SECTION */
.map-section {
  background: #f8fbff;
  text-align: center;
  padding: 100px 20px;
}
.world-map {
  width: 80%;
  max-width: 900px;
  margin-top: 30px;
  opacity: 0.85;
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.1));
}
