/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1b1e65; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1b1e65; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000; /* The default color of the main navmenu links */
  --nav-hover-color: #d7e8f8; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #d7e8f8; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/* ====================style button================= */

.styled-button {
  position: relative;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background: 000;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  border: none;
}

.styled-button::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: -1;
  border-radius: 9999px;
  transition: all 0.2s ease;
  opacity: 1;
}

.styled-button:active {
  transform: translateY(2px);
}

.styled-button .inner-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0ecff;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  border-radius: 50%;
  border: none;
  transition: all 0.2s ease;
}

.styled-button .inner-button::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background: none;
  z-index: -1;
  border-radius: 9999px;
  transition: all 0.2s ease;
  opacity: 1;
}

.styled-button .inner-button .icon {
  transform: rotate(-35deg); /* start slightly pointing to top-right */
  transition: all 0.4s ease-in-out;
}
.styled-button .inner-button .icon path {
  fill: black !important;
}

/* Apply hover effect on the button */
.styled-button:hover .inner-button .icon {
  transform: rotate(0deg);
}
/* =================sm styled button=================== */
@media (max-width: 650px) {
  .sm-styled-button {
    position: relative;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: 000;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    border: none;
  }

  .sm-styled-button::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    z-index: -1;
    border-radius: 9999px;
    transition: all 0.2s ease;
    opacity: 1;
  }

  .sm-styled-button:active {
    transform: translateY(2px);
  }

  .sm-styled-button .inner-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0ecff;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border-radius: 50%;
    border: none;
    transition: all 0.2s ease;
  }

  .sm-styled-button .inner-button::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: none;
    z-index: -1;
    border-radius: 9999px;
    transition: all 0.2s ease;
    opacity: 1;
  }

  .sm-styled-button .inner-button .icon {
    transform: rotate(-35deg); /* start slightly pointing to top-right */
    transition: all 0.4s ease-in-out;
  }

  .sm-styled-button .inner-button .icon path {
    fill: black !important;
  }

  /* Apply hover effect on the button */
  .sm-styled-button:hover .inner-button .icon {
    transform: rotate(0deg);
  }

  .sm-box {
    display: none !important;
  }
}
/* See More Button */
.see-more {
  margin-top: 50px;
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.see-more:hover {
  background: #000;
  color: #fff;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0 0px;
  transition: all 0.5s;
  z-index: 997;
}
@media (min-width:1400px) {
  .header{padding: 35px 0 0;}
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white; /* Ensure background is visible when shown */
  transition: transform 0.3s ease-in-out; /* Smooth transition effect */
  z-index: 1000;
}

.header-hidden {
  transform: translateY(-100%); /* Moves the header completely out of view */
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--nav-hover-color);
  font-size: 16px;
  padding: 15px 30px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  background-color: var(--accent-color);
  text-align: center;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover,
.btn-main:hover,
.btn-main:focus:hover {
  color: var(--nav-color) !important;
  background: var(--nav-hover-color) !important;
}

@media (max-width: 991px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
  .header {
    padding: 25px 0;
  }
}

.scrolled .header {
  box-shadow: none;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
.course-column a {
  font-weight: 600 !important;
}
@media (min-width: 992px) {
  .navmenu {
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0px 2px 8px 0px rgba(60, 64, 67, 0.25);
    background: #fff;
  }
  .header {
    background: rgba(255, 255, 255, 0.9) !important; /* 20% opacity */
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  .course-column a {
    font-size: 18px !important;
  }
  
}

/* Navmenu - Mobile */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown a:hover,
  .navmenu .dropdown .active,
  .navmenu .dropdown .active:focus {
    background-color: transparent;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: #fff;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/* ==================main dropdown=================== */
.header .nav-dropdown .full-drop {
  padding: 20px;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.header .nav-dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  background: white;
  border-radius: 5px;
  z-index: 100;
}

.header .nav-dropdown:hover .dropdown-content {
  display: block;
}

.header .nav-dropdown .dropdown-columns {
  display: flex;
  justify-content: center;
}

.header .nav-dropdown .column {
  width: 33%;
}

.header .nav-dropdown .column h4 {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}

.header .nav-dropdown .column a {
  display: block;
  text-decoration: none;
  color: #2a2a2a;
  padding: 5px 0;
  font-size: 14px;
}

.header .nav-dropdown .column a:hover {
  color: #77a3fc;
}
@media (min-width: 992px) {
  .header .nav-dropdown .dropdown-content {
    left: -590%;
    width: 2000px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9) !important;
  }
  .header .nav-dropdown .dropdown-columns {
    display: flex;
    justify-content: center;
    width: 800px;
    margin: auto;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.contact-section {
  background-color: #0a1c58;
  color: white;
  padding: 60px 0 0;
}

.contact-container {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-left {
  display: flex;
  gap: 30px;
  flex-direction: column;
  color: #0a1c58;
  width: 45%;
}

.contact-left img {
  width: 100%;
  border-radius: 20px;
  height: 60%;
  object-fit: cover;
}
.contact-info {
  background: white;
  padding: 25px;
  border-radius: 20px;
}
.contact-info h2 {
  font-size: 1.8rem;
  background: #f0f0f0;
  padding: 12px;
  border-radius: 20px;
}

.contact-info p {
  font-size: 1rem;
  margin: 10px 0;
  background: #f0f0f0;
  padding: 12px;
  border-radius: 20px;
}
.contact-info p i {
  margin-right: 10px;
}
.contact-form-container {
  background: white;
  padding: 25px;
  border-radius: 20px;
  width: 45%;
}

.contact-form-container h3 {
  font-size: 16px;
  color: #666;
}

.contact-form-container h2 {
  font-size: 2.2rem;
  color: #0a1c58;
}

.contact-form p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.group-input {
  flex-wrap: nowrap;
  display: flex;
  gap: 10px;
}

.group-input input {
  width: 50%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #f0f0f0;
  background: #f0f0f0;
  border-radius: 50px;
  font-size: 14px;
}
.contact-form label {
  color: #000;
  font-size: 0.8rem;
  margin: 0 0 5px 5px;
}
.contact-form textarea {
  border-radius: 25px;
  height: 100px;
  resize: none;
}

.contact-form button {
  background-color: #f0f0f0;
  color: #000;
  border: none;
  padding: 10px 25px;
  margin: 20px auto 0;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #1b1e65;
  color: #fff;
}
.contact-footer {
  padding: 40px 20px;
  text-align: center;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  margin: 0 auto;
}

.footer-brand {
  width: 50%;
  text-align: left;
  margin-bottom: 20px;
}

.footer-brand h2 {
  font-size: 24px;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-brand .styled-button {
  background: white;
  color: #0a1c58;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.footer-links {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  text-align: left;
  width: auto;
}

.footer-column h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  font-size: 14px !important;
  font-weight: 400px;
  color: #ddd;
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

@media (max-width: 991px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-left,
  .contact-form-container {
    width: 80%;
  }
}
@media (max-width: 1100px) {
  .footer-links {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 20px;
  }
  .contact-left,
  .contact-form-container {
    width: 100%;
  }
  .footer-brand {
    width: 100%;
    padding: 20px;
  }
  .footer-content {
    flex-direction: column;
  }
  .footer-links {
    width: 100%;
    padding: 20px;
  }
}

footer .social-icons {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .social-link i {
  font-size: 15px;
}

footer .social-link.instagram i {
  color: #e1306c; /* Instagram pink/purple */
}

footer .social-link.facebook i {
  color: #1877f2; /* Facebook blue */
}

footer .social-link.linkedin i {
  color: #0a66c2; /* LinkedIn blue */
}

footer .social-link.whatsapp i {
  color: #25d366; /* WhatsApp green */
}

footer .social-link.youtube i {
  color: #ff0000; /* YouTube red */
}

footer .social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 90vw;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about h1 {
  font-size: 6rem;
  font-weight: 800;
}

/*--------------------------------------------------------------
# About2 Section
--------------------------------------------------------------*/

.card-slider {
  width: 100%;
}
.slick-list {
  margin: 0 -5px; /* Negative margin to balance 10px gap */
}
.slick-slide {
  padding: 0 5px; /* 10px gap in total (5px each side) */
}
.about2 .row {
  align-items: center;
}
.about2 .title {
  width: 100%;
  margin: auto;
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: #10155d;
}
.about2 .card {
  min-height: 320px;
  max-height: 340px;
  border: none;
  border-radius: 30px;
  position: relative;
}
.about2 .content {
  padding: 20px 35px;
}
.about2 .card.blue {
  background: #e0ecff;
}
.about2 .card.gray {
  background: #d3d3d3;
}
.about2 .card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about2 .card p {
  text-align: justify;
  font-size: 14px;
  line-height: 1.5;
}
.about2 .bottom-bar {
  position: absolute;
  bottom: 20px;
  width: 65%;
  height: 40px;
  background: #fff;
  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 15px;
}
.about2 .circle {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 65px;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.about2 .shape {
  width: 75px;
  height: 70px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top-left-radius: 50%;
}
.about2 .shape2 {
  position: relative;
}
.about2 .shape::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -35px;
  width: 35px;
  height: 35px;
  background: #e0ecff;
  border-bottom-right-radius: 30px;
  box-shadow: 10px 10px #fff;
}
.about2 .shape::after {
  content: "";
  position: absolute;
  top: -35px;
  right: 0px;
  width: 35px;
  height: 35px;
  background: #e0ecff;
  border-bottom-right-radius: 30px;
  box-shadow: 10px 10px #fff;
}
.about2 .card.gray .shape::after,
.about2 .card.gray .shape::before {
  background: #d3d3d3;
}
.about2 h6 {
  width: 66%;
  margin-left: auto;
  margin-top: 20px;
  text-align: justify;
  font-weight: 300;
  font-size: 1rem;
  color: #000;
  line-height: 25px;
}
/* ✅ Custom Styling for Next & Previous Buttons */
.slick-prev-custom,
.slick-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* ✅ Positioning */
.slick-prev-custom {
  left: -10px; /* Adjust for position */
}

.slick-next-custom {
  right: -10px; /* Adjust for position */
}
.slick-dots {
  bottom: -40px !important;
}
.slick-dots li button {
  width: 14px !important;
  height: 14px !important;
  background: #ccc !important;
  border-radius: 50px;
}
/* ✅ Custom Pagination Dots */
.slick-dots li button:before {
  border-radius: 50px;
  opacity: 1;
  background: #e0ecff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: transparent !important;
  width: 14px !important;
  height: 14px !important;
}

/* ✅ Active Pagination Dot */
.slick-dots li.slick-active button:before {
  background: #e0ecff; /* Change active dot color */
  color: #e0ecff !important;
}
@media (max-width: 500px) {
  .about2 .bottom-bar {
width: 60%;
  }
  .about2 .title {
    text-align: center;
  }
  .about2 .card {
    min-height: auto;
  }
  .about2 .card h2 {
    font-size: 28px;
    font-weight: 600;
  }
  .about2 .card p {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .about2 .card h2 {
    font-size: 22px;
  }
  .about2 .card p {
    font-size: 13px;
  }
}
/* When screen is smaller, show 1 card */
@media (max-width: 767px) {
  .about2 {
    display: block;
  }
  .about2 .slide {
    min-width: 100%;
  }
  .about2 h6 {
    width: 100%;
  }
  .about2 .title {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .about2 .card {
    min-height: 340px;
    max-height: 340px;
    border: none;
    border-radius: 20px;
    position: relative;
  }
}
@media (min-width: 600px) and (max-width: 800px) {
.about2 .card h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.about2 .card p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.5;
}
}
@media (min-width: 768px) and (max-width: 991px) {
  .about2 .row{flex-direction: column;}
  .about2 .col-md-8{width: 100%;}
  .about2 h6 {
margin-left: 0;
  }
  .about2 .card {
    height: 300px;
  }
  .about2 .title {
    font-size: 2rem;
  }
  .about2 .card h2 {
    font-size: 18px;
  }
  .about2 .card p {
    font-size: 12px;
  }
  .about2 .bottom-bar {
    width: 65%;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .about2 .card p {
    font-size: 12px;
  }
  .about2 .card h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
}
/*--------------------------------------------------------------
# Training Section
--------------------------------------------------------------*/

.training-section {
  height: 80vh;
  padding: 0px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1250px;margin: auto;
}

.training-section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Section */
.training-section .left-section {
  width: 30%;
}

.training-section .left-section h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #10155d;
  margin-bottom: 10px;
}

.training-section .left-section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

/* Tab Buttons */
.training-section .tab-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.training-section .tab-button {
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  background: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  width: 230px;
}

.training-section .tab-button.active {
  background: #dce8ff;
  color: #000;
  font-weight: 600;
}

/* Right Section */
.training-section .right-section {
  width: 60%;
  position: relative;
}

/* Hide all tab content except the active one */
.training-section .tab-content {
  display: none;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.training-section .tab-content.active {
  display: flex;
}

/* Image */
.training-section .image-container img {
  width: 315px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 0 50px 50px;
}

/* Card */
.training-section .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  width: 315px;
  background: white;
  border-radius: 50px 0 50px 50px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  border: none;
  z-index: 1;
}

/* Card Header */
.training-section .card-header {
  display: flex;
  border-bottom: none;
  background: none;
  align-items: center;
  gap: 10px;
}

.training-section .students {
  display: flex;
  align-items: center;
  gap: 5px;
}

.training-section .students img {
  width: 50px;
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
}

.circle-gray,
.circle-green,
.circle-blue {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  position: relative;
}

.circle-gray img,
.circle-green img,
.circle-blue img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.circle-gray .overlay,
.circle-green .overlay,
.circle-blue .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}

.training-section .card-content img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.training-section .card-content h3 {
  font-size: 1.2rem;
  color: #000;
  text-align: center;
  font-weight: bold;
  margin: 10px 0;
}

.training-section .card-content p {
  text-align: center;
  font-size: 0.9rem;
  color: #000;
  margin-bottom: 15px;
}

/* =====accouting======= */
.training-section .course-list {
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  transition: all 0.5s ease-in-out; /* Smooth transition for reordering */
}

.training-section .course-item {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 20px 0 20px 20px;
  padding: 8px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  width: 350px;
  gap: 15px;
  cursor: pointer;
  margin: auto;
  transition: transform 0.5s ease-in-out, background-color 0.3s ease; /* Animation for movement and active state */
}

.training-section .course-item.active {
  transform: translateY(0); /* Ensure it stays at top */
  order: -1; /* Moves to top in flex container */
  font-weight: 600;
}

/* Ensure smooth reordering */
.training-section .course-item:not(.active) {
  transform: translateY(0); /* Reset transform for non-active items */
}
.training-section .right-section .course-list .icon {
  width: 60px;
  height: 60px;
  background: #dce8ff;
  border-radius: 10px;
}
.training-section .styled-button {
  width: 120px;
  margin-left: auto;
  justify-content: space-between;
}
.faq-section .styled-button .inner-button {
  background: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
  .training-section .content {
    flex-direction: column;
    text-align: center;
  }

  .training-section .tab-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
#accoutnting {
  display: flex;
}

@media (max-width: 991px) {
  .training-section .left-section,
  .training-section .right-section {
    width: 100%;
  }
  .training-section .left-section h2 {
    font-size: 2rem;
  }
  .training-section {
    height: 70vh;
    padding: 0;
  }
  .training-section .right-section .course-list {
    text-align: left;
  }
  .faq-section .styled-button {
    width: 80% !important;
  }
  .training-section .tab-content {
    justify-content: center;
  }
  .training-section .content {
    gap: 20px;
  }
}
@media (max-width: 320px) {
  .training-section {
    height: 95vh;
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .training-section .left-section h2 {
    font-size: 2rem;
  }
  .training-section .right-section {
    width: 70%;
  }
}
@media (max-width: 650px) {
  .training-section .tab-button {
    height: 65px;
  }
  .training-section .tab-content.active {
    display: flex;
    flex-direction: column;
  }
  .training-section .right-section .course-list .icon {
    width: 60px;
    height: 50px;
  }
  .faq-section .faq {
    flex-direction: column;
    width: 100%;
  }
  .faq-section .styled-button {
    width: 70%;
  }
  .faq-section .faq .left,
  .faq-section .faq .right {
    width: 100% !important;
    margin-bottom: 30px;
  }
  .training-section .right-section .course-list .course-item {
    width: 300px;
  }
}
@media (max-width: 500px) {
  .training-section .tab-button {
    font-size: 12px;
  }
  .training-section .left-section h2 {
    font-size: 1.5rem;
  }
  .training-section .left-section p {
    font-size: 0.9rem;
  }
  .training-section .right-section .course-list .course-item {
    width: 300px;
  }
}

/* circles */
.circle-blue,
.circle-gray,
.circle-green {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/*--------------------------------------------------------------
# trining FAQ
--------------------------------------------------------------*/

/* FAQ Section */
@media (min-width: 1100px) {
  .faq-content {
    height: 480px;
  }
}
.faq-content {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
  display: none;
  background: #cdcdcd;
  padding: 40px 20px;
  border-radius: 50px 50px 0 0;
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.faq-content.active {
  display: block;
}

.faq-section {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .faq-section .content {
    flex-direction: column;
  }
}

.faq-section .faq {
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  max-width: 1200px;
  height: 100%;
  margin: auto;
}
.faq-section .faq .left,
.faq-section .faq .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 48%;
}
.faq-section .faq .left h2 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
}
.faq-section .faq .details {
  margin-top: 20px;
}
.faq-section .faq p,
.faq-section .faq li {
  color: #000;
}
.faq-section .faq .details p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin: 5px 0;
  color: #000;
  padding-left: 20px;
}
.faq-section .faq .accordion-content h4 {
  color: #000;
  font-weight: 600;
}
.faq-section .faq .accordion-content p {
  padding-left: 10px;
  font-weight: 300;
  line-height: 20px;
}
.faq-section .styled-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #1b1e65;
  color: white;
  font-size: 18px;
  text-decoration: none;
  border-radius: 50px;
  width: 50%;
  margin-top: 20px;
  cursor: pointer;
  position: relative;
}
.faq-section .faq .accordion {
  cursor: pointer;
  font-size: 1.9rem;
  font-weight: 400;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  position: relative;
}

.faq-section .faq .accordion::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2%;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.faq-section .faq .accordion span {
  font-size: 2rem;
}
.faq-section .faq .accordion-content {
  display: block;
  font-size: 16px;
  margin-top: 5px;
  margin-left: 18px;
}
.faq-section .faq .active + .accordion-content {
  display: block;
}
@media (max-width: 650px) {
  .faq-section .faq {
    flex-direction: column;
    width: 100%;
  }
  .faq-section .styled-button {
    width: 75%;
  }
  .faq-section .faq .left,
  .faq-section .faq .right {
    width: 100%;
  }
  .training-section .card {
    height: 300px;
    width: 285px;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Achievements
--------------------------------------------------------------*/

.achieve-container {
  text-align: center;
  width: 100%;
  padding: 100px 0;
  position: relative;
}
.swiper-wrapper {
  padding-top: 50px;
}
.achieve-container h2 {
  margin-bottom: 5%;
  font-weight: 600;
  font-size: 2.2rem;
}
.swiper-wrapper,
.swiper-slide {
  /* Fixed missing comma */
  width: 300px;
  padding: 0;
}
.achieve-container .swiper-slide img {
  height: 400px;
  object-fit: cover;
  display: block;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.achieve-container .nav-buttons {
  position: absolute;
  top: 20%;
  right: 10px;
  display: flex;
  gap: 10px;
}

.achieve-container .swiper-button-next,
.achieve-container .swiper-button-prev {
  position: static;
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 50%;
  color: #000;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.achieve-container .swiper-button-next::after,
.achieve-container .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .achieve-container {
    padding: 50px 0;
  }

  .achieve-container h2 {
    font-size: 1.8rem;
    margin-bottom: 3%;
  }

  .swiper-wrapper,
  .swiper-slide {
    width: 100%; /* Full width for single slide */
    padding: 0;
  }

  .achieve-container .swiper-slide img {
    height: auto;
    max-height: 300px; /* Adjust height for small screens */
    width: 90%;
    margin: 0 auto;
  }

  .achieve-container .nav-buttons {
    top: auto;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    gap: 5px;
  }

  .achieve-container .swiper-button-next,
  .achieve-container .swiper-button-prev {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

.slide-caption {
  text-align: center;
  margin: 20px 20px 0;
  font-size: 1.1rem;
  color: #333;
}

/*--------------------------------------------------------------
# placement result hiring
--------------------------------------------------------------*/

/* Tab container styles */
.prh-tab .nav-tabs {
  border-bottom: none;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Tab button styles */
.prh-tab .nav-tabs .nav-item .nav-link {
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
}

/* Active tab styles */
.prh-tab .nav-tabs .nav-item .nav-link.active {
  background: #dde9ff;
  color: #000;
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.prh-tab .nav-tabs .nav-item .nav-link:hover {
  background: #e0e7ff;
  color: #000;
}

.prh-tab .nav-tabs .nav-box {
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  background: #fff;
  padding: 5px;
  border-radius: 50px;
}
@media (max-width: 400px) {
  .prh-tab .nav-tabs .nav-box {
    box-shadow: none;
  }
}

/* ====================placement tabs================== */
.placements-tabs {
  margin: 80px auto 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.flip-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 20px 0;
  max-width: 100%;
}

.flip-container .row {
  display: flex;
  gap: 20px; /* Changed to 20px */
  width: 100%;
  flex-wrap: nowrap;
}

.placements-tabs .profile-card {
  height: 120px;
  border-radius: 20px;
  background: white;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.placements-tabs .profile-card.flipped {
  transform-origin: center;
}

/* Big Cards */
.placements-tabs .profile-card.big {
  width: 22%; /* Adjusted to percentage */
}

/* Small Cards */
.placements-tabs .profile-card.small {
  width: 160px; /* Adjusted to percentage */
  height: 120px;
}

.placements-tabs .card-front,
.placements-tabs .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
}

/* Big Card Layout */
.placements-tabs .big .card-front,
.placements-tabs .big .card-back {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 10px;
}

/* Small Card Layout */
.placements-tabs .small .card-front,
.placements-tabs .small .card-back {
  display: flex;
  align-items: center;
  justify-content: center;
}

.placements-tabs .card-back {
  transform-origin: center;
}

/* Flip Horizontal */
.placements-tabs .flip-horizontal.flipped {
  transform: rotateY(180deg);
}
.placements-tabs .flip-horizontal .card-back {
  transform: rotateY(180deg);
}

/* Flip Vertical */
.placements-tabs .flip-vertical.flipped {
  transform: rotateX(180deg);
}
.placements-tabs .flip-vertical .card-back {
  transform: rotateX(180deg);
}

/* Flip Skewed */
.placements-tabs .flip-skewed.flipped {
  transform: rotateY(180deg) skewX(0deg);
}
.placements-tabs .flip-skewed .card-back {
  transform: rotateY(180deg) skewX(0deg);
}

/* Flip Mirror */
.placements-tabs .flip-mirror.flipped {
  transform: scale(-1, 1) rotateY(180deg);
}
.placements-tabs .flip-mirror .card-back {
  transform: scale(-1, 1) rotateY(180deg);
}

/* Flip Shrink */
.placements-tabs .flip-shrink.flipped {
  transform: rotateY(180deg) scale(1);
}
.placements-tabs .flip-shrink .card-back {
  transform: rotateY(180deg) scale(1);
}

/* Flip and Tilt */
.placements-tabs .flip-and-tilt.flipped {
  transform: rotateY(180deg) translateY(0px);
}
.placements-tabs .flip-and-tilt .card-back {
  transform: rotateY(180deg) translateY(0px);
}

/* Flip Diagonal Up */
.placements-tabs .flip-diagonal-up.flipped {
  transform: rotateY(180deg) scale(1);
}
.placements-tabs .flip-diagonal-up .card-back {
  transform: rotateY(180deg) scale(1);
}

/* Flip Rotate Scale */
.placements-tabs .flip-rotate-scale.flipped {
  transform: rotateY(180deg) scale(1);
}
.placements-tabs .flip-rotate-scale .card-back {
  transform: rotateY(180deg) scale(1);
}

/* Flip Twist */
.placements-tabs .flip-twist.flipped {
  transform: rotateY(180deg) rotateZ(10deg);
}
.placements-tabs .flip-twist .card-back {
  transform: rotateY(180deg) rotateZ(10deg);
}

/* Flip Slide Up */
.placements-tabs .flip-slide-up.flipped {
  transform: rotateX(180deg) translateY(-10px);
}
.placements-tabs .flip-slide-up .card-back {
  transform: rotateX(180deg) translateY(-10px);
}

/* Flip Fall Down */
.placements-tabs .flip-fall-up.flipped {
  transform: rotateX(180deg) translateY(10px);
}
.placements-tabs .flip-fall-up .card-back {
  transform: rotateX(180deg) translateY(10px);
}

/* Flip Flip Top */
.placements-tabs .flip-flip-top.flipped {
  transform: rotateX(180deg);
  transform-origin: top center;
}
.placements-tabs .flip-flip-top .card-back {
  transform: rotateX(180deg);
  transform-origin: top center;
}

/* Flip Fold In */
.placements-tabs .flip-fold-in.flipped {
  transform: perspective(600px) rotateY(180deg) scaleX(0.9);
}
.placements-tabs .flip-fold-in .card-back {
  transform: rotateY(180deg) scaleX(0.9);
}

/* Flip Tornado */
.placements-tabs .flip-tornado.flipped {
  transform: rotateY(540deg) scale(1);
}
.placements-tabs .flip-tornado .card-back {
  transform: rotateY(540deg);
}

/* Flip Hinge */
.placements-tabs .flip-hinge.flipped {
  transform: rotateX(180deg);
  transform-origin: top left;
}
.placements-tabs .flip-hinge .card-back {
  transform: rotateX(180deg);
  transform-origin: top left;
}

.placements-tabs .profile-card.big img {
  width: 50%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  object-fit: cover;
}

.placements-tabs .profile-card.small img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.profile-card.multi-flip {
  width: 300px;
  height: 120px;
  position: relative;
  perspective: 1000px;
  overflow: hidden;
  border-radius: 20px;
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 10px;
  opacity: 0;
  transform: rotateY(0deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card-face.active {
  opacity: 1;
  z-index: 1;
}

.pink {
  background: #f7bbe1 !important;
}
.green {
  background: #b0f2cc !important;
}
.kavi {
  background: #f0d9b9 !important;
}

.placements-tabs .company-card {
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
}

.placements-tabs .company-card h3 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.placements-tabs .company-card img {
  border-radius: 20px;
  width: 70% !important;
  height: 50% !important;
  object-fit: cover;
}

/* Overlapping Text Elements (Unchanged) */
.placements-tabs .overlap-text {
  height: 122px;
  text-align: center;
  z-index: 1;
  font-family: Arial, sans-serif;
}
.second-texts {
  top: 51.5%;
  left: 47%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 1;
}
.placements-tabs .placements-text {
  width: 280px;
  position: absolute;
  top: 26.5%;
  left: 34%;
  font-size: 2.5rem;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #000;
}
.placements-tabs .placements-text h1 {
  position: relative;
  color: #000;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0;
}
.placements-tabs .placements-text span {
  position: absolute;
  color: #000;
  font-size: 2rem;
  font-weight: 400;
}
.placements-tabs .placements-text h6 {
  position: relative;
  color: #000;
  font-size: 2rem;
}
.placements-tabs .days-text {
  width: 280px;
  font-size: 3rem;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px 30px;
  border-radius: 10px;
  border: 2px solid #000;
}
.placements-tabs .days-text h1 {
  color: #000;
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 0;
}
.placements-tabs .days-text h6 {
  color: #000;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 5px;
}
.placements-tabs .info-text {
  max-width: 300px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #000;
}
.std-plus {
  position: absolute;
  z-index: 1;
  top: 37%;
  left: 43.5%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 0px;
  margin: 0;
}
.std-days {
  position: absolute;
  z-index: 1;
  top: 59%;
  left: 62.5%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 400;
  color: #000;
  margin: 0;
}

/* Responsive Adjustments */
@media (min-width: 700px) and (max-width: 800px) {
  .std-plus {
    left: 38%;
  }
}
@media (min-width: 801px) and (max-width: 991px) {
  .std-plus {
    left: 39%;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .std-plus {
    left: 42%;
  }
}
@media (min-width: 1101px) and (max-width: 1300px) {
  .std-plus {
    left: 42%;
  }
}

@media (min-width: 700px) and (max-width: 767px) {
  .std-days {
    left: 70%;
  }
}
@media (min-width: 768px) and (max-width: 820px) {
  .std-days {
    left: 68%;
  }
}
@media (min-width: 821px) and (max-width: 880px) {
  .std-days {
    left: 67%;
  }
}
@media (min-width: 881px) and (max-width: 930px) {
  .std-days {
    left: 66%;
  }
}
@media (min-width: 931px) and (max-width: 991px) {
  .std-days {
    left: 65%;
  }
}
@media (min-width: 992px) and (max-width: 1050px) {
  .std-days {
    left: 64%;
  }
}
@media (min-width: 1051px) and (max-width: 1100px) {
  .std-days {
    left: 64%;
  }
}
@media (min-width: 1101px) and (max-width: 1180px) {
  .std-days {
    left: 63%;
  }
}
@media (min-width: 1181px) and (max-width: 1300px) {
  .std-days {
    left: 62%;
  }
}
@media (min-width: 1301px) and (max-width: 1399px) {
  .std-days {
    left: 61%;
  }
}
@media (min-width: 1400px) and (max-width: 1450px) {
  .std-days {
    left: 63%;
  }
}
@media (min-width: 1451px) and (max-width: 1550px) {
  .std-days {
    left: 62%;
  }
}
@media (min-width: 1551px) and (max-width: 1620px) {
  .std-days {
    left: 61%;
  }
}
@media (min-width: 1621px) and (max-width: 1700px) {
  .std-days {
    left: 61%;
  }
}
@media (min-width: 1701px) {
  .std-days {
    left: 60.5%;
  }
}
@media (min-width: 1801px) {
  .std-days {
    left: 59.8%;
  }
}
@media (min-width: 1901px) {
  .std-days {
    left: 59%;
  }
}
@media (min-width: 2101px) {
  .std-days {
    left: 58%;
  }
}

@media (min-width: 700px) {
  .std-days,
  .std-plus {
    display: block !important;
  }
}
@media (min-width: 700px) {
  .ms-boxss {
    display: none !important;
  }
  .resize-img {
    position: absolute;
    display: block !important;
    top: 50%;
    left: 50.5%;
    transform: translate(-50%, -50%);
    z-index: 1;
    height: 265px;
  }
}
@media (max-width: 991px) {
  .placements-tabs .info-text {
    width: 280px;
  }
  .placements-tabs .days-text {
    width: 190px;
  }
  .placements-tabs .profile-card.big {
    width: 45%;
  }
  .placements-tabs .profile-card.small {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .placements-tabs .profile-card.small {
    display: none;
  }
  .placements-tabs .company-card h3{font-size: .8rem;}
  .placements-tabs .company-card{margin: 10px;}
  .placements-tabs .placements-text {
    width: 220px;
    position: absolute;
    top: 26.5%;
    left: 20%;
  }
  .placements-tabs .placements-text h1 {
    font-size: 4rem;
  }
  .placements-tabs .placements-text h6 {
    font-size: 1.7rem;
  }
  .placements-tabs .info-text {
    width: 200px;
  }
  .placements-tabs .days-text h1 {
    font-size: 2.6rem;
  }
  .placements-tabs .days-text h6 {
    font-size: 2rem;
  }
  .placements-tabs .days-text {
    width: 140px;
  }
  .placements-tabs .info-text p,
  .placements-tabs .info-text h6 {
    font-size: 12px !important;
    margin-bottom: 5px;
  }
  .placements-tabs .profile-card.small {
    width: 30%;
  }
}

@media (max-width: 450px) {
  .placements-tabs .profile-card.small {
    width: 40%;
  }
  .placements-tabs .company-card h3{font-size: .7rem;}

  .flip-container .row{gap: 10px;}
}
@media (min-width: 450px) and (max-width: 767px) {
  .placements-tabs .placements-text {
    left: 32%;
  }
}
.second-texts {
  left: 50%;
}
.second-textbox {
  gap: 10px !important;
}
.placements-tabs .info-text p {
  text-align: justify;
  font-size: 0.9rem;
}
@media (max-width: 700px) {
  .ms-boxss {
    display: block !important;
  }
  .placements-tabs .placements-text {
    width: 220px;
    position: absolute;
    top: 27.5%;
    left: 20%;
  }
  .placements-tabs .placements-text h1 {
    font-size: 4rem;
  }
  .placements-tabs .placements-text h6 {
    font-size: 1.7rem;
  }
  .placements-tabs .info-text {
    width: 200px;
  }
  .placements-tabs .days-text h1 {
    font-size: 2.6rem;
  }
  .placements-tabs .days-text h6 {
    font-size: 2rem;
  }
  .placements-tabs .days-text {
    width: 140px;
  }
  .placements-tabs .info-text p,
  .placements-tabs .info-text h6 {
    font-size: 12px !important;
    margin-bottom: 5px;
  }
  .placements-tabs .profile-card.big {
    width: 48% !important;
  }

}
@media (min-width: 450px) and (max-width: 700px) {
  .placements-tabs .placements-text {
    left: 32%;
  }
}
.second-texts {
  left: 50%;
}
.second-textbox {
  gap: 10px !important;
}
.placements-tabs .info-text p {
  text-align: justify;
  font-size: 0.9rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .placements-tabs .profile-card.big{width: 220px !important;}
  .placements-tabs .profile-card.small{width: 145px !important;}
  .adjust-card6{display: none;}
  .adjust-card{width: 150px !important;}
  .adjust-card1{margin-left: -40px;}
  .adjust-card7{width: 160px !important;}
}
  
@media (min-width: 1190px) and (max-width: 1280px) {
  .adjust-card {
    width: 16.5% !important;
  }
  .adjust-card4{width: 250px !important;}
  .adjust-card6{width: 27.5% !important;}
  .adjust-card1{width: 165px !important;}
}
@media (min-width: 1281px) and (max-width: 1400px) {
  .adjust-card {
    width: 19% !important;
  }
  .adjust-card4 {
    width: 19.5% !important;
  }
}
@media (min-width: 2900px) and (max-width: 3000px) {
  .adjust-card {
    width: 19% !important;
  }
}
@media (min-width: 1400px) and (max-width: 1680px) {
.adjust-card5{width: 130px !important;}
}
@media (min-width: 1455px) and (max-width: 1680px) {
  .adjust-card {
    width: 21.5% !important;
  }
  .adjust-card1 {
    width: 165px !important;
  }
  .adjust-card4 {
    width: 18% !important;
  }
}
@media (min-width: 1650px) and (max-width: 1700px) {
  .adjust-card {
    width: 22.5% !important;
  }
}
@media (min-width: 1701px) and (max-width: 1740px) {
  .adjust-card {
    width: 21.5% !important;
  }
}
@media (min-width: 1701px) and (max-width: 1840px) {
  .adjust-card1{width: 185px !important;}
  .adjust-card4 {
    visibility: hidden !important;width: 20%;
  }
.adjust-card2{visibility: hidden;}
.adjust-card8{width: 270px !important;}
}
@media (min-width: 1741px) and (max-width: 1840px) {
  .adjust-card {
    width: 23% !important;
  }

}
@media (min-width: 1401px) and (max-width: 1700px) {
  .adjust-card {
    width: 19% !important;
  }
  .adjust-card4 {
    width: 310px !important;
  }
.adjust-card6{width: 16% !important;}
.adjust-card7{width: 275px !important;}

}
@media (min-width: 1430px) and (max-width: 1540px) {
  .adjust-card {
    width: 20% !important;
  }
  .adjust-card1 {
    width: 125px !important;
  }
  .adjust-card7 {
    width: 290px !important;
}
}
@media (min-width: 1501px) and (max-width: 1840px) {
  .adjust-card5 {
    width: 178px !important;
  }
  .adjust-card2{width: 170px !important;}
  
}
@media (min-width: 1841px) and (max-width: 2000px) {
  .adjust-card5{width: 235px !important;}
  .adjust-card4{width: 322px !important;}
}
@media (min-width: 1900px) and (max-width: 2000px) {
  .adjust-card6{width: 16% !important;}
}
@media (min-width: 1400px)  {

.placements-tabs .profile-card {
  height: 150px !important;
}
.resize-img{height: 325px;}
.std-plus{left: 42%;font-size: 6.3rem;}
.std-days{font-size: 6rem;}

}
@media (min-width: 1400px) and (max-width: 1500px) {
  .std-plus {
    left: 42%;
  }
}
@media (min-width: 1501px) and (max-width: 1600px) {
  .std-plus {
    left: 43%;
  }
}
@media (min-width: 1601px) and (max-width: 1700px) {
  .std-plus {
    left: 43%;
  }
}
@media (min-width: 1701px) and (max-width: 1800px) {
  .std-plus {
    left: 43.5%;
  }
}

@media (min-width: 1801px) {
  .std-plus {
    left: 44%;
  }
}
@media (min-width: 2000px) {
  .std-plus {
    left: 44.5%;
  }
}
@media (min-width: 2500px) {
  .std-plus {
    left: 45.5%;
  }
}

/* ========================result tabs===================== */
/* Results Section */
.results-section {
  text-align: center;
  color: var(--accent-color);
  padding: 40px 20px;
}

.results-section h2 {
  font-size: 24px;
  font-weight: bold;
}

.results-section .subtext {
  width: 45%;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* Results Grid */
.results-section .results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin: 0 auto;
}

/* Result Card */
.results-section .result-card {
  background: #f8f8f8;
  border-radius: 50px 0 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

.results-section .result-card:hover {
  transform: scale(1.05);
}

/* Student Image */
.results-section .student-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 50px 0 0 0;
}

/* Score Badge */
.results-section .score-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #1f2b6c;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px 10px;
  border-radius: 50% 0 50% 50%;
  text-align: center;
  border: 5px solid #fff;
}
.results-section .score-badge span {
  font-weight: 300;
}
/* Student Info */
.results-section .student-info {
  height: 180px;
  text-align: left;
  padding: 15px;
  background: #e6f0ff;
  border-radius: 0 0 50px 0;
  color: #000;
}

.results-section .student-info h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 5px 0;
  color: #000;
}

.results-section .designation {
  font-size: 1rem;
  font-weight: 400;
}

/* Tags */
.results-section .tags {
  display: flex;
  justify-content: left;
  gap: 10px;
  margin-top: 8px;
}

.results-section .tags span {
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .results-section .results-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
  .results-section .subtext {
    width: 90%;
    margin: 0 auto 40px;
  }
  .results-section .student-info h3 {
    font-size: 1.1rem;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .results-section .results-grid {
    grid-template-columns: repeat(1, minmax(150px, 1fr));
  }
}
/* =======================================hiring tabs=================================== */
/* Hiring Partners Section */
.hiring-partners {
  text-align: center;
  padding: 40px 20px;
  color: var(--accent-color);
}

.hiring-partners h2 {
  font-size: 24px;
  font-weight: bold;
}

.hiring-partners .subtext {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Partner Logo Container */
.hiring-partners .partner-container {
  padding: 30px;
  border-radius: 50px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Grid Layout for Logos */
.hiring-partners .partner-logos {
  padding: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 50px 25px;
  align-items: center;
  justify-content: center;
}

.hiring-partners .partner-logos img {
  max-width: 100px;
  height: auto;
  transition: transform 0.2s ease-in-out;
  margin: auto;
}

.hiring-partners .partner-logos img:hover {
  transform: scale(1.1);
}

/* See More Button */
.see-more {
  margin-top: 50px;
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.see-more:hover {
  background: #000;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hiring-partners .partner-logos {
    grid-template-columns: repeat(3, minmax(80px, 1fr));
  }
}

@media (max-width: 480px) {
  .hiring-partners .partner-logos {
    grid-template-columns: repeat(2, minmax(80px, 1fr));
  }
}
/* ==========================testimonial========================== */
/* Testimonial Section */
.testimonial-section {
  position: relative;
  text-align: center;
  padding: 50px 20px 20px;
}
.bg-blue {
  position: absolute;
  left: 0;
  background: #dae5fa;
  width: 100%;
  height: 60%;
}

.testimonial-section h2 {
  position: relative;
  margin: 50px;
  font-size: 28px;
  color: #1b1e65;
  font-weight: bold;
}

/* Testimonial Container */
.testimonial-container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  width: 280px;
  padding: 20px;
  border-radius: 40px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Testimonial Text */
.testimonial-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Testimonial Image */
.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 10px auto;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonial Name */
.testimonial-name {
  font-size: 16px;
  font-weight: bold;
  color: #1b1e65;
  margin-bottom: 5px;
}

/* Testimonial Role */
.testimonial-role {
  font-size: 13px;
  color: #777;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 620px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
}
/* ===============sm testimonial========== */
@media (max-width: 650px) {
  .sm-testimonial {
    display: block !important;
    max-width: 100vw;
  }
  .sm-testimonial .card {
    padding: 30px;
    min-height: 400px;
    height: 555px;
    max-height: 100%;
    margin-bottom: 20px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width: 520px) and (max-width: 650px) {
  .sm-testimonial .card {
    height: 415px;
  }
}
/* ===================vedio slider====================== */
#vedio-slider-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0;
}

#testml {
  height: 300px;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (min-width:1200px) {
  #testml {
    overflow: visible;

  }
}
#testml .video-item {
  width: 320px;
  height: 80%;
  border-radius: 30px;
  position: absolute;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.4s ease;
  overflow: hidden;
}

#testml .video-item iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: none;
}

/* Navigation Buttons */
#vedio-slider-container .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #dae5fa;
  color: #333;
  border: 1px solid #dae5fa;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 20;
}

#vedio-slider-container .prev-btn {
  left: 0%;
}

#vedio-slider-container .next-btn {
  right: 0%;
}

#vedio-slider-container .nav-btn:hover {
  color: #000;
  background-color: transparent;
  border: 1px solid #000;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  #testml .video-item {
    width: 260px;
  }
}

@media (max-width: 768px) {
  #testml {
    height: 200px;
  }
  #testml .video-item {
    width: 220px;
  }
  #vedio-slider-container .nav-btn {
    padding: 8px 12px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  #testml {
    height: 180px;
  }
  #testml .video-item {
    width: 180px;
  }
  #vedio-slider-container .nav-btn {
    padding: 6px 10px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# life at invisor
--------------------------------------------------------------*/
.life {
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 1rem;
}

.life h2 {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin: 2.5rem 0 3.75rem;
  font-weight: 600;
}

/* Default: Single column */
.life .grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 400px;
  gap: 1rem;
}

/* Tablet: Two columns */
@media (min-width: 768px) {
  .life .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: Three columns at 1300px and above */
@media (min-width: 1200px) {
  .life .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.life .grid-item {
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.life .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.life .grid-item:hover img {
  transform: scale(1.05);
}

/* View More Button */
.life .view-more {
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  background-color: #d9e7f8;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
  border: none;
  max-width: 200px;
}

.life .view-more:hover {
  background-color: #c2dbf0;
}

/* Adjust View More Button for Smaller Screens */
@media (max-width: 500px) {
  .life .view-more {
    font-size: 14px;
    max-width: 150px;
    padding: 8px 16px;
  }
}

/* ===================================================================================================== */
/* ===================================================================================================== */
/* ======================================course pages css=============================================== */

.ux-banner {
  padding: 120px 0 0;
  background: #ffffff;
}

.ux-banner .ux-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 30px;
}
.ux-banner .ux-content h1 span {
  font-weight: 300;
}
.ux-banner .ux-content h6 {
  margin-top: -25px;
  margin-bottom: 0;
}
.ux-banner .ux-content p {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 20px;
}

.ux-banner .action-cards {
  display: flex;
  gap: 20px;
  width: 100%;
  z-index: 1;
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .ux-banner .action-cards {
    width: 110%;
  }
}
.ux-banner .action-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.ux-banner .action-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ux-banner .action-card-content {
  padding: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #444;
  cursor: pointer;
}

.ux-banner .action-card-content i {
  color: var(--accent-color);
  padding: 5px;
  border-radius: 50%;
  font-size: 1rem;
}

.ux-banner .image-container {
  display: flex;
  justify-content: center;
}

.ux-banner .image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 50px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .ux-banner .image-container img {
    margin-top: 30px;
  }
  .ux-banner .ux-content {
    text-align: center;
  }

  .ux-banner .action-cards {
    justify-content: center;
    flex-wrap: wrap;
  }

  .ux-banner .image-container {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .ux-banner .ux-content h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .ux-banner .ux-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .ux-banner .ux-content h6 {
    font-size: 1.3rem;
  }
  .ux-banner .image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .ux-banner .ux-content h1 {
    font-size: 4rem;
  }
}
/* ===================================================================================================== */

.stats-section {
  padding: 50px 0 0;
  display: flex;
  justify-content: center;
  margin: 15px;
}

.stats-section .stats-box {
  background: white;
  border-radius: 30px 30px 0 0;
  padding: 40px 20px;
  max-width: 90vw;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stats-section .stat-item {
  text-align: center;
}

.stats-section .stat-circle {
  width: 80px;
  height: 80px;
  background: #dbe4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1d1d42;
  margin: 0 auto 10px;
}

.stats-section .stat-item p {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .stats-section .stats-box {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stats-section .stat-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 500px) {
  .stats-section .stat-item {
    flex: 1 1 100%;
  }
}

/* ===================================================================================================== */

.why-choose-section {
  max-width: 900px;
  margin: auto;
  padding: 60px 0;
  text-align: center;
}

.why-choose-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 30px;
}

.why-choose-section .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-content: center;
}

.why-choose-section .feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  transition: all 0.3s ease-in-out;
}

.why-choose-section .feature-card:hover {
  transform: translateY(-5px);
  background: #dbe4ff;
}

.why-choose-section .feature-card:hover .choose-iconbox {
  background-color: #fff;
}
.choose-iconbox {
  width: 80px;
  height: 80px;
  background: #dbe4ff;
  display: flex;
  margin: auto;
  border-radius: 50%;
  margin-bottom: 20px;
}
.why-choose-section .feature-card img {
  width: 50px;
  height: 50px;
  margin: auto;
  display: block;
}

.why-choose-section .feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.why-choose-section .feature-card p {
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-top: 10px;
}
@media (min-width: 992px) {
  .why-choose-section h2 {
    font-size: 2rem;
    width: 60%;
    margin: 0 auto 40px;
  }
}
/* Responsive Adjustments */
@media (max-width: 767px) {
  .why-choose-section h2 {
    font-size: 1.5rem;
  }
}

/* ===================================================================================================== */

/* Section Background with Gradient */
.become-section {
  background: #fff;
  padding: 80px 0px;
  display: flex;
  justify-content: left;
}

/* Content Box with Rounded Top-Right */
.become-section .placement-box {
  background: #dbe4ff;
  border-top-right-radius: 120px;
  padding: 60px 40px;
  width: 85%;
}

.become-section .placement-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d42;
  text-align: center;
  margin-bottom: 10px;
}

.become-section .placement-box p.subtext {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  font-weight: 500;
  margin: 0 auto 40px;
  width: 62%;
}

/* Grid Layout */
.become-section .placement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.become-section .placement-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1d1d42;
  margin-bottom: 10px;
}

.become-section .placement-item p {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
  text-align: justify;
}
@media (min-width: 1100px) {
  .become-section .placement-item h4 {
    padding-right: 30%;
  }
}
@media (max-width: 991px) {
  .become-section .placement-box p.subtext {
    font-size: 1.2rem;
    width: 85%;
  }
}
/* Responsive Adjustments */
@media (max-width: 767px) {
  .become-section .placement-box {
    border-top-right-radius: 80px;
    padding: 40px 20px;
  }

  .become-section .placement-box h2 {
    font-size: 1.8rem;
  }

  .become-section .placement-box p.subtext {
    font-size: 1rem;
    width: 90%;
  }

  .become-section .placement-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* ===================================================================================================== */
.learning-faq {
  padding: 60px 0;
  text-align: center;
}

.learning-faq h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d42;
  margin-bottom: 40px;
}

.learning-faq .accordion {
  max-width: 1000px;
  margin: 0 auto;
  border: none;
}

.learning-faq .accordion-item {
  border: none;
  border-bottom: 1px solid #ccc;
}

.learning-faq .accordion-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  padding: 15px 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.learning-faq .accordion-content {
  padding: 15px 15px 15px 25px;
  display: none;
  text-align: left;
  font-size: 0.95rem;
  color: #333;
}

.learning-faq .accordion-content p {
  margin: 5px 0;
}
.learning-faq .accordion-content li {
  margin: 0px 0 10px;
}

.learning-faq .faq-icon {
  font-size: 3rem;
  transition: transform 0.3s ease;
  font-weight: 300;
  color: #000;
}

.learning-faq .open .faq-icon {
  transform: rotate(45deg);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .learning-faq .learning-section h2 {
    font-size: 1.8rem;
  }
}

/* ===================================================================================================== */
.career-section {
  text-align: center;
  padding: 50px 20px;
}

.career-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1d1d42;
  margin-bottom: 30px;
}

.career-section .career-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
}

/* Main Horizontal Line */
.career-section .career-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 87.2%;
  height: 1px;
  background: #000;
}

.career-section .career-item {
  text-align: center;
  position: relative;
}

/* Vertical Lines from Main Line */
.career-section .career-item::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  width: 1px;
  height: 40px;
  background: #000;
  transform: translateX(-50%);
}

/* Circular Icon Container */
.career-section .career-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: auto;
}

.career-section .career-icon i {
  font-size: 2rem;
  color: #1d1d42;
}

.career-section .career-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d42;
  margin-top: 5px;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 767px) {
  .career-section .career-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  /* Vertical Line for Mobile */
  .career-section .career-container::before {
    display: none;
  }

  .career-section .career-item::before {
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
  }
  .career-section .career-item:first-child::before {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .career-section .career-item {
    max-width: 100px;
  }

  .career-section .career-container::before {
    left: 5.8%;
    width: 88%;
  }
}
@media (min-width: 768px) and (max-width: 800px) {
  .career-section .career-container::before {
    left: 6.2%;
    width: 86.5%;
  }
}
@media (min-width: 801px) and (max-width: 991px) {
  .career-section .career-container::before {
    left: 6%;
    width: 87.8%;
  }
}

/* =====================================video slider continuation================================== */
.swiperss .slider-video {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  box-shadow: rgba(60, 64, 67, 0.15) 2px -2px 4px,
    rgba(60, 64, 67, 0.3) 4px 2px 6px;
}

.swiperss .slider-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
/* Swiper Navigation */
.swiperss .swiper-button-prev,
.swiperss .swiper-button-next {
  color: #1d1d42;
}

/* Pagination Dots */
.swiperss .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiperss .swiper-pagination-bullet {
  background: #fff;
  width: 15px;
  height: 15px;
  opacity: 0.5;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.swiperss .swiper-pagination-bullet-active {
  background: #dae5fa;
  opacity: 1;
}
/* =====================================video slider end================================== */

/* ======================================================================================= */
.instructor-section {
  text-align: center;
  padding: 20px 20px;
  max-width: 90%;
  margin: auto;
}

.instructor-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d42;
  margin-bottom: 30px;
}

.instructor-section .instructor-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.instructor-section .instructor-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 15px 30px;
  text-align: left;
  max-width: 280px;
  border: 1px solid #e0e0e0;
  position: relative;
}

.instructor-section .instructor-img {
  width: 100%;
  border-radius: 10px;
  background: #e8f0ff;
  display: flex;
  max-height: 240px;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.instructor-section .instructor-img img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  object-fit: cover;
  min-width: 250px;
  min-height: 250px;
  filter: grayscale(100%);
}

.instructor-section .instructor-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1d1d42;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instructor-section .instructor-name::before {
  content: "●";
  color: #d9e7f8;
  font-size: 2.2rem;
  margin-right: 8px;
}

.instructor-section .instructor-info {
  font-size: 0.9rem;
  color: #333;
}

.instructor-section .instructor-info ul {
  padding-left: 0px;
}

.instructor-section .instructor-info li {
  list-style: none;
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 12px;
}

.instructor-section .instructor-info li::before {
  content: "•";
  color: #333;
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: -15px;
}
.instructor-card .blue-circle {
  width: 30px;
  height: 30px;
  background-color: #d9e7f8;
  border-radius: 50px;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
/* ======================================================================================= */

.certificate-section {
  background: #cdcdcd;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 50px;
}

.certificate-section .cma-text {
  flex: 1;
  padding: 20px;
}

.certificate-section .cma-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
  line-height: normal;
}

.certificate-section .cma-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
}

.certificate-section .cma-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.certificate-section .cma-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.certificate-section ul {
  padding-left: 2.5rem;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .certificate-section {
    flex-direction: column;
    padding: 20px;
  }
  .certificate-section .cma-text h3 {
    font-size: 1.8rem;
  }
  .certificate-section .cma-image img {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .certificate-section .cma-text h3 {
    font-size: 1.5rem;
  }
}

/* ================================================================================================= */

/* Section Styling */
.exam-structure {
  text-align: center;
  padding: 50px 20px;
}

.exam-structure h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1d1d42;
  margin-bottom: 10px;
}

.exam-structure p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: auto;
}

/* Exam Parts Container */
.exam-structure .exam-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Each Exam Part Box */
.exam-structure .exam-box {
  background: #e7efff;
  border-radius: 10px;
  padding: 20px;
  width: 355px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.exam-structure .exam-box h3 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.exam-structure .exam-box h6 {
  margin: 10px 0 20px;
  font-size: 0.9rem;
  color: #000;
  font-weight: 500;
}
.exam-structure .exam-box p {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .exam-structure .exam-container {
    flex-direction: column;
    align-items: center;
  }

  .exam-structure .exam-box {
    width: 90%;
  }
}

/* ====================================================================================== */

/* Section Styling */
.testing-windows {
  text-align: center;
}

.testing-windows h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 60px;
}

/* Containers for Windows */
.testing-windows .windows-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (min-width: 1140px) {
  .testing-windows .windows-container {
    flex-wrap: nowrap;
  }
}
/* Each Window Box */
.testing-windows .window-box {
  background: #ccc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: left;
}

/* Large Number Styling with Border Stroke Effect */
.testing-windows .window-number {
  font-size: 6.5rem;
  font-weight: 700;
  color: transparent; /* Makes the number invisible */
  position: absolute;
  top: -80px;
  left: 10px;
  z-index: 0;

  /* Outline Effect */
  -webkit-text-stroke: 1px #000; /* Creates the border effect */
}

.testing-windows .window-box h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.testing-windows .window-box p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
  margin: 5px 0;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testing-windows .windows-container {
    flex-direction: column;
    align-items: center;
  }

  .testing-windows .window-box {
    width: 90%;
  }
}

/* =================================================================================================== */
/* =============================================popup================================================= */
/* =================================================================================================== */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-form .popup-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  max-width: 500px;
  text-align: left;
  position: relative;
}
.popup-form .popup-content h2 {
  text-align: center;
  font-weight: 600;
}
.popup-form .popup-content form {
  max-width: 300px;
  margin: auto;
}
.popup-form .popup-content label {
  font-size: 0.9rem;
  color: #000;
}
.popup-form .popup-content input,
.popup-form .popup-content textarea {
  width: 100%;
  margin: 5px 0 15px;
  padding: 8px;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  background: #f0f0f0;
}
.popup-form .popup-content textarea {
  height: 70px;
}
.popup-content input:focus,
.popup-form .popup-content textarea:focus {
  border: 1px solid var(--accent-color); /* Focus border color */
  outline: none; /* Remove default focus outline */
}
.popup-form .popup-content button {
  max-width: 150px;
  margin: auto;
  display: block;
  padding: 10px 15px;
  background: #f0f0f0;
  color: #000;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
.popup-form .popup-content button:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.popup-form .close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: black;
}

/* ================video popup================= */
.video-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-popup-container.show {
  opacity: 1;
  visibility: visible;
}

.video-popup-container .video-popup-content {
  position: relative;
  background: #000;
  padding: 10px;
  border-radius: 8px;
  width: 80%;
  max-width: 800px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.video-popup-container .video-popup-content iframe {
  width: 100%;
  height: 450px;
}

.video-popup-container .close-popup {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--nav-hover-color);
  color: #000;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================video popup end================= */
