
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #8b5cf6;
  --accent-color: #06b6d4;
  --dark-bg: #0f172a;
  --dark-card: #1e293b;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --gradient-1: linear-gradient(135deg, #96a6ec 0%, #caaee8 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family:"Open Sans", sans-serif;
  font-weight: 50;
  font-size: 19px;
}

body {
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

/* Navbar Container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #010a31 0%, #922563 100%) !important;
  backdrop-filter: blur(20px);
  /* Glassmorphism effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1030;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

/* Brand */
.navbar-brand {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 20px;
}

/* Navbar links container */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Links */
.navbar-links a,
.nav-link {
  color: var(--text-light) !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  margin-left: 15px;
}

.navbar-links a:hover,
.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Underline effect */
.navbar-links a::after,
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-links a:hover::after,
.nav-link:hover::after {
  width: 100%;
}

/* Button */
.btn {
  background-color: #0d6efd;
  border: none;
  color: white;
  padding: 7px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #084cdf;
}
.sidebar-submenu,
.sidebar-sub-submenu {
  display: none;
}

.sidebar-submenu.show,
.sidebar-sub-submenu.show {
  display: block;
}


/* Responsive */
@media (max-width: 900px) {
  .navbar-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    display: none;
  }

  .navbar-links a,
  .btn {
    width: auto;
    text-align: left;
  }

  /* Show toggle button */
  .toggle-button {
    display: flex;
  }

  /* Show menu when toggled */
  /* .toggle-checkbox:checked~.navbar-links {
    display: flex;
  } */

  .row p {
    font-size: 13px;
  }
}


/* responsiveness */

/* Responsive navbar logo and link sizing */
@media (max-width: 767px) {
  .navbar-brand img {
    max-height: 30px;
  }

  .nav-link {
    font-size: 0.5rem;
  }
}

@media (min-width: 769px) and (max-width: 991.98px) {
  .navbar-brand img {
    max-height: 40px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .btn-gradient {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-brand img {
    max-height: 50px;
  }

  .nav-link {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .navbar-brand img {
    max-height: 60px;
  }

  .nav-link {
    font-size: 1.1rem;
  }
}


/* Prevent wrapping of navbar items */
/* .navbar .container-fluid {

} */

.navbar-collapse {
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  color: black;
}

/* ------- */

.btn-primary-custom {
  background: var(--gradient-1);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 102, 234, 0.4);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 102, 234, 0.6);
}

.lg-nav-content {
  position: relative;
  width: 100%;
  padding: 2rem;
  z-index: 1000;
}


/* Submenu Styles */
#submenu-container {
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-100%);
  transition: all 0.3s ease;
}

#submenu-container.show {
  transform: translateY(0);
}

#submenu-container a {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 4px;
}

#submenu-container a:hover {
  background: var(--primary-color);
  transform: translateX(5px);
}

/* Hero Carousel */

.carousel {
  width: 100vw;
  height: 455px;
}

.carousel-item {
  height: 100vh;
  position: relative;
}

.carousel-item .carousel-caption h2 {
  font-weight: bold;
  font-size: 53px;
}

.carousel-item img {
  width: 100vw;
  object-fit: cover;
  height: 455px;
  filter: brightness(0.4);
}

.carousel-caption {
  padding: 20px;
  border-radius: 10px;
  position: absolute;
  top: 15%;
  left: 9%;
  transform: translate(-9%, -40%);
  text-align: left;
  width: 84%;
  height: 40%;
  word-wrap: break-word;
}

.carousel-caption h5 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease, pulseGlow 2s ease-in-out infinite;
  text-shadow: 0 0 8px rgb(229, 235, 238),
    0 0 15px rgba(238, 239, 240, 0.6),
    0 0 25px rgba(216, 222, 225, 0.5);
}

/* responsivness */
@media (max-width: 426px) {
  .carousel-item .carousel-caption h2 {
    font-weight: bold;
    font-size: 30px;
  }

  .carousel-caption h2,
  .carousel-caption p {
    color: #fff;
    text-wrap: wrap;
  }
}

@media (max-width: 320px) {
  .carousel-item .carousel-caption h2 {
    font-weight: bold;
    font-size: 24px;
  }

  .carousel-caption p {
    color: #fff;
    font-size: 5px;
    text-wrap: wrap;
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.7),
      0 0 15px rgba(0, 170, 255, 0.6),
      0 0 25px rgba(0, 170, 255, 0.5);
  }

  50% {
    text-shadow: 0 0 12px rgba(0, 170, 255, 0.9),
      0 0 22px rgba(0, 170, 255, 0.8),
      0 0 35px rgba(0, 170, 255, 0.7);
  }
}


.carousel-caption h2,
.carousel-caption p {
  color: #fff;
}

.carousel-caption p {
  font-size: 1.5rem;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.3s both;
}

.carousel-wrapper {
  width: 100%;
}

@media (min-width: 576px) {
  .carousel-wrapper {
    max-width: 1200px;
    /* You can change to 960px or 1140px */
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  }
}

/* Section Styling */
.section-padding {
  padding: 10px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 15px;
  font-family: "Open Sans", sans-serif;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-text {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cards */
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.service-card img {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h5 {
  font-weight: 600;
  margin: 20px 0 15px;
  color: var(--text-light);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, rgba(102, 102, 234, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 30px;
  padding: 20px;
  margin: 40px 0;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  color: var(--text-light);
}

.form-control::placeholder {
  color: rgba(248, 250, 252, 0.6);
}

/* Feature Section */
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--dark-card);
  border-radius: 20px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  font-size: 2rem;
  color: white;
}

.feature-content h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Footer */
#footer {
  background: rgb(46, 42, 42) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 30px;
  margin-top: 10px;
  color: white;
  min-height: 400px;
  /* ensures the image is visible */
}


.footer h4 {
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer ul li a i {
  margin-right: 8px;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 102, 234, 0.4);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {

  .navbar {
    padding: 8px 12px;
  }

  .navbar-links {
    gap: 10px;
    padding: 10px;
  }

  .nav-link {
    font-size: 14px;
    padding: 6px 10px;
  }

  .navbar-brand {
    margin-left: -22px;
    align-self: flex-start !important;
  }

  .navbar .navbar-brand img {
    width: auto;
    height: 30px;
  }

  .navbar-toggler {
    align-self: flex-start !important;
    margin-top: 0.5rem;

  }

  .carousel-caption {
    top: 16%;
    left: 7%;
  }

  .carousel-caption h5 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 12px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .contact-section {
    padding: 0px !important;
    margin: 30px 0;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 1.5rem !important;
  }

  .row p {
    font-size: 13px !important;
  }

  #train_img {
    padding-top: 0px !important;
    height: 170px !important;
  }

  .custom-bullet-head span {
    font-size: 20px !important;
    font-weight: bold;
  }

  .lead {
    font-size: 13px;
  }

  li {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .navbar-brand img {
    height: 40px;
    /* Adjust logo size */
    width: 100%;
  }

  .nav-link {
    font-size: 0.95rem;
    /* Slightly smaller nav link text */
    padding: 0.4rem 0.8rem;
  }

  .btn-gradient {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }

  .navbar {
    padding: 8px 16px;
    /* Tighter padding */
  }
}


/* Utility Classes */
.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gradient {
  background: var(--gradient-1);
  border: none;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 102, 234, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 102, 234, 0.6);
  color: white;
}

p {
  font-family: sans-serif;
  font-size: 17px;
  color: rgb(195, 227, 224) !important;
}


.career-img img {
  display: flex;
  width: 100%;
  height: auto;
}

.content-section {
  padding-left: 60px;
  padding-right: 60px;
  font-family: 'Segoe UI', sans-serif;
}

.career-content h2 {
  color: #a000c8;
  font-size: 32px;
  font-weight: bold;
}

.career-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
}

.content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Default: side-by-side */
.content-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  /* space between columns */
}

/* Make columns flexible */
.middle-content,
.right-content {
  flex: 1 1 45%;
  /* grow/shrink, and basis ~45% width */
  max-width: 37%;
  padding-left: 150px;
  padding-top: 25px;
}

/* On small screens, stack columns vertically */
@media (max-width: 990px) {
  .content-row {
    flex-direction: column;
  }

  .middle-content,
  .right-content {
    max-width: 100%;
    flex-basis: 100%;
    padding: 0px;
  }
}

.media {
  display: flex;
  align-items: flex-start;
  gap: 43px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 15px;
  padding-top: 27px;
}

.media:last-child {
  border-bottom: none;
}

.media-body h4 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #333;
}

.media-body p {
  font-size: 14px;
  color: #555;
}

.curly-bracket {
  flex-shrink: 0;
}

.curley-content {
  flex: 1;
  text-align: center;
}

.curley-content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #a000c8;
}

.curley-content h2 span {
  display: block;
}

.curley-content p {
  font-size: 16px;
  color: #333;
}

.curley-content a {
  color: #a000c8;
  text-decoration: underline;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

.dropdown-menu {
  background: rgba(30, 41, 59, 0.95);
  /* same as submenu */
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
  color: var(--text-light) !important;
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--primary-color);
  color: white !important;
  transform: translateX(5px);
}

.contact-card {
  background-color: #1e1e2f;
  /* Dark theme card background */
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  /* Text color for dark background */
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card .info-box {
  text-align: center;
}

.contact-card .info-box img {
  margin-bottom: 10px;
}

.contact-card .info-box h3 {
  color: #bd2be2;
  /* Matches your gradient highlight */
}

.contact-card .info-box a {
  color: #bd2be2;
  text-decoration: none;
}

.contact-card .info-box a:hover {
  text-decoration: underline;
}

.addressText {
  color: #dddddd;
  /* Slightly lighter for readability */
}

/* General Card Styling */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px auto;
}

.card {
  background: #1e1e2f;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 550px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.about-card-img {
  width: auto;
  height: 250px; /* fixed height for uniformity */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}


.card .text {
  padding: 15px 20px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.card p {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 800px) {
  .card {
    flex-direction: column;
    max-width: 90%;
    margin: 0 auto;
  }

  .about-card-img {
    width: auto;
    height: auto;
    height: 180px;
  }

  .text {
    width: 100%;
    padding: 16px;
  }
}

/* Team Section Image */
.team-image {
  text-align: center;
  margin-top: 20px;
}

.team-image img {
  width:  100%;
  height: 700px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 400px;
}

.custom-button {
  background-color: #007BFF;
  /* Primary theme color */
  color: white;
  font-size: 1.5rem;
  /* Bigger icon size */
  border: none;
  border-radius: 50%;
  /* Fully round */
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.custom-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.custom-button:active {
  transform: scale(0.96);
}

.custom-button-text {
  font-size: 25px;
  color: cyan;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  /* Optional: remove gap */
}

/* Optional smooth transition */
.dropdown-menu {
  transition: all 0.3s ease;
}

body {

  background-color: #1a1a1a;
  color: #ffffff;
}

.navbar-dark {
  background-color: #2c2c2c !important;
  border-bottom: 1px solid #404040;
}

.navbar-brand img {
  width: 100%;
  height: 40px;
}

.nav-link {
  color: #cccccc !important;
  font-weight: 500;
  padding: 0.8rem 1.2rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffffff !important;
}

.nav-link.active {
  color: #ffffff !important;
  border-bottom: 3px solid var(--gradient-1, --gradient-2);
}

.btn-primary-custom {
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.main-container {
  display: flex;
  min-height: calc(100vh - 76px);
}

.sidebar {
  width: 350px;
  background-color: #2a2a2a;
  border-right: 1px solid #404040;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  position: fixed;
  height: calc(100vh - 76px);
  z-index: 1000;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar-menu {
  list-style: none;
  padding: 2rem 0;
  margin: 0;
}

.sidebar-menu li {
  border-bottom: 1px solid #404040;
}

.sidebar-menu li:last-child {
  border-bottom: none;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  color: #cccccc;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar-menu a:hover {
  background-color: #3a3a3a;
  color: #ffffff;
  padding-left: 2.5rem;
}

.sidebar-menu a.active {
  background-color: #007bff;
  color: #ffffff;
  border-left: 4px solid #0056b3;
}

.content-area {
  flex: 1;
  padding: 0rem;
  margin-left: 0;
  transition: margin-left 0.3s ease;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.content-area.with-sidebar {
  margin-left: 350px;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.service-card {
  background-color: #2a2a2a;
  border: 1px solid #404040;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #007bff;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu {
  background-color: #2a2a2a;
  border: 1px solid #404040;
}

.dropdown-item {
  color: #cccccc !important;
}

.dropdown-item:hover {
  background-color: #3a3a3a;
  color: #ffffff !important;
}

.close-sidebar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #cccccc;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.close-sidebar:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
  }

  .content-area.with-sidebar {
    margin-left: 0;
  }
}

.service-card ul li {
  color: ivory;
}

.card-title {
  color: #a000c8;
}

@media (min-width: 992px) {
  .lg-nav-content {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .navbar .lg-nav-content {
    position: absolute;
    height: auto;
    width: 100vw;
    left: -237%;
    margin-top: 26px;
  }

  .navbar .lg-nav-content .list-group {

    --bs-list-group-bg: #212529 !important;
    color: white;
    margin-bottom: 10px;
  }

  .navbar .lg-nav-content .list-group .list-group-item {
    color: white;
    padding: 5% 2%;
    font-size: 20px;
    margin-top: 17px;
  }

  .d-none {
    display: none;
  }

  .content-panel .content-block {
    align-items: center;
    font-size: 23px;
  }

  .content-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px;
    font-size: 16px;
  }

  .content-block>div {
    flex: 1;
  }

  .content-block img {
    max-width: 100%;
    max-height: auto;
    /* Prevents image from overflowing the nav */
    height: auto;
    display: block;
    object-fit: cover;
    /* Optional: crops and maintains aspect ratio */
  }

  .content-block ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: px;
    padding: none;
  }

  #services ul {
    padding: 18px;
  }

  #products ul li {
    padding-top: 25px;
    font-size: 1.2rem;
    margin-bottom: 31px;
  }

  #services ul li {
    padding: 5px;
    margin-bottom: 31px;
    font-size: 1.2rem;
  }

}

.logo-container {
  position: relative;
  overflow: hidden;
  display: inline-block;
  /* to shrink-wrap content */
}
.logo-container a{
  text-decoration: none;
}

.mySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center; /* optional for vertical centering */
  text-align: center;
}


.logo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 8px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  /* so hover stays on image */
}
@media (max-width: 768px) {
  .logo-caption {
    position: relative; /* Instead of static */
    background: transparent;
    color: #333;
    opacity: 1;
    padding: 8px 4px 4px 4px;
    font-size: 0.75rem;
    text-align: center;
    pointer-events: auto;
    width: 100%;
    left: 0; /* Reset any left positioning */
    right: 0; /* Reset any right positioning */
    transform: none; /* Reset any transforms */
  }
}
/* For very small screens */
@media (max-width: 480px) {
  .logo-caption {
    font-size: 0.7rem;
    padding: 6px 2px 2px 2px;
    text-align: center;
    width: 100%;
  }
}

.logo-container:hover .logo-caption {
  opacity: 1;
  text-decoration: none !important;
}

@media (max-width: 576px) {
  .logo-caption {
    font-size: 0.75rem;
  }
}


.client-logo {
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.client-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .client-logo {
    max-height: 60px;
  }
}

/* Responsive navbar scaling */
.navbar {
  transition: all 0.3s ease;
  padding: 10px 0px 10px 20px;
}

.navbar .nav-link {
  transition: all 0.3s ease;
  font-size: 14px;
  padding: 6px 10px;
}

@media (min-width: 576px) {
  .navbar {
    padding: 2px 0px;
  }

  .navbar .nav-link {
    font-size: 13px;
    padding: 8px 12px;
  }

  .btn-gradient {
    background: var(--gradient-1);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 102, 234, 0.4);
  }

  .navbar-brand {
    margin-left: 0px;
  }
}

@media (min-width: 1025px) {
  .navbar-brand img {
    height: 40px;
    /* Adjust logo size */
    width: max-content;
    left: 0;
  }

  .navbar {
    padding: 20px 50px;
  }

  .navbar .nav-link {
    font-size: 1.1rem;
    /* or use clamp(0.9rem, 1vw, 1.1rem) */
    padding: 0.75rem 1rem;
  }
}

@media (min-width: 767.98px) and (max-width: 874px) {
  .navbar-brand img {
    height: 40px;
    left: 0;
  }

  .navbar {
    padding: 5px 5px;
  }

  .navbar .nav-link {
    font-size: 12px !important;
    margin: 0;
  }

  .btn-gradient {
    padding: 7px 10px !important;
    font-size: 12px !important;
  }
}

@media (min-width: 769px) and (max-width: 829px) {
  .navbar-brand img {
    height: 40px;
    left: 0;
  }

  .navbar {
    padding: 5px 5px;
  }

  .navbar .nav-link {
    font-size: 11px;
    margin: 0;
  }

  .btn-gradient {
    padding: 7px 10px;
    font-size: 12px;
  }
}

@media (max-width: 875px) {
  .navbar .nav-link {
    font-size: 11px;
    margin: 0;
  }

  .btn-gradient {
    padding: 7px 10px;
    font-size: 12px;
  }
}


/* Hide toggle on md and larger (≥768px) */
@media (min-width: 768px) {
  .custom-toggler {
    display: none !important;
  }

}

/* Show toggle on small screens (<768px) */
@media (max-width: 767.98px) {
  .custom-toggler {
    display: block !important;
  }
  .btn-gradient{
    margin: 0px !important;
  }
}

.footer-contact p a,
.credits a,
.container ul li a {
  color: white;
  font-style: normal;
  text-decoration: none;
}

.lg-nav-content {
  position: relative;
  /* Don't use absolute if you want to push body content */
  width: 100%;
  padding: 2rem;
  z-index: 1000;
}

.navbar .lg-nav-content .list-group {

  --bs-list-group-bg: #212529 !important;
  color: white;
}

.navbar .lg-nav-content .list-group .list-group-item {
  color: white;
  padding: 5% 2%;
  font-size: 24px;
}

.d-none {
  display: none;
}

.content-panel .content-block {
  text-size-adjust: 35px;
}

.content-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px;
}

.content-block>div {
  flex: 1;
}

.content-block img {
  max-width: 100%;
  max-height: 40vh;
  /* Prevents image from overflowing the nav */
  height: auto;
  display: block;
  object-fit: cover;
  /* Optional: crops and maintains aspect ratio */
}

.content-block ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 25px;
  padding: none;
}

#services ul li {
  margin-bottom: 20px;
  /* Adjust this value as needed */
  font-size: 1.2rem;
  /* Optional: increase text size */
}

@media (max-width: 575.98px) {
  #whatWeDoContent {
    flex-direction: column;
    overflow: hidden;
  }

  #whatWeDoContent .col-md-3,
  #whatWeDoContent .col-md-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #whatWeDoContent .content-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #whatWeDoContent img {
    width: 100%;
    height: auto;
  }

  .content-block ul {
    padding-left: 1rem;
  }

  .content-block ul li {
    margin-bottom: 0.5rem;
  }
}

.custom-bullet li span {
  font-size: 20px;
  color: rgb(191, 72, 209);
}

.custom-bullet li {
  margin-bottom: 10px;
}

#train_img {
  width: 100%;
  object-fit: cover;
  height: 450px;
  padding-top: 70px;
}

.custom-bullet-head span {
  font-weight: bold;
}

.row p {
  font-size: 20px;
}

.text-center {
  text-align: center;
}

.choose-section {
  justify-content: center;
  align-items: center;
}

.choose-rw {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}

.chooseLogo {
  display: flex;
  margin-bottom: 20px;
}

.chooseLogo i {
  height: 98px;
  width: 98px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  box-shadow: 10px 14px 34px rgba(171, 30, 91, 0.6);
}

.chooseLogo i::before {
  width: 98px;
  height: 98px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  content: "";
  right: -35px;
  top: 0;
  border-radius: 50%;
}

/* Add a smooth transition to card expansion and text visibility */
.choose-card {
  flex: 0 0 20%;
  width: 22%;
  height: 500px;
  position: relative;
  margin-left: -5px;
  padding: 37px 18px 90px 37px;
  transition: ease-in-out 1s;
  overflow: hidden;
  border-radius: 3%;
}

.choose-card.expanded {
  flex: 0 0 3%;
  /* Width for the expanded card */
  padding: 37px 18px 120px 37px;
}

.choose-card-lg {
  width: 100%;
  padding: 37px 18px 90px 34px;
}

/* Hover effect for expanding the card and showing text */
.choose-card:hover {
  flex: 0 0 30%;
  /* Expand the card on hover */
  padding: 37px 18px 120px 37px;
  /* Optional: Add extra padding for expansion */
}

.choose-card:hover p {
  opacity: 1;
  /* Show the text when hovering */
}

.choose-card:nth-child(1) {
  background: linear-gradient(349.74deg, #c50975 16.1%, #f866a2 81.13%);
  box-shadow: 0px 14px 44px rgba(1, 10, 15, 0.7);
  z-index: 5;
}

.choose-card:nth-child(2) {
  background: linear-gradient(349.74deg, #ff352e 16.1%, #ff247e 81.13%);
  box-shadow: 0px 14px 44px rgba(1, 10, 15, 0.7);
  z-index: 4;
}

.choose-card:nth-child(3) {
  background: linear-gradient(349.74deg, #ff6b00 16.1%, #ffba07 81.13%);
  box-shadow: 0px 14px 44px rgba(1, 10, 15, 0.7);
  z-index: 3;
}

.choose-card:nth-child(4) {
  background: linear-gradient(348.1deg, #082be3 8.19%, #00c193 81.72%);
  box-shadow: 0px 14px 44px rgba(1, 10, 15, 0.7);
  z-index: 2;
}

.choose-card:nth-child(5) {
  background: linear-gradient(349.74deg, #3ee8ff 16.1%, #0ba91b 81.13%);
  box-shadow: 0px 14px 44px rgba(1, 10, 15, 0.7);
  z-index: 1;
}

.choose-card h3 {
  color: #ffffff;
  cursor: pointer;
}

.choose-card p {
  max-width: 371px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  color: white;
}

.choose-card.choose-card-lg p {
  opacity: 1;
}

.choose-card-text {
  height: 185px;
  overflow: hidden;
}

.choose-bg {
  position: absolute;
  right: 21px;
  bottom: 0;
  opacity: 0.4;
}

.choose-card-lg .choose-bg {
  right: 28px;
}

.choose_us_area .title {
  margin-bottom: 60px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .choose-card {
    flex: 0 0 calc(50% - 10px);
    /* Two cards per row */
    max-width: calc(50% - 10px);
    margin: 3%;
  }

  /* Ensure text is always visible on hover */
  .choose-card p {
    opacity: 1;
    /* Text is always visible */
  }

  /* Disable hover effect for medium screens */
  .choose-card:hover {
    flex: 0 0 calc(50% - 10px);
    /* Maintain simple layout on hover */
    padding: 37px 18px 90px 37px;
    /* Maintain original padding */
  }
}

@media (max-width: 768px) {
  .choose-card {
    flex: 0 0 100%;
    /* One card per row */
    max-width: 100%;
    margin-left: 0;
  }

  /* Ensure text is always visible */
  .choose-card p {
    opacity: 1;
    /* Text is always visible */
  }

  /* Disable hover effect for small screens */
  .choose-card:hover {
    flex: 0 0 100%;
    /* Maintain simple layout on hover */
    padding: 37px 18px 90px 37px;
  }
}

@media (max-width: 480px) {
  .choose-card {
    padding: 20px;
    /* Reduce padding for smaller devices */
  }

  .chooseLogo i {
    height: 70px;
    width: 70px;
  }

  .chooseLogo i::before {
    width: 70px;
    height: 70px;
    right: -25px;
  }

  .choose-rw {
    padding: 10px;
  }

  /* Disable hover effect on extra small screens */
  .choose-card:hover {
    flex: 0 0 100%;
    /* Maintain simple layout */
  }

  .choose-card {
    margin-bottom: 40px;
    /* Ensure cards are stacked with space between them */
  }
}

/* 
.choose-card:nth-child(1) {
  background: linear-gradient(349.74deg, #c50975 16.1%, #f866a2 81.13%);
  box-shadow: 0px 14px 44px rgba(1, 10, 15, 0.7);
  z-index: 5;
}

.choose-card:nth-child(2) {
  background: linear-gradient(349.74deg, #ff352e 16.1%, #ff247e 81.13%);
  box-shadow: 0px 14px 44px rgba(1, 10, 15, 0.7);
  z-index: 4;
}

.choose-card:nth-child(3) {
  background: linear-gradient(349.74deg, #ff6b00 16.1%, #ffba07 81.13%);
  box-shadow: 0px 14px 44px rgba(1, 10, 15, 0.7);
  z-index: 3;
}

.choose-card:nth-child(4) {
  background: linear-gradient(348.1deg, #082be3 8.19%, #00c193 81.72%);
  box-shadow: 0px 14px 44px rgba(1, 10, 15, 0.7);
  z-index: 2;
}

div {
  display: block;
  unicode-bidi: isolate;
}

.choose-card {
  flex: 0 0 20%;
  width: 22%;
  height: 500px;
  position: relative;
  margin-left: -5px;
  padding: 37px 18px 120px 37px;
  padding-bottom: 60px;
  transition: ease-in-out 1s;
  overflow: hidden;
  border-radius: 3%;
  min-height: 400px;
}
.choose-card {
  flex: 0 0 20%;
  width: 22%;
  height: 500px;
  position: relative;
  margin-left: -5px;
  padding: 37px 18px 120px 37px;
  padding-bottom: 60px;
  transition: ease-in-out 1s;
  overflow: hidden;
  border-radius: 3%;
  min-height: 400px;
}

.choose-rw {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px; Added gap for better spacing
}

Tablet/Medium screens first
@media (max-width: 992px) {
  .choose-card {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
    margin-left: 0;
    margin-bottom: 20px;
    padding: 25px 15px 80px 25px;
    min-height: 350px;
  }
}

Mobile screens
@media (max-width: 768px) {
  .choose-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-bottom: 20px;
    padding: 20px 15px 40px 20px;
    height: auto;
    min-height: 300px;
  }
  
  .choose-rw {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}

Extra small screens
@media (max-width: 480px) {
  .choose-card {
    padding: 15px 10px 30px 15px;
    min-height: 250px;
    border-radius: 2%;
  }
}

.choose-rw {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
} */

/* @media (max-width: 768px) {
  .choose-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .choose-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin: 3%;
  }
} */
/* 
.choose-bg {
  position: absolute;
  bottom: 20px;
 
  left: 20px;
 
  z-index: 0;
  pointer-events: none;
  
}

.choose-card-text,
.chooseLogo,
.choose-card h3 {
  position: relative;
  z-index: 1;
 
}

.choose-card:hover {
  flex: 0 0 30%;
 
}

.choose-card:hover p {
  opacity: 1;
}

.choose-card p {
  max-width: 371px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  color: white;
  min-height: 60px;


} */


.accordion-item {
  background: var(--gradient-1);
  color: var(--text-light);
  border: none;
}


.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--gradient-2);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e);
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.contact-details {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.accordion h1 {
  font-size: 25px;
  padding-top: 10px;
  text-align: center;
  font-weight: bold;
}

.accordion h5 {
  padding-top: 10px;
  color: white;
  text-align: center;
  font-weight: 700;
}

.accordion-button {
  padding: 25px 20px;
  color: var(--gradient-3);
}

.accordion span {
  font-size: 32px;
  padding-right: 15px;
  color: rgb(63, 63, 63);
}

.accordion span i {
  font-size: 32px;
  padding-left: 15px;
  color: rgb(255, 255, 255) !important;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.accordion-button:not(.collapsed) {
  color: #1f61c1;
  background-color: rgba(199, 107, 199, 0.625);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion img {
  align-self: center;
  max-width: 250px;
  aspect-ratio: 1 / 2 !important;
}

.accordion-button .bi {
  color: rgb(198, 211, 218);
  padding-right: 5px;
}

.title {
  font-weight: bold;
  font-size: 30px;
}

.man {
  width: 100%;
  height: 430px;
}

.training-details {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.training-details h2 {
  font-size: 31px;
  font-weight: bold;
}

.training-details li {
  font-size: 20px;
  font-weight: normal;
}

/* Base styles for desktop */
.training-whyus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}

.why-feature {
  flex: 0 0 22%;
  text-align: center;
  padding: 30px 15px;
  background: black;
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.why-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.why-feature h1 {
  margin-bottom: 15px;
  color: #007bff;
}

.why-feature h1 i {
  font-size: 3rem;
}

.why-feature h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Tablet screens */
@media (max-width: 992px) {
  .training-whyus {
    padding: 30px 15px;
    gap: 15px;
  }

  .why-feature {
    flex: 0 0 calc(50% - 10px);
    padding: 25px 12px;
  }

  .why-feature h1 i {
    font-size: 2.5rem;
  }

  .why-feature h2 {
    font-size: 1rem;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .training-whyus {
    flex-direction: column;
    padding: 25px 10px;
    gap: 20px;
  }

  .why-feature {
    flex: none;
    width: 100%;
    max-width: 400px;
    padding: 25px 20px;
    margin: 0 auto;
  }

  .why-feature h1 i {
    font-size: 2.8rem;
  }

  .why-feature h2 {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .training-whyus {
    padding: 20px 10px;
    gap: 15px;
  }

  .why-feature {
    padding: 20px 15px;
    max-width: 100%;
  }

  .why-feature h1 i {
    font-size: 2.2rem;
  }

  .why-feature h2 {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .training-whyus {
    padding: 15px 8px;
  }

  .why-feature {
    padding: 18px 12px;
  }

  .why-feature h1 i {
    font-size: 2rem;
  }

  .why-feature h2 {
    font-size: 0.9rem;
    letter-spacing: 0.3px;
  }
}

.syllabus {
  padding: 20px;
}

.syllabus h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: bold;
}

.syllabus .rwd-table {
  margin: 0 auto;
  width: 1200px;
  border-collapse: collapse;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: white;

}

.syllabus .rwd-table th,
.syllabus .rwd-table td {
  padding: 12px;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  vertical-align: top;
}

.syllabus .rwd-table thead tr {
  background: linear-gradient(90deg, #477dd3, #6178e2, #dc54a1);
}

.syllabus .rwd-table th {
  background: transparent;
  color: white;
  padding: 12px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #ccc;
}

.syllabus .rwd-table td {
  padding: 12px;
  color: #333;
}

/* Alternate row colors */
.syllabus .rwd-table tbody tr:nth-child(odd) {
  background-color: rgb(202, 214, 221);
  /* soft teal */
}

.syllabus .rwd-table tbody tr:nth-child(even) {
  background-color: rgb(189, 180, 216);
  /* deeper teal */
}


/* Responsive Table */
@media screen and (max-width: 768px) {
  .syllabus .rwd-table thead {
    display: none;
  }

  .syllabus .rwd-table,
  .syllabus .rwd-table tbody,
  .syllabus .rwd-table tr,
  .syllabus .rwd-table td {
    display: block;
    width: 100%;
  }

  .syllabus .rwd-table tr {
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }

  .syllabus .rwd-table td {
    text-align: left;
    padding-left: 50%;
    position: relative;
  }

  .syllabus .rwd-table td::before {
    content: attr(data-th);
    position: absolute;
    left: 15px;
    width: 45%;
    padding-right: 10px;
    font-weight: bold;
    white-space: nowrap;
    color: #a8a9c7;
  }
}

.custom-bullet-head span {
  font-size: 35px;
  font-weight: bold;
}

.custom-bullet-head{
  padding: 0px;
  text-align: center;
}

#flowgrid ul li span,
#canewisepro ul li span {
  color: #d35a88;
}
.test-container{
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.clients-testimonials-slider {
  padding: 0px 0;
  width: 100vw;
    background-color: rgb(240 240 240) !important;
  color: black !important;
}

.testimonial-item {
  text-align: center;
  padding: 20px;

}

.client-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.testimonial-item h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.testimonial-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: black !important;
}

.quote-icon-left,
.quote-icon-right {
  font-size: 1.2rem;
  color: #667eea;
}

/* Swiper Pagination */
.swiper-pagination {
  position: relative;
  margin-top: 10px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-item {
    padding: 15px;
  }

  .client-logo {
    width: 60px;
    height: 60px;
  }

  .testimonial-item h3 {
    font-size: 1.3rem;
  }
}

.insight-card {
  position: relative;
  height: 280px;
  /* or any consistent height you prefer */
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.client-logo-section {
    background-color: rgb(240 240 240) !important;
}

.vertical-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.vertical-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.overlay-gradient {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 30%, transparent);
  z-index: 1;
  border-radius: 12px;
}

.card-title {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
  max-width: 80%;
}

.section-padding {
  padding-top: 30px;
}

.section-title {
  text-align: center;
  /* padding-top: 20px; */
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-text {
  color: #fff;
}

.lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.insight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.insight-card-main-div {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.insight-card-main-div:hover,
.insight-card-main-div:focus,
.insight-card-main-div:active {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.insight-card {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

.insight-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.4s ease;
  filter: brightness(0.7);
}

.insight-card-main-div:hover .insight-card-image,
.insight-card-main-div:focus .insight-card-image,
.insight-card-main-div:active .insight-card-image {
  opacity: 0.9;
  filter: brightness(1);
  transform: scale(1.05);
}

.image-gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(102, 126, 234, 0.8) 0%,
      rgba(118, 75, 162, 0.8) 100%);
  z-index: 1;
  transition: all 0.4s ease;
}

.insight-card-main-div:hover .image-gradient-bg::before,
.insight-card-main-div:focus .image-gradient-bg::before,
.insight-card-main-div:active .image-gradient-bg::before  {
  background: linear-gradient(135deg,
      rgba(102, 126, 234, 0.3) 0%,
      rgba(118, 75, 162, 0.3) 100%);
}

.insight-card-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white !important;
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 2;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.insight-card-main-div:hover .insight-card-title {
  transform: translateY(-5px);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.btn-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 15px 40px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .insight-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }

  .insight-card-main-div {
    height: 180px;
  }

  .insight-card-title {
    font-size: 25px !important;
    bottom: 15px;
    left: 15px;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .insight-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .insight-card-main-div {
    height: 140px;
  }

  .insight-card-title {
    font-size: 12px !important;
    bottom: 10px;
    left: 10px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .insight-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }

  .insight-card-main-div {
    height: 120px;
  }

  .insight-card-title {
    font-size: 12px !important;
    bottom: 8px;
    left: 7px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 0.9rem;
  }
}

/* Additional hover effects */
.insight-card-main-div::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease;
  z-index: 3;
}

.insight-card-main-div:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.py-5 {
  padding-top: 1rem !important;
  padding-bottom: 0rem !important;

}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.1 * var(--bs-gutter-x));
}

