:root {
  /* Corporate Color Palette */
  --primary: #004481; /* Deep Corporate Blue */
  --primary-light: #005bb5;
  --primary-dark: #002d56;

  --accent: #f05d23; /* Energetic Orange */
  --accent-hover: #d14915;

  /* New UI Colors */
  --purple-light: #9a86fd;
  --teal-light: #4bc9c0;
  --yellow-light: #f7b731;
  --red-dark: #b30000;

  --bg-main: #ffffff;
  --bg-light: #f4f7f9;
  --bg-dark: #121212; /* Darker for Straive look */

  --text-main: #333333;
  --text-muted: #666666;
  --text-light: #ffffff;

  --border-color: #e1e5eb;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading: "Roboto", sans-serif;
  --font-body: "Inter", sans-serif;

  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

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

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

.text-center {
  text-align: center;
}
.text-white {
  color: #ffffff !important;
}
.bg-dark {
  background-color: var(--bg-dark);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

/* Sidebar & Navigation */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-logo {
  height: 60px;
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
}

.sidebar-content {
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-nav a {
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--text-main);
  border-bottom: 1px solid var(--bg-light);
  padding-bottom: 0.5rem;
}

.sidebar-social {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.sidebar-social h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.social-icons a {
  margin-right: 15px;
  font-weight: bold;
  color: var(--primary);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

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

.brand-logo {
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-logo:hover {
  transform: scale(1.02);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.social-mini {
  display: flex;
  gap: 1rem;
}
.social-mini a {
  color: var(--text-main);
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
}

/* Quick Services (Colorful Row) */
.quick-services {
  width: 100%;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.quick-services-row {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
}

.quick-service-btn {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  min-height: 220px;
  padding: 2rem 1.5rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    filter 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-service-btn:first-child {
  border-left: none;
}

.quick-service-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.quick-service-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-7px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.1);
}

.quick-service-btn i {
  font-size: 2.5rem !important;
  opacity: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.quick-service-btn span {
  display: inline-block;
  line-height: 1.25;
  font-weight: 700;
  max-width: 220px;
  letter-spacing: -0.02em;
}

.bg-purple {
  background: linear-gradient(135deg, #7d56d8 0%, #6b42cb 100%);
}
.bg-teal {
  background: linear-gradient(135deg, #4dc7b5 0%, #1eac9a 100%);
}
.bg-yellow {
  background: linear-gradient(135deg, #f0b956 0%, #e8a538 100%);
  color: var(--text-main);
}
.bg-yellow svg {
  stroke: var(--text-main);
}

@media (max-width: 991px) {
  .quick-services-row {
    flex-wrap: wrap;
  }

  .quick-service-btn {
    flex: 1 1 50%;
    min-height: 180px;
  }
}

@media (max-width: 576px) {
  .quick-services {
    margin-top: -20px;
  }

  .quick-services-row {
    flex-direction: column;
    border-radius: 18px 18px 0 0;
  }

  .quick-service-btn {
    flex: 1 1 100%;
    min-height: 150px;
    font-size: 1.05rem;
  }
}

/* Transforming Section */
.transform-section {
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sub-heading {
  display: inline-block;
  padding: 6px 22px;
  border: 1.5px solid rgba(0, 68, 129, 0.25);
  border-radius: 30px;
  background: rgba(0, 68, 129, 0.05);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 1.25rem;
}

.transform-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.transform-content > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 68, 129, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.feature-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.transform-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

/* Explore Capabilities (Straive Style Dark) */
.capabilities-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f7fafc 0%, #edf3f8 100%);
}

.capabilities-section .section-title {
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.cap-card {
  background: #ffffff;
  border: 1px solid rgba(0, 68, 129, 0.08);
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  box-shadow: 0 12px 28px rgba(15, 45, 86, 0.06);
}

.cap-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 68, 129, 0.16);
  box-shadow: 0 22px 42px rgba(15, 45, 86, 0.12);
}

.cap-icon-box {
  height: 80px;
  margin-bottom: 2rem;
}

.cap-card h3,
.cap-card h5 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.cap-card p {
  color: #5b6472;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cap-card a,
.cap-card .d-flex,
.cap-card .d-inline-flex {
  text-decoration: none;
}

.btn-neon {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}
.btn-neon:hover {
  background: var(--accent-hover);
}

/* Areas of Expertise (Aptara Style) */
.expertise-section {
  padding: 6rem 2rem;
}

.expertise-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.btn-outline-red {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.btn-outline-red:hover {
  background: var(--primary);
  color: #fff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.expert-card {
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.expert-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.expert-content {
  padding: 2rem;
}

.expert-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.red-link {
  color: var(--red-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.red-link:hover {
  color: #000;
}

/* Footer */
.footer {
  background: #ffffff !important;
  color: #1a1a1a;
  padding-top: 5rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand-text {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-col a:hover {
  color: #0067b8;
  padding-left: 5px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background-color: #00315b;
  color: #ffffff !important;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.footer-social-icon:hover {
  background-color: #ffffff !important;
  border: 1px solid #00315b;
  color: #000000 !important;
}

.footer-link {
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #0067b8 !important;
  padding-left: 5px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem 0;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.legal-links a {
  margin-left: 1.5rem;
  color: #a0aec0;
}
.legal-links a:hover {
  color: #fff;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .transform-section {
    grid-template-columns: 1fr;
  }
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .quick-services {
    flex-direction: column;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .expertise-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .bottom-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
/* Main Desktop Navigation */
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav > a.active,
.main-nav .dropdown-toggle.active {
  color: var(--primary);
  box-shadow: inset 0 -2px 0 var(--primary);
}

.main-nav .dropdown-toggle::after {
  display: none;
}

.main-nav .nav-dropdown-icon {
  margin-left: 0.35rem;
  font-size: 0.65rem;
  vertical-align: 0.08em;
  transition: transform 0.2s ease;
}

.main-nav .dropdown:hover .nav-dropdown-icon,
.main-nav .dropdown.show .nav-dropdown-icon {
  transform: rotate(180deg);
}

.main-nav a:hover::after {
  width: 100%;
}

@media (max-width: 991px) {
  .d-none.d-lg-flex {
    display: none !important;
  }
}
/* Header Social Icons Reference Style */
.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}
.social-circle:hover {
  background-color: var(--primary);
  color: #fff;
}
.nav-right.d-flex {
  display: flex;
  align-items: center;
}
/* Dropdown Hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.gap-2 {
  gap: 0.5rem;
}
.me-3 {
  margin-right: 1rem;
}
/* Quick Services Overlap */
.quick-services {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.quick-service-btn {
  align-items: center;
  gap: 15px;
  padding: 2rem;
  color: white;
  font-weight: 600;
}

/* NEW HOMEPAGE REDESIGN CSS */
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0;
  min-height: 90vh;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 34, 68, 0.95) 0%,
    rgba(0, 34, 68, 0.5) 100%
  );
  z-index: 1;
}

/* Quick Services Overlap */
.quick-services {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.quick-service-btn {
  padding: 2.5rem 2rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
}
.quick-service-btn:hover {
  transform: translateY(-5px);
}
.quick-service-btn svg {
  margin-bottom: 1rem;
  width: 36px;
  height: 36px;
}

/* Explore Capabilities - Dark Card */
.dark-card {
  background-color: #111;
  border: 1px solid #333;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dark-card:hover {
  transform: translateY(-5px);
  border-color: #f05d23;
}
.dark-card h3 {
  color: #fff;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}
.dark-card p {
  color: #aaa;
  flex-grow: 1;
}
.dark-card .btn-neon {
  align-self: flex-start;
}

/* Primary Blue Accent Icons */
.orange-accent svg {
  stroke: var(--primary);
}
.btn-neon {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.3s ease;
}
.btn-neon:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  color: #fff;
}

/* Clean Corporate Card (Our Expertise) */
.clean-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.clean-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.clean-card .expert-content {
  padding: 1.5rem;
}

.clean-card h3 {
  font-size: 1.25rem;
  color: #002244;
  margin-bottom: 1rem;
}

/* Impact & Testimonials */
.impact-stat {
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.impact-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.testimonial-card {
  border-left: 4px solid #004481;
}

/* PREMIUM DESIGN IMPROVEMENTS */

/* Hero Enhancements */
.hero-content .badge {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 68, 129, 0.4);
}
.hero-content h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}
.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #004481 0%, #0066cc 100%);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 68, 129, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 68, 129, 0.6);
}

/* Testimonials Enhancements */
.testimonial-card {
  position: relative;
  border: none;
  border-top: 4px solid #f05d23;
  border-radius: 12px;
  padding: 2.5rem !important;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  z-index: 1;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}
.testimonial-card::before {
  content: "\f10d"; /* FontAwesome quote-left */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: rgba(240, 93, 35, 0.1);
  z-index: -1;
}
.testimonial-card p {
  font-style: italic;
  color: #555;
  line-height: 1.8;
}

/* CTA Enhancements */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 !important;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  z-index: 0;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section .btn-light {
  color: #004481;
  border-radius: 30px;
  transition: all 0.3s;
}
.cta-section .btn-light:hover {
  background: #f05d23;
  color: white;
  transform: scale(1.05);
}

/* Footer Enhancements */
.footer {
  background: #ffffff !important; /* Clean white */
  border-top: 4px solid var(--primary) !important;
  font-size: 0.95rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.04);
}
.footer h5 {
  color: var(--primary-dark) !important;
  letter-spacing: 0.5px;
  font-size: 1.15rem;
  font-weight: 700;
}
.footer .footer-link {
  color: #4a5568 !important;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
}
.footer .footer-link:hover {
  color: var(--primary) !important;
  padding-left: 6px;
}
.footer .social-circle {
  background: #f8fafc !important;
  color: #4a5568 !important;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.3s ease;
}
.footer .social-circle:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 68, 129, 0.2);
}

/* NEW DESIGN UPGRADES */

/* CTA Section Pattern & Buttons */
.cta-section {
  position: relative;
  background-image:
    radial-gradient(
      circle at 100% 100%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 0% 0%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}
.btn-cta {
  background-color: #f05d23;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-cta:hover {
  background-color: #d04d1c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(240, 93, 35, 0.4);
}

/* Hero Badge */
.hero-badge {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Testimonial Watermark & Styling */
.testimonial-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
.testimonial-card::before {
  content: "\f10d"; /* FontAwesome quote-left */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 6rem;
  color: rgba(0, 68, 129, 0.05);
  z-index: 0;
}
.testimonial-card > * {
  position: relative;
  z-index: 1;
}

/* Footer Fixes */
.footer-link {
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--primary) !important;
}
.social-circle {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.social-circle:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-3px);
}
.footer-border {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glass Panel for Impact Stats */
.glass-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.glass-panel:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

/* Quick Services Overlap Redesign */
.quick-services {
  margin-top: -100px;
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
}
.quick-service-btn {
  padding: 3rem 2rem;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s,
    background-color 0.3s;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.quick-service-btn:last-child {
  border-right: none;
}
.quick-service-btn:hover {
  transform: translateY(-5px);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.bg-purple {
  background-color: #6f42c1;
}
.bg-teal {
  background-color: #20c997;
}
.bg-yellow {
  background-color: #f0ad4e;
}

/* Our Expertise Hover Effect */
.clean-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.clean-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.clean-card img {
  transition: transform 0.5s ease;
}
.clean-card:hover img {
  transform: scale(1.05);
}
.expert-card {
  overflow: hidden;
}

/* Mobile & Tablet Responsive Fixes */
@media (max-width: 991px) {
  .hero-section {
    padding: 180px 15px 100px 15px !important;
    min-height: auto !important;
  }
  .hero-content {
    text-align: center;
  }
}
.footer .social-circle {
  transition:
    background 0.3s,
    transform 0.3s;
}
.footer .social-circle:hover {
  background: var(--primary) !important;
  transform: translateY(-3px);
}

/* NEW DESIGN UPGRADES */

/* CTA Section Pattern & Buttons */
.cta-section {
  position: relative;
  background-image:
    radial-gradient(
      circle at 100% 100%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 0% 0%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}
.btn-cta {
  background-color: #f05d23;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-cta:hover {
  background-color: #d04d1c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(240, 93, 35, 0.4);
}

/* Hero Badge */
.hero-badge {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: 500;
  white-space: normal;
}

/* Testimonial Watermark & Styling */
.testimonial-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
.testimonial-card::before {
  content: "\f10d"; /* FontAwesome quote-left */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 6rem;
  color: rgba(0, 68, 129, 0.05);
  z-index: 0;
}
.testimonial-card > * {
  position: relative;
  z-index: 1;
}

/* Footer Fixes */
.footer-link {
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--primary) !important;
}
.social-circle {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.social-circle:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-3px);
}
.footer-border {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Glass Panel for Impact Stats */
.glass-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.glass-panel:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

/* Quick Services Overlap Redesign */
.quick-services {
  margin-top: -100px;
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
}
.quick-service-btn {
  padding: 3rem 2rem;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s,
    background-color 0.3s;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.quick-service-btn:last-child {
  border-right: none;
}
.quick-service-btn:hover {
  transform: translateY(-5px);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.bg-purple {
  background-color: #6f42c1;
}
.bg-teal {
  background-color: #20c997;
}
.bg-yellow {
  background-color: #f0ad4e;
}

/* Our Expertise Hover Effect */
.clean-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.clean-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.clean-card img {
  transition: transform 0.5s ease;
}
.clean-card:hover img {
  transform: scale(1.05);
}
.expert-card {
  overflow: hidden;
}

/* Mobile & Tablet Responsive Fixes */
@media (max-width: 991px) {
  .hero-section {
    padding: 80px 15px 100px 15px !important;
    min-height: auto !important;
  }
  .hero-content {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 120px 15px !important;
  }
  .hero-content h1 {
    font-size: 26px !important;
  }
  .quick-services {
    margin-top: -40px !important;
  }

  /* Sidebar Mobile Fixes */
  .sidebar-nav a {
    font-size: 16px !important;
    padding-bottom: 0.25rem !important;
  }
  .sidebar-nav {
    gap: 0.5rem !important;
  }
  .sidebar-contact-info h5 {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
  }
  .sidebar-contact-info ul {
    font-size: 12px !important;
    margin-bottom: 1rem !important;
  }
  .sidebar-contact-info li {
    margin-bottom: 0.25rem !important;
  }
}

/* Sidebar width for laptops */
@media (min-width: 992px) {
  .sidebar {
    width: 450px;
    right: -450px;
  }
}

/* Responsive Text for CTA Section (Applied to Home, Contact, etc.) */
@media (max-width: 768px) {
  .cta-section h2.display-4,
  .cta-section h2 {
    font-size: 2rem !important;
  }
  .cta-section p.lead {
    font-size: 1rem !important;
  }
  .cta-section .btn {
    padding: 10px 24px !important;
    font-size: 0.95rem !important;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .cta-section h2.display-4,
  .cta-section h2 {
    font-size: 2.5rem !important;
  }
  .cta-section p.lead {
    font-size: 1.1rem !important;
  }
}
@media (min-width: 992px) {
  .cta-section h2.display-4,
  .cta-section h2 {
    font-size: 3rem !important;
  }
  .cta-section p.lead {
    font-size: 1.25rem !important;
  }
}

.quick-services .carousel-item .quick-service-btn {
  width: 100%;
  min-height: 150px;
}
.quick-services .carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Global 30px Pill Button Styling */
.btn,
.btn-primary,
.btn-outline-primary,
.btn-dark,
.btn-outline-dark,
.btn-light,
.btn-outline-light,
.btn-pill {
  border-radius: 30px !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-ms-blue {
  background-color: #0067b8 !important;
  border-color: #0067b8 !important;
  color: #ffffff !important;
  border-radius: 30px !important;
}
.btn-ms-blue:hover {
  background-color: #005293 !important;
  border-color: #005293 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 103, 184, 0.3);
}

/* Universal SLB Pill Badge */
.slb-pill-badge,
.sub-heading {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 24px !important;
  border: 1.5px solid rgba(0, 68, 129, 0.25) !important;
  border-radius: 30px !important;
  background: rgba(0, 68, 129, 0.06) !important;
  color: #004481 !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 1.25rem !important;
  box-shadow: 0 2px 8px rgba(0, 68, 129, 0.04) !important;
}

/* Modern Swiper Arrow Controls matching Hero */
.custom-swiper-prev,
.custom-swiper-next,
.swiper-button-prev,
.swiper-button-next {
  width: 48px !important;
  height: 48px !important;
  background-color: #ffffff !important;
  border: 1.5px solid #d0d7de !important;
  border-radius: 50% !important;
  color: #0067b8 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.25s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  cursor: pointer !important;
}
.custom-swiper-prev:after,
.custom-swiper-next:after,
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}
.custom-swiper-prev:hover,
.custom-swiper-next:hover,
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #0067b8 !important;
  border-color: #0067b8 !important;
  color: #ffffff !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0, 103, 184, 0.3) !important;
}
.swiper-button-next:hover {
  background-color: #0067b8 !important;
  border-color: #0067b8 !important;
  color: #ffffff !important;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 103, 184, 0.28) !important;
}

/* Microsoft "For business" Style Cards for Our Expertise */
.ms-for-business-section {
  background-color: #e8f3fa;
  padding: 5rem 0;
}
.ms-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 68, 129, 0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ms-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 68, 129, 0.12);
}
.ms-card-img-wrap {
  width: 100%;
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f1f4f7;
  margin-bottom: 1.25rem;
}
.ms-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ms-card:hover .ms-card-img-wrap img {
  transform: scale(1.04);
}
.ms-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ms-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  padding: 4px 10px;
  width: max-content;
  margin-bottom: 0.75rem;
}
.ms-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}
.ms-card-text {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.ms-card-btn {
  background-color: #0067b8;
  /* color: #424242 !important; */
  border: none;
  border-radius: 30px !important;
  padding: 8px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  align-self: flex-start;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.ms-card-btn:hover {
  background-color: #005293;
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* Global Impact Metric Tiles with 30px Border Radius & Glass Effect */
.impact-metric-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 30px !important;
  padding: 32px 20px !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18) !important;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease !important;
}
.impact-metric-card:hover {
  transform: translateY(-6px) !important;
  background: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.25) !important;
}
.impact-metric-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.14);
}
.impact-metric-number {
  font-size: 2.25rem !important;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.impact-metric-label {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* Dual-Tone Split CTA Card (from image copy 9.png) */
.cta-banner-wrapper {
  background-color: #f7f9fb;
  padding: 5rem 0;
  background-image: radial-gradient(#d1e1ee 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-split-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 20, 50, 0.1);
  border: 1px solid rgba(0, 68, 129, 0.08);
}
.cta-split-left {
  background: #ffffff;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-split-right {
  background: #021a36;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}
.cta-sub-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-split-left .cta-sub-tag {
  color: #0067b8;
}
.cta-split-right .cta-sub-tag {
  color: #5eb8ff;
}
.cta-accent-bar {
  width: 38px;
  height: 2px;
  margin-bottom: 1.5rem;
}
.cta-split-left .cta-accent-bar {
  background-color: #0067b8;
}
.cta-split-right .cta-accent-bar {
  background-color: #5eb8ff;
}
.cta-split-title {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.cta-split-left .cta-split-title {
  color: #121826;
}
.cta-split-right .cta-split-title {
  color: #ffffff;
}
.cta-split-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.cta-split-left .cta-split-desc {
  color: #555e6c;
}
.cta-split-right .cta-split-desc {
  color: #c0cde0;
}
/* Blue CTA button (replaces gold) */
.btn-cta-blue {
  background: #0067b8;
  color: #ffffff !important;
  border-radius: 30px !important;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid #0067b8;
  box-shadow: 0 4px 14px rgba(0, 103, 184, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  transition: all 0.3s ease;
}
.btn-cta-blue:hover {
  background: #ffffff;
  color: #0067b8 !important;
  border-color: #0067b8;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 103, 184, 0.3);
}

.btn-cta-gold {
  background: #b58d3d;
  color: #ffffff !important;
  border-radius: 30px !important;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 4px 14px rgba(181, 141, 61, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  transition: all 0.3s ease;
}
.btn-cta-gold:hover {
  background: #9d772f;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(181, 141, 61, 0.45);
}
.btn-cta-outline-white {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  border-radius: 30px !important;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  transition: all 0.3s ease;
}
.btn-cta-outline-white:hover {
  background: #ffffff;
  color: #021a36 !important;
  transform: translateY(-2px);
}

/* ============================================================
   GLOBAL BUTTON HOVER EFFECTS — bg-color + text-color change
   ============================================================ */

/* Primary blue button hover */
.btn-primary:hover,
.btn-ms-blue:hover {
  background-color: #005293 !important;
  border-color: #005293 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 147, 0.35) !important;
}

/* Outline dark → filled blue on hover (not black) */
.btn-outline-dark:hover {
  background-color: #0067b8 !important;
  color: #ffffff !important;
  border-color: #0067b8 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 103, 184, 0.3) !important;
}

/* Outline primary → filled primary on hover */
.btn-outline-primary:hover {
  background-color: #004481 !important;
  color: #ffffff !important;
  border-color: #004481 !important;
  transform: translateY(-2px);
}

/* Outline light → filled white on hover */
.btn-outline-light:hover {
  background-color: #ffffff !important;
  color: #0067b8 !important;
  transform: translateY(-2px);
}

/* btn-light → blue fill on hover */
.btn-light:hover {
  background-color: #0067b8 !important;
  color: #ffffff !important;
  border-color: #0067b8 !important;
  transform: translateY(-2px);
}

/* btn-dark → blue fill on hover */
.btn-dark:hover {
  background-color: #0067b8 !important;
  border-color: #0067b8 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 103, 184, 0.3) !important;
}

/* Generic .btn base transition */
.btn {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.3s ease !important;
}

/* ============================================================
   SECTION TITLE PILL WRAPPER STYLING
   Applies padding, border, border-radius:30px to h2 sections
   ============================================================ */

/* Pill-styled heading wrapper — wrap any major section h2 with this */
.section-title-pill {
  display: inline-block;
  padding: 8px 28px;
  border: 1.5px solid rgba(0, 68, 129, 0.2);
  border-radius: 30px;
  background: rgba(0, 68, 129, 0.04);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: -0.02em;
}

/* Section h2 headings — NO pill border/background. Clean text only.
   The pill design lives ONLY on .slb-pill-badge above the heading. */
.capabilities-section h2,
.ms-for-business-section h2,
.impact-section h2,
.testimonials-section h2,
.highlight-section h2,
.transform-section h2 {
  display: block;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  line-height: 1.25;
  margin-bottom: 1rem;
}

/* Impact section h2 stays white text only */
.impact-section h2 {
  color: #ffffff;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}

/* CTA titles — clean, no pill */
.cta-split-right .cta-split-title,
.cta-split-left .cta-split-title {
  display: block;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

/* ============================================================
   SERVICES SECTION — "Learn More" button styling
   ============================================================ */
.cap-card-learn-more,
.capabilities-section .text-primary.fw-bold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border: 1.5px solid #0067b8;
  border-radius: 30px;
  background: rgba(0, 103, 184, 0.05);
  color: #0067b8 !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.capabilities-section .text-primary.fw-bold:hover {
  background: #0067b8 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 103, 184, 0.3);
}

/* ============================================================
   TESTIMONIAL SECTION — Gold stars + enhanced card
   ============================================================ */

/* Replace grey stars with warm gold */
.testimonials-section .fa-star {
  color: #f5a623 !important;
}

.testimonial-card {
  border-left: none !important;
  border-top: 3px solid #0067b8 !important;
  border-radius: 20px !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
}
.testimonial-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 40px rgba(0, 68, 129, 0.12) !important;
}

/* Avatar ring */
.testimonials-section img.rounded-circle {
  border: 3px solid #0067b8;
  box-shadow: 0 0 0 3px rgba(0, 103, 184, 0.15);
}

/* ============================================================
   ENTERPRISE SOLUTIONS SECTION — polish
   ============================================================ */
.ms-for-business-section {
  background: linear-gradient(135deg, #e3f0fb 0%, #daeaf8 100%);
}

.ms-card {
  border-radius: 20px !important;
}

/* ============================================================
   GLOBAL IMPACT / CTA SECTION — polish
   ============================================================ */
.impact-section {
  position: relative;
}

.cta-banner-wrapper {
  background:
    linear-gradient(rgba(2, 26, 54, 0.88), rgba(2, 26, 54, 0.88)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80")
      center/cover fixed !important;
}

/* ============================================================
   HERO CAROUSEL BUTTON HOVER FIXES (inline style overrides)
   ============================================================ */
.hero-carousel-section .btn:hover {
  filter: brightness(1.05);
}

/* Swiper autoplay progress bar */
.swiper-pagination-bullet-active {
  background-color: #0067b8 !important;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(0, 68, 129, 0.3) !important;
  opacity: 1 !important;
  transition:
    background 0.3s ease,
    transform 0.3s ease !important;
}
.swiper-pagination-bullet-active {
  transform: scale(1.3) !important;
}
/* Custom styles for Enterprise Solutions Learn More Button & Badge */
.ms-card-badge-custom {
  background-color: #0067b8 !important;
  color: #ededed !important;
  border: none;
  padding: 4px 12px !important;
  border-radius: 22px !important;
  font-size: 0.55rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

.ms-card-btn-hover {
  background-color: transparent;
  color: #0067b8;
  border: 2px solid #0067b8;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ms-card-btn-hover .hover-icon-right {
  opacity: 0;
  width: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}

.ms-card-btn-hover:hover {
  background-color: #0067b8;
  color: #ffffff;
}

.ms-card-btn-hover:hover .hover-icon-right {
  opacity: 1;
  width: 15px;
  transform: translateX(0);
  margin-left: 8px;
}

/* Services Dropdown Styling */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInDown 0.3s ease;
  }
}

.dropdown-menu {
  border-radius: 8px !important;
  margin-top: 0 !important;
  padding: 0.75rem 0.5rem !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border: none;
  min-width: 220px;
}

.dropdown-item {
  font-weight: 600;
  font-size: 0.85rem;
  color: #334155;
  margin: 0.15rem 0;
  padding: 12px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(0, 103, 184, 0.05);
  color: #0067b8;
}

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

/* Mobile layout fixes for homepage carousels, CTA and infrastructure. */
@media (max-width: 767px) {
  .hero-carousel-section .carousel-control-prev,
  .hero-carousel-section .carousel-control-next,
  .hero-carousel-section .carousel-item .shadow-lg,
  .capabilities-section #capPrev,
  .capabilities-section #capNext,
  .ms-for-business-section #expPrev,
  .ms-for-business-section #expNext,
  .testimonialSwiper .swiper-button-prev,
  .testimonialSwiper .swiper-button-next {
    display: none !important;
  }

  .hero-carousel-section .carousel-item .container {
    min-height: auto !important;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .hero-carousel-section .carousel-item .row {
    min-height: auto;
  }

  .hero-carousel-section .carousel-item h1 {
    font-size: clamp(2.1rem, 10vw, 3rem) !important;
  }

  .hero-carousel-section .carousel-item .lead {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .cta-banner-wrapper {
    padding: 2.5rem 0 !important;
    background-attachment: scroll !important;
  }

  .cta-banner-wrapper .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cta-split-card {
    border-radius: 18px !important;
  }

  .cta-split-left,
  .cta-split-right {
    padding: 2.25rem 1.5rem !important;
  }

  .cta-split-title {
    font-size: 1.8rem !important;
  }

  .cta-split-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn-cta-blue,
  .btn-cta-outline-white {
    width: min(100%, 300px) !important;
    max-width: 300px;
    min-height: 48px;
    align-self: flex-start;
    justify-content: center;
    text-align: center;
    white-space: normal;
    padding: 11px 18px !important;
    border-radius: 30px !important;
    font-size: 0.78rem;
    letter-spacing: 0.35px;
    line-height: 1.25;
    gap: 10px;
    box-shadow: 0 8px 18px rgba(0, 103, 184, 0.24);
  }

  .btn-cta-outline-white {
    box-shadow: none;
  }

  .btn-cta-blue .fa-arrow-right,
  .btn-cta-outline-white .fa-arrow-right {
    margin-left: 0 !important;
  }

  .highlight-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .highlight-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .highlight-section .row {
    margin-left: 0;
    margin-right: 0;
    border-radius: 18px !important;
  }

  .highlight-section .col-lg-6.p-5 {
    padding: 2rem 1.5rem !important;
  }

  .highlight-section h2 {
    font-size: 1.8rem !important;
  }

  .highlight-section .lead {
    font-size: 1rem !important;
  }

  .highlight-section img {
    display: block;
    min-height: 240px !important;
    height: 240px !important;
  }
}
