* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Outfit", sans-serif;
  background: #fff;
  min-height: 100vh;
  /* overflow: hidden; */
}
/* ===========================
   Navbar
=========================== */
.navbar {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 55px;
  z-index: 999;
  box-shadow:
    0 -4px 20px #024b531f,
    0 4px 20px #024b532e,
    4px 0 20px #024b531f,
    -4px 0 20px #024b531f;
}
/* ===========================
   Logo
=========================== */
.logo img {
  width: 280px;
  transition: 0.3s;
}
.logo:hover img {
  transform: scale(1.05);
}
/* ===========================
   Menu
=========================== */
.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu a {
  text-decoration: none;
  color: #464640;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.menu a:hover {
  color: #fbd75f;
}
/* =========================================
   Responsive - Large Screens
========================================= */

@media (max-width: 1200px) {

    .navbar {
        padding: 0 35px;
    }

    .logo img {
        width: 240px;
    }

    .menu {
        gap: 24px;
    }

    .menu a {
        font-size: 15px;
    }
}


/* =========================================
   Responsive - Tablet Landscape
========================================= */

@media (max-width: 992px) {

    .navbar {
        height: 85px;
        padding: 0 28px;
        border-radius: 18px;
    }

    .logo img {
        width: 220px;
    }

    .menu {
        gap: 16px;
    }

    .menu a {
        font-size: 14px;
    }

}


/* =========================================
   Responsive - Tablet
========================================= */

@media (max-width: 850px) {

    .navbar {
        height: 75px;
        padding: 0 22px;
    }

    .logo img {
        width: 190px;
    }

    .menu {
        gap: 12px;
    }

    .menu a {
        font-size: 13px;
    }

}


/* =========================================
   Mobile Menu
========================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    font-size: 24px;

    color: #262521;

    cursor: pointer;

    border-radius: 10px;

    transition: 0.3s ease;
}

.menu-toggle:hover {
    background: #f4b323;
}


/* =========================================
   Responsive - Mobile
========================================= */

@media (max-width: 768px) {

    .navbar {

        top: 8px;
        left: 8px;
        right: 8px;

        height: 65px;

        padding: 0 15px;

        border-radius: 16px;
    }


    /* Logo */

    .logo {

        display: flex;

        align-items: center;

        max-width: 180px;

        min-width: 0;
    }

    .logo img {

        width: 100%;

        max-width: 180px;

        height: auto;
    }


    /* Hamburger */

    .menu-toggle {

        display: flex;

        flex-shrink: 0;
    }


    /* Menu */

    .menu {

        position: absolute;

        top: 73px;

        left: 8px;
        right: 8px;

        width: auto;

        background: #fff;

        border-radius: 16px;

        margin: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        overflow: hidden;

        max-height: 0;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            transform 0.35s ease,
            visibility 0.35s ease;

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.15);

        z-index: 998;
    }


    /* Active Menu */

    .menu.active {

        max-height: 500px;

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        padding: 8px 0;
    }


    /* Menu Links */

    .menu a {

        width: 100%;

        min-height: 50px;

        padding: 14px 20px;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        font-size: 15px;

        color: #262521;

        border-bottom: 1px solid #eeeeee;
    }

    .menu a:last-child {

        border-bottom: none;
    }

    .menu a:hover {

        background: #f4b323;

        color: #262521;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 576px) {

    .navbar {

        height: 62px;

        top: 7px;
        left: 7px;
        right: 7px;

        padding: 0 12px;

        border-radius: 14px;
    }


    .logo {

        max-width: 155px;
    }

    .logo img {

        max-width: 155px;
    }


    .menu-toggle {

        width: 38px;
        height: 38px;

        font-size: 22px;
    }


    .menu {

        top: 69px;

        left: 5px;
        right: 5px;

        border-radius: 14px;
    }


    .menu a {

        min-height: 48px;

        padding: 13px 18px;

        font-size: 14px;
    }

}


/* =========================================
   Very Small Mobile
========================================= */

@media (max-width: 400px) {

    .navbar {

        height: 58px;

        padding: 0 10px;

        border-radius: 12px;
    }


    .logo {

        max-width: 135px;
    }

    .logo img {

        max-width: 135px;
    }


    .menu-toggle {

        width: 36px;
        height: 36px;

        font-size: 20px;
    }


    .menu {

        top: 64px;
    }

    .menu a {

        padding: 12px 16px;

        font-size: 13px;
    }

}
/* =========================================
   Mobile - Apply Now Button
========================================= */
@media (max-width: 768px) {

    .menu a.about-btn {
        width: 60% !important;
        min-height: auto !important;

        margin: 8px auto !important;

        padding: 9px 22px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        text-align: center !important;

        border-radius: 8px;
    }

    .menu a.about-btn:hover {
        background: #262521;
        color: #fff !important;
    }
}
/*=========================================
        Banner Section
=========================================*/
.banner-section {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background: #0d0d0d;
  font-family: "Outfit", sans-serif;
  /* margin-top: 120px; */
  padding-top: 150px;
}
.banner-container {
  width: 92%;
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 42% 33% 25%;
  align-items: center;
  gap: 0px;
  position: relative;
  z-index: 2;
}
/*=========================================
        Background
=========================================*/
.banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.banner-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  left: 54.5%;
  top: 50%;
  transform: translate(-50%, -45%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 179, 35, 0.65) 0%,
    rgba(244, 179, 35, 0.25) 35%,
    transparent 75%
  );
  filter: blur(45px);
}
.banner-ring {
  position: absolute;
  opacity: 0.35;
  border-radius: 50%;
  border: 1px solid rgba(245, 179, 35, 0.18);
}
.banner-ring-1 {
  width: 360px;
  height: 360px;
  left: 54.5%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner-ring-2 {
  width: 460px;
  height: 460px;
  left: 54.5%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/*=========================================
        Left Content
=========================================*/
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border: 1px solid rgba(245, 179, 35, 0.35);
  border-radius: 50px;
  color: #f4b323;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.03);
}
.banner-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4b323;
}
.banner-title {
  font-size: 60px;
  line-height: 1.05;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.banner-title span {
  color: #f4b323;
  display: inline;
}
.banner-divider {
  width: 80px;
  height: 4px;
  background: #f4b323;
  border-radius: 20px;
  margin-bottom: 35px;
}
.banner-text {
  color: #d2d2d2;
  line-height: 1.7;
  font-size: 19px;
  max-width: 560px;
  margin-bottom: 25px;
}
/*=========================================
        Buttons
=========================================*/
.banner-buttons {
  display: flex;
  gap: 18px;
}
.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  border-radius: 60px;
  transition: 0.35s;
}
.banner-btn-outline {
  padding: 17px 30px;
  color: #f4b323;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(244, 179, 35, 0.5);
}
.banner-btn-outline:hover {
  background: #f4b323;
  color: #111;
}
/*=========================================
        Image
=========================================*/
.banner-image {
  display: flex;
  justify-content: center;
  position: relative;
  transform: translateX(-40px);
}
.banner-image img {
  width: 100%;
  max-width: 560px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
/*=========================================
        Feature Cards
=========================================*/
.banner-features {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-left: -40px;
}
.banner-feature-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  transition: 0.35s;
}
.banner-feature-card:hover {
  transform: translateX(-10px);
  border-color: #f4b323;
}
.banner-feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4b323;
  color: #111;
  font-size: 28px;
}
.banner-feature-content h4 {
  color: #fff;
  font-size: 28px;
  margin: 8px 0;
}
.banner-feature-content p {
  color: #bdbdbd;
  line-height: 1.7;
}
/* Primary Button */
.banner-btn-primary {
  background: linear-gradient(135deg, #262521, #f4b323);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  padding: 17px 34px;
}
.banner-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px rgba(244, 179, 35, 0.35);
}
/*=========================================
        Decorative Dots
=========================================*/
.banner-dots {
  position: absolute;
  width: 180px;
  height: 180px;
  opacity: 0.45;
  background-image: radial-gradient(#f4b323 1.8px, transparent 1.8px);
  background-size: 18px 18px;
}
.banner-dots-left {
  bottom: 0px;
  right: 00px;
}
.banner-dots-right {
  right: 0px;
}
/*=========================================
        Floating Animation
=========================================*/
.banner-image {
  animation: bannerFloat 6s ease-in-out infinite;
}
.banner-feature-card:nth-child(1) {
  animation: bannerCard 5s ease-in-out infinite;
}
.banner-feature-card:nth-child(2) {
  animation: bannerCard 5s ease-in-out 0.4s infinite;
}
.banner-feature-card:nth-child(3) {
  animation: bannerCard 5s ease-in-out 0.8s infinite;
}
@keyframes bannerFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes bannerCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/*=========================================
        Hover Effects
=========================================*/
.banner-image img {
  transition: 0.5s;
}
.banner-image:hover img {
  transform: scale(1.03);
}
.banner-feature-card:hover {
  box-shadow: 0 25px 45px rgba(244, 179, 35, 0.15);
}
.banner-btn {
  transition: 0.35s ease;
}
.banner-btn:hover {
  transform: translateY(-4px);
}
/*=========================================
        Responsive
=========================================*/
@media (max-width: 1200px) {
  .banner-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .banner-content {
    order: 1;
  }
  .banner-image {
    order: 2;
  }
  .banner-features {
    order: 3;
    max-width: 650px;
    margin: auto;
  }
  .banner-divider {
    margin: 30px auto;
  }
  .banner-text {
    margin: 0 auto 40px;
  }
  .banner-buttons {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .banner-section {
    padding: 90px 0;
    /* margin-top: 80px; */
  }
  .banner-title {
    font-size: 48px;
  }
  .banner-text {
    font-size: 16px;
  }
  .banner-image img {
    max-width: 350px;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
  }
  .banner-buttons {
    flex-direction: column;
  }
  .banner-btn {
    width: 100%;
    justify-content: center;
  }
  .banner-feature-card {
    padding: 20px;
  }
  .banner-feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .banner-feature-content h4 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .banner-title {
    font-size: 38px;
  }
  .banner-badge {
    font-size: 12px;
    padding: 8px 16px;
  }
  .banner-text {
    font-size: 15px;
  }
  .banner-image img {
    max-width: 280px;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
  }
  .banner-feature-card {
    flex-direction: column;
    text-align: center;
  }
  .banner-feature-content h4 {
    font-size: 20px;
  }
  .banner-dots,
  .banner-ring-2 {
    display: none;
  }
}
/*=====================================
    Education Section
======================================*/
.education-section {
  padding: 90px 0;
  background: #f8fafc;
  font-family: "Outfit", sans-serif;
  overflow: hidden;
}
.education-container {
  width: 90%;
  /* max-width: 1320px; */
  margin: auto;
}
/*=====================================
    Heading
======================================*/
.education-heading {
  text-align: center;
  margin-bottom: 80px;
}
.education-heading h2 {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}
.education-heading h2 span {
  color: #f4b323;
}
.education-heading p {
  font-size: 18px;
  color: #666;
}
/*=====================================
    Timeline
======================================*/
.education-process {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
/* Main dotted line */
.education-process::before {
  content: "";
  position: absolute;
  top: 155px;
  left: 9%;
  width: 82%;
  border-top: 2px dashed #d5d5d5;
  z-index: 0;
}
/*=====================================
    Card
======================================*/
.education-card {
  width: 19%;
  position: relative;
  z-index: 2;
}
.education-card-top {
  margin-top: 0;
}
.education-card-bottom {
  margin-top: 80px;
}
/*=====================================
    Box
======================================*/
.education-box {
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}
.education-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}
/*=====================================
    Icon
======================================*/
.education-icon {
  width: 65px;
  height: 65px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
}
.education-yellow {
  background: #f4b323;
}
/*=====================================
    Text
======================================*/
.education-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}
.education-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}
/*=====================================
    Connector Lines
======================================*/
.education-line-1 {
  top: 165px;
  left: 18%;
  height: 80px;
}
.education-line-1::after {
  top: 80px;
  left: 0;
}
.education-line-2 {
  top: 245px;
  left: 38%;
  height: 80px;
}
.education-line-2::after {
  top: 0;
  left: 0;
}
.education-line-3 {
  top: 165px;
  left: 58%;
  height: 80px;
}
.education-line-3::after {
  top: 80px;
  left: 0;
}
.education-line-4 {
  top: 245px;
  left: 78%;
  height: 80px;
}
.education-line-4::after {
  top: 0;
  left: 0;
}
/*=====================================
    Responsive
======================================*/
@media (max-width: 991px) {
  .education-process {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .education-process::before {
    display: none;
  }
  .education-card {
    width: 100% !important;
    max-width: 500px;
    margin: 0;
  }
  .education-card-bottom {
    margin-top: 0;
  }
  .education-line {
    display: none;
  }
  .education-heading h2 {
    font-size: 38px;
  }
}
@media (max-width: 576px) {
  .education-section {
    padding: 60px 0;
  }
  .education-heading h2 {
    font-size: 30px;
  }
  .education-heading p {
    font-size: 15px;
  }
  .education-box {
    padding: 25px 18px;
  }
  .education-box h4 {
    font-size: 20px;
  }
  .education-box p {
    font-size: 14px;
  }
  .education-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}
/* =========================================
   Mobile Timeline Dotted Line
========================================= */
@media (max-width: 991px) {

  .education-process {
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }

  /* Vertical dotted line */
  .education-process::before {
    display: block !important;

    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;

    height: auto;

    border-top: none;
    border-left: 2px dashed #d5d5d5;

    transform: translateX(-50%);

    z-index: 0;
  }

  .education-card {
    width: 100% !important;
    max-width: 500px;

    position: relative;
    z-index: 2;

    margin: 0 !important;
  }

  /* Hide existing desktop connector lines */
  .education-line {
    display: none !important;
  }

  .education-box {
    position: relative;
    z-index: 2;
    background: #fff;
  }
}
/*====================================
        About Section
====================================*/
.about-section {
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
}
.about-container {
  width: 90%;
  /* max-width: 1320px; */
  margin: auto;
}
.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
/*====================================
        Left
====================================*/
.about-left {
  width: 50%;
  position: relative;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  display: block;
  border-radius: 80px 240px 80px 80px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}
/*====================================
        Floating Cards
====================================*/
.about-card {
  position: absolute;
  width: 280px;
  padding: 22px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: 0.35s;
}
.about-card:hover {
  transform: translateY(-8px);
}
.about-card-left {
  left: -30px;
  bottom: 35px;
  background: linear-gradient(135deg, #262521, #f4b323);
}
.about-card-right {
  right: -40px;
  bottom: -25px;
  background: linear-gradient(135deg, #262521, #f4b323);
}
.about-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.about-card p {
  font-size: 15px;
  line-height: 1.7;
}
/*====================================
        Right
====================================*/
.about-right {
  width: 50%;
}
.about-subtitle {
  display: inline-block;
  color: #f4a622;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.about-heading {
  font-size: 52px;
  font-weight: 700;
  color: #103d6d;

  line-height: 1.15;
  margin-bottom: 18px;
}
.about-small-heading {
  font-size: 24px;
  color: #111;
  font-weight: 500;
  margin-bottom: 25px;
}
.about-text {
  font-size: 17px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}
/*====================================
        List
====================================*/
.about-list {
  list-style: none;
  padding: 0;
  margin: 35px 0;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: #222;
  margin-bottom: 18px;
}
.about-list i {
  color: #f4a622;
  font-size: 20px;
}
/*====================================
        Button
====================================*/
.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 14px 30px;

    background: #262521;
    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.35s;

    white-space: nowrap;
}
.about-btn:hover {
    background: #f4a622;
    transform: translateY(-3px);
}
.about-btn i {
  transition: 0.35s;
}
.about-btn:hover i {
  transform: translateX(5px);
}
/*====================================
        Responsive
====================================*/
@media (max-width: 1200px) {
  .about-row {
    flex-direction: column;
    gap: 60px;
  }
  .about-left,
  .about-right {
    width: 100%;
  }
  .about-heading {
    font-size: 42px;
  }
}
/* =========================================
   Responsive - Tablet / Mobile
========================================= */
@media (max-width: 768px) {

    .about-image {
        position: relative;
        width: 100%;
    }

    .about-image img {
        width: 100%;
        display: block;
        border-radius: 40px;
    }

    /* Floating Cards */
    .about-card {
        position: absolute !important;
        width: 44% !important;

        margin: 0 !important;
        padding: 14px 12px;

        box-sizing: border-box;

        border-radius: 14px;

        z-index: 5;
    }

    /* Left Card */
    .about-card-left {
        left: -8px !important;
        right: auto !important;
        bottom: 20px !important;
    }

    /* Right Card */
    .about-card-right {
        right: -8px !important;
        left: auto !important;
        bottom: -20px !important;
    }

    .about-card h4 {
        font-size: 15px;
        line-height: 1.3;
        margin: 0 0 6px;
    }

    .about-card p {
        font-size: 11px;
        line-height: 1.4;
        margin: 0;
    }

    .about-heading {
        font-size: 34px;
    }

    .about-small-heading {
        font-size: 20px;
    }

    .about-text {
        font-size: 16px;
    }

    .about-list li {
        font-size: 16px;
    }

    .about-btn {
        padding: 13px 24px;
        font-size: 15px;
    }
}
@media (max-width: 576px) {

    .about-section {
        padding: 70px 0;
    }

    .about-image img {
        border-radius: 30px;
    }

    .about-card {
        width: 46% !important;
        padding: 12px 10px;
        border-radius: 13px;
    }

    .about-card-left {
        left: -5px !important;
        bottom: 15px !important;
    }

    .about-card-right {
        right: -5px !important;
        bottom: -18px !important;
    }

    .about-card h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .about-card p {
        font-size: 10px;
        line-height: 1.35;
    }

    .about-heading {
        font-size: 30px;
    }

    /* Buttons ko touch nahi karna */
    .about-btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    .about-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
}
@media (max-width: 400px) {

    .about-card {
        width: 47% !important;
        padding: 10px 8px;
    }

    .about-card-left {
        left: -3px !important;
        bottom: 12px !important;
    }

    .about-card-right {
        right: -3px !important;
        bottom: -15px !important;
    }

    .about-card h4 {
        font-size: 12px;
    }

    .about-card p {
        font-size: 9px;
    }

    .about-btn {
        width: 100%;
        padding: 13px 18px;
        font-size: 14px;
    }

    .about-buttons {
        gap: 10px;
    }
}
/*========================================
            Courses Section
========================================*/
.courses-section {
  padding: 50px 0;
  background: #f8f9fc;
  font-family: "Outfit", sans-serif;
}
.courses-container {
  width: 95%;
  max-width: 1600px;
  margin: auto;
}
.courses-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
/*========================================
            Sidebar
========================================*/
.courses-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.courses-category {
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #ececec;
}
.courses-category:hover {
  background: #f4f8fb;
}
.courses-category h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}
.courses-category span {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  font-size: 12px;
  color: #0f6fa5;
  background: #edf7ff;
  border-radius: 20px;
}
.courses-active {
  background: #2d6e9f;
}
.courses-active h5,
.courses-active span {
  color: #fff;
}
.courses-active span {
  background: rgba(255, 255, 255, 0.18);
}
/*========================================
            Grid
========================================*/
.courses-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}
/*========================================
            Card
========================================*/
.course-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
/*========================================
            Badge
========================================*/
.courses-badge {
  background: #f4e8e8;
  color: #365d8b;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
  min-height: 58px;
}
/*========================================
            Card Body
========================================*/
.course-card-body {
  padding: 25px 20px;
  text-align: center;
  flex: 1;
}
.course-card-body img {
  width: 55px;
  margin-bottom: 18px;
  transition: 0.35s;
}
.course-card:hover img {
  transform: scale(1.08);
}
.course-card-body h4 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #8b0000;
  line-height: 1.45;
}
/*========================================
            Button
========================================*/
.course-btn {
  display: block;
  margin: 0 15px 15px;
  background: #2d6e9f;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.courses-btn:hover {
  background: #154c73;
}
/*========================================
            Responsive
========================================*/
@media (max-width: 992px) {
  .courses-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .courses-sidebar {
    width: 100%;
    position: static;
  }
  .courses-category-list {
    display: flex;
    gap: 10px;
    overflow: auto;
    white-space: nowrap;
  }
  .courses-category {
    min-width: 180px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .course-card-body h4 {
    font-size: 22px;
  }
}
/*=========================================
        Mobile Course Categories
=========================================*/
@media (max-width: 768px) {

  .courses-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  /* Category Box */
  .courses-sidebar {
    width: 100%;
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }

  /* Hide Categories Heading */
  .sidebar-title {
    display: none;
  }

  /* IMPORTANT: vertical tabs */
  .courses-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;

    width: 100%;
    margin: 0;
    padding: 0;

    overflow: visible;
    white-space: normal;
  }

  .courses-category {
    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 12px;

    box-sizing: border-box;
    border: 1px solid #ececec;
    border-radius: 12px;

    background: #ffffff;

    transform: none !important;
  }

  .courses-category:hover {
    background: #f4f8ff;
    transform: none !important;
  }

  /* Active Tab */
  .courses-category.active {
    background: #f4b323;
    border-color: #f4b323;
  }

  .courses-category.active h5 {
    color: #000;
  }

  .courses-category h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #111;
  }

  /* Description Pill */
  .courses-category span {
    display: block;

    width: 100%;
    box-sizing: border-box;

    margin-top: 5px;
    padding: 3px 10px;

    font-size: 10px;
    line-height: 1.4;

    color: #666;
    background: #edf7ff;

    border-radius: 20px;
  }

  .courses-category.active span {
    color: #555;
    background: #edf7ff;
  }

  /* Courses below tabs */
  .courses-content {
    width: 100%;
  }

  .courses-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}


/*=========================================
        Small Mobile
=========================================*/
@media (max-width: 576px) {

  .courses-container {
    width: 92%;
  }

  .courses-sidebar {
    padding: 12px;
    border-radius: 12px;
  }

  .courses-category-list {
    gap: 10px;
  }

  .courses-category {
    padding: 12px;
    border-radius: 12px;
  }

  .courses-category h5 {
    font-size: 14px;
  }

  .courses-category span {
    font-size: 10px;
    padding: 3px 9px;
  }

  .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
/*=============================
        Courses Layout
==============================*/
.courses-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.courses-sidebar {
  width: 260px;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  /* position: sticky; */
  /* top: 100px; */
}
.sidebar-title {
  margin-bottom: 20px;
}
.sidebar-title h3 {
  font-size: 24px;
  margin: 0;
  color: #16213e;
}
.courses-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.courses-category {
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.35s;
}
.courses-category:hover {
  background: #f4f8ff;
  transform: translateX(6px);
}
.courses-category.active {
  background: #f4b323;
  color: #fff;
}
.courses-category.active h5,
.courses-category.active span {
  color: #000;
}
.courses-category h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.courses-category span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #666;
}
/*=========================
        Right Side
=========================*/
.courses-content {
  flex: 1;
}
.courses-topbar {
  margin-bottom: 25px;
}
.courses-topbar input {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 0 18px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}
.courses-topbar input:focus {
  border-color: #0d6efd;
}
/*=========================
        Grid
=========================*/
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}
/*=========================
        Card
=========================*/
.course-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ececec;
  transition: 0.35s;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}
.course-badge {
  background: #edf5ff;
  color: #f4b323;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
}
.course-body {
  padding: 30px;
  text-align: center;
  flex: 1;
}
.course-image {
    width: 110px;
    height: 110px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 18px;

    /* background: #f8f8f8; */

    transition: 0.35s;
}
.course-image img {
    width: 90%;
    height: 90%;

    object-fit: contain;

    display: block;

    transition: 0.35s;
}

.course-card:hover .course-image img {
    transform: scale(1.08);
}
.course-body h3 {
  margin: 0;
  font-size: 30px;
  color: #262521;
  font-weight: 700;

    line-height: 1.3;
}

.course-body p {
  margin-top: 8px;
  color: #666;
  line-height: 1.6;
}
.course-footer {
  padding: 18px;
}
.course-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #f4b323;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}
.course-btn:hover {
  background: #262521;
}
/*=========================
        Modal
=========================*/
.course-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.course-modal.active {
  display: flex;
}
.course-modal-content {
  width: 90%;
  max-width: 900px;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  max-height: 85vh;
  overflow: auto;
  position: relative;
}
.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 34px;
  cursor: pointer;
}
.modal-header {
  margin-bottom: 25px;
}
.modal-header h2 {
  margin: 0;
  color: #f4b323;
}
.specialization-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.specialization-list div {
  padding: 12px;
  background: #f7f7f7;
  border-radius: 10px;
  transition: 0.3s;
}
.specialization-list div:hover {
  background: #edf5ff;
}
.apply-btn {
  display: inline-block;
  margin-top: 30px;
  background: #f4b323;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
}
/*=========================
        Responsive
=========================*/
@media (max-width: 992px) {
  .courses-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .courses-sidebar {
    width: 100%;
    position: static;
  }
  .courses-category-list {
    display: flex;
    overflow: auto;
    gap: 10px;
  }
  .courses-category {
    min-width: 220px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-image {
        width: 115px;
        height: 115px;
    }

    .course-body h3 {
        font-size: 25px;
    }
}
@media (max-width: 576px) {
  .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .course-body h3 {
    font-size: 24px;
  }
  .specialization-list {
    grid-template-columns: 1fr;
  }
  .course-image {
        width: 130px;
        height: 130px;
    }

    .course-body h3 {
        font-size: 23px;
    }
}

/* =========================================
   MOBILE - 2 COURSES PER ROW
========================================= */
@media (max-width: 576px) {

  .courses-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .course-card {
    min-width: 0;
  }

  .course-body {
    padding: 15px 8px;
  }

  .course-image {
    width: 75px;
    height: 75px;
    margin: 0 auto 12px;
  }

  .course-body h3 {
    font-size: 18px;
    line-height: 1.25;
  }

  .course-footer {
    padding: 10px;
  }

  .course-btn {
    padding: 9px 5px;
    font-size: 13px;
  }
}
/*==========================================
        Universities Section
==========================================*/
.universities-section {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
}
.universities-container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}
/*==========================================
        Heading
==========================================*/
.universities-heading {
  text-align: center;
  position: relative;
  margin-bottom: 70px;
}
.universities-bg-text {
  position: absolute;
  left: 50%;
  top: -55px;
  transform: translateX(-50%);
  font-size: 120px;
  font-weight: 800;
  color: #dbeafe;
  line-height: 1;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
}
.universities-title {
  position: relative;
  z-index: 2;
  font-size: 50px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}
.universities-title span {
  color: #f4b323;
}
.universities-description {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
}
.universities-description a {
  color: #0f62a9;
  text-decoration: none;
  font-weight: 600;
}
/*==========================================
        Grid
==========================================*/
.universities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 22px;
}
/*==========================================
        Card
==========================================*/
.universities-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px 18px;
  text-align: center;
  transition: 0.35s;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.universities-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
/*==========================================
        Logo
==========================================*/
.universities-logo {
  width: 72px;
  height: 72px;
  margin: auto auto 18px;
  border-radius: 50%;
  border: 2px solid #f4b323;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.35s;
}
.universities-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.universities-card:hover .universities-logo {
  transform: rotate(8deg) scale(1.05);
}
/*==========================================
        Text
==========================================*/
.universities-count {
  font-size: 24px;
  color: #f4b323;
  font-weight: 700;
  margin-bottom: 10px;
}
.universities-name {
  font-size: 14px;
  line-height: 1.6;
  color: #262521;
  min-height: 48px;
  font-weight: 500;
}
/*==========================================
        Footer Button
==========================================*/
.universities-footer {
  text-align: center;
  margin-top: 50px;
}
.universities-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #f4b323;
  border-radius: 10px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: 0.35s;
}
.universities-btn:hover {
  background: #f4b323;
  color: #fff;
}
/*==========================================
        Responsive
==========================================*/
@media (max-width: 1200px) {
  .universities-bg-text {
    font-size: 90px;
  }
  .universities-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .universities-bg-text {
    font-size: 65px;
    top: -16px;
  }
  .universities-title {
    font-size: 30px;
    padding: 8px;
  }
  .universities-description {
    font-size: 15px;
  }
  .universities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .universities-grid {
    grid-template-columns: 1fr;
  }
  .universities-bg-text {
    font-size: 39px;
  }
  .universities-title {
    font-size: 20px;
  }
  .universities-btn {
    width: 90%;
  }
}
/*=========================================
            Footer Section
=========================================*/
.footer-section {
  background: #262521;
  padding: 80px 0 50px;
  font-family: "Outfit", sans-serif;
}
.footer-container {
  width: 90%;
  /* max-width: 1400px; */
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 60px;
}
/*=========================================
            About
=========================================*/
.footer-about {
  color: #fff;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 25px;
}
.footer-logo img {
  width: 250px;
  max-width: 100%;
}
.footer-description {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}
/*=========================================
            Headings
=========================================*/
.footer-title {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-left: 18px;
  border-left: 4px solid #d9a400;
}
/*=========================================
            Links
=========================================*/
.footer-links ul,
.footer-courses ul,
.footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li,
.footer-courses li {
  margin-bottom: 18px;
}
.footer-links a,
.footer-courses a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
}
.footer-links a i,
.footer-courses a i {
  color: #d9a400;
  font-size: 12px;
}
.footer-links a:hover,
.footer-courses a:hover {
  color: #d9a400;
  padding-left: 8px;
}
/*=========================================
            Contact
=========================================*/
.footer-contact li {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  /* display: flex; */
  gap: 12px;
}
.footer-contact li i {
  color: #d9a400;
  margin-top: 5px;
  min-width: 18px;
}
/*=========================================
            Social
=========================================*/
.footer-social {
  margin-top: 35px;
}
.footer-social a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  margin-right: 12px;
  transition: 0.3s;
}
.footer-social a:hover {
  background: #d9a400;
  color: #3b2b00;
  border-color: #d9a400;
  transform: translateY(-5px);
}
.footer-social i {
  font-size: 20px;
}
/*=========================================
            Divider
=========================================*/
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 60px;
  padding-top: 25px;
  text-align: center;
  color: #d8d8d8;
  font-size: 15px;
}
/*=========================================
            Responsive
=========================================*/
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
    text-align: center;
  }

  /* About full width */
  .footer-about {
    grid-column: 1 / -1;
  }

  /* Pages + Courses side by side */
  .footer-links,
  .footer-courses {
    width: 100%;
  }

  /* Contact full width */
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-title {
    font-size: 22px;
    border-left: none;
    padding-left: 0;
    margin-bottom: 20px;
    position: relative;
  }

  .footer-title::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #d9a400;
    display: block;
    margin: 8px auto 0;
  }

  .footer-links ul,
  .footer-courses ul {
    text-align: left;
    display: inline-block;
  }

  .footer-links a,
  .footer-courses a {
    justify-content: flex-start;
    font-size: 14px;
    gap: 8px;
  }

  .footer-links li,
  .footer-courses li {
    margin-bottom: 12px;
  }

  .footer-contact li {
    justify-content: center;
    text-align: center;
  }

  .footer-social {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-container {
    width: 92%;
    grid-template-columns: 1fr 1fr;
    gap: 30px 12px;
  }

  .footer-logo img {
    width: 200px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .footer-links a,
  .footer-courses a {
    font-size: 13px;
    gap: 6px;
  }

  .footer-links li,
  .footer-courses li {
    margin-bottom: 10px;
  }

  .footer-contact li {
    font-size: 14px;
  }
}
/*=========================================
            Services Section
=========================================*/
.services-section {
  padding: 70px 0;
  background: #ffffff;
  font-family: "Outfit", sans-serif;
}
.services-container {
  width: 92%;
  /* max-width: 1400px; */
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
/*=========================================
            Service Card
=========================================*/
.services-card {
  width: 300px;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.services-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
}
.services-card:hover::before {
  transform: scaleX(1);
}
.services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}
/*=========================================
            Colors
=========================================*/
.services-yellow {
  background: #f4b323;
}
/*=========================================
            Icon
=========================================*/
.services-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  margin: 10px auto 10px;
  background: #fff;
}
.services-icon i {
  font-size: 36px;
  color: #262521;
  transition: 0.3s ease;
}
.services-card:hover .services-icon {
  transform: translateY(-5px);
}
.services-card:hover .services-icon i {
  color: #fbd75f;
}
.services-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.services-card:hover .services-icon {
  transform: rotate(10deg) scale(1.08);
}
/*=========================================
            Title
=========================================*/
.services-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  line-height: 1.45;
}
/*=========================================
            Individual Hover Colors
=========================================*/
.services-blue:hover {
  background: #c4eef5;
}
.services-orange:hover {
  background: #ffe6be;
}
.services-purple:hover {
  background: #e6d3f5;
}
.services-pink:hover {
  background: #f3aedc;
}
.services-red:hover {
  background: #f688b0;
}
/*=========================================
            Responsive
=========================================*/
@media (max-width: 1200px) {
  .services-card {
    width: 46%;
  }
}
@media (max-width: 768px) {

  .services-container {
    width: 94%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .services-card {
    width: 100%;
    min-height: 145px;
    padding: 18px 10px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;
    border-radius: 25px;
  }

  .services-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .services-icon i {
    font-size: 28px;
  }

  .services-icon img {
    width: 30px;
    height: 30px;
  }

  .services-title {
    width: 100%;
    margin: 0;

    font-size: 15px;
    line-height: 1.3;
    text-align: center;
  }
}


/*=========================================
        Small Mobile
=========================================*/
@media (max-width: 576px) {

  .services-section {
    padding: 50px 0;
  }

  .services-container {
    width: 92%;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .services-card {
    min-height: 135px;
    padding: 15px 8px;
    border-radius: 20px;
    gap: 8px;
  }

  .services-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .services-icon i {
    font-size: 24px;
  }

  .services-title {
    font-size: 14px;
    line-height: 1.3;
  }
}
/* =========================================
   Center Last Service Card on Mobile
========================================= */

@media (max-width: 768px) {

  .services-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }

}

@media (max-width: 576px) {

  .services-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }

}
/*=========================================
        Testimonial Section
=========================================*/
.testimonial-section {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
  padding-bottom: 50px;
}
.testimonial-container {
  width: 92%;
  /* max-width: 1400px; */
  margin: auto;
}
/*=========================================
        Swiper
=========================================*/
.testimonial-slider {
  overflow: visible;
  padding: 30px 0 60px;
}
.testimonial-slider .swiper-wrapper {
  align-items: stretch;
}
.testimonial-slider .swiper-slide {
  height: auto;
  transition: 0.45s ease;
  transform: scale(0.88);
  opacity: 0.45;
}
/*=========================================
        Active Slide
=========================================*/
.testimonial-slider .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 20;
}
.testimonial-slider .swiper-slide-prev,
.testimonial-slider .swiper-slide-next {
  opacity: 0.85;
  transform: scale(0.93);
}
/*=========================================
        Card
=========================================*/
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 350px;
  background: #ffffff;
  border-radius: 28px;
  padding: 35px;
  border: 1px solid #dfe8ea;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}
.testimonial-slider .swiper-slide-active .testimonial-card {
  background: linear-gradient(135deg, #262521, #f4b323);
  border: none;
}
.testimonial-slider .swiper-slide-active .testimonial-card * {
  color: #ffffff;
}
.testimonial-slider .swiper-slide-active span {
  color: #ffd447;
}
/*=========================================
        Navigation
=========================================*/
.testimonial-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 45px;
}
.testimonial-prev,
.testimonial-next {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #024b53;
  color: #fff;
  cursor: pointer;
  transition: 0.35s;
  font-size: 18px;
}
.testimonial-prev:hover,
.testimonial-next:hover {
  background: #f89d13;
}
/*=========================================
        Profile
=========================================*/
.testimonial-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 18px;
}
.testimonial-profile-image {
  flex-shrink: 0;
}
.testimonial-profile-image img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.testimonial-profile-content {
  flex: 1;
}
.testimonial-profile-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #f4b323;
  line-height: 1.2;
  margin-bottom: 6px;
}
.testimonial-profile-content span {
  display: block;
  color: #707070;
  font-size: 16px;
  margin-bottom: 14px;
}
/*=========================================
        Company Section
=========================================*/
.testimonial-slider .swiper-slide-active {
  border-color: rgba(255, 255, 255, 0.18);
}
/*=========================================
        Quote
=========================================*/
.testimonial-content {
  position: relative;
  flex: 1;
}
.testimonial-slider .swiper-slide-active {
  color: rgba(255, 255, 255, 0.12);
}
.testimonial-content p {
  position: relative;
  z-index: 2;
  padding-top: 0px;
  margin-top: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}
/*=========================================
        Card Animation
=========================================*/
.testimonial-slider .swiper-slide {
  transition: all 0.45s ease;
}
.testimonial-slider .swiper-slide-active {
  z-index: 10;
}
.testimonial-slider .swiper-slide-active .testimonial-card {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(2, 75, 83, 0.25);
}
.testimonial-slider .swiper-slide-prev .testimonial-card,
.testimonial-slider .swiper-slide-next .testimonial-card {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.testimonial-card {
  transition: all 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
}
/*=========================================
        Swiper Overflow
=========================================*/
.testimonial-slider {
  overflow: visible !important;
}
.testimonial-slider .swiper-wrapper {
  align-items: stretch;
}
.testimonial-slider .swiper-slide {
  display: flex;
  height: auto;
}
.testimonial-card {
  width: 100%;
}
/*=========================================
        Navigation
=========================================*/
.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 0px;
}
.testimonial-prev,
.testimonial-next {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid #f4b323;
  background: #fff;
  color: #f4b323;
  cursor: pointer;
  transition: 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-prev i,
.testimonial-next i {
  font-size: 18px;
}
.testimonial-prev:hover,
.testimonial-next:hover {
  background: #f4b323;
  color: #fff;
}
/*=========================================
        Responsive
=========================================*/
@media (max-width: 1200px) {
  .testimonial-title {
    font-size: 42px;
  }
  .testimonial-card {
    min-height: 500px;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .testimonial-slider {
    padding-bottom: 30px;
  }
  .testimonial-title {
    font-size: 36px;
  }
  .testimonial-profile {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .testimonial-section {
    padding: 70px 0;
  }
  .testimonial-heading {
    margin-bottom: 45px;
  }
  .testimonial-title {
    font-size: 30px;
  }
  .testimonial-text {
    font-size: 16px;
  }
  .testimonial-card {
    min-height: auto;
    padding: 25px;
  }
  .testimonial-profile {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-content p {
    font-size: 15px;
  }
  .testimonial-navigation {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .testimonial-profile-image img {
    width: 70px;
    height: 70px;
  }
  .testimonial-profile-content h3 {
    font-size: 22px;
  }
  .testimonial-prev,
  .testimonial-next {
    width: 48px;
    height: 48px;
  }
}
/*=========================================
        About Banner Section
=========================================*/
.about-banner-section {
  position: relative;
  padding: 120px 0 0;
  background: #ffffff;
  overflow: hidden;
}
.about-banner-container {
  width: 92%;
  /* max-width: 1400px; */
  margin: 0 auto;
}
/*=========================================
        Grid
=========================================*/
.about-banner-grid {
  display: grid;
  grid-template-columns: 49% 51%;
  grid-template-rows: 650px 350px;
}
/*=========================================
        Common Box
=========================================*/
.about-banner-profile,
.about-banner-image,
.about-banner-vision {
  position: relative;
  overflow: hidden;
}
.about-banner-profile {
  overflow: visible;
}
/*=========================================
        Profile Panel
=========================================*/
.about-banner-profile {
  background: #d8d8d8;
  background-image: url("../images/pattern.png");
  background-repeat: repeat;
  background-size: 90px;
}
.about-banner-profile-inner {
  padding: 60px 60px;
}
/*=========================================
        Top Image
=========================================*/
.about-banner-image-top {
  background-image: url("../images/Know-Us.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-banner-logo {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}
.about-banner-logo img {
  width: 260px;
  display: block;
}
/*=========================================
        Bottom Image
=========================================*/
.about-banner-image-bottom {
  background-image: url("../images/Know-Us-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*=========================================
        Vision
=========================================*/
.about-banner-vision {
  background: #d9a400;
  background-image: url("../images/bg-lines.svg");
  background-repeat: repeat;
  background-size: 260px;
}
.about-banner-vision-inner {
  /* max-width: 660px; */
  padding: 75px 60px;
  /* padding-right: 0px; */
      text-align: justify;
}
/*=========================================
        Hover Effect
=========================================*/
.about-banner-image {
  transition: 0.5s;
}
.about-banner-image:hover {
  transform: scale(1.02);
}
/*=========================================
        Typography
=========================================*/
.about-banner-heading {
  font-size: 58px;
  font-weight: 700;
  color: #1d1d1d;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.about-banner-heading-space {
  margin-top: 55px;
}
.about-banner-text {
  font-size: 15px;
  line-height: 2;
  color: #303030;
  margin-bottom: 24px;
  text-align: justify;
}
.about-banner-vision-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}
.about-banner-vision-text {
  font-size: 15px;
  line-height: 2;
  color: #000;
  /* margin-bottom: 35px; */
}
/*=========================================
        Animation
=========================================*/
.about-banner-profile,
.about-banner-vision {
  transition: 0.35s ease;
}
.about-banner-profile:hover,
.about-banner-vision:hover {
  transform: translateY(-5px);
}
/*=========================================
        Responsive
=========================================*/
@media (max-width: 1200px) {
  .about-banner-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .about-banner-profile-inner,
  .about-banner-vision-inner {
    padding: 45px 40px;
  }
  .about-banner-heading {
    font-size: 48px;
  }
  .about-banner-vision-title {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .about-banner-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 450px 350px auto;
  }
  .about-banner-profile {
    order: 1;
  }
  .about-banner-image-top {
    order: 2;
    min-height: 450px;
  }
  .about-banner-image-bottom {
    order: 3;
    /* min-height: 350px; */
  }
  .about-banner-vision {
    order: 4;
  }
}
@media (max-width: 768px) {
  .about-banner-section {
    padding: 80px 0 0;
  }
  .about-banner-profile-inner,
  .about-banner-vision-inner {
    padding: 35px 25px;
  }
  .about-banner-heading {
    font-size: 40px;
  }
  .about-banner-text {
    font-size: 16px;
    line-height: 1.8;
  }
  .about-banner-vision-title {
    font-size: 34px;
  }
  .about-banner-vision-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
  }
  .about-banner-logo img {
    width: 180px;
  }
}
@media (max-width: 576px) {
  .about-banner-grid {
    grid-template-rows: auto 280px 220px auto;
  }
  .about-banner-heading {
    font-size: 32px;
  }
  .about-banner-heading-space {
    margin-top: 35px;
  }
  .about-banner-text {
    text-align: justify;
  }
}
/*=========================================
        About Success Section
=========================================*/
.about-success-section {
  width: 100%;
  background: #fff;
}
.about-success-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
  padding-left: 60px;
  padding-right: 60px;
}
.about-success-image {
  height: 100%;
  overflow: hidden;
}
.about-success-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}
.about-success-image:hover img {
  transform: scale(1.05);
}
/*=========================================
        Content
=========================================*/
.about-success-content {
  position: relative;
  padding: 70px 70px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.about-success-subtitle {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #c58b00;
  text-transform: uppercase;
}
.about-success-title {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: #c58b00;
  margin: 5px 0 20px;
}
.about-success-line {
  width: 70px;
  height: 5px;
  background: #c58b00;
  margin-bottom: 35px;
}
.about-success-content p {
  font-size: 17px;
  line-height: 2;
  color: #555;
  /* max-width: 560px; */
  text-align: justify;
}
/*=========================================
        Decorative Line
=========================================*/
.about-success-side-line {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 90px;
  background: #c58b00;
}
.about-success-left-line {
  left: 60px;
  right: auto;
}
/*=========================================
        Icon
=========================================*/
.about-success-icon {
  position: absolute;
  right: 45px;
  bottom: 55px;
  font-size: 42px;
  color: #c58b00;
}
.about-success-icon i {
  display: block;
}
/*=========================================
        Alternate Layout
=========================================*/
.about-success-row:nth-child(even) .about-success-content {
  text-align: right;
  align-items: flex-end;
}
.about-success-row:nth-child(even) .about-success-line {
  margin-left: auto;
}
.about-success-row:nth-child(even) .about-success-content p {
  text-align: right;
}
/*=========================================
        Responsive
=========================================*/
@media (max-width: 1200px) {
  .about-success-content {
    padding: 60px 50px;
  }
  .about-success-title {
    font-size: 46px;
  }
  .about-success-content p {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media (max-width: 991px) {
  .about-success-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  /* Alternate rows also image first */
  .about-success-row:nth-child(even) .about-success-image {
    order: 1;
  }
  .about-success-row:nth-child(even) .about-success-content {
    order: 2;
    text-align: left;
    align-items: flex-start;
  }
  .about-success-row:nth-child(even) .about-success-line {
    margin-left: 0;
  }
  .about-success-row:nth-child(even) .about-success-content p {
    text-align: left;
  }
  .about-success-image {
    height: 420px;
  }
  .about-success-content {
    padding: 50px 40px;
  }
  .about-success-title {
    font-size: 40px;
  }
  .about-success-side-line,
  .about-success-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .about-success-image {
    height: 300px;
  }
  .about-success-content {
    padding: 40px 25px;
  }
  .about-success-subtitle {
    font-size: 15px;
    letter-spacing: 4px;
  }
  .about-success-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .about-success-line {
    width: 55px;
    height: 4px;
    margin-bottom: 20px;
  }
  .about-success-content p {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
  }
}
@media (max-width: 480px) {
  .about-success-image {
    height: 240px;
  }
  .about-success-content {
    padding: 30px 20px;
  }
  .about-success-title {
    font-size: 28px;
  }
  .about-success-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}
/*=========================================
        Animation
=========================================*/
.about-success-row {
  overflow: hidden;
}
.about-success-content,
.about-success-image img {
  transition: all 0.5s ease;
}
.about-success-row:hover .about-success-image img {
  transform: scale(1.05);
}
.about-success-row:hover .about-success-content {
  background: #fcfcfc;
}
.about-success-row:hover .about-success-line {
  width: 90px;
  transition: 0.35s;
}
/*=========================================
        About Belife Section
=========================================*/
.about-belife-section {
  position: relative;
  padding: 80px 100px;
  background: #262521;
  overflow: hidden;
}
/* Radial Glow */
.about-belife-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 179, 35, 0.15) 0%,
    rgba(244, 179, 35, 0.08) 35%,
    rgba(244, 179, 35, 0) 75%
  );
  pointer-events: none;
}
/*=========================================
        Container
=========================================*/
.about-belife-container {
  position: relative;
  /* max-width: 1000px; */
  margin: auto;
  text-align: center;
  z-index: 2;
}
/*=========================================
        Subtitle
=========================================*/
.about-belife-subtitle {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #8d8d8d;
  font-weight: 600;
  margin-bottom: 25px;
}
/*=========================================
        Title
=========================================*/
.about-belife-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 60px;
}
/*=========================================
        Card
=========================================*/
.about-belife-card {
  /* max-width: 1000px; */
  margin: auto;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
/*=========================================
        Card Title
=========================================*/
.about-belife-card-title {
  color: #f4b323;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.4;
}
/*=========================================
        Card Text
=========================================*/
.about-belife-card-text {
  /* max-width: 800px; */
  margin: auto;
  color: #d2d2d2;
  font-size: 18px;
  line-height: 1.9;
  
}
/*=========================================
        Hover
=========================================*/
.about-belife-card {
  transition: 0.4s ease;
}
.about-belife-card:hover {
  transform: translateY(-8px);
  border-color: #f4b323;
  box-shadow: 0 25px 70px rgba(244, 179, 35, 0.18);
}
/*=========================================
        Responsive
=========================================*/
@media (max-width: 992px) {
  .about-belife-title {
    font-size: 44px;
  }
  .about-belife-card {
    padding: 45px;
  }
  .about-belife-card-title {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .about-belife-section {
    padding: 80px 20px;
  }
  .about-belife-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .about-belife-card {
    padding: 35px 25px;
  }
  .about-belife-card-title {
    font-size: 24px;
  }
  .about-belife-card-text {
    font-size: 16px;
    line-height: 1.8;
  }
  .about-belife-subtitle {
    letter-spacing: 3px;
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .about-belife-title {
    font-size: 30px;
  }
  .about-belife-card-title {
    font-size: 21px;
  }
  .about-belife-card {
    border-radius: 18px;
  }
}
/*=========================================
        Scholarship Banner
=========================================*/
.about-scholarship-section {
  padding: 90px 100px;
  background: #ffffff;
}
.about-scholarship-container {
  /* max-width: 1320px; */
  margin: auto;
  border: 1px solid rgba(244, 179, 35, 0.45);
  border-radius: 28px;
  background: #ffffff;
  padding: 42px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}
/*=========================================*/
.about-scholarship-left {
  flex: 1;
}
.about-scholarship-title {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #262521;
  font-size: 39px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}
.about-scholarship-icon {
  font-size: 32px;
}
.about-scholarship-description {
  color: #5d5d5d;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
}
/*=========================================*/
.about-scholarship-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.about-scholarship-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #262521;
  font-size: 16px;
  font-weight: 600;
}
.about-scholarship-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(244, 179, 35, 0.12);
  color: #f4b323;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
/*=========================================*/
.about-scholarship-right {
  flex-shrink: 0;
}
.about-scholarship-badge {
  width: 300px;
  height: 155px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f4b323, #d99800);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.35s;
  box-shadow: 0 18px 45px rgba(244, 179, 35, 0.35);
}
.about-scholarship-badge:hover {
  transform: translateY(-6px);
}
.about-scholarship-percent {
  color: #fff;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}
.about-scholarship-text {
  color: #fff;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 700;
}
/*=========================================
        Responsive
=========================================*/
@media (max-width: 991px) {
  .about-scholarship-container {
    flex-direction: column;
    text-align: center;
    padding: 35px;
  }
  .about-scholarship-title {
    justify-content: center;
    font-size: 34px;
  }
  .about-scholarship-list {
    justify-content: center;
  }
  .about-scholarship-badge {
    width: 260px;
    height: 130px;
  }
}
@media (max-width: 576px) {
  .about-scholarship-section {
    padding: 60px 15px;
  }
  .about-scholarship-container {
    padding: 25px;
    border-radius: 18px;
  }
  .about-scholarship-title {
    font-size: 28px;
  }
  .about-scholarship-description {
    font-size: 16px;
  }
  .about-scholarship-item {
    width: 100%;
    justify-content: flex-start;
  }
  .about-scholarship-percent {
    font-size: 42px;
  }
  .about-scholarship-text {
    font-size: 15px;
  }
}
/*=========================================
        Apply Form Modal
=========================================*/
.apply-form-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 999999;
  padding: 20px;
}
.apply-form-modal.apply-form-show {
  opacity: 1;
  visibility: visible;
}
/*=========================================*/
.apply-form-wrapper {
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  background: #262521;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.9);
  transition: 0.35s;
}
.apply-form-modal.apply-form-show .apply-form-wrapper {
  transform: scale(1);
}
/*=========================================
        Header
=========================================*/
.apply-form-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  color: #262521;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}
.apply-form-close:hover {
  background: #f4b323;
  color: #262521;
}
/*=========================================
        Body
=========================================*/
.apply-form-body {
  padding: 18px;
}
.apply-form-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.apply-form-subtitle {
  color: #d5d5d5;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}
/*=========================================
        Form
=========================================*/
.apply-form-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apply-form-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
}
.apply-form-group input,
.apply-form-group select {
  width: 100%;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #ffffff;
  padding: 0 16px;
  font-size: 14px;
  transition: 0.3s;
}
.apply-form-group input::placeholder {
  color: #bfbfbf;
}
.apply-form-group select {
  appearance: none;
  cursor: pointer;
}
.apply-form-group input:focus,
.apply-form-group select:focus {
  outline: none;
  border-color: #f4b323;
  background: rgba(255, 255, 255, 0.12);
}
/*=========================================
        Mobile
=========================================*/
.apply-form-mobile {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.apply-form-mobile span {
  padding: 0 16px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  height: 42px;
  display: flex;
  font-size: 13px;
  align-items: center;
}
.apply-form-mobile input {
  border: none !important;
  background: transparent !important;
  flex: 1;
}
/*=========================================
        Security Code
=========================================*/
.apply-form-security {
  display: flex;
  gap: 10px;
}
.apply-form-group select option {
  background: #ffffff !important;
  color: #262521 !important;
}
.apply-form-security input {
  flex: 1;
}
.apply-form-captcha {
  min-width: 140px;
  height: 42px;
  background: #f4b323;
  color: #262521;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
}
.apply-form-refresh {
  width: 42px;
  height: 42px;
  border: none;
  background: #f4b323;
  color: #262521;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}
.apply-form-refresh:hover {
  background: #ddb01d;
}
/*=========================================
        Checkbox
=========================================*/
.apply-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.apply-form-checkbox input {
  margin-top: 4px;
  accent-color: #f4b323;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.apply-form-checkbox span {
  color: #d8d8d8;
  font-size: 11px;
  line-height: 1.5;
}
.apply-form-checkbox a {
  color: #f4b323;
  font-weight: 600;
  text-decoration: none;
}
.apply-form-checkbox a:hover {
  text-decoration: underline;
}
/*=========================================
        Submit Button
=========================================*/
.apply-form-submit {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: #f4b323;
  color: #262521;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.apply-form-submit:hover {
  background: #e0a000;
  transform: translateY(-3px);
}
.apply-form-submit i {
  transition: 0.35s;
}
.apply-form-submit:hover i {
  transform: translateX(5px);
}
/*=========================================
        Scrollbar
=========================================*/
.apply-form-wrapper {
  max-height: 95vh;
  overflow-y: auto;
}
.apply-form-wrapper::-webkit-scrollbar {
  width: 6px;
}
.apply-form-wrapper::-webkit-scrollbar-thumb {
  background: #f4b323;
  border-radius: 20px;
}
/*=========================================
        Responsive
=========================================*/
@media (max-width: 768px) {
  .apply-form-wrapper {
    max-width: 98%;
    border-radius: 18px;
  }
  .apply-form-header {
    padding: 20px;
  }
  .apply-form-body {
    padding: 20px;
  }
  .apply-form-title {
    font-size: 28px;
  }
  .apply-form-subtitle {
    font-size: 14px;
  }
  .apply-form-group input,
  .apply-form-group select {
    height: 48px;
  }
  .apply-form-mobile span {
    height: 48px;
  }
  .apply-form-captcha {
    height: 48px;
    min-width: 75px;
    font-size: 14px;
  }
  .apply-form-refresh {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 576px) {
  .apply-form-modal {
    padding: 12px;
  }
  .apply-form-title {
    font-size: 24px;
  }
  .apply-form-checkbox {
    padding: 14px;
  }
  .apply-form-checkbox span {
    font-size: 12px;
  }
  .apply-form-submit {
    height: 52px;
    font-size: 15px;
  }
}
.apply-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 576px) {
  .apply-form-row {
    grid-template-columns: 1fr;
  }
}
.apply-form-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.apply-form-checkbox:has(input:invalid) {
  border-color: #ff4d4d;
}
/*=========================================
        Consultation Section
=========================================*/
.consultation-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 50px 0 80px;
  margin-top: 120px;
}
.consultation-container {
  width: 92%;
  /* max-width: 1400px; */
  margin: auto;
}
.consultation-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
/*=========================
        Left
=========================*/
.consultation-left {
  width: 45%;
  position: relative;
  z-index: 2;
}
.consultation-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
.consultation-video-icon {
  width: 52px;
  height: 52px;
  border: 3px solid #262521;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #262521;
  font-size: 20px;
}
.consultation-tagline {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 20px;
  font-weight: 700;
  color: #262521;
}
.consultation-separator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4b323;
}
/*=========================
        Heading
=========================*/
.consultation-heading {
  font-size: 62px;
  line-height: 0.95;
  font-weight: 900;
  color: #262521;
  margin-bottom: 15px;
  letter-spacing: -2px;
}
.consultation-heading span {
  display: block;
  color: #f4b323;
}
.consultation-description {
  max-width: 480px;
  font-size: 18px;
  line-height: 1.45;
  color: #444;
  margin-bottom: 18px;
}
.consultation-divider {
  width: 90px;
  height: 3px;
  background: #f4b323;
  border-radius: 20px;
  margin-bottom: 25px;
}
/*=========================
        Features
=========================*/
.consultation-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 25px;
}
.consultation-feature {
  text-align: center;
  position: relative;
}
.consultation-feature::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 18px;
  width: 1px;
  height: 70px;
  background: #dcdcdc;
}
.consultation-feature:last-child::after {
  display: none;
}
.consultation-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eef3f9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  color: #262521;
  font-size: 22px;
  transition: 0.35s;
}
.consultation-feature:hover .consultation-feature-icon {
  background: #262521;
  color: #f4b323;
  transform: translateY(-8px);
}
.consultation-feature h4 {
  margin-top: 10px;
  font-size: 15px;
  color: #262521;
  line-height: 1.45;
  font-weight: 600;
}
/*=========================
        Button
=========================*/
.consultation-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 26px;
  background: #262521;
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  transition: 0.35s;
}
.consultation-btn:hover {
  background: #f4b323;
  color: #262521;
  transform: translateY(-4px);
}
.consultation-btn i {
  font-size: 24px;
}
/*=========================
        Right
=========================*/
.consultation-right {
  width: 55%;
  position: relative;
}
.consultation-image-box img {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  display: block;
}
/*=========================
        Help Badge
=========================*/
.consultation-help {
  position: absolute;
  right: -60px;
  top: -80px;
  width: 180px;
  height: 180px;
  background: #262521;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}
.consultation-help::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
}
.consultation-help-inner {
  text-align: center;
  color: #fff;
  z-index: 2;
}
.consultation-help i {
  color: #f4b323;
  font-size: 40px;
  /* margin-bottom: 15px; */
}
.consultation-help h5 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.consultation-help strong {
  display: block;
  color: #f4b323;
  font-size: 18px;
  line-height: 1.15;
}
/*=========================
        Background Shapes
=========================*/
.consultation-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(244, 180, 35, 0.08);
}
.consultation-circle-top {
  width: 300px;
  height: 300px;
  top: -120px;
  left: 40%;
}
.consultation-circle-center {
  width: 520px;
  height: 520px;
  left: 34%;
  top: 80px;
  border: 2px solid rgba(244, 180, 35, 0.08);
  background: none;
}
.consultation-dot {
  position: absolute;
  width: 150px;
  height: 70px;
  background-image: radial-gradient(#f4b323 2px, transparent 2px);
  background-size: 22px 22px;
}
.consultation-dot-left {
  left: 0;
  top: 0;
}
.consultation-dot-right {
  right: 18%;
  top: 40px;
}
/*=========================
        Bottom Wave
=========================*/
.consultation-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.consultation-wave svg {
  width: 100%;
  height: 160px;
}
.consultation-wave path {
  fill: #262521;
}
/*=========================
        Responsive
=========================*/
@media (max-width: 1200px) {
  .consultation-wrapper {
    flex-direction: column;
  }
  .consultation-left,
  .consultation-right {
    width: 100%;
  }
  .consultation-heading {
    font-size: 70px;
  }
  .consultation-description {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .consultation-section {
    padding: 70px 0 120px;
  }
  .consultation-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .consultation-tagline {
    font-size: 24px;
    flex-wrap: wrap;
  }
  .consultation-heading {
    font-size: 52px;
  }
  .consultation-description {
    font-size: 18px;
  }
  .consultation-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .consultation-feature::after {
    display: none;
  }
  .consultation-btn {
    width: 100%;
    justify-content: center;
    font-size: 18px;
  }
  .consultation-help {
    width: 120px;
    height: 120px;
    right: -30px;
    top: -20px;
  }
  .consultation-help strong {
    font-size: 10px;
  }
  .consultation-help h5 {
  font-size: 12px;
}
.consultation-help i {
  font-size: 30px;
}
}
@media (max-width: 480px) {
  .consultation-container {
    width: 85%;
  }
  .consultation-heading {
    font-size: 42px;
  }
  .consultation-video-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .consultation-tagline {
    font-size: 20px;
  }
  .consultation-description {
    font-size: 16px;
  }
}
/*=========================================
            Career Section
=========================================*/
.career-section {
  position: relative;
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
  margin-top: 90px;
}
.career-container {
  width: 90%;
  /* max-width: 1300px; */
  margin: auto;
}
/* Decorative Elements */
.career-dots {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#b9cdfd 2px, transparent 2px);
  background-size: 16px 16px;
}
.career-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(244, 179, 35, 0.08);
  top: -150px;
  right: -100px;
}
/* Hero */
.career-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-bottom: 55px;
}
.career-left {
  width: 42%;
}
.career-right {
  width: 58%;
}
.career-right img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
/* Content */
.career-subtitle {
  display: inline-block;
  color: #f4b323;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.career-heading {
  font-size: 52px;
  line-height: 1.15;
  color: #262521;
  margin-bottom: 18px;
  font-weight: 800;
}
.career-heading span {
  color: #f4b323;
}
.career-description {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}
/* Button */
.career-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: #262521;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
.career-btn:hover {
  background: #f4b323;
  color: #262521;
}
/* Title */
.career-title {
  text-align: center;
  margin-bottom: 35px;
}
.career-title h3 {
  font-size: 34px;
  color: #262521;
  font-weight: 700;
}
/* Cards */
.career-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.career-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #ececec;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.career-card:hover {
  transform: translateY(-8px);
  border-color: #f4b323;
}
.career-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f5f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4b323;
  font-size: 30px;
  transition: 0.3s;
}
.career-card:hover .career-icon {
  background: #262521;
  color: #fff;
}
.career-card h4 {
  font-size: 20px;
  color: #262521;
  margin-bottom: 12px;
}
.career-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
/* Responsive */
@media (max-width: 992px) {
  .career-hero {
    flex-direction: column;
  }
  .career-left,
  .career-right {
    width: 100%;
  }
  .career-heading {
    font-size: 42px;
  }
  .career-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .career-section {
    padding: 60px 0;
  }
  .career-heading {
    font-size: 34px;
  }
  .career-title h3 {
    font-size: 26px;
  }
  .career-card-wrapper {
    grid-template-columns: 1fr;
  }
  .career-btn {
    width: 100%;
    justify-content: center;
  }
  .career-card {
    padding: 28px 20px;
  }
}
/*=========================================
            Life At OSMT
=========================================*/
.life-section {
  background: linear-gradient(135deg, #262521 0%, #32312d 55%, #1d1d1b 100%);
  padding: 45px 0;
  overflow: hidden;
  position: relative;
}
.life-container {
  width: 92%;
  /* max-width: 1350px; */
  margin: auto;
}
.life-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
/*=========================
        Left Content
=========================*/
.life-content {
  width: 32%;
  color: #fff;
}
.life-subtitle {
  display: inline-block;
  font-size: 14px;
  color: #f4b323;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}
.life-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.1;
  position: relative;
}
.life-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f4b323;
  display: block;
  margin-top: 10px;
}
.life-description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}
/*=========================
        Button
=========================*/
.life-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f4b323;
  color: #262521;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
}
.life-btn:hover {
  background: #fff;
  color: #262521;
  transform: translateY(-3px);
}
.life-btn i {
  font-size: 15px;
}
/*=========================
        Gallery
=========================*/
.life-gallery {
  width: 68%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.life-image {
  border-radius: 12px;
  overflow: hidden;
  background: #3a3935;
  border: 2px solid rgba(244, 179, 35, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: 0.35s;
}
.life-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}
.life-image:hover {
  transform: translateY(-8px);
  border-color: #f4b323;
}
.life-image:hover img {
  transform: scale(1.08);
}
.life-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(244, 179, 35, 0.06);
  border-radius: 50%;
  top: -180px;
  right: -120px;
  filter: blur(30px);
}
/*=========================
        Responsive
=========================*/
@media (max-width: 1200px) {
  .life-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .life-content,
  .life-gallery {
    width: 100%;
  }
  .life-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .life-section {
    padding: 40px 0;
  }
  .life-title {
    font-size: 32px;
  }
  .life-description {
    font-size: 14px;
  }
  .life-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .life-image img {
    height: 150px;
  }
  .life-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .life-gallery {
    grid-template-columns: 1fr;
  }
  .life-title {
    font-size: 28px;
  }
  .life-image img {
    height: 220px;
  }
  .life-btn {
    width: 100%;
    justify-content: center;
  }
}
/*=========================================
            Promise Section
=========================================*/
.promise-section {
  background: #ffffff;
  padding: 45px 0;
}
.promise-container {
  width: 92%;
  /* max-width: 1300px; */
  margin: auto;
}
.promise-heading {
  text-align: center;
  margin-bottom: 30px;
}
.promise-heading h2 {
  display: inline-block;
  position: relative;
  color: #262521;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}
.promise-heading h2::after {
  content: "";
  width: 65px;
  height: 4px;
  background: #f4b323;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.promise-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.promise-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 15px;
  background: #ffffff;
  border: 1px solid #f4b323;
  border-radius: 12px;
  transition: 0.35s;
}
.promise-item:hover {
  border-color: #f4b323;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.promise-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 179, 35, 0.12);
  color: #f4b323;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.35s;
}
.promise-item:hover .promise-icon {
  background: #262521;
  color: #f4b323;
}
.promise-item h4 {
  margin: 0;
  color: #262521;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
/*=========================
      Responsive
=========================*/
@media (max-width: 992px) {
  .promise-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .promise-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-heading h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .promise-wrapper {
    grid-template-columns: 1fr;
  }
  .promise-item {
    justify-content: flex-start;
  }
  .promise-heading h2 {
    font-size: 24px;
  }
}
/*=========================================
            Contact Banner
=========================================*/
.contact-banner {
  position: relative;
  height: 420px;
  background: url("../images/contact.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  margin-top: 120px;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 37, 33, 0.75);
}
.contact-container {
  width: 92%;
  /* max-width: 1300px; */
  margin: auto;
  position: relative;
  z-index: 2;
}
.contact-banner-content {
  /* max-width: 550px; */
  color: #fff;
}
.contact-subtitle {
  display: inline-block;
  color: #f4b323;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.contact-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}
.contact-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
/*=========================================
            Contact Form
=========================================*/
.contact-form-section {
  margin-top: -130px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}
.contact-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
/*=========================================
            Left Panel
=========================================*/
.contact-left {
  width: 34%;
  background: linear-gradient(135deg, #fffdf5, #fff8e5);
  padding: 50px 40px;
  position: relative;
}
.contact-left::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(244, 179, 35, 0.12);
  border-radius: 50%;
  top: -70px;
  left: -70px;
}
.contact-left-content {
  position: relative;
  z-index: 2;
}
.contact-icon-box {
  width: 90px;
  height: 90px;
  background: #f4b323;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #262521;
  font-size: 34px;
  margin-bottom: 25px;
}
.contact-left h3 {
  font-size: 34px;
  color: #262521;
  margin-bottom: 18px;
}
.contact-left p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}
.contact-info {
  margin-bottom: 35px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  color: #262521;
  font-size: 16px;
}
.contact-info-item i {
  color: #f4b323;
  width: 22px;
}
.contact-social {
  display: flex;
  gap: 12px;
}
.contact-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #262521;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.35s;
}
.contact-social a:hover {
  background: #f4b323;
  color: #262521;
}
/*=========================================
            Right Panel
=========================================*/
.contact-right {
  width: 66%;
  padding: 55px;
}
.contact-heading {
  margin-bottom: 35px;
}
.contact-heading h2 {
  font-size: 42px;
  color: #262521;
  margin-bottom: 10px;
}
.contact-heading h2 span {
  color: #f4b323;
}
.contact-heading p {
  color: #666;
}
/*=========================================
            Form
=========================================*/
.contact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-group {
  margin-bottom: 20px;
}
.contact-group input,
.contact-group select,
.contact-group textarea {
  width: 100%;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  font-family: inherit;
  background: #fff;
}
.contact-group textarea {
  resize: none;
}
.contact-group input:focus,
.contact-group select:focus,
.contact-group textarea:focus {
  border-color: #f4b323;
  box-shadow: 0 0 0 3px rgba(244, 179, 35, 0.15);
}
.contact-btn {
  width: 100%;
  border: none;
  padding: 18px;
  border-radius: 10px;
  background: #f4b323;
  color: #262521;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s;
}
.contact-btn:hover {
  background: #262521;
  color: #fff;
}
/*=========================================
            Responsive
=========================================*/
@media (max-width: 992px) {
  .contact-card {
    flex-direction: column;
  }
  .contact-left,
  .contact-right {
    width: 100%;
  }
  .contact-form-section {
    margin-top: -80px;
  }
}
@media (max-width: 768px) {
  .contact-banner {
    height: 320px;
  }
  .contact-title {
    font-size: 42px;
  }
  .contact-right {
    padding: 35px 25px;
  }
  .contact-left {
    padding: 35px 25px;
  }
  .contact-row {
    grid-template-columns: 1fr;
  }
  .contact-heading h2 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .contact-banner {
    height: 280px;
  }
  .contact-title {
    font-size: 34px;
  }
  .contact-text {
    font-size: 16px;
  }
  .contact-btn {
    padding: 15px;
    font-size: 16px;
  }
  .contact-icon-box {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
/*=========================================
        Course Details Banner
=========================================*/
.details-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  /* padding:80px 0; */
  /* margin-top: 120px; */
}
.details-container {
  width: 100%;
  /* max-width: 1520px; */
  margin: auto;
}
/*==========================
        Main Wrapper
==========================*/
.details-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: #262521;
  /* border-radius:40px; */
  padding: 40px;
  position: relative;
  overflow: hidden;
  padding-top: 130px;
}
/* Left Curve */
.details-wrapper::before {
  content: "";
  position: absolute;
  right: 28%;
  top: -30%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: #2f2e29;
}
/* Decorative Dashed Circle */
.details-circle {
  position: absolute;
  right: 31%;
  top: 45px;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(244, 179, 35, 0.18);
  border-radius: 50%;
}
/*==========================
        Left
==========================*/
.details-left {
  width: 60%;
  position: relative;
  z-index: 2;
}
.details-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4b323;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.details-label i {
  font-size: 16px;
}
.details-title {
  color: #fff;
  font-size: 66px;
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 800;
}
.details-subtitle {
  color: #f4b323;
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}
.details-description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
  /* max-width: 650px; */
  margin-bottom: 40px;
}
/*==========================
        Features
==========================*/
.details-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}
.details-feature {
  display: flex;
  gap: 14px;
  position: relative;
}
.details-feature::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 5px;
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
}
.details-feature:last-child::after {
  display: none;
}
.details-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(244, 179, 35, 0.12);
  border: 1px solid rgba(244, 179, 35, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4b323;
  font-size: 22px;
  flex-shrink: 0;
}
.details-feature h5 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 6px;
}
.details-feature span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.6;
}
/*==========================
        Buttons
==========================*/
.details-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.details-btn,
.details-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.35s;
}
.details-btn {
  background: #f4b323;
  color: #262521;
}
.details-btn:hover {
  background: #262521;
  transform: translateY(-3px);
  color: #fff;
  border: 2px solid #fff;
}
.details-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: transparent;
}
.details-btn-outline:hover {
  background: #f4b323;
  color: #262521;
  border-color: #f4b323;
}
/*==========================
        Right
==========================*/
.details-right {
  width: 40%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}
.details-image {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(244, 179, 35, 0.15);
}
.details-image img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  display: block;
  margin-right: 20px;
  margin-bottom: 20px;
}
/*==========================
        Floating Badge
==========================*/
.details-badge {
  position: absolute;
  bottom: 35px;
  /* left:15px; */
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: #f4b323;
  color: #262521;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 6px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.details-badge i {
  font-size: 26px;
  margin-bottom: 10px;
}
.details-badge h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 700;
}
.details-badge p {
  font-size: 13px;
  line-height: 1.5;
}
/*==========================
        Responsive
==========================*/
@media (max-width: 1200px) {
  .details-wrapper {
    flex-direction: column;
    padding: 50px;
  }
  .details-left,
  .details-right {
    width: 100%;
  }
  .details-right {
    justify-content: center;
  }
  .details-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .details-feature:nth-child(2)::after {
    display: none;
  }
  .details-title {
    font-size: 54px;
  }
}
@media (max-width: 768px) {
  .details-wrapper {
    padding: 35px 25px;
    border-radius: 25px;
    padding-top: 100px;
  }
  .details-title {
    font-size: 42px;
  }
  .details-subtitle {
    font-size: 22px;
  }
  .details-description {
    font-size: 16px;
  }
  .details-features {
    grid-template-columns: 1fr;
  }
  .details-feature::after {
    display: none;
  }
  .details-image {
    width: 320px;
    height: 320px;
  }
  .details-badge {
    width: 120px;
    height: 120px;
    left: 5px;
    bottom: 10px;
  }
  .details-badge h4 {
    font-size: 15px;
  }
  .details-badge p {
    font-size: 11px;
  }
  .details-buttons {
    flex-direction: column;
  }
  .details-btn,
  .details-btn-outline {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .details-section {
    /* padding: 50px 0; */
  }
  .details-title {
    font-size: 34px;
  }
  .details-subtitle {
    font-size: 18px;
  }
  .details-image {
    width: 260px;
    height: 260px;
  }
  .details-circle {
    display: none;
  }
}
/*=========================================
        Specializations Section
=========================================*/

.special-section{
    padding:120px 0;
    background:#f7f8fa;
}

.special-container{
    width:92%;
    /* max-width:1400px; */
    margin:auto;
}

/*=========================================
        Heading
=========================================*/

.special-heading{
    text-align:center;
    margin-bottom:55px;
}

.special-tag{
    display:inline-block;
    background:rgba(244,179,35,.12);
    color:#f4b323;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.special-title{
    font-size:42px;
    color:#262521;
    margin-bottom:15px;
    font-weight:700;
}

.special-subtitle{
    /* max-width:720px; */
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/*=========================================
        Grid
=========================================*/

.special-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/*=========================================
        Card
=========================================*/

.special-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    /* gap:18px; */
    background:#fff;
    border-radius:12px;
    padding:18px 24px;
    min-height:115px;
    border:1px solid #ececec;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    transition:.35s;
}

.special-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:#f4b323;

    transform:scaleY(0);

    transition:.35s;

}

.special-card:hover{
    transform:translateY(-5px);
    border-color:#f4b323;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.special-card:hover::before{

    transform:scaleY(1);

}

/*=========================================
        Image
=========================================*/

.special-image{
    width:72px;
    height:72px;
    min-width:72px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.special-image img{
    width:70px;
    height:70px;
    object-fit:contain;
    display:block;
}

.special-card:hover .special-image img{

    transform:scale(1.08);

}

/*=========================================
        Content
=========================================*/

.special-content{
    flex:1;
    display:flex;
    align-items:center;
    gap:18px;
}

.special-name{
    font-size:18px;
    /* font-weight:600; */
    color:#262521;
    line-height:1.3;
    margin:0;
}

/*=========================================
        Arrow
=========================================*/

.special-arrow{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    background:#FFF5DE;
    color:#f4b323;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.special-card:hover .special-arrow{
    background:#f4b323;
    color:#262521;
}

/*=========================================
        Responsive
=========================================*/

@media(max-width:1200px){

.special-grid{

    grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.special-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.special-section{

    padding:60px 0;

}

.special-grid{

    gap:18px;

}

.special-card{

    min-height:95px;

    padding:15px;

}

.special-image{

    width:60px;
    height:60px;

}

.special-image img{

    width:55px;
    height:55px;

}

.special-name{

    font-size:17px;

}

.special-title{

    font-size:34px;

}

}

@media(max-width:576px){

.special-grid{

    grid-template-columns:1fr;

}

.special-card{

    padding:16px;

}

.special-name{

    font-size:18px;

}

.special-title{

    font-size:28px;

}

.special-arrow{

    width:34px;
    height:34px;

}

}
/*=====================================
    Industry Section
======================================*/
.industry-section {
  padding: 80px 0;
  background: #ffffff;
  font-family: "Outfit", sans-serif;
}
.industry-container {
  width: 92%;
  /* max-width: 1350px; */
  gap: 24px;
  margin: auto;
  display: grid;
  padding: 25px;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
/*=====================================
    Item
======================================*/
.industry-item {
  position: relative;
  text-align: center;
  padding: 40px 25px;
  transition: 0.35s;
  border: none;
  border-radius: 18px;
  border: 1px solid #ececec;
}
.industry-item-last {
  border-right: none;
}
.industry-item:hover {
  background: #fafafa;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}
/*=====================================
    Icon
======================================*/
.industry-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #f4b323;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  transition: 0.35s;
}
.industry-item:hover .industry-icon {
  background: #262521;
  color: #fff;
  transform: rotate(8deg) scale(1.08);
}
/*=====================================
    Heading
======================================*/
.industry-item h3 {
  font-size: 28px;
  color: #262521;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}
/*=====================================
    Paragraph
======================================*/
.industry-item p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  /* max-width: 260px; */
  margin: auto;
}
/*=====================================
    Bottom Line
======================================*/
.industry-line {
  display: block;
  width: 42px;
  height: 4px;
  background: #f4b323;
  border-radius: 30px;
  margin: 24px auto 0;
}
/*=====================================
    Responsive
======================================*/
@media (max-width: 992px) {
  .industry-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-item:nth-child(2) {
    border-right: none;
  }
  .industry-item:nth-child(1),
  .industry-item:nth-child(2) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 576px) {
  .industry-container {
    grid-template-columns: 1fr;
  }
  .industry-item {
    border-right: none;
    border-bottom: 1px solid #ececec;
  }
  .industry-item:last-child {
    border-bottom: none;
  }
  .industry-item {
    padding: 40px 25px;
  }
  .industry-item h3 {
    font-size: 24px;
  }
  .industry-item p {
    font-size: 16px;
  }
}
