@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Eagle+Lake&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #EC3737;
  --primary-light: #6366f1;
  --primary-dark: #4338ca;
  --secondary: #FFFFFF;
  --danger: #ef4444;
  --warning: #f59e0b;
  --light: #f8fafc;
  --dark: #15171E;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --gray-light: #ccc;
  --font-main: "Be Vietnam Pro", sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
  font-family: var(--font-main);
  line-height: 1.5;
  color: var(--dark);
  margin: 0;
  padding: 0;
  background-color: #000;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-top: 0;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

p {
  font-size: 16px;
  color: var(--gray-light);
   text-align: justify;
}

/* ===== Utility Classes ===== */

/* Responsive Container */
.container {
  width: 100% !important;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive max-widths (like Bootstrap's breakpoints) */


@media (min-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}

@media (min-width: 1201px) {
  .container {
    max-width: 1200px !important;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1200px !important;
  }
}

/* Section Spacing */

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 767.98px) {
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Transparent Header Overlay */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent !important;
  border-bottom: none !important;
}

.header-btns {
  gap: 15px;
  align-items: center;
}

.header-phone-icon {
  background: var(--secondary);
  padding: 5px 10px;
  border-radius: 50%;
}

.nav-link {
  color: #fff !important;
}

.logo {
  display: inline-block;
  transition: all 0.3s ease;
}

.logo a {
  text-decoration: none;
  align-items: center;
  gap: 12px;
}

.logo img {
  max-height: 75px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo span {
  display: inline-block;
  text-align: left;
  line-height: 1.2;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.logo span br {
  display: block;
  content: '';
  margin: 2px 0;
}

.dropdown-item {
  padding: 10px 25px;
}

.dropdown-item:hover {
  background-color: #edeeef;
}

/* Enhanced Hover Dropdown Styles */
@media (min-width: 992px) {
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 0;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
  }

  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo img {
    max-height: 70px;
  }

  .logo span {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .logo span {
    display: none;
  }
}

/* Fullscreen Hero Section with Background Image */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../assets/img/hero-bg-2.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 50px;
}

/* Optional dark overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 150px;
}

/* Hero Text Styling */
.hero-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 1.2rem;
  margin-bottom: 30px;
}


/* Feature Tags */
.feature-tags {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-weight: 600;
  z-index: 3;
}

.feature-tags i {
  margin-right: 8px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
}

.primary-btn,
.secondary-btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
  font-weight: 500;
}

.primary-btn {
  color: var(--secondary);
  border: 2px solid var(--secondary);
  font-weight: 500;
}

.primary-btn:hover {
  background-color: var(--secondary);
  color: var(--dark);
  border: 2px solid var(--secondary);
}

.secondary-btn {
  background: transparent;
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
  padding: 0;
}

.secondary-btn:hover {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.features-section {
  background: #000;
}

.features-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* gap: 30px; */
  margin: auto;
  position: relative;
  z-index: 4;
  top: -130px;
}

.feature-box {
  flex: 1 1 30%;
  background-color: var(--dark);
  /* border-radius: 12px; */
  padding: 50px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary);
}

.feature-description {
  font-size: 1rem;
  color: var(--secondary);
}

.feature-box:nth-child(even) {
  background-color: var(--dark);
  color: var(--secondary);
  transform: scale(1.07) !important;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 16px rgb(255 255 255 / 31%);

}

/* Responsive */
@media (max-width: 768px) {
  .feature-box {
    flex: 1 1 100%;
  }
}


/* About Section Styling */
.about-section {
  background-color: #000;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Image styling */
.about-section img {
  transition: transform 0.3s ease;
}

/* Counter box animation */
.counter-box {
  animation: float 3s ease-in-out infinite;
}

.about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 47px;
  background-color: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 20px;
}

.improvement-section {
  background: #000;
  color: var(--secondary);
}

.improvement-list li span {
  color: var(--gray-light);
}

.services-section {
  background-color: #000;
  color: #fff;
}

.services-header-left,
.services-header-right {
  max-width: 500px;
}

.service-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 0.5rem; */
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid #ccc;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.service-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  color: #fff;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-content i {
  margin-bottom: 1.5rem;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-content p {
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.awards-section {
  background: #000;
  color: var(--secondary);
}

.award-item-wrapper {
  width: 20%;
  padding: 15px;
}

.award-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /* border-radius: 8px; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #fff;
}

.award-img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .award-item-wrapper {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .award-item-wrapper {
    width: 100%;
  }
}

.business-growth-section {
  background-color: #000;
  color: var(--secondary);
}

.headline-container {
  margin-bottom: 30px;
}

.animated-headline {
  position: relative;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.headline-dynamic-wrapper {
  position: relative;
  display: inline-block;
}


.headline-plain-text {
  display: inline-block;
}

.subheading {
  font-size: 16px;
  margin-bottom: 30px;
}

/* CTA Card Styles */
.cta-card {
  display: flex;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-bg-wrapper {
  position: relative;
  flex: 0 0 170px;
}

.cta-bg {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url('../assets/img/expert.jpg');
}

.cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.cta-content {
  padding: 20px;
  flex-grow: 1;
}

.cta-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cta-description {
  font-size: 16px;
}

/* Form Styles */
.form-container {
  background: #15171E;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form-field {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  margin-bottom: 15px;
  background: #000;
}

.form-field:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.25rem rgba(241, 241, 241, 0.25);
}

.select-wrapper {
  position: relative;
}

.select-wrapper:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  position: absolute;
  top: 40%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--secondary);
}

select.form-field {
  appearance: none;
  padding-right: 30px;
}

textarea.form-field {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  background-color: var(--secondary);
  color: #15171E;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.submit-button:hover {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

/* Style the select dropdown */
select.form-field {
  color: var(--secondary);
}

/* Style the dropdown options */
select.form-field option {
  color: var(--secondary);
  padding: 10px;
}

/* Style the dropdown when it's open */
select.form-field:focus {
  color: var(--secondary);
}

/* For Firefox */
@-moz-document url-prefix() {
  select.form-field {
    color: var(--secondary) !important;
    text-shadow: 0 0 0 var(--secondary);
  }

  select.form-field option {
    color: var(--secondary) !important;
  }
}

/* For IE10/11 */
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  select.form-field {
    color: var(--secondary);
  }

  select.form-field::-ms-value {
    color: var(--secondary);
  }

  select.form-field option {
    color: var(--secondary);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .animated-headline {
    font-size: 32px;
  }

  .cta-card {
    max-width: 100%;
  }
}

.footer {
  background-color: #15171E;
  color: var(--secondary);
}

.footer-logo img {
  /* max-height: 100px; */
  margin-bottom: 20px;
}

.footer-description {
  margin-bottom: 20px;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary);
}

.social-icon:hover {
  opacity: 0.9;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-item a,
.contact-item span {
  color: var(--gray-light);
}

.contact-icon {
  color: var(--secondary);
  font-size: 18px;
  margin-top: 3px;
}

.useful-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}

.useful-links li {
  list-style: none;
}

.useful-link {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
  color: var(--gray-light);
}

.useful-link:hover {
  color: var(--secondary);
}

.link-icon {
  color: var(--secondary);
  font-size: 12px;
}

.copyright {
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  border-top: 1px solid var(--gray-light);
}

.copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.company-name a {
  color: var(--gray-light);
}

.rotate-on-scroll {
  transition: transform 1s ease;
  transform: rotateX(0deg);
  transform-style: preserve-3d;
  will-change: transform;
}

.rotate-on-scroll.scrolled {
  transform: rotateX(45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1055;
  transition: right 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.logo-center {
  pointer-events: none;
}


@media (max-width: 1024px) {
  .nav-link {
    font-size: 15px;
  }

  .primary-btn {
    padding: 12px 12px;
  }

  .logo img {
    max-height: 55px;
  }

  .logo span {
    font-size: 1rem
  }
}

@media (max-width: 768px) {
  .nav-link {
    color: #15171E !important;
  }

  .feature-box:nth-child(odd) {
    /*background-color: var(--secondary);*/
    color: var(--light);
  }

  /*.feature-box:nth-child(odd) .feature-image i,*/
  /*.feature-box:nth-child(odd) .feature-title,*/
  /*.feature-box:nth-child(odd) .feature-description {*/
  /*  color: var(--dark) !important;*/
  /*}*/

  .feature-box:nth-child(even) .feature-image i,
  .feature-box:nth-child(even) .feature-title,
  .feature-box:nth-child(even) .feature-description {
    color: var(--secondary) !important;
  }

  .feature-box:nth-child(even) {
    background-color: var(--dark);
    color: var(--secondary);
  }

  .logo img {
    max-height: 75px;
  }

  .logo span {
    font-size: 1.3rem
  }
  
  .copyright-content{
      flex-direction: column;
  }
}

.innerpage-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
  padding: 200px 0;
}

.innerpage-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* dark overlay */
  z-index: 2;
}

.innerpage-banner-title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.aboutpage-about-section {
  background: #000;
  color: #fff;
}

.aboutpage-about-list li {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-light);
}

.aboutpage-about-list i {
  color: #fff;
  font-size: 22px;
  margin-top: 4px;
  min-width: 1.5em;
}

.aboutpage-about-list span {
  display: inline-block;
}

/* About Page Image Styles */
.aboutpage-aboutimage {
  position: relative;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.aboutpage-aboutimage img {
  border-radius: 4px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image-section {
  background: #000;
  color: #fff;
  position: relative;
  z-index: 0;
}

.vision-mission-section {
  /* background: #000; */
  color: #fff;
  position: relative;
  z-index: 1;
  margin-top: -300px;
}

.mission-card {
  background-color: #15171E;
}

.mission-card ul li {
  font-size: 15px;
  color: var(--gray-light);
}

.kaizen-section {
  background: #000;
  color: #fff;
}

.appoinment-btn {
  background-color: var(--light);
  color: #000;
  padding: 15px 25px;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
}

.conatct-details {
  margin: 40px 0px 0px 0px;
  padding: 30px;
  background-color: #15171E;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #FFFFFF45;
}

.contact-form-col {
  background-color: #15171E;
  border-color: #FFFFFF45;
  border-width: 1px 1px 1px 1px;
  border-style: solid;
}

.form-control {
  background-color: #020205;
  border-color: #FFFFFF45;
  border-width: 2px;
  color: #fff;
  border-radius: 0;
  padding: 10px 15px;
}

.form-control:focus {
  background-color: #020205;
  border-color: #FFFFFF45;
  border-width: 2px;
  box-shadow: none;
  outline: none;
  color: #fff;
}

hr {
  border: 1px dashed #fff;
}

.job-openings-section {
  padding: 150px 0;
}

.job-openings-section .overlay {
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.job-openings-section .container {
  z-index: 2;
  position: relative;
}

.jobs-section {
  position: relative;
  z-index: 1;
  margin-top: -150px;
}

.job-card {
  border-style: solid;
  border-width: 4px 0px 0px 0px;
  border-color: #fff;
  transition: background 0.3s, border 0.8s, border-radius 0.8s, box-shadow 0.8s;
  margin: 16px 16px 16px 16px;
  --e-column-margin-right: 16px;
  --e-column-margin-left: 16px;
  padding: 48px 48px 48px 48px;
  background-color: #15171E !important;
}

.job-openings-section .row {
  max-width: 800px;
  margin: 0 auto;
}

.apply-section {
  background-color: #15171E;
  border: 2px solid #FFFFFF45;
  padding: 20px;
}

.education-service-card {
  border-style: none;
  box-shadow: 6px 6px 0px 0px rgba(255, 255, 255, 0.2) !important;
  transition: background 1.3s, border 0.8s, border-radius 0.8s, box-shadow 0.8s;
  margin: 16px;
  --e-column-margin-right: 16px;
  --e-column-margin-left: 16px;
  padding: 20px;
  background-color: #15171E;

}

.card-body div i {
  font-size: 50px;
  margin-left: 15px;
}

.card-body h5 {
  margin-bottom: 15px;
}

.education-service-card {
  transition:
    background 1.3s ease,
    border 0.8s ease,
    border-radius 0.8s ease,
    box-shadow 0.8s ease,
    margin 0.8s ease,
    padding 0.8s ease;
}

.education-service-card:hover {
  border-style: none;
  box-shadow: -6px -6px 0px 0px #fff !important;
  margin: 16px;
  padding: 48px 24px;
}


.award-section {
  padding: 4rem 0;
}

.award-header {
  margin-bottom: 3rem;
}

.award-title {
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.award-description {
  max-width: 800px;
  margin: 0 auto;
}

.award-item {
  display: flex;
  height: 100%;
}

.award-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.award-card-header {
  background-color: #212529;
  color: white;
  padding: 1.25rem;
  font-weight: 600;
  border-bottom: none;
  font-size: 20px;
}

.award-icon {
  margin-right: 0.5rem;
}

.award-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background: var(--light);
}

.award-card-title {
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
  font-size: 22px;
}

.award-card-text {
  color: #495057;
  margin-bottom: 1rem;
}

.award-list {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.award-list-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #495057;
}

.award-list-item:last-child {
  border-bottom: none;
}

.award-list-item strong {
  color: #212529;
}

.award-button {
  display: block;
  background-color: #212529;
  color: white;
  text-align: center;
  padding: 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #212529;
  margin-top: auto;
}

.award-button:hover {
  background-color: transparent;
  color: #212529;
}

@media (max-width: 768px) {
  .award-section {
    padding: 3rem 0;
  }

  .award-title {
    font-size: 1.8rem;
  }
}

[id^="apply-"]{
  padding: 2rem 0;
}

[id^="apply-"] .steps {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

[id^="apply-"] .icon-box {
  width: 50px;
  height: 50px;
  background-color: #212529;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

[id^="apply-"] h2 {
  color: #212529;
}

[id^="apply-"] h4 {
  color: #212529;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

[id^="apply-"] p {
  color: #495057;
  margin-bottom: 0;
}

/* Payment Section Styles */
[id^="apply-"] .payment-section {
  background-color: #212529;
  color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[id^="apply-"] .payment-section h3,
[id^="apply-"] .payment-section h5 {
  color: white;
}

[id^="apply-"] .payment-section .list-group-item {
  background-color: transparent;
  color: #e9ecef;
  border-color: rgba(255, 255, 255, 0.1);
  padding-left: 0;
  padding-right: 0;
}

[id^="apply-"] .payment-section .list-group-item strong {
  color: white;
}

[id^="apply-"] .payment-section .alert {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
}

/*[id^="apply-"] .payment-section .alert-info {*/
/*  color: #cce5ff;*/
/*}*/

/*[id^="apply-"] .payment-section .alert-success {*/
/*  color: #d4edda;*/
/*}*/

@media (max-width: 992px) {

  [id^="apply-"] .steps,
  [id^="apply-"] .payment-section {
    margin-bottom: 2rem;
  }
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--light);
}

.feature-list i {
  color: var(--light);
  margin-right: 0.75rem;
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.feature-img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #edeeef;
    color: #333;
}

.dropdown-menu {
    max-height: 400px;
    overflow: auto;
}

/* Scrollbar track */
.dropdown-menu::-webkit-scrollbar {
    width: 5px;
}

/* Scrollbar thumb */
.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 10px;
    transition: background-color 0.3s;
}

/* Scrollbar thumb on hover */
.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background-color: #888;
}

/* Scrollbar track background */
.dropdown-menu::-webkit-scrollbar-track {
    background-color: #fff;
}
