:root {
  --theme-color: #fdbc15;
  --theme-color-dark: #e0a800;
  --theme-color2: #247fb1;
  --secondary: #033859;
  --light: #f8f9fa;
  --dark: #16213e;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --heading-font: "Montserrat", sans-serif;
  --body-font: "Poppins", sans-serif;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-font);
  color: #333;
  overflow-x: hidden;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
}

a {
  text-decoration: none;
}

/* Header & Navigation */
.navbar {
  background: rgba(22, 22, 22, 0.95);
  box-shadow: var(--shadow);
  padding: 15px 0;
  position: fixed;
  width: calc(100% - 30px);
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  margin: 15px;
  border-radius: 15px;
}
.navbar .navbar-brand {
  font-weight: 700;
  font-size: 28px;
  color: var(--secondary);
}
.navbar .nav-link {
  font-weight: 500;
  margin: 0 10px;
  color: #fff;
  position: relative;
  transition: var(--transition);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--theme-color);
}
.navbar .nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--theme-color);
  left: 0;
  bottom: 0;
  transition: var(--transition);
}
.navbar .nav-link:hover:after,
.navbar .nav-link.active:after {
  width: 100%;
}
.navbar .dropdown:hover .dropdown-menu {
  display: block;
}
.navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar .dropdown-item {
  padding: 10px 20px;
  transition: var(--transition);
}
.navbar .dropdown-item:hover {
  background: var(--theme-color);
  color: white;
}
.navbar .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

.testimonial-card {
  padding: 30px;
  background: white;
  border-radius: 15px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid var(--theme-color);
}

/* Section Styling */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title .divider {
  height: 4px;
  width: 80px;
  background: var(--theme-color);
  margin: 0 auto;
  border-radius: 2px;
  margin-bottom: 20px;
}

#about {
  overflow: hidden;
  /* About Section */
}
#about .about-content {
  padding: 20px;
}
#about .about-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
#about .about-img img {
  width: 100%;
}
#about .about-img:hover {
  transform: scale(1.02);
}

#courses {
  /* Courses Section */
}
#courses.courses-section {
  background: linear-gradient(45deg, rgba(255, 204, 204, 0.568627451), rgba(211, 211, 255, 0.6), #e5ffe5, rgba(255, 223, 223, 0.7215686275), rgba(255, 255, 223, 0.8588235294), #ffffe2);
}
#courses .course-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 30px;
}
#courses .course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
#courses .course-img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#courses .course-body {
  padding: 25px;
}
#courses .course-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
#courses .course-title a {
  color: inherit;
}
#courses .btn-outline-primary {
  border: 2px solid var(--theme-color);
  padding: 7px 20px;
  margin-top: 0 !important;
}
#courses .course-duration {
  display: flex;
  align-items: center;
  color: var(--gray);
  margin-bottom: 15px;
}
#courses .course-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#courses .prices {
  background-color: #2481b5;
  color: #fff;
  padding: 9px 19px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
}

.new-courses {
  background: rgba(237, 237, 237, 0.9098039216);
}
.new-courses .main-container {
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0;
  display: flex;
  min-height: 80vh;
  overflow: hidden;
  border-top: solid 7px var(--theme-color);
}
.new-courses .sidebar {
  background-color: #f9fafb;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-right: 1px solid #e5e7eb;
}
.new-courses .title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--theme-color2);
  border-bottom: solid 1px;
  padding-bottom: 6px;
}
.new-courses .tab-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.new-courses .tab-button {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  color: #4b5563;
  background-color: rgba(0, 0, 0, 0.0588235294);
  border: none;
  cursor: pointer;
}
.new-courses .tab-button:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}
.new-courses .tab-button.active {
  color: #1a202c;
  background-color: var(--theme-color);
  font-weight: 600;
}
.new-courses .content-area {
  flex-grow: 1;
  padding: 2rem;
}
.new-courses .content-title {
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--theme-color2);
  border-bottom: solid 1px;
}
.new-courses .content-text {
  color: #4b5563;
}
.new-courses .card-project {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--theme-color);
}
.new-courses .card-footnote {
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: auto;
}
.new-courses .hidden {
  display: none;
}
.new-courses .cur-details h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.new-courses .cur-details h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.new-courses .cur-details ul li {
  position: relative;
  list-style: none;
  margin-bottom: 3px;
  line-height: 1.7;
}
.new-courses .cur-details ul li:before {
  content: "\f00c";
  left: -20px;
  top: 0;
  color: var(--theme-color2);
  position: absolute;
  font-family: "fontawesome";
}

#why-choose {
  background-image: linear-gradient(45deg, #033859, rgba(0, 0, 0, 0.8392156863));
  background-size: cover;
  background-repeat: no-repeat;
  /* Why Choose Us */
}
#why-choose h2 {
  color: var(--theme-color);
}
#why-choose p {
  color: #fff;
}
#why-choose h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}
#why-choose .choose-section {
  background: var(--secondary);
  color: white;
  position: relative;
  overflow: hidden;
}
#why-choose .choose-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
}
#why-choose .choose-item:hover {
  background: rgba(253, 188, 21, 0.1);
  transform: translateY(-5px);
}
#why-choose .choose-icon {
  font-size: 3rem;
  color: var(--theme-color);
  margin-bottom: 20px;
}

.cer-row-wrap {
  background-color: #ffffff;
  padding: 30px 26px;
  border-top: solid 4px var(--theme-color);
  box-shadow: 0 0 28px -4px rgba(0, 0, 0, 0.2784313725);
}

/* FAQ Section */
.faq-section {
  background: var(--light);
}

.accordion-item {
  border: none;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
}

.accordion-button {
  background: white;
  font-weight: 600;
  border: none;
  box-shadow: none !important;
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background: var(--theme-color);
  color: white;
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Contact Section */
.contact-form {
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.form-control {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 0.25rem rgba(253, 188, 21, 0.25);
}

.contact-info li {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info i {
  color: var(--theme-color);
  font-size: 20px;
  margin-right: 15px;
  min-width: 20px;
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--theme-color);
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 0;
}
.footer .footer-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-size: 16px;
}
.footer .footer-links {
  padding-left: 4px;
}
.footer .footer-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--theme-color);
}
.footer .footer-links li {
  margin-bottom: 12px;
  list-style: none;
}
.footer .footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
}
.footer .footer-links a:hover {
  color: var(--theme-color);
  padding-left: 5px;
}
.footer .copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 20px;
}

/* Buttons */
.btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--theme-color);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--theme-color-dark);
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.btn-outline-primary:hover {
  background: var(--theme-color);
  color: white;
}

.bg-primary-light {
  background: rgba(253, 188, 21, 0.1);
}

.text-primary {
  color: var(--theme-color) !important;
}

.new-banner {
  position: relative;
  background-color: rgba(255, 245, 245, 0.6784313725);
  min-height: auto;
  padding-top: 12rem;
  padding-bottom: 4rem;
  box-shadow: 0 0 30px -8px rgba(0, 0, 0, 0.2784313725);
  /* Owl Carousel Custom */
}
.new-banner .bnr-img img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.new-banner .bnr-overlay {
  background-image: linear-gradient(33deg, #fff, transparent);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.new-banner h1 {
  font-size: 43px;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 900;
}
.new-banner h1 span {
  text-shadow: 3px 3px 0 BLACK;
}
.new-banner h2 {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: #fff;
  padding-right: 20px;
}
.new-banner h2 span {
  position: relative;
}
.new-banner h2::before {
  position: absolute;
  left: -27px;
  top: 0;
  background-color: #212121;
  width: 103%;
  height: 100%;
  z-index: 0;
  content: "";
  transform: skew(17deg, 0deg);
  border-left: solid 8px var(--theme-color);
}
.new-banner .bnr-form {
  background-color: #fff;
  border-radius: 15px;
  padding: 18px;
  box-shadow: 0 0 20px -6px rgba(0, 0, 0, 0.3098039216);
}
.new-banner .bnr-form h4 {
  margin-bottom: 12px;
  padding: 14px 20px;
  color: var(--theme-color);
  font-size: 20px;
  border-radius: 6px;
  border-left: solid 6px;
  background-color: rgba(221, 221, 221, 0.2117647059);
}
.new-banner .bnr-form input:not([type=radio]):not([type=submit]) {
  height: 45px;
  line-height: 45px;
  margin-bottom: 10px;
}
.new-banner .bnr-form textarea {
  height: 70px;
}
.new-banner .bnr-form .btn {
  background-color: var(--theme-color);
  color: #fff;
  color: #000;
}
.new-banner .bnr-inne {
  padding-top: 1rem;
  font-size: 21px;
  margin-bottom: 1.5rem;
}
.new-banner h6 {
  font-size: 20px;
  margin-bottom: 1.5rem;
}
.new-banner .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.new-banner .owl-carousel .item {
  background: var(--secondary);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.new-banner .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd !important;
  margin: 0 5px;
  transition: var(--transition);
}
.new-banner .owl-dot.active {
  background: var(--theme-color) !important;
  transform: scale(1.2);
}
.new-banner .coupon-code {
  margin-bottom: 15px;
}
.new-banner .coupon-code input {
  margin-bottom: 0 !important;
}
.new-banner .coupon-code button {
  padding: 5px 25px;
  background-color: var(--theme-color2);
  border: unset;
  color: #fff;
}

.stats-bar {
  background: #002c47;
  padding: 35px 0;
  /* background-blend-mode: hue; */
}
.stats-bar .counterBox {
  background-color: #02273f;
  padding: 25px 15px;
  border-radius: 10px;
}
.stats-bar .counterBox p {
  color: #fff;
}
.stats-bar h3 {
  color: var(--theme-color);
  margin-top: 13px;
}

.price-package {
  /* Main table container */
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.8901960784), rgba(30, 30, 30, 0.7803921569));
  background-size: cover;
  background-repeat: no-repeat;
  /* Table header styling */
  /* Table body cell styling */
  /* Header logo and text styling */
}
.price-package .comparison-table {
  max-width: 960px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border-collapse: collapse;
  border-top: solid 3px var(--theme-color);
}
.price-package .comparison-table thead th {
  padding: 1.5rem 2rem;
  text-align: left;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.price-package .comparison-table thead th.right-header {
  background-color: #393939;
}
.price-package .comparison-table tbody td {
  padding: 1rem 2rem;
  vertical-align: middle;
  border-bottom: 1px solid #e5e7eb;
}
.price-package .comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.price-package .comparison-table tbody td.left-cell {
  font-weight: 500;
  color: #4b5563;
  background-color: #f9fafb;
}
.price-package .comparison-table tbody td.right-cell {
  text-align: left;
  font-weight: 600;
  color: #111827;
  border-left: 4px solid #f59e0b;
}
.price-package .right-cell-subtext {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 400;
}
.price-package .right-cell-subtext.italic {
  font-style: italic;
}
.price-package .header-logo {
  display: block;
  margin: 0 auto 0.5rem auto;
  height: 2rem;
  color: #f59e0b;
}
.price-package .header-text {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1f2937;
  line-height: 1.25;
}

.cerificates {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.9215686275), #ffffff), url(img/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.tools {
  background-color: var(--secondary);
}
.tools .tools-wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 25px;
}
.tools h2 {
  color: #fff;
}
.tools p {
  color: #fff;
}
.tools .tools-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 0px 14px -9px #000;
}
.tools .tools-box img {
  max-width: 113px;
}

.admision-process {
  /* Process Cards Layout */
  /* Individual Card Styling */
  /* Illustrations and Icons */
  /* Specific card colors and borders */
  /* Connecting lines between cards */
}
.admision-process .process-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.admision-process .process-card {
  flex: 1;
  min-width: 250px;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}
.admision-process .process-card:hover {
  transform: translateY(-5px);
}
.admision-process .card-number {
  font-size: 3rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 12px;
  opacity: 1;
  transform: translate(-50%, -50%);
  background-color: var(--theme-color);
  line-height: 1;
  border-radius: 68px;
  padding: 7px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admision-process .process-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 0;
  color: #000;
}
.admision-process .process-card p {
  font-size: 0.9rem;
  color: #555;
}
.admision-process .card-illustration {
  margin-top: 1.5rem;
  text-align: center;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.admision-process .process-card.card-1 {
  border-color: #ff9147;
}
.admision-process .process-card.card-1 .card-illustration img {
  width: 100px;
}
.admision-process .process-card.card-2 {
  border-color: #a0a0a0;
  /* A neutral gray for the missing step */
}
.admision-process .process-card.card-2 .card-illustration img {
  width: 90px;
}
.admision-process .process-card.card-3 {
  border-color: #3bbf91;
}
.admision-process .process-card.card-3 .card-illustration img {
  width: 100px;
}
.admision-process .process-card.card-4 {
  border-color: #2e8b57;
}
.admision-process .process-card.card-4 .card-illustration img {
  width: 120px;
}
.admision-process .process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 2rem;
  height: 2px;
  background-color: #e0e0e0;
  transform: translateY(-50%);
  z-index: 1;
}

.eligibility-criteria {
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.88)), url(img/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-top: solid 7px var(--theme-color);
}
.eligibility-criteria h2 {
  color: #fff;
}
.eligibility-criteria p {
  color: #fff;
}

.breadcrumb {
  padding: 185px 0 40px;
  background-image: linear-gradient(45deg, #16213e, #16213e);
  margin-bottom: 0;
}
.breadcrumb h1 {
  color: #fff;
}
.breadcrumb a {
  color: var(--theme-color);
}
.breadcrumb span {
  color: #fff;
}
.breadcrumb ul {
  padding-left: 0;
}
.breadcrumb ul li {
  margin-right: 15px;
  color: #fff;
  padding-right: 25px;
  list-style: none;
  display: inline;
  position: relative;
}
.breadcrumb ul li::before {
  right: 0;
  top: 0;
  position: absolute;
  content: "\f061";
  font-family: "fontawesome";
}
.breadcrumb ul li:last-child:before {
  display: none;
}
.breadcrumb ul li a {
  color: #fff;
}

.teahcers {
  background-color: #f5f5f5;
  padding-bottom: 4rem;
  /* Owl Carousel specific CSS */
}
.teahcers .company-logo {
  max-height: 50px;
  max-width: 150px;
  width: auto !important;
}
.teahcers .carousel-container {
  margin-top: 2rem;
  position: relative;
}
.teahcers .team-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  justify-content: space-between;
}
.teahcers .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.teahcers .team-info {
  display: grid;
  align-items: center;
  padding-top: 1rem;
  grid-template-columns: 140px 1fr;
}
.teahcers .team-image {
  height: 200px;
  width: 200px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.teahcers .details {
  margin-left: 1rem;
}
.teahcers .name {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #111827;
}
.teahcers .designation {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #6b7280;
}
.teahcers .company-and-education {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.teahcers .separator {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}
.teahcers .education {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0;
  color: #6b7280;
}
.teahcers .owl-carousel .owl-nav button.owl-prev,
.teahcers .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 1.5rem !important;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.teahcers .owl-carousel .owl-nav button.owl-prev:hover,
.teahcers .owl-carousel .owl-nav button.owl-next:hover {
  background-color: rgba(0, 0, 0, 0.7) !important;
}
.teahcers .owl-carousel .owl-nav button.owl-prev {
  left: 3rem;
}
.teahcers .owl-carousel .owl-nav button.owl-next {
  right: 3rem;
}
.teahcers .owl-carousel .owl-dots .owl-dot.active span {
  background-color: #6366f1 !important;
}
.teahcers .owl-carousel .owl-dots .owl-dot span {
  background: #e5e7eb;
}

.contact-section .section-header {
  color: var(--theme-color);
  /* Darker grey for headings */
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 22px;
}
.contact-section .info-card,
.contact-section .contact-form-card {
  background-color: rgba(243, 249, 255, 0.9294117647);
  border-radius: 8px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: solid 1px #ddd;
}
.contact-section .info-item {
  display: flex;
  align-items: flex-start;
  /* Align icon and text at the top */
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.contact-section .info-item i {
  color: #007bff;
  /* Accent color for icons - example blue */
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 28px;
  /* Fixed width for consistent icon alignment */
  text-align: center;
  padding-top: 2px;
  /* Adjust if icon isn't perfectly centered vertically */
}
.contact-section .info-item p {
  margin-bottom: 0;
  font-size: 14px;
}
.contact-section .info-item a {
  color: #333;
  /* Darker link color */
  text-decoration: none;
}
.contact-section .info-item a:hover {
  color: #007bff;
  /* Accent color on hover */
}
.contact-section .form-control {
  border-radius: 5px;
  padding: 0.75rem 1rem;
}
.contact-section .btn-primary {
  background-color: #212529;
  /* Dark button */
  border-color: #212529;
  padding: 0.8rem 2rem;
  font-weight: 500;
  border-radius: 5px;
}
.contact-section .btn-primary:hover {
  background-color: #343a40;
  /* Slightly lighter on hover */
  border-color: #343a40;
}
.contact-section .form-label {
  font-weight: 500;
  color: #555;
  margin-bottom: 0.4rem;
}
.contact-section textarea.form-control {
  height: 80px;
  /* More space for messages */
  resize: vertical;
}

.main-projects .list-container .list-item i {
  color: var(--theme-color);
}
.main-projects .content-wrapper {
  display: flex;
  gap: 40px;
}
.main-projects .section-title {
  text-align: left;
  color: var(--theme-color);
  margin-bottom: 1rem;
}
.main-projects .left-content {
  flex: 2;
  /* Give more space to the content */
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-projects .right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  border-top: 4px solid #fdbc15;
  background-color: #f3f3f3;
  border-radius: 16px;
  box-shadow: 0 0 26px -9px #979797;
}
.main-projects .header {
  font-size: 14px;
  font-weight: bold;
  color: #0a0a0a;
  background-color: rgba(221, 221, 221, 0.368627451);
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 20px;
  border-radius: 8px;
  border-left: solid 3px var(--theme-color);
}
.main-projects .section-subtitle {
  font-size: 16px;
  color: #555;
}
.main-projects .description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.main-projects .list-container {
  display: flex;
  flex-direction: column;
}
.main-projects .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}
.main-projects .list-item svg {
  margin-right: 10px;
  fill: #3b82f6;
}
.main-projects .footnote {
  font-size: 12px;
  color: #888;
  font-style: italic;
}
.main-projects .logo-section {
  display: flex;
  flex-direction: column;
  /* Stack logos vertically */
  align-items: center;
  gap: 25px;
  /* Spacing between logos */
}
.main-projects .logo-section img {
  max-height: 40px;
  opacity: 1;
  max-width: 245px;
}

.testi {
  /* Testimonials section styles */
  /* Custom styles for the styled Owl Carousel navigation arrows */
}
.testi .testimonial-card {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.testi .testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}
.testi .profile-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testi .profile-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #3b82f6;
}
.testi .profile-text {
  display: flex;
  flex-direction: column;
}
.testi .profile-text .name {
  font-weight: bold;
  color: #111827;
}
.testi .profile-text .designation {
  font-size: 12px;
  color: #6b7280;
}
.testi .profile-text a {
  font-size: 12px;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s;
}
.testi .profile-text a:hover {
  color: #2563eb;
}
.testi .owl-prev,
.testi .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  /* Set a fixed width */
  height: 40px;
  /* Set a fixed height */
  background-color: #3b82f6 !important;
  /* Set a background color */
  color: #fff !important;
  /* Set text color to white */
  border-radius: 50% !important;
  /* Make them circular */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem !important;
  /* Adjust font size for better arrow visibility */
  transition: background-color 0.3s ease;
  z-index: 10;
  /* Added z-index to ensure visibility */
}
.testi .owl-prev:hover,
.testi .owl-next:hover {
  background-color: #2563eb !important;
  /* Darken on hover */
}
.testi .owl-dots {
  display: none;
}
.testi .owl-prev {
  left: -20px;
  /* Adjust left position */
}
.testi .owl-next {
  right: -20px;
  /* Adjust right position */
}
.testi .owl-nav {
  margin-top: 0;
}

.teahcers-page {
  background-color: #f5f5f5;
}
.teahcers-page .company-logo {
  max-height: 30px;
  width: auto !important;
}
.teahcers-page .carousel-container {
  position: relative;
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}
.teahcers-page .team-card-page {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: solid 3px transparent;
}
.teahcers-page .team-card-page:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--theme-color);
}
.teahcers-page .team-info {
  display: grid;
  align-items: center;
  grid-template-columns: 140px 1fr;
}
.teahcers-page .team-image {
  height: 200px;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.teahcers-page .details {
  margin-left: 1rem;
}
.teahcers-page .name {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #111827;
}
.teahcers-page .designation {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #6b7280;
}
.teahcers-page .company-and-education {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.teahcers-page .separator {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}
.teahcers-page .education {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0;
  color: #6b7280;
}

.main-projects-page .list-container .list-item i {
  color: var(--theme-color);
}
.main-projects-page .content-wrapper {
  display: flex;
  gap: 40px;
  padding: 25px;
  border: solid 2px var(--theme-color);
  border-radius: 15px;
  background-color: #fff;
  margin-bottom: 15px;
}
.main-projects-page .section-title {
  text-align: left;
  color: var(--theme-color);
  margin-bottom: 1rem;
}
.main-projects-page .left-content {
  flex: 2;
  /* Give more space to the content */
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-projects-page .right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  border-top: 4px solid #fdbc15;
  background-color: #f3f3f3;
  border-radius: 16px;
  box-shadow: 0 0 26px -9px #979797;
}
.main-projects-page .header {
  font-size: 14px;
  font-weight: bold;
  color: #0a0a0a;
  background-color: rgba(221, 221, 221, 0.368627451);
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 20px;
  border-radius: 8px;
  border-left: solid 3px var(--theme-color);
}
.main-projects-page .section-subtitle {
  font-size: 16px;
  color: #555;
}
.main-projects-page .description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.main-projects-page .list-container {
  display: flex;
  flex-direction: column;
}
.main-projects-page .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}
.main-projects-page .list-item svg {
  margin-right: 10px;
  fill: #3b82f6;
}
.main-projects-page .footnote {
  font-size: 12px;
  color: #888;
  font-style: italic;
}
.main-projects-page .logo-section {
  display: flex;
  flex-direction: column;
  /* Stack logos vertically */
  align-items: center;
  gap: 25px;
  /* Spacing between logos */
}
.main-projects-page .logo-section img {
  max-height: 40px;
  opacity: 1;
  max-width: 245px;
}

.ceo-message {
  background-image: linear-gradient(45deg, #16213e, rgba(0, 0, 0, 0.9490196078));
}
.ceo-message h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 1.5rem;
}
.ceo-message p {
  color: #fff;
}

.testimonials-page {
  /* General container for the testimonials section */
  /* Testimonial text styling */
  /* Author details section */
  /* Author image styling */
}
.testimonials-page .testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.testimonials-page .testimonial-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}
.testimonials-page .testimonial-box {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 30%;
  box-sizing: border-box;
}
.testimonials-page .testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}
.testimonials-page .testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.testimonials-page .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #007bff;
}
.testimonials-page .author-name {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}
.testimonials-page .author-title {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.testimonials-page .linkedin-profile {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.testimonials-page .linkedin-profile:hover {
  color: #0056b3;
}

.blog-page .featured-card {
  border: none;
  transition: transform 0.3s ease-in-out;
  background-color: #ffffff;
}
.blog-page .featured-card:hover {
  transform: translateY(-5px);
}
.blog-page .blog-card {
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  background-color: #ffffff;
}
.blog-page .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.blog-page .card-img-top {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-page .card-title {
  color: var(--theme-color2);
  font-weight: 600;
  font-size: 20px;
}
.blog-page .btn-primary {
  background-color: var(--theme-color2);
  border-color: var(--theme-color2);
  transition: background-color 0.3s, transform 0.3s;
}
.blog-page .btn-primary:hover {
  background-color: #0056b3;
  border-color: #004da7;
  transform: scale(1.05);
}
.blog-page .btn-outline-primary {
  border-color: var(--theme-color2);
  color: var(--theme-color2);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}
.blog-page .btn-outline-primary:hover {
  background-color: var(--theme-color2);
  color: #fff;
  transform: scale(1.05);
}

.blogs-single {
  background-color: rgba(235, 235, 235, 0.7607843137);
}
.blogs-single article {
  background-color: #ffffff;
  border: solid 1px #ddd;
}
.blogs-single h3 {
  color: var(--theme-color);
  font-size: 22px;
}
.blogs-single h4 {
  font-size: 20px;
  color: var(--theme-color);
}
.blogs-single .thumb-wrapper {
  position: relative;
}
.blogs-single .thumb-wrapper .date-blog {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--theme-color);
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
}
.blogs-single .blog-post-content {
  background-color: #ffffff;
}
.blogs-single h2 {
  font-size: 27px;
  color: var(--theme-color2);
}
.blogs-single .sidebar .p-3 {
  border: 1px solid #dee2e6;
}
.blogs-single .sidebar h4 {
  color: #0d6efd;
  font-weight: 600;
}
.blogs-single .sidebar a {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.blogs-single .sidebar a:hover {
  color: var(--theme-color2);
  text-decoration: underline;
}
.blogs-single .link-primary {
  color: var(--theme-color2) !important;
}
.blogs-single .link-primary small {
  color: #6c757d !important;
}
.blogs-single .link-primary:hover {
  color: #0056b3 !important;
}

.course-page {
  background: rgba(237, 237, 237, 0.9098039216);
}
.course-page .main-container {
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0;
  display: flex;
  min-height: 80vh;
  overflow: hidden;
  border-top: solid 7px var(--theme-color2);
}
.course-page .sidebar {
  background-color: #f9fafb;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-right: 1px solid #e5e7eb;
  box-shadow: 0 4px 19px -4px rgba(0, 0, 0, 0.4196078431);
}
.course-page .title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--theme-color2);
  border-bottom: solid 1px;
  padding-bottom: 6px;
}
.course-page .tab-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.course-page .tab-button {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  color: #4b5563;
  background-color: rgba(0, 0, 0, 0.0588235294);
  border: none;
  cursor: pointer;
}
.course-page .tab-button:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}
.course-page .tab-button.active {
  color: #1a202c;
  background-color: var(--theme-color);
  font-weight: 600;
  box-shadow: 7px 6px 9px -5px rgba(0, 0, 0, 0.3098039216);
}
.course-page .content-area {
  flex-grow: 1;
  padding: 2rem;
  box-shadow: -12px 13px 20px -5px rgba(0, 0, 0, 0.2196078431) inset;
}
.course-page .content-title {
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--theme-color2);
  border-bottom: solid 1px;
}
.course-page .content-text {
  color: #4b5563;
}
.course-page .card-project {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--theme-color);
}
.course-page .card-footnote {
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: auto;
}
.course-page .hidden {
  display: none;
}
.course-page .cur-details h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.course-page .cur-details h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.course-page .cur-details ul li {
  position: relative;
  list-style: none;
  margin-bottom: 3px;
  line-height: 1.7;
}
.course-page .cur-details ul li:before {
  content: "\f00c";
  left: -20px;
  top: 0;
  color: var(--theme-color2);
  position: absolute;
  font-family: "fontawesome";
}

.whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #00e676;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10;
  margin-top: 0px;
  line-height: 50px;
  transition: all ease-in-out 0.2s;
  bottom: 50px;
  left: 10px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .section {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .hero-content {
    padding: 80px 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */