/* ====== Colors ====== */
:root {
  --primary-color: #bd8c31;
  --secondary-color: #05091c;
  --dark: #000000;
  --white: #ffffff;
  --grey: #516263;
  --bg-color: #b9b3b354;
}

/* ====== Global Reset ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ====== Media Elements ====== */
iframe,
video {
  width: 100%;
}

/* ====== Links ====== */
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ====== Text Selection ====== */
::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ====== Custom Scrollbar ====== */
::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--white);
  border-radius: 10px;
  border: 1px solid var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-corner {
  background-color: var(--primary-color);
}

/* ====== Body Styles ====== */
body {
  overscroll-behavior: none;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

/* ====== Disable Text Selection Globally ====== */
/* body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
} */

/* ====== Typography ====== */
strong {
  font-weight: 600;
  /* More visible than 400 */
}

/* ====header-section-start==== */

.header-section .menu-bar {
  width: 100%;
  position: relative;
  z-index: 9999999;
  background-color: var(--secondary-color);
}

.header-section .is-sticky-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 3px;
  animation: slideInDown 0.4s ease-in;
  padding: 5px 0;
  background-color: var(--secondary-color);
}

.header-section .navbar-brand img {
  width: 140px;
  height: auto;
}

.header-section .menu-bar .nav-link {
  margin: 0px 5px;
  text-transform: capitalize;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
}

.header-section .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 5px;
  left: 0;
  transform-origin: right;
  transition: 0.5s;
}

.header-section .nav-link:hover:after {
  transition: 0.5s;
  width: 100%;
}

.header-section .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header-section .dropdown-menu {
  background-color: var(--white);
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  padding: 0;
  display: none;
  border: 1px solid white;
  overflow: hidden;
  border: 0;
  transition: 0.5s;
  position: absolute;
}

.header-section .dropdown:hover .dropdown-menu {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
  transition: 0.5s;
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
}

.header-section .dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-color);
  margin-bottom: 2px;
  position: relative;
  transition: all 0.5s;
  z-index: 1;
}

.header-section .dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 0;
  width: 0;
  background-color: var(--primary-color);
  transition: all 0.5s;
  z-index: -1;
}

.header-section .dropdown-menu .dropdown-item:hover::before {
  width: 100%;
  transition: all 0.5s;
}

.header-section .dropdown-menu .dropdown-item:hover {
  color: var(--white);
}

.header-section .dropdown-menu .dropdown-item:first-child {
  margin-top: 15px;
}

.header-section .dropdown i {
  transition: 0.6s;
}

.header-section .dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.6s;
}

.header-section .navbar-toggler {
  background-color: var(--dark);
  color: var(--white);
  margin: 0px;
  line-height: 28px;
  border-radius: 5px;
  border: none;
  padding: 2px 10px;
  border: 1px solid white;
}

.header-section .offcanvas-header {
  background-color: var(--primary-color);
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .sidbar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
  font-size: 16px;
  padding: 3px 8px;
}

.header-section .sid .header-section .nav-link:hover {
  color: var(--primary-color);
  transition: 0.2s;
}

.header-section .conatact-btn {
  color: var(--white);
  text-decoration: none;
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: ease-in-out 0.5s;
  margin: 0px 10px;
  border: 1px solid var(--primary-color);
}

.header-section .conatact-btn:hover {
  color: var(--secondary-color);
  background-color: var(--white);
  transition: ease-in-out 0.5s;
}

.header-section .offcanvas-header .btn-close {
  color: var(--white);
  opacity: 1;
  background-image: none;
  line-height: 10px;
  border-radius: 5px;
  border: none;
  border: 1px solid white;
  font-size: 16px;
  padding: 6px 8px;
  background-color: var(--dark);
}

.header-section .offcanvas-header .btn-close:focus {
  transform: rotate(180deg);
  transition: 0.5s;
}

/* ===header-section-end=== */

/* ===hero-section-start=== */

.hero-section {
  background: url(../images/home-bg-2.png);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: 90px 0px;
  height: auto;
  min-height: 400px;
}

.hero-section .hero-image {
  animation-duration: 4s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: bounce-1;
  animation-timing-function: linear;
  text-align: center;
}

.hero-section .hero-section-image {
  position: relative;
  z-index: 1;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: bounce-1;
  animation-timing-function: linear;
}

@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-section .hero-caption h2 {
  font-size: 48px;
  color: var(--white);
  text-shadow: 0 0 3px #bd8c3149, 0 0 5px #0c0c0c;
  font-weight: 700;
}

.hero-section .hero-caption p {
  color: var(--white);
  margin: 20px 0px 40px 0px;
}

.hero-section .hero-caption .contact-link {
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: ease-in-out 0.5s;
  border: 1px solid var(--white);
  cursor: pointer;
  margin-right: 20px;
}

.hero-section .hero-caption .contact-link:hover {
  color: var(--dark);
  background-color: var(--white);
  transition: ease-in-out 0.5s;
}

/* ===hero-section-end=== */

/* ==free-demo-section-start=== */

.free-demo .container {
  max-width: 1000px;
  margin: 45px auto;
  padding: 45px 20px;
  box-shadow: 0 0 10px rgba(201, 159, 21, 0.87);
  border-radius: 5px;
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
}

.free-demo .section-title {
  margin-bottom: 30px;
  text-align: center;
}

.free-demo .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
  text-align: center;
}

.free-demo #demoForm {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.free-demo .form-group {
  flex: 1;
  min-width: 200px;
}

.free-demo label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--white);
}

.free-demo label.required:after {
  content: " *";
  color: red;
}

.free-demo input[type="text"],
.free-demo input[type="tel"],
.free-demo input[type="email"] {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  border: none;
  outline: none;
}

.free-demo .submit-container {
  flex: 1 0 100%;
  display: flex;
  justify-content: center;
}

.free-demo input[type="submit"] {
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  width: auto;
  min-width: 200px;
  margin-top: 20px;
}

.free-demo input[type="submit"]:hover {
  background-color: #128c7e;
}

.free-demo #success-message {
  background-color: #dff0d8;
  color: #3c763d;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  display: none;
  text-align: center;
}

.free-demo {
  transition: all 0.3s ease;
}

.free-demo .demo-button .demo {
  cursor: pointer;
  /* Add any other button styling you need */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .free-dem .form-group {
    flex: 1 0 100%;
  }

  .free-dem .section-title h2 {
    font-size: 24px;
  }

  .free-dem input[type="submit"] {
    width: 100%;
  }
}

/* ==free-demo-section-end=== */

/* ===it-service-section-start=== */

.it-services {
  padding: 90px 0px;
  background-color: var(--bg-color);
}

.it-services .section-title {
  margin: 0px 150px 45px 150px;
  text-align: center;
}

.it-services .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.it-services .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.it-services .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.it-services .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--dark);
}

.it-services .service-box {
  background-color: var(--primary-color);
  height: 100%;
  padding: 20px;
  border-radius: 5px;
  filter: drop-shadow(0 0 0.2rem rgba(201, 165, 48, 0.856));
  transition: 0.4s;
}

.it-services .service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(119, 79, 6, 0.226);
  transition: 0.4s;
}

.it-services .service-box .icon {
  background-color: var(--primary-color);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.it-services .service-box .icon::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  z-index: -1;
}

@keyframes round {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.it-services .service-box .icon:before {
  animation: round 6s linear infinite;
  inset: -3px;
  border: 4px dashed #ffffff;
}

.it-services .content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.it-services .content ul {
  list-style: none;
  padding: 0;
}

.it-services .content ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

/* ===it-service-section-end=== */

/* ===service-section-start=== */

.service-section {
  padding: 90px 0px;
  background-color: var(--secondary-color);
}

.service-section .section-title {
  margin: 0px 150px 45px 150px;
  text-align: center;
}

.service-section .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.service-section .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.service-section .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.service-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
}

.service-section .section-title p {
  font-size: 16px;
  color: var(--white);
  text-align: center;
  margin-top: 20px;
}

.service-section .service-card {
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.service-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(119, 79, 6, 0.226);
}

.service-section .service-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.service-section .service-card p {
  color: var(--white);
  margin: 10px 0px;
  font-size: 16px;
}

.service-section .service-icon {
  height: 100px;
  width: 100px;
  background-color: var(--primary-color);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.service-section .service-icon i {
  font-size: 50px;
  color: var(--white);
  transition: all 0.3s ease;
}

.service-section .service-icon::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  z-index: -1;
}

@keyframes round {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.service-section .service-icon::before {
  animation: round 6s linear infinite;
  inset: -3px;
  border: 4px dashed #ffffff;
}

.service-section .highlight {
  background-color: var(--primary-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.service-section .btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
}

.service-section .btn-primary-custom:hover {
  background-color: #a67a2a;
  border-color: #a67a2a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(189, 140, 49, 0.3);
}

.service-section .service-card .training-badge {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
}

/* ===service-section-end=== */

.ai-solution-section {
  padding: 90px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.ai-solution-section .section-title {
  margin: 0px 150px 45px 150px;
  text-align: center;
}

.ai-solution-section .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.ai-solution-section .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.ai-solution-section .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.ai-solution-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--dark);
}

.ai-solution-section .section-title p {
  font-size: 16px;
  color: var(--dark);
  text-align: center;
}

.ai-solution-section .ai-solution-card {
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.ai-solution-section .ai-solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(119, 80, 6, 0.699);
}

.ai-solution-section .ai-solution-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.ai-solution-section .ai-solution-card p {
  color: var(--white);
  margin: 10px 0px;
  font-size: 16px;
}

.ai-solution-section .ai-solution-card .ai-solution-icon {
  height: 100px;
  width: 100px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.ai-solution-section .ai-solution-card .ai-solution-icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  z-index: -1;
  border: 4px dashed #ffffff;
  animation: round 6s linear infinite;
}

.ai-solution-section .ai-solution-card .ai-solution-icon i {
  font-size: 50px;
  color: var(--white);
  transition: all 0.3s ease;
}

@keyframes round {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ====ai-solution-section-end===== */

/* ===internship-section-start=== */
.internship-section {
  padding: 45px 0px;
  background-color: var(--secondary-color);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.internship-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
}

.internship-section p {
  font-size: 16px;
  color: var(--white);
}

.internship-section .internship-box {
  margin-bottom: 25px;
}

.internship-section .apply-btn {
  margin-top: 30px;
}

.internship-section a {
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: ease-in-out 0.5s;
  border: 1px solid var(--white);
  cursor: pointer;
  margin-right: 20px;
}

.internship-section a:hover {
  color: var(--dark);
  background-color: var(--white);
  transition: ease-in-out 0.5s;
}

/* ===our-company-section-start=== */

.our-company-section {
  padding: 90px 0px;
  background-color: var(--white);
}

.our-company-section .about-content span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.our-company-section .about-content span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.our-company-section .about-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin: 15px 0px;
}

.our-company-section .about-content p {
  font-size: 16px;
  color: var(--grey);
  text-align: justify;
}

.our-company-section .about-image {
  margin-bottom: 25px;
}

.our-company-section .about-content .about-btn {
  margin-top: 30px;
}

.our-company-section .about-content .about-btn a {
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: ease-in-out 0.5s;
  border: 1px solid var(--white);
  cursor: pointer;
  margin-right: 20px;
}

/* ===our-company-section-end=== */

/* ===why-choose-us-section-start=== */

.why-choose-us {
  padding: 90px 0;
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.why-choose-us .section-title {
  margin-bottom: 60px;
  position: relative;
}

.why-choose-us .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.why-choose-us .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

.why-choose-us .feature {
  padding: 30px 25px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(189, 140, 49, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-choose-us .feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(189, 140, 49, 0.2);
  border-color: var(--primary-color);
}

.why-choose-us .feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(189, 140, 49, 0.1),
      transparent);
  transition: 0.5s;
  z-index: -1;
}

.why-choose-us .feature:hover::before {
  left: 100%;
}

.why-choose-us .icon {
  height: 100px;
  width: 100px;
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  border-radius: 50%;
  position: relative;
}

.why-choose-us .icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 4px dashed #ffffff;
  animation: round 6s linear infinite;
  z-index: -1;
}

.why-choose-us .icon i {
  font-size: 40px;
  color: var(--white);
  transition: all 0.3s ease;
}

.why-choose-us .feature:hover .icon i {
  transform: scale(1.1);
}

.why-choose-us .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.3s ease;
}

.why-choose-us .feature:hover .content h3 {
  color: var(--white);
}

.why-choose-us .content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
}

@keyframes round {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199px) {
  .why-choose-us .section-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-us .section-title {
    margin-bottom: 40px;
  }

  .why-choose-us .section-title h2 {
    font-size: 28px;
  }
}

/* ===why-choose-us-section-end=== */

/* ===students-section-start=== */

.students-section {
  padding: 90px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.students-section .section-title {
  margin: 0px 150px 45px 150px;
  text-align: center;
}

.students-section .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.students-section .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.students-section .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.students-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--dark);
}

.students-section .students-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.students-section .row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  justify-content: center;
}

.students-section .student {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  background-color: var(--secondary-color);
  transition: 0.5s;
}

.students-section .student:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}

.students-section .student img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
  filter: drop-shadow(0px -7px 6px #e9a220c5);
  object-fit: contain;
}

.students-section .student .student-details {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.students-section .student .student-details h3 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.students-section .student .student-details .cmp-name {
  font-size: 16px;
  color: var(--white);
}

.students-section .student .student-details p {
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
}

.students-section .slider-2 {
  position: relative;
}

.students-section .slider-2 .owl-nav button.owl-next {
  height: 35px;
  width: 35px;
  border: 1px;
  background-color: var(--primary-color);
  border-radius: 5px;
  font-size: 20px;
  color: var(--white);
  position: absolute;
  right: -5px;
  top: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.students-section .slider-2 .owl-nav button.owl-next i {
  padding-left: 3px;
}

.students-section .owl-carousel .owl-nav button.owl-prev i {
  padding-right: 3px;
}

.students-section .slider-2 .owl-nav button.owl-prev {
  height: 35px;
  width: 35px;
  border: 1px;
  background-color: var(--primary-color);
  border-radius: 5px;
  left: -5px;
  font-size: 20px;
  color: var(--white);
  position: absolute;
  top: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.students-section .owl-carousel .owl-dots.disabled,
.students-section .owl-carousel .owl-nav.disabled {
  display: block;
}

/* ===students-section-end=== */

/* ===.best-offers-section-start=== */

.best-offers .offers-box {
  background-color: #130f07ea;
}

.best-offers .offers-box {
  height: 100%;
}

.best-offers .offers-box img {
  height: 100%;
  object-fit: cover;
}

.best-offers .offers-box-content {
  padding: 20px 20px 40px 20px;
}

.best-offers .offers-box h2 {
  font-size: 40px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.best-offers .offers-box h3,
.best-offers .offers-box h4 {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 600;
}

.best-offers .offers-box .offers-box-content p {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 20px;
}

.best-offers .offers-box ul {
  list-style: none;
  padding: 0;
}

.best-offers .offers-box ul li {
  margin: 5px 0px;
  color: var(--white);
  display: flex;
  align-items: center;
}

.best-offers .offers-box ul li i {
  font-size: 10px;
  margin-right: 10px;
  color: white;
  background-color: #04bf3c;
  padding: 5px;
  border-radius: 50%;
}

.best-offers .offers-box .contact-link {
  margin-top: 30px;
}

.best-offers .offers-box .contact-link a {
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: ease-in-out 0.5s;
  border: 1px solid var(--white);
  cursor: pointer;
  margin-right: 20px;
}

/* ===.best-offers-section-end=== */

/* ===cate-list-section-start=== */

.cate-list {
  padding: 90px 0px;
  background-color: var(--secondary-color);
}

.cate-list .cate-box {
  padding: 10px 25px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 5px;
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
}

.cate-list .cate-box .cat-icon {
  height: 90px;
  width: 90px;
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
}

.cate-list .cate-box .cat-icon::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
}

@keyframes round {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.cate-list .cate-box .cat-icon::before {
  animation: round 5s linear infinite;
  inset: -3px;
  border: 4px dashed #ffffff;
}

.cate-list .cate-box .cat-icon img {
  height: 50px;
  width: 50px;
}

.cate-list .cate-box .cat-content h2 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: var(--white);
}

/* ===cate-list-section-end=== */

/*===== funfact-section-start =====*/

.funfact-section {
  padding: 45px 0px;
  background-color: var(--bg-color);
}

.funfact-section .funfact-content {
  text-align: center;
  box-shadow: rgba(236, 169, 44, 0.397) 0px 1px 10px;
  padding: 20px 10px;
  margin: 12.5px 0px;
  border-radius: 5px;
  border: 4px inset rgb(7, 156, 241);
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
}

.funfact-section .funfact-content span {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
  line-height: 1.5em;
}

.funfact-section .funfact-content p {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--white);
}

/*===== funfact-section-end =====*/

/* ===testimonial-section-start=== */

.testimonial-section {
  background-color: var(--secondary-color);
  padding: 90px 0px;
  overflow: hidden;
}

.testimonial-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.testimonial-section .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.testimonial-section .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.testimonial-section .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.testimonial-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
}

.testimonial-section .testimonials-item p {
  color: var(--grey);
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}

.testimonial-section .testimonials-item .icon-left {
  color: var(--primary-color);
  font-size: 20px;
}

.testimonial-section .testimonials-item .icon {
  text-align: end;
  display: flex;
  justify-content: end;
  font-size: 20px;
  color: var(--primary-color);
}

.testimonial-section .testimonials-item .detail h3 {
  font-size: 18px;
  color: var(--primary-color);
}

.testimonial-section .testimonials-item .detail span {
  font-size: 10px;
  color: var(--dark);
}

.testimonial-section .testimonials-item .star-rating {
  margin: 10px 0px;
}

.testimonial-section .testimonials-item .checked {
  color: orange;
}

.testimonial-section .testimonials-item {
  border-radius: 5px;
  height: 320px;
  background-color: var(--white);
  padding: 20px;
}

.testimonial-section .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background-color: var(--white);
  margin: 0px 3px;
  border-radius: 50%;
}

.testimonial-section .owl-dots .owl-dot.active {
  background-color: var(--primary-color);
  height: 15px;
  width: 40px;
  border-radius: 10px;
  transition: 0.5s;
}

.testimonial-section .owl-dots {
  text-align: center;
  margin-top: 50px;
}

/* ===testimonial-section-end=== */

/* ===partnes-section-start=== */

.partner-section {
  padding: 45px 0px;
  background-color: var(--bg-color);
}

.partner-section .section-title {
  margin: 0px 150px 45px 150px;
  text-align: center;
}

.partner-section .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.partner-section .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.partner-section .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.partner-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--dark);
}

.partner-section .partner-box {
  filter: drop-shadow(0 0 0.2rem rgb(247, 173, 63));
  padding: 5px;
}

/* ===partnes-section-end=== */

/* ======= cta-section-start ======= */

.cta-section {
  background-image: url(../images/cta-bg.jpg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: rgba(2, 1, 19, 0.829);
  background-blend-mode: multiply;
  text-align: center;
}

.cta-section .cta-item {
  padding: 85px 0px;
  height: 100%;
}

.cta-section .cta-item .icon .cta-play-btn {
  color: var(--white);
  font-size: 30px;
  line-height: 72px;
  padding: 0px 25px;
  cursor: pointer;
}

.cta-section .cta-item .content {
  padding-top: 40px;
  width: 70%;
  margin: auto;
}

.cta-section .cta-item .content h2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
}

.cta-section .cta-item .content p {
  color: #ffffff;
  margin-bottom: 5px;
}

.cta-section .cta-btns {
  margin-top: 50px;
}

.cta-section .cta-item .cta-play-btn {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  transition: box-shadow 0.2s ease-in-out;
  position: relative;
  display: inline-block;
  margin: 0px 5px;
}

.cta-section .cta-item .cta-play-btn:before {
  position: absolute;
  content: "";
  animation: wave 2s linear infinite;
  inset: 0;
  border-radius: 50%;
}

.cta-section .cta-item .cta-play-btn:after {
  position: absolute;
  content: "";
  animation: wave-2 2s linear infinite;
  inset: 0;
  border-radius: 50%;
}

@keyframes wave {
  from {
    box-shadow: 0 0 0 0 rgba(243, 175, 48, 0.747);
  }

  to {
    box-shadow: 0 0 0 40px rgb(242, 242, 242);
    opacity: 0;
  }
}

@keyframes wave-2 {
  from {
    box-shadow: 0 0 0 0 #ffffff;
  }

  to {
    box-shadow: 0 0 0 20px #ffffff;
    opacity: 0;
  }
}

.cta-section .cta-item:hover .cta-play-btn {
  animation: fadeInDown;
  animation-duration: 1s;
}

.cta-section .cta-item .read-btn {
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  margin: 10px 5px;
  text-decoration: none;
  display: inline-block;
}

.cta-section .modal-dialog {
  position: relative;
}

.cta-section iframe,
.my-skill-section iframe {
  z-index: 1;
  width: 100%;
  left: 0;
  height: 300px;
}

.cta-section .btn-close,
.my-skill-section .btn-close {
  height: 20px;
  background-color: var(--primary-color);
  opacity: 1;
  width: 30px;
  color: var(--white);
  font-size: 20px;
  line-height: 0;
  background-image: none;
  margin: 15px 5px 0px auto;
  box-shadow: none;
}

.cta-section .learn-btn {
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: ease-in-out 0.5s;
  border: 1px solid var(--white);
  cursor: pointer;
  margin-right: 20px;
}

.learn-btn .learn-btn:hover {
  color: var(--dark);
  background-color: var(--white);
  transition: ease-in-out 0.5s;
}

/* ====cta-section-end==== */

/*===footer-section-start ===*/

.footer-section {
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
  padding: 90px 0px 0px 0px;
  overflow: hidden;
}

.footer-section .coppany-logo img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-section .footer-item {
  margin-bottom: 25px;
  padding: 0px 10px;
}

.footer-section .footer-item h2 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.footer-section .footer-item .social-icon,
.footer-section .footer-item .services,
.footer-section .footer-item .contact,
.footer-section .footer-item .quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section .footer-item p {
  font-size: 16px;
  color: var(--white);
  font-weight: 300;
  text-align: justify;
}

.footer-section .footer-item .social-icon {
  display: flex;
}

.footer-section .footer-item .social-icon li {
  margin-right: 10px;
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  line-height: 42px;
  border: 1px solid white;
  transition: ease-in-out 0.5s;
}

.footer-section .footer-item .social-icon li a {
  color: var(--dark);
  transition: 0.5s;
}

.footer-section .footer-item .social-icon li:hover {
  background-color: var(--primary-color);
  transition: ease-in-out 0.5s;
  transform: translateY(-6px);
}

.footer-section .footer-item .social-icon li:hover a {
  color: var(--white);
  transition: ease-in-out 0.2s;
}

.footer-section .footer-item .services li,
.footer-section .footer-item .contact-link li,
.footer-section .footer-item .quick-links li {
  margin-bottom: 10px;
  transition: 0.5s;
}

.footer-section .footer-item .services li:hover,
.footer-section .footer-item .contact-link li:hover,
.footer-section .footer-item .quick-links li:hover {
  margin-left: 5px;
  transition: 0.5s;
}

.footer-section .footer-item .services li a,
.footer-section .footer-item .contact-link li a,
.footer-section .footer-item .quick-links li a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
}

.footer-section .footer-item .services li a i,
.footer-section .footer-item .quick-links li a i {
  margin-right: 5px;
  color: var(--primary-color);
  font-size: 14px;
}

.footer-section .footer-item .contact-link li i {
  font-size: 18px;
  color: var(--primary-color);
  margin-right: 5px;
}

.footer-section .copy-right {
  margin-top: 50px;
  text-align: center;
  position: relative;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0px;
}

.footer-section .copy-right p {
  font-size: 16px;
  color: var(--white);
  margin: 0;
}

.footer-section .demo-button .demo {
  background-color: var(--primary-color);
  color: var(--white);
  height: 40px;
  width: 150px;
  border: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  right: -3.5em;
  bottom: 20em;
  position: fixed;
  font-size: 16px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  font-weight: 600;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transform: rotate(90deg);
  text-decoration: none;
  text-transform: uppercase;
}

.footer-section .top-button .top {
  background-color: var(--primary-color);
  color: var(--white);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  right: 0.8em;
  bottom: 0.2em;
  position: fixed;
  font-size: 22px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.footer-section .call-button .call {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: white;
  right: 0.8em;
  bottom: 5em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--primary-color);
}

.footer-section .whatsapp-button .whatsapp {
  background-color: #25d366;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: white;
  right: 0.8em;
  bottom: 8em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--primary-color);
}

/*===footer-section-end===*/

/*===breadcrumb-section-start===*/

.breadcrumb-section {
  padding: 50px 0px;
  position: relative;
  background: url(../images/breadcrumb-bg.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
  height: 300px;
  display: flex;
  align-items: center;
}

.breadcrumb-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: #00070a44;
  z-index: -1;
}

.breadcrumb-section .breadcrumb-heading h2 {
  font-size: 30px;
  color: var(--white);
  font-weight: 600;
  z-index: 1;
  margin: 0;
  text-align: center;
}

.breadcrumb-section .breadcrumb {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.breadcrumb-section .breadcrumb li {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  z-index: 1;
  padding: 5px 5px;
}

.breadcrumb-section .breadcrumb li a {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb-section .breadcrumb li a:hover {
  color: var(--secondary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--white);
}

.breadcrumb-section .breadcrumb-box {
  background-color: var(--primary-color);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
}

/*===breadcrumb-section-end===*/

/*===our-courses-start===*/

.our-courses {
  padding: 90px 0px;
  background-color: var(--secondary-color);
}

.our-courses .section-title {
  margin: 0px 150px 45px 150px;
  text-align: center;
}

.our-courses .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.our-courses .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.our-courses .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.our-courses .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
}

.our-courses .courses-card {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 5px;
  height: 100%;
  filter: drop-shadow(0 0 0.1rem rgba(201, 165, 48, 0.856));
}

.our-courses .courses-card-image {
  margin-bottom: 25px;
}

.our-courses .courses-card-image img {
  margin-bottom: 15px;
  height: 180px;
  width: 100%;
}

.our-courses .courses-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.our-courses .courses-card p {
  font-size: 16px;
  color: var(--white);
  font-weight: 300;
  text-align: justify;
}

/*===our-courses-end===*/

/* ===genai-section-start=== */

.genai-section,
.java-section,
.c-programming,
.python-section,
.react-section,
.node-section,
.data-science-section,
.data-analytics-section,
.dsa-section,
.devops-section,
.devops-azure-section,
.full-stack-ds-ai-section,
.full-stack-testing-section,
.powerbi-section,
.spoken-english-section,
.advanced-spoken-english-section {
  padding: 45px 0px;
  background-color: var(--secondary-color);
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.genai-section .hero,
.java-section .hero,
.c-programming .hero,
.python-section .hero,
.react-section .hero,
.node-section .hero,
.data-science-section .hero,
.data-analytics-section .hero,
.dsa-section .hero,
.devops-section .hero,
.devops-azure-section .hero,
.full-stack-ds-ai-section .hero,
.full-stack-testing-section .hero,
.powerbi-section .hero,
.spoken-english-section .hero,
.advanced-spoken-english-section .hero {
  text-align: center;
}

.genai-section .hero h1,
.java-section .hero h1,
.c-programming .hero h1,
.python-section .hero h1,
.react-section .hero h1,
.node-section .hero h1,
.data-science-section .hero h1,
.data-analytics-section .hero h1,
.dsa-section .hero h1,
.devops-section .hero h1,
.devops-azure-section .hero h1,
.full-stack-ds-ai-section .hero h1,
.full-stack-testing-section .hero h1,
.powerbi-section .hero h1,
.spoken-english-section .hero h1,
.advanced-spoken-english-section .hero h1 {
  font-size: 40px;
  color: var(--white);
  font-weight: 600;
}

.genai-section .hero p,
.java-section .hero p,
.c-programming .hero p,
.python-section .hero p,
.react-section .hero p,
.node-section .hero p,
.data-science-section .hero p,
.data-analytics-section .hero p,
.dsa-section .hero p,
.devops-section .hero p,
.devops-azure-section .hero p,
.full-stack-ds-ai-section .hero p,
.full-stack-testing-section .hero p,
.powerbi-section .hero p,
.spoken-english-section .hero p,
.advanced-spoken-english-section .hero p {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  margin: 0;
}

.genai-section .enroll-btn,
.java-section .enroll-btn,
.c-programming .enroll-btn,
.python-section .enroll-btn,
.react-section .enroll-btn,
.node-section .enroll-btn,
.data-science-section .enroll-btn,
.data-analytics-section .enroll-btn,
.dsa-section .enroll-btn,
.devops-section .enroll-btn,
.devops-azure-section .enroll-btn,
.full-stack-ds-ai-section .enroll-btn,
.full-stack-testing-section .enroll-btn,
.powerbi-section .enroll-btn,
.spoken-english-section .enroll-btn,
.advanced-spoken-english-section .enroll-btn {
  margin: 40px 0px 60px 0px;
}

.genai-section .hero a,
.java-section .hero a,
.c-programming .hero a,
.python-section .hero a,
.react-section .hero a,
.node-section .hero a,
.data-science-section .hero a,
.data-analytics-section .hero a,
.dsa-section .hero a,
.devops-section .hero a,
.devops-azure-section .hero a,
.full-stack-ds-ai-section .hero a,
.full-stack-testing-section .hero a,
.powerbi-section .hero a,
.spoken-english-section .hero a,
.advanced-spoken-english-section .hero a {
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  color: var(--white);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
}

/* Course Overview  */

.genai-section .course-overview,
.genai-section .what-learn,
.genai-section .curriculum-section,
.genai-section .course-section,
.java-section .course-overview,
.java-section .what-learn,
.java-section .curriculum-section,
.java-section .course-section,
.c-programming .course-overview,
.c-programming .what-learn,
.c-programming .curriculum-section,
.c-programming .course-section,
.python-section .course-overview,
.python-section .what-learn,
.python-section .curriculum-section,
.python-section .course-section,
.react-section .course-overview,
.react-section .what-learn,
.react-section .curriculum-section,
.react-section .course-section,
.node-section .course-overview,
.node-section .what-learn,
.node-section .curriculum-section,
.node-section .course-section,
.data-science-section .course-overview,
.data-science-section .what-learn,
.data-science-section .curriculum-section,
.data-science-section .course-section,
.data-analytics-section .course-overview,
.data-analytics-section .what-learn,
.data-analytics-section .curriculum-section,
.data-analytics-section .course-section,
.dsa-section .course-overview,
.dsa-section .what-learn,
.dsa-section .curriculum-section,
.dsa-section .course-section,
.devops-section .course-overview,
.devops-section .what-learn,
.devops-section .curriculum-section,
.devops-section .course-section,
.devops-azure-section .course-overview,
.devops-azure-section .what-learn,
.devops-azure-section .curriculum-section,
.devops-azure-section .course-section,
.full-stack-ds-ai-section .course-overview,
.full-stack-ds-ai-section .what-learn,
.full-stack-ds-ai-section .curriculum-section,
.full-stack-ds-ai-section .course-section,
.full-stack-testing-section .course-overview,
.full-stack-testing-section .what-learn,
.full-stack-testing-section .curriculum-section,
.full-stack-testing-section .course-section,
.powerbi-section .course-overview,
.powerbi-section .what-learn,
.powerbi-section .curriculum-section,
.powerbi-section .course-section,
.spoken-english-section .course-overview,
.spoken-english-section .what-learn,
.spoken-english-section .curriculum-section,
.spoken-english-section .course-section,
.advanced-spoken-english-section .course-overview,
.advanced-spoken-english-section .what-learn,
.advanced-spoken-english-section .curriculum-section,
.advanced-spoken-english-section .course-section {
  background-color: #d3d2d2;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto 25px auto;
}

.what-learn .courses-card-caption h2,
.courses-card-caption h2 {
  font-size: 20px;
  margin: 20px 0px;
}

.what-learn .courses-card-caption,
.courses-card-caption {
  margin: 20px 0px;
}

.what-learn .courses-card-caption .download-btn,
.courses-card-caption .download-btn {
  background-color: #d60000;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
}

.what-learn .courses-card-caption p,
.course-overview .courses-card-caption p {
  margin: 20px 0px 50px 0px;
}

.course-overview span,
.what-learn span,
.curriculum-section span,
.course-section span {
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.course-overview h2,
.what-learn h2,
.curriculum-section h2,
.course-section h2 {
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 5px;
}

.course-overview h3,
.what-learn h3,
.curriculum-section h3,
.course-section h3 {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.course-overview p,
.what-learn p {
  font-size: 16px;
  color: var(--dark);
}

.course-overview ul,
.what-learn ul,
.curriculum-section ul,
.course-section ul {
  list-style: none;
  padding: 0;
}

.course-overview ul li,
.what-learn ul li,
.curriculum-section ul li,
.course-section ul li {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 5px;
  font-weight: 400;
}

.course-overview ul li i,
.what-learn ul li i,
.curriculum-section ul li i,
.course-section ul li i {
  margin-right: 5px;
  color: var(--secondary-color);
  font-size: 10px;
}

.what-learn .sub-list {
  list-style-type: none;
  padding-left: 30px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-left: 2px solid #ddd;
}

.what-learn .sub-list li i {
  font-size: 6px;
}

/* ===genai-section-end=== */

/* ===enroll-section-start=== */

.enroll-section .container {
  max-width: 800px;
  margin: 45px auto;
  background: url(../images/home-bg-2.png);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.enroll-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.enroll-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
}

.enroll-section .section-title p {
  color: var(--white);
}

.enroll-section #success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  display: none;
  text-align: center;
}

.enroll-section .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.enroll-section .form-group {
  flex: 1;
  min-width: 200px;
}

.enroll-section label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--white);
}

.enroll-section label.required:after {
  content: " *";
  color: #e74c3c;
}

.enroll-section input,
.enroll-section select,
.enroll-section textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border 0.3s;
}

.enroll-section input:focus,
.enroll-section select:focus,
.enroll-section textarea:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.enroll-section .submit-container {
  text-align: center;
  margin-top: 30px;
}

.enroll-section button[type="submit"] {
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 600;
}

.enroll-section button[type="submit"]:hover {
  background-color: #128c7e;
}

@media (max-width: 768px) {
  .enroll-section .form-group {
    flex: 1 0 100%;
  }

  .enroll-section .container {
    padding: 20px;
  }
}

/* ===enroll-section-end=== */

/* ===contact-section-start=== */

.contact-info {
  padding: 90px 0px;
  background-color: var(--bg-color);
  overflow: hidden;
}

.contact-info .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.contact-info .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.contact-info .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.contact-info .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.contact-info .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--dark);
}

.contact-info .service-inner-item {
  margin-bottom: 20px;
  background-color: var(--primary-color);
  padding: 20px 10px;
  border-radius: 5px;
}

.contact-info .service-inner-item h2 {
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
}

.contact-info .service-inner-item .icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  transition: 0.5s;
}

.contact-info .service-inner-item:hover .icon {
  transform: scale(1.2);
  transition: 0.5s;
}

.contact-info .contact-item p {
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

.contact-info .service-inner-item i {
  font-size: 24px;
  color: var(--primary-color);
  line-height: 50px;
  transition: 1s;
}

.contact-info .service-inner-item a {
  color: var(--white);
  text-decoration: none;
}

/* ===contact-section-end=== */

/* ===Popup-container-start=== */

.popup .popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999999999;
  justify-content: center;
  align-items: center;
}

/* Popup content box */
.popup .popup-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease-out;
  position: relative;
}

/* Close button */
.popup .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  height: 40px;
  width: 40px;
  background-color: var(--primary-color);
}

/* Form styling */
.popup .form-title {
  margin-top: 0;
  color: var(--dark);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 45px;
}

.popup .form-group {
  margin-bottom: 20px;
}

.popup .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.popup .form-group input,
.popup .form-group textarea,
.popup .form-group select {
  width: 100%;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.popup .form-group input:focus,
.popup .form-group textarea:focus {
  border-color: #4a90e2;
  outline: none;
}

.popup .submit-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  width: 100%;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.popup .submit-btn:hover {
  background-color: #3a7bc8;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===Popup-container-end=== */

/* ===ourwork-section-start=== */

.ourwork-section {
  padding: 90px 0px;
  background-color: var(--secondary-color);
}

.ourwork-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.ourwork-section .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.ourwork-section .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.ourwork-section .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.ourwork-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
}

.ourwork-section .section-title p {
  font-size: 16px;
  color: var(--white);
  font-weight: 300;
  margin-top: 15px;
}

.ourwork-section .ourwork-item {
  background-color: var(--white);
  padding: 20px;
  height: 100%;
  margin-bottom: 25px;
  border-radius: 5px;
}

.ourwork-section .ourwork-item img {
  border-radius: 5px;
}

.ourwork-section .ourwork-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0px;
}

.ourwork-section .ourwork-item p {
  font-size: 16px;
  color: var(--dark);
  text-align: justify;
}

/* ===ourwork-section-end=== */

/* ===impact-section-start=== */

.impact-section {
  padding: 90px 0px;
  background-color: var(--white);
}

.impact-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.impact-section .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.impact-section .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.impact-section .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.impact-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--dark);
}

.impact-section .impact-item {
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-bottom: 25px;
  height: 100%;
}

.impact-section .impact-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.impact-section .imp-icon {
  height: 100px;
  width: 100px;
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
  border-radius: 50%;
  margin-bottom: 25px;
  position: relative;
}

.impact-section .imp-icon::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
}

@keyframes round {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.impact-section .imp-icon::before {
  animation: round 6s linear infinite;
  inset: -3px;
  border: 4px dashed #ffffff;
}

.impact-section .impact-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.impact-section .impact-item p {
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .impact-items {
    flex-direction: column;
    align-items: center;
  }

  .impact-section h2 {
    font-size: 2rem;
  }
}

/* ===impact-section-end=== */

/* ===colleb-section-start=== */

/* Collaboration Section */
.collaborate-section {
  background: linear-gradient(135deg, #010827 0%, #e0d084 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  border-radius: 15px;
  margin: 80px auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.collaborate-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.collaborate-section h2 {
  font-size: 50px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
}

.collaborate-section p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--secondary-color);
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
}

.cta-button:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.email-icon {
  font-size: 1.5rem;
  vertical-align: middle;
  margin-right: 10px;
}

/* Decorative Elements */
.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .collaborate-section {
    padding: 60px 0;
    margin: 60px auto;
    border-radius: 0;
  }

  .collaborate-section h2 {
    font-size: 2rem;
  }

  .collaborate-section p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* ===colleb-section-end=== */

/* ===carrier-Hero-Section-start=== */

.career-hero {
  padding: 90px 0px;
  position: relative;
  z-index: 1;
  text-align: center;
  background: url(../images/ourwork-3.jpg);
  background-size: cover;
  background-position: center;
}

.career-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.849);
  z-index: -1;
}

.career-hero .section-title {
  position: relative;
}

.career-hero .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.career-hero .section-title span:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -60px;
}

.career-hero .section-title span:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -60px;
}

.career-hero h2 {
  font-size: 40px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--primary-color);
}

.career-hero h3 {
  font-size: 30px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
  margin-bottom: 20px;
}

.career-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
}

.career-hero .hero-btn a {
  display: inline-block;
  background-color: white;
  color: var(--secondary-color);
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
}

.career-hero .hero-btn a:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===carrier-Hero-Section-end=== */

/* ===Why-Join-Section-start=== */

.why-join-section {
  background-color: white;
  padding: 90px 0px;
}

.why-join-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.why-join-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--dark);
}

.why-join-section .benefit-item {
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.why-join-section .benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-join-section .benefit-item .benefit-icon {
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

.why-join-section .benefit-item .benefit-icon::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
}

@keyframes round {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.why-join-section .benefit-item .benefit-icon:before {
  animation: round 6s linear infinite;
  inset: -3px;
  border: 4px dashed #ffffff;
}

.why-join-section .benefit-item .benefit-icon i {
  color: var(--white);
  font-size: 2.5rem;
  line-height: 40px;
}

.why-join-section .benefit-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.why-join-section .benefit-item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

/* ===Why-Join-Section-end=== */

/* ===Openings-Section-start=== */

.openings {
  background-color: var(--secondary-color);
  padding: 90px 0px;
}

.openings .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.openings .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
}

.openings .section-title p {
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
  color: var(--white);
}

.job-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.job-category {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-category h3 {
  font-size: 24px;
  color: var(--dark);
  font-weight: 600;
}

/* ===Openings-Section-end=== */

/* ===CTA-Section-start=== */

.career-cta {
  background: linear-gradient(135deg, #010827 0%, #e0d084 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.career-cta h2 {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.career-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.career-cta .cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.career-cta .email-link {
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid white;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.career-cta .email-link:hover {
  color: #f1c40f;
  border-bottom-color: #f1c40f;
}

.career-cta .btn {
  display: inline-block;
  background-color: white;
  color: var(--secondary-color);
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
}

.career-cta .btn:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.career-cta .circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%),
    radial-gradient(ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%);
}

.career-cta .circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.career-cta .circle-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

/* ===CTA-Section-end=== */

/* Profile Card Styling */
.leader-profile {
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 30px auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
}

.leader-profile .profile-header {
  color: white;
  padding: 20px 10px;
  border-radius: 10px;
}

.leader-profile .profile-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.leader-profile .profile-header h3 {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}

.leader-profile .profile-content {
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
}

.leader-profile .profile-section {
  margin-bottom: 25px;
}

.leader-profile .profile-section h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 5px;
}

.leader-profile .profile-section p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  text-align: justify;
}

.leader-profile .contact-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-top: 20px;
}

.leader-profile .contact-item a {
  color: var(--white);
}

.leader-profile .contact-item i {
  margin-right: 8px;
  font-size: 20px;
  color: var(--primary-color);
}

.leader-profile .company-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 0px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.leader-profile .company-link:hover {
  text-decoration: underline;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .leader-profile {
    flex-direction: column;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===srinextgen-card-start=== */
.srinextgen-card-section {
  padding: 90px 0px;
  background-color: var(--secondary-color);
}

.srinextgen-card-section .section-title {
  margin: 0px 150px 45px 150px;
  text-align: center;
}

.srinextgen-card-section .section-title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.srinextgen-card-section .section-title span:not(.color-text)::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  left: -40px;
}

.srinextgen-card-section .section-title span:not(.color-text)::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  top: 10px;
  right: -40px;
}

.srinextgen-card-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
}

.srinextgen-card-section .section-title p {
  font-size: 16px;
  color: var(--white);
  font-weight: 300;
  margin-top: 15px;
}

.srinextgen-card-section .feature-box {
  background: url(../images/home-bg-2.png);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.srinextgen-card-section .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.srinextgen-card-section .feature-box .feature-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.srinextgen-card-section .feature-box .icon {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: var(--primary-color);
  text-align: center;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

.srinextgen-card-section .feature-box .icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 4px dashed #ffffff;
  animation: round 6s linear infinite;

}

@keyframes round {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.srinextgen-card-section .feature-box .icon i {
  font-size: 50px;
  color: var(--white);
  text-align: center;
  line-height: 45px;
}



.srinextgen-card-section .feature-box .highlight {
  background-color: var(--primary-light);
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  font-weight: 600;
}

.srinextgen-card-section .feature-box p {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  margin: 0;
  text-align: justify;
}

.srinextgen-card-section .feature-box .location-badge {
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  padding: 0.25rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* Responsive Fix */
@media (max-width: 768px) {

  .srinextgen-card-section .feature-box .feature-title,
  .srinextgen-card-section .feature-box .card-title {
    font-size: 22px;
  }
}


/* ===srinextgen-card-end=== */

/* ====about-hero-start==== */

.about-hero .hero {
  background-color: var(--secondary-color);
  padding: 4rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-hero h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--white);
}

.about-hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  color: var(--white);
}

/* ====about-hero-end==== */

/* ====about-page-section-start=== */

.about-page-section {
  padding: 90px 0px;
  background-color: var(--secondary-color);
}

.about-page-section .content-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.541);
}

.about-page-section h2 {
  font-size: 36px;
  font-weight: 700;
  padding-top: 10px;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.about-page-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.about-page-section p {
  margin-bottom: 1.2rem;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.about-page-section .highlight {
  color: #2259e3;
  font-weight: 600;
}

.about-page-section .mission-vision i {
  font-size: 36px;
  color: var(--primary-color);
  margin-right: 10px;
}

.about-page-section .mission-vision {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin: 2rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--secondary);
}

@media (max-width: 768px) {
  .about-page-section .hero h1 {
    font-size: 2rem;
  }
}

/* ====about-section-end==== */

.our-courses .courses-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  background-color: var(--secondary-color);
}

.form-label {
  color: var(--white);
}

.our-courses #genaiFormModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.our-courses #genaiFormModal h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.our-courses #genaiFormModal .modal-content {
  background: var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
}