@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Header Styles */
body {
  overflow-x: hidden;
  font-family: "Poppins";
  padding-top: 70px;
}

.header {
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}



@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.logo-animation {
  animation: logoFloat 3s ease-in-out infinite;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Dropdown arrow positioning */
.dropdown-toggle::after {
  display: none;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: var(--transition);
}

.nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile responsive styles */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.navbar-toggler span:nth-child(1) {
  top: 0;
}

.navbar-toggler span:nth-child(2) {
  top: 8px;
}

.navbar-toggler span:nth-child(3) {
  top: 16px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.cta-button {
  font-weight: bold;
  background-color: rgb(211, 211, 211);
  border-radius: 20px;
}

/* Mobile close button styling */
.close-nav {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  margin-bottom: 1rem;
  align-self: flex-end;
}


/* Mobile menu adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-link:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    background-color: rgba(58, 134, 255, 0.05);
    width: 100%;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
  }

  .cta-button {
    /* border: 2px solid rgb(253, 142, 142); */
    background-color: rgb(211, 211, 211);
    margin-top: 1rem;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  /* Fix alignment for all nav items */
  .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    padding-left: 1rem;
  }

  /* Adjust logo size on mobile */
  .navbar-brand img {
    height: 50px;
  }

  /* Ensure all nav items have the same alignment */
  .navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }


}



/* Desktop specific styles */
@media (min-width: 992px) {
  .dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    transition: var(--transition);
  }

  .dropdown-item:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .nav-link .dropdown-arrow {
    margin-left: 0.25rem;
  }

  /* Desktop specific alignment */
  .navbar-nav .nav-item .nav-link {
    justify-content: center;
  }
}

.hero-section {
  background-image: url("../images/bg.png");
  height: 900px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
}

.hero-section h1 {

  font-family: 'poppins','sans-serif';
  font-size: 45px;
  font-weight: 700;
  font-style: normal;
  color: #000;
}

.hero-section p {

  font-family: 'roboto','sans-serif';
  font-size: 19px;
  font-weight: 400;
  font-style: normal;
  color: #000;
}
.btn-main {
  font-family: 'poppins','sans-serif';
  font-size: 19px;
  background-color: #4fb476;
  color: white;
  border: none;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 6px;
  margin: 10px;
}

.btn-main:hover {
  background-color: #2cb67d;
}

.btn-secondary {
  font-family: 'poppins','sans-serif';
  font-size: 19px;
  background-color: white;
  color: #4fb476;
  
  padding: 15px 35px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  margin: 10px;
}

.btns {
     margin-top: auto;
    padding-bottom: 40px;
    position: relative;
    top: auto;
    bottom: -31%;
}


.hero-section p {
  margin-bottom: 220px;
}



@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    width: 100% !important;
  }

  .career-people img {
    max-width: 100px;
  }
}
.section-label {
  font-family: 'poppins','sans-serif';
  background-color: #dcf0e4;
  font-size: 15px;
  color: #4fb476;
  font-weight: 600;
  padding: 8px 26px;
  
}

.custom-tab-container {
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
  background-color: #333;
}

.tab-buttons {
  flex-basis: 30%;
}

/* Vertical Tabs */
.tab-buttons .nav-link {
  text-align: left;
  font-weight: 600;
  width: 100%;
  color: #333;
  height: 30%;
  background: #fff;
  border: none;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #ddd;
  padding: 0.75rem 0.3rem 0.75rem 0.5rem;
  gap: 10px;
  margin: 3px 0px;
  border-radius: 0;
  display: flex;
  align-items: center;
  transition: background 0.2s ease;
}

.tab-buttons .nav-link:last-child {
  border-bottom: none;
}

.tab-buttons .nav-link.active {
  font-weight: 900;
}

.tab-buttons .nav-link .arrow {
  font-weight: bold;
  color: #000;
  margin-right: 10px;
}

.ms-auto.fa-solid,
.ms-auto.fa-solid {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background-color: #000 !important;
  display: grid;
  place-items: center;
}

.nav-pills  {
  font-family: 'poppins','sans-serif';
  font-size: 18px;
  font-weight: 500;
  color: #000;
  background: #fff;
}

.nav-pills .nav-link.active {
  font-family: 'poppins','sans-serif';
  font-size: 18px;
  font-weight: 700;
  color: #000;
  background: #fff;
}


.tab-content {
  flex-basis: 70%;
}

.tab-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.right-content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.70)), url("../images/career.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  padding: 3rem !important;
  height: 100%;
}

.right-content-title {
  font-size: 29px;
  font-family: 'poppins','sans-serif';
  font-weight: 700;
}
.right-content-text {
  font-size: 22px;
  font-family: 'roboto','sans-serif';
  font-weight: 600;
}

@media screen and (max-width:992px) {
  .right-content {
    padding: 3rem 1rem !important;
  }

  .none {
    display: none;
  }

  .width {
    width: 100% !important;
  }
}


.badge-highlight {
  background-color: #dcf0e4;
  color: #4fb476;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.text-dark{
  color: black;
}
.section-title {
  font-family: 'poppins','sans-serif';
  font-weight: 700;
  margin-top: 18px;
  color: #000;
}

.subtitle {
  font-family: 'roboto','sans-serif';
  color: #000000;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 30px;
  max-width: 80%;
}


.feature-tabs,
.tab-btns {
  display: flex;
  overflow-x: scroll;
  gap: 5px;
}

.tab-btns>.btn {
  min-width: 120px;
  max-width: 180px;
}

.feature-tabs::-webkit-scrollbar,
.tab-btns::-webkit-scrollbar {
  display: none;
}
.feature-tabs{
  gap:20px;

}
.feature-tab {
  border: 2px solid #000000;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  color: #4fb476;
  cursor: pointer;
  max-width: 160px !important;
  min-width: 120px;
  text-align: center;
}

.feature-tab.active {
  background-color: #4fb476;
  border: none;
  color: #fff;
}

.feature-list i {
  margin-right: 6px;
  color: #000;
}

.btn-start {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 25px;
  margin-top: 20px;
  border:solid #000;
}
#description{
  font-family: "Roboto";
  font-size: 24px;
}
.btn-start:hover {
  border: solid #000;
  background-color: #000;
  color: #fff;
}

.img-badge {
  background-color: white;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.909);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  border: 1.5px solid #000;
  align-items: center;
}

.img-badge i {
  color: green;
  margin-right: 5px;
}

.image-container {
  position: relative;
  display: inline-block;
  width: 70% !important;
  height: 300px !important;
  margin: auto !important;
}

.image-container img {
   width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.badge-top,
.badge-bottom,
.badge-right {
  position: absolute;
  z-index: 10;
}

.badge-top {
  top: 10px;
  left: -80px;
}

.badge-right {
  top: 30%;
  right: -80px;
  transform: translateY(-50%);
}

.badge-bottom {
  bottom: 10px;
  right: -10px;
}

@media (max-width: 768px) {
  .image-container img {
    width: 100%;
    height: 400px;
  }
}


.table-row {
  display: grid;
  grid-template-columns: 2fr 0.8fr 0.8fr;
  border-top: 1.5px solid #737373;
  color: black;
}

.table-row:last-child {
  border-bottom: 1.5px solid #818181;
}

.table-head,
.table-end {
  padding: 14px 20px;
  /* display: grid; */
  align-items: center;
}


.table-mid {
  border-right: 1.5px solid #adadad;
  border-left: 1.5px solid #adadad;
  display: grid;
  place-items: center;
}

.table-mid,
.table-head,
.table-end {
  padding: 14px 20px;
  
}

.bg-light-blue {
  background-color: #7fa6fd;
}


.consultation-container {
  padding: 70px 50px 40px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(to bottom, #111c38cb), url("../images/consult-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-change-img {
  background: linear-gradient(to bottom, #0d1b2acb), url("../images/open.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.conslutation-btn {
  padding: 14px;
  background-color: #4fb476;
  color: #fff;
  border-radius: 0px;
  width: 100%;
}

.conslutation-btn:hover {
  background-color: #4fb476;
  color: #000;
}


/* .faq-container {
  border-radius: 10px;
  padding: 20px;
  padding-top: 40px;
  background-color: #f7f7f7;
} */
.faq-container {
  border-radius: 0px;
  padding: 60px 80px;
  background-color: #f1f1f1;
}
/* 
.faq-container>h1 {
  font-size: 60px;
  color: #aba9a9;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0px;
} */

.accordion-button {
  background-color: #a6a6a6;
  color: white;
  font-weight: 800;
  border-radius: 6px;
  margin-bottom: 14px;
}

.accordion-button::after {
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.accordion-button:not(.collapsed) {
  background-color: #169b62!important;
  color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.accordion-body {
  background-color: white;
  border-radius: 6px;
  padding: 15px 20px;
}

.accordion-item {
  border: none;
  background: transparent;
}

@media (max-width: 576px) {
  .faq-background-title {
    font-size: 50px;
  }
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: none;
}

.career-container {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.753)), url("../images/bg-cover.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.career-card {
  height: 380px;
  border-radius: 20px;
  background-color: #ffffffe3;
  padding: 30px 20px;
}

.green-shade {
  color: #4fb476;
}

.dx-career-heading h2, h4 {

  font-family: 'poppins','sans-serif';

}
.dx-career-text p {
  font-family: 'roboto','sans-serif';
}
.dx-career-text-big {
  font-family: 'roboto','sans-serif';
  font-size: 20px;
  color: #000;
}
.dx-career-text-small {
  font-family: 'roboto','sans-serif';
  font-size: 15px;
  color: #000;
}
.head-content p{
  color: black;
  font-size: "Roboto";
}

.head-content h1{
  color: #1a1a1a;
}

.bg-green-shade,
.bg-green-shade:hover {
  background-color: #169b62 !important;
}
.section-steps{
  font-family: "Roboto";
}
.student-left-content h1{
  font-size: 42px;
  color: #000;
}
.student-left-content p{
  font-family: "Roboto";
  color:#000;
  font-size: 19px;
  max-width: 95%;
}



.student-right-content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.694)), url("../images/student.png");
  padding: 80px 40px;
  border-radius: 25px;
  background-position: center;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.student-right-content p{
  font-family: "Roboto";
  font-size: 20px;
}
.student-right-content h3 {
  font-family: 'poppins','sans-serif';
  font-weight:700;
  color:#fff;
  font-size:34px;
}
/* Footer Styles */

.footer-section {
  background: rgb(203 164 235 / 15%);
  padding: 60px 0 0;
  color: #4a5568;
}

.footer-brand {
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-icon {
  margin-right: 12px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
}

.footer-description {
  text-align: justify;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #8b5cf6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #718096;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8b5cf6;
}

.contact-info {
  font-size: 0.95rem;
}

.contact-item {
  margin-bottom: 15px;
  color: #718096;
}

.contact-item strong {
  color: #4a5568;
}

/* Quote Section Styles */
.quote-section {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #8b5cf6;
}

.quote-mark {
  font-size: 3rem;
  color: #8b5cf6;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.quote-content {
  font-size: 1.1rem;
  line-height: 1.4;
}

.quote-text-1 {
  color: #4a5568;
  font-weight: 500;
}

.quote-text-2 {
  color: #8b5cf6;
  font-weight: 700;
  font-style: italic;
}

.quote-text-3 {
  color: #8b5cf6;
  font-weight: 700;
}

.quote-attribution {
  color: #718096;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 5px;
}

.success-description {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 25px;
}

.btn-journey {
  /* background: #8b5cf6; */
  color: #000000;
  border: 2px solid black;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-journey:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  background: #e2e8f0;
  padding: 20px 0;
  margin-top: 50px;
}

.footer-copyright {
  color: #718096;
  font-size: 0.9rem;
  padding-bottom: 18px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-bottom: 30px;
  }

  .btn-consultation {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .footer-section {
    padding: 40px 14px 0;
  }
}

@media (max-width: 767.98px) {
  .hero-banner {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-consultation {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .quote-section {
    padding: 20px;
  }

  .quote-mark {
    font-size: 2.5rem;
  }

  .quote-content {
    font-size: 1rem;
  }

}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .btn-consultation-2 {
    max-width: 100%;
  }

  .quote-section {
    padding: 15px;
  }

  .btn-consultation {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .btn-journey {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Hover effects for better interactivity */
.footer-links a,
.contact-item {
  transition: all 0.3s ease;
}

.footer-links a:hover {
  padding-left: 5px;
}

@media screen and (max-width:992px) {

  .image-container {
    margin: 50px auto 0px !important;
   
  }

  .image-container img {
    width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  }
}

.h1style {
      font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 130px;
    margin-bottom: -36px;
    color: #f7f7f7;
}

.dx-guidance h2 {
  font-family: 'poppins','sans-serif';
  font-size: 43px;
  font-weight: 700;
  font-style: normal;
  color: #000;
}

.dx-guidance p {
  font-family: 'roboto','sans-serif';
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  max-width: 84%;
  color: #000000;
}
.dx-guidance2 p {
  font-family: 'poppins','sans-serif';
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  max-width: 95%;
  color: #7e7e7e;
}

.dx-tab-box {
  background-color: #f5f5f5;
 
}