:root {
  --primary-dark: #031246;
  --primary-medium: #05314f;
  --primary-light: #3a8fd4;
  --white: #fff;
  /* header-section */
  --border-radius: 30px;
  --border-width: 3px;
  --bg-color: #05314f;
  --text-color: #fff;
  /* slider-animation */
  --primary-color: #4361ee;
  --secondary-color: #3a0ca3;
  --accent-color: #4cc9f0;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
}

/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
  color: var(--primary-dark);
  background-color: #fff;
  /* background-color: #f8f9fa; */
}

/* =========================
   HEADER & NAVBAR STYLES START
========================= */

/* Poppins font for all navbar elements */
.navbar-nav,
.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle,
.navbar-nav .dropdown-item,
.header_btn_opt,
.consultant-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500 !important;
}

/* Navbar collapse */
.navbar-collapse {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
@media (min-width: 992px) {
  .navbar-collapse {
    position: static;
    background: none;
  }
}

/* Navbar toggler */
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 1em;
  height: 1em;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon div {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: transform 0.3s, top 0.3s, opacity 0.3s;
}
.navbar-toggler-icon::before {
  top: 0;
}
.navbar-toggler-icon div {
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggler-icon::after {
  bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon div {
  opacity: 0;
}

/* Consultant button */
.consultant-btn {
  position: relative;
  padding: 12px 30px;
  font-weight: 900 !important;
  color: var(--text-color);
  background: var(--bg-color);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
.consultant-btn::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--border-width));
  left: calc(-1 * var(--border-width));
  right: calc(-1 * var(--border-width));
  bottom: calc(-1 * var(--border-width));
  background: linear-gradient(
    270deg,
    #ff0055,
    #ff9900,
    #ffee00,
    #33ff00,
    #00ffee,
    #3300ff,
    #ff00ff,
    #ff0055
  );
  background-size: 800% 800%;
  border-radius: calc(var(--border-radius) + var(--border-width));
  z-index: -1;
  animation: rainbowBorder 5s linear infinite;
}
@keyframes rainbowBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Navbar items spacing */
@media (min-width: 992px) and (max-width: 1200px) {
  ul > li > a {
    padding: 5px !important;
  }
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .navbar-nav li > a {
    padding: 10px;
  }
  .nav-item.d-lg-none .consultant-btn {
    padding: 8px 20px;
    font-size: 13px;
    width: 50% !important;
    margin: 10px auto;
  }
}

/* =========================
   MATERIAL DROPDOWN STYLES
========================= */
.material-dropdown {
  position: relative;
}

/* Main dropdown menu */
.material-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  display: none;
  padding: 5px 0;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  list-style: none;
}

/* Show dropdown on hover/focus (desktop) */
.material-dropdown:hover > .dropdown-menu,
.material-dropdown:focus-within > .dropdown-menu {
  display: block;
}

/* Dropdown items */
.material-dropdown .dropdown-item {
  position: relative;
  padding: 10px 22px;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.material-dropdown .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Nested submenu */
.material-dropdown .dropdown-submenu {
  position: relative;
}
.material-dropdown .dropdown-submenu > a .arrow {
  float: right;
  transition: transform 0.3s ease;
}

/* Submenu for desktop (right side) */
.material-dropdown .dropdown-submenu .dropdown {
  top: 0;
  left: 100%;
  position: absolute;
  display: none;
  min-width: 180px;
  padding: 5px 0;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  list-style: none;
}
.material-dropdown .dropdown-submenu:hover > .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
}
.material-dropdown .dropdown-submenu:hover > a .arrow {
  transform: rotate(90deg);
}

/* Mobile view: dropdown toggle */
@media (max-width: 992px) {
  .material-dropdown .dropdown-menu {
    position: relative;
    display: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .material-dropdown.active > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .material-dropdown .dropdown-submenu .dropdown {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .material-dropdown .dropdown-submenu.active > .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding-left: 1rem;
  }
  .material-dropdown .dropdown-submenu.active > a .arrow {
    transform: rotate(90deg);
  }
}

/* =========================
   HEADER & NAVBAR STYLES END
========================= */

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-medium) 100%
  );
  color: var(--white);
  padding: 20px 0;
}

/* Section Titles */
.section-title {
  color: var(--primary-dark);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-light);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--primary-medium);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Client Cards - Consolidated Version */
.client-card {
  background: var(--white);
  border-radius: 12px;
  /* padding: 30px 25px; */
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.client-card:hover::before {
  transform: scaleX(1);
}

.client-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.client-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.client-logo i {
  font-size: 3.5rem;
  color: var(--primary-medium);
  transition: all 0.3s ease;
}

.client-card:hover .client-logo i {
  color: var(--primary-light);
  transform: scale(1.1);
}

.client-name {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.client-industry {
  color: var(--primary-medium);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: inline-block;
  padding: 6px 15px;
  background-color: rgba(58, 143, 212, 0.1);
  border-radius: 20px;
  font-weight: 500;
}

.client-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.client-link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.client-link:hover {
  color: var(--primary-dark);
}

.client-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.client-link:hover i {
  transform: translateX(5px);
}

/* Testimonials */
.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--primary-medium);
  margin-bottom: 20px;
}

.client-position {
  color: var(--primary-light);
  font-size: 0.9rem;
}

/* Stats Sections */
.stats-section {
  background-color: var(--primary-medium);
  color: var(--white);
  padding: 80px 0;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.stats-counter {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-medium) 100%
  );
  border-radius: 12px;
  padding: 40px 30px;
  margin-top: 60px;
  color: var(--white);
  text-align: center;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  font-weight: 500;
  padding: 10px 25px;
}

.btn-primary:hover {
  background-color: var(--primary-medium);
  border-color: var(--primary-medium);
}

/* Icons */
.icon-box {
  width: 70px;
  height: 70px;
  background-color: rgba(58, 143, 212, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  font-size: 30px;
  color: var(--primary-light);
}

/* Section Backgrounds */
.client-section {
  padding: 40px 0 0 0;

  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.client-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.client-card:nth-child(1) {
  animation-delay: 0.1s;
}
.client-card:nth-child(2) {
  animation-delay: 0.2s;
}
.client-card:nth-child(3) {
  animation-delay: 0.3s;
}
.client-card:nth-child(4) {
  animation-delay: 0.4s;
}
.client-card:nth-child(5) {
  animation-delay: 0.5s;
}
.client-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Footer-section */

.site-footer {
  background-color: #031246;
  color: #fff;
  padding: 40px 0 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #4dabf7;
}

.social-links > a {
  text-decoration: none;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0;
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #4dabf7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item svg {
  color: #4dabf7;
  width: 16px;
  height: 16px;
}

.hiring-text {
  margin-bottom: 15px;
  color: #ccc;
}

.hiring-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.role-btn,
.apply-all-btn {
  background-color: transparent;
  border: 1px solid #4dabf7;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 12px;
}

.role-btn:hover,
.apply-all-btn:hover {
  background-color: #4dabf7;
}

.apply-all-btn {
  background-color: #4dabf7;
  padding: 8px 16px;
  font-size: 14px;
}

.apply-all-btn:hover {
  background-color: #3a8fd4;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-section {
    min-width: 100%;
  }
}

/* slider-animation-style */

.hero-section {
  padding: 20px 0;
}

.slider-container {
  width: 100%;
  height: 430px;
  perspective: 2000px;
  margin: 0 auto;
  position: relative;
  /* overflow: hidden; */
}

.ring {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 40s infinite linear;
}

.ring.paused {
  animation-play-state: paused;
}

.image {
  position: absolute;
  width: 300px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -150px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
  opacity: 1;
  cursor: pointer;
}

.image:hover {
  opacity: 1 !important;
  transform: translateZ(50px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.ring:hover .image:not(:hover) {
  opacity: 0.5;
}

.controls {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.control-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 1.5rem;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.control-btn:active {
  transform: translateY(0);
}

@keyframes rotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.display-5 {
  color: var(--accent-color);
  font-weight: 700;
}

.lead {
  color: var(--accent-color);
  font-weight: 500;
}

/* Responsive styles */
@media (max-width: 992px) {
  .slider-container {
    height: 400px;
    perspective: 1500px;
  }

  .image {
    width: 220px;
    height: 300px;
    margin-top: -150px;
    margin-left: -110px;
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: 350px;
    perspective: 1200px;
  }

  .image {
    width: 180px;
    height: 250px;
    margin-top: -125px;
    margin-left: -90px;
  }
}

@media (max-width: 576px) {
  .slider-container {
    height: 300px;
  }

  .image {
    width: 150px;
    height: 200px;
    margin-top: -100px;
    margin-left: -75px;
  }

  .controls {
    gap: 10px;
  }

  .control-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp_float {
  position: fixed;
  width: 30px;
  height: 30px;
  margin: 0;
  bottom: 50px;
  left: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.whatsapp_float:hover {
  transform: scale(1.3);
}

.whatsapp_float img {
  width: 35px;
  height: 35px;
}
