/**
* Template Name: Mentor
* Template URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", 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: #37423b;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5fcf80;
  /* 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: #ffffff;
  /* 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: #272828;
  /* The default color of the main navmenu links */
  --nav-hover-color: #5fcf80;
  /* 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: #272828;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5fcf80;
  /* 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: #363030;
  --surface-color: #ffffff;
}

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

a {
  color: #bd9464;
  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: #003a6c;
  font-family: sans-serif;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 1px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  /* max-height: 78px;
  margin-right: 8px; */
  margin-left: -40px;
  /* height: 54px; */
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #00c3ff;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #60d0e9, transparent 15%);
}

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

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color:#1b2c51;
    padding: 18px 15px;
    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;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #00c3ff;
    font-weight: 500;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: -196px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    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.active {
    color: white !important;
    background-color: #10527b;
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #bd9463;
  }

  .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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #684838;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    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);
    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: rgba(33, 37, 41, 0.03);
  }

  .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;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #00223f;
  font-size: 14px;
  /* padding-bottom: 50px; */
  position: relative;
  background-image: url("../img/ccs-academy/footer.jpg");
  border-top: 4px solid #00c3ff;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 0;
}

.footer .footer-about .logo img {
  width: 90%;
  margin-bottom: 10px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  /* font-family: var(--heading-font); */
  color: white;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
  font-size: 16px;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #bd9463;
  border-color: #bd9463;
}

.footer h4 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
  color: white;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 17px;
  font-size: 10px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 11px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: white;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-contact i {
  padding-right: 19px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 0px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #10527b;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  /* background-image: url('../img/ccs-academy/breadcrumb.webp'); */
  padding: 69px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-repeat: no-repeat;
}

.page-title .heading2 {
  /* background-image: url('../img/ccs-academy/breadcrumb.webp'); */
  padding: 52px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-repeat: no-repeat;
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

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

.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: #684838;
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# 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;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
  .key-baner img {
    width: 100%;
    height: auto !important;
}
.sticky-icon {
    display: none !important;
}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 12px 24px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
  /* background: #10527b; */
  background-image: url("../img/ccs-academy/countBg.jpg");
  background-position: center center;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: white;
  font-weight: 700;
}

.counts .stats-item p {
  color: color-mix(in srgb, white, transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }

  .img-hight {
    height: 297px !important;
  }
}

/*--------------------------------------------------------------
# Courses Course Details Section
--------------------------------------------------------------*/
.courses-course-details {
  padding-bottom: 20px;
}

.courses-course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.courses-course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  bottom: 0;
  left: 0;
}

.courses-course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.courses-course-details .course-info {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 15px;
  margin-bottom: 15px;
}

.courses-course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--nav-font);
}

.courses-course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.courses-course-details .course-info a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
  position: relative;
}

.trainers .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .trainers .member .member-img {
    margin: 0 60px;
  }
}

.trainers .member .member-img img {
  position: relative;
  z-index: 1;
}

.trainers .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.trainers .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
  color: var(--accent-color);
}

.trainers .member .member-info {
  margin-top: 30px;
}

.trainers .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.trainers .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.trainers .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.trainers .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
  background-color: var(--background-color);
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: var(--surface-color);
  border-top: 4px solid var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 8px;
  padding-bottom: 40px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: #10527b;
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px 12px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}





/* my css start */


.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 15px;
}

.card {
  margin: 0 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 296px;
}

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

.carousel-inner {
  padding: 20px 0;
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
  font-size: 20px;
  text-align: center;
}

.card-text2 {
  font-size: 13px;
}


.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.text-justify {
  text-align: justify;
}

.card-img-top {
  height: 225px;
  object-fit: cover;
  padding: 10px;
}

.home-image {
  max-width: 100%;
  height: 372px;
  margin-top: 20px;
  border: 4px solid #00c3ff;
}


.work-card {
  border: none;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  padding: 30px 20px;
  height: 100%;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 1.8rem;
  font-weight: 600;
  color: #eaf3ff;
  background: #10527b;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  line-height: 60px;
}

.work-card h5 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #212529;
}

.work-card p {
  font-size: 0.95rem;
  color: #6c757d;
}

.sector-div {
  width: 100%;
  height: 390px;
  /* border: solid red 2px; */
  padding: 12px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 20px;
}

.sector-div img {
  width: 100%;
  height: 230px;
  margin-bottom: 18px;

}

.sector-div h4 {
  font-size: 18px;
  padding-top: 3px;
  color: #003a6c;
  font-weight: 600;
}

.sector-div p {
  font-size: 14px;
}

.sector-div a {
  margin-bottom: 5px;
}



.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 28px;
}

.service-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  color: #64748b;
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #4338ca;
}

.read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

.bg-gradient {
  background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
}


.custom-table {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.custom-table th {
  background-color: #003a6b;
  color: white;
  font-weight: 600;
  text-align: center;
}

.custom-table td {
  vertical-align: middle;
  padding: 1rem;
}

.icon-col i {
  font-size: 1.5rem;
  color: #684838;
}


.choose-card {
  background-color: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  padding: 30px;
  height: 100%;
  border: 2px solid #003a6c;
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.choose-icon {
  font-size: 2rem;
  color: #10527b;
  margin-bottom: 20px;
}

.choose-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #343a40;
}

.choose-card p {
  color: #6c757d;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .choose-section .section-title {
    font-size: 2rem;
  }

  .home-image {
    width: 100%;
    height: 250px !important;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .counts {
    padding: 25px 0px !important;
    /* background: rgb(16, 82, 123) !important; */
  }

  .card {
    margin: 0 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: auto !important;
    margin-bottom: 22px !important;
  }

  .sector-div img {
    width: 100%;
    height: 172px !important;
  }

  .sector-div {
    width: 100%;
    height: auto !important;
    /* border: solid red 2px; */
    padding: 7px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 20px !important;
  }

  .sector-div h4 {
    font-size: 15px !important;
    padding-top: 8px;
  }

  .sector-div p {
    font-size: 11px !important;
  }

  .counts .stats-item {
    padding: 15px !important;
    /* width: 100%; */
  }

  .counts .stats-item span {
    font-size: 33px !important;
    display: block;
    color: #ffffff;
    font-weight: 700;
  }

  .service-card {
    background: white;
    border-radius: 10px;
    padding: 18px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
  }

  .service-card h3 {
    font-size: 15px !important;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
  }

  .service-card p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 11px !important;
  }

  .choose-icon {
    font-size: 22px !important;
    color: #007bff;
    margin-bottom: 20px;
  }

  .choose-card {
    background-color: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    padding: 10px !important;
    height: 100%;
  }

  .choose-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #343a40;
    font-size: 14px !important;
  }

  .choose-card p {
    color: #6c757d;
    font-size: 11px;
  }

  .work-card {
    border: none;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    padding: 14px 7px !important;
    height: 100%;
  }

  .work-card p {
    font-size: 13px !important;
    color: #6c757d;
  }

  .step-number {
    font-size: 20px;
    font-weight: 600;
    color: #007bff;
    background: #eaf3ff;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 50%;
    line-height: 60px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .work-card h5 {
    font-size: 17px !important;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #212529;
  }

  .card2 {
    margin: 0 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 246px !important;
    margin-bottom: 22px !important;
  }

  .hero {
    width: 100%;
    height: 400px !important;
  }

  .mv-div i {
    font-size: 25px !important;
    color: green;
  }

  .mv-div h4 {
    font-size: 20px !important;

  }

  .mv-div p {
    font-size: 14px !important;
  }

  .mv-div {
    width: 100%;
    /* height: 270px !important; */
    border: solid #684838 2px !important;
    padding: 10px !important;
    text-align: justify;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 20px;
  }

  .mv-div i {
    font-size: 40px !important;
    color: #684838;
  }

  .footer .footer-about .logo img {
    margin-bottom: 12px;
  }

  .baner-content {
    position: absolute;
    /* border: solid red 5px; */
    width: 50% !important;
    height: 190px !important;
    top: 70px !important;
    left: 50px !important;
    padding-top: 21px !important;
    z-index: 99 !important;
  }

  .baner-content2 {
    position: absolute;
    /* border: solid red 5px; */
    width: 74% !important;
    height: 190px !important;
    top: 70px !important;
    left: 50px !important;
    padding-top: 21px !important;
    z-index: 99 !important;
  }

  .navmenu ul {

    height: 404px !important;
  }

  .baner-btn {
    width: 87px !important;
    height: 32px !important;
    /* background-color: #fff; */
    background-color: #684838;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 13px !important;
  }

  .baner-content h2 {
    font-size: 19px !important;
    font-weight: bold;
    margin-bottom: 30px !important;
  }

  .baner-content2 h2 {
    font-size: 19px !important;
    font-weight: bold;
  }

  .baner-content p {

    font-size: 12px !important;
  }

  section,
  .section {
    color: #684838;
    background-color: var(--background-color);
    padding: 19px 0 !important;
    scroll-margin-top: 900px;
    overflow: clip;
  }

  .abot-img-hight {
    max-width: 100%;
    height: 250px !important;
  }


  .neetdp-feature-title {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 12px;
    font-size: 14px !important;
  }

  .neetdp-feature-icon {
    font-size: 25px !important;
    color: #3b82f6;
    margin-bottom: 15px;
  }

  .neetdp-feature-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-bottom: 4px solid #3b82f6;
  }

  .neetdp-feature-box {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 120px !important;
    background: white;
    margin-bottom: 25px;
  }

  .neetdp-feature-img {
    width: 100%;
    height: 185px !important;
    object-fit: cover;
    border-bottom: 4px solid #3b82f6;
  }

  .neet-feature-card {
    background: white;
    border-radius: 12px;
    padding: 10px !important;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .neet-feature-icon {
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(135deg, #6366f1, #10527b);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }

  .neet-feature-name {
    font-size: 14px !important;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
  }

  .f-link {
    margin-left: 0px !important;
  }
  .founder-content{
    margin-top: 28px;
  }
  .footer .footer-links {
    margin-bottom: 0px;
  }
  .footer .copyright {
    padding-top: 8px;
  }
  .footer .footer-links ul a {
    line-height: 20px;
  }
  .header .logo img {
  height: 60px;
  }
}


.mv-div {
  width: 100%;
  height: 335px;
  border: solid #10527b 2px;
  padding: 20px;
  text-align: justify;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.mv-div i {
  font-size: 35px;
  color: #10527b;
}

.form-control2 {
  padding: .8rem 12.8px .75rem;
  margin-bottom: 20px !important;
}

.enq-btn {
  width: 80%;
  height: 44px;
  background-color: #00c3ff;
  border: none;
  color: white;
  border-radius: 100px;
}
.enq-btn:hover {
  background-color: #78d7ec;
}




.main2 .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.main2 .card2 {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333;
  border-radius: 2px;
}

.main2 .card-image {
  background: #fff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}

.main2 .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .main2 .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}



.f-link {
  margin-left: 2px !important;
}

.img-hight {
  height: 460px;
}

.img-hight img {
  width: 100%;
  height: 100%;
}

.crp {
  padding: 0px 0px;
  position: relative;
}

.baner-content {
  position: absolute;
  /* border: solid red 5px; */
  width: 40%;
  height: 270px;
  top: 150px;
  left: 154px;
  z-index: 111;
}

.baner-content2 {
  position: absolute;
  /* border: solid red 5px; */
  width: 55%;
  height: 270px;
  top: 290px;
  right: 154px;

  z-index: 111;
}

.baner-btn {
  width: 150px;
  height: 40px;
  /* background-color: #fff; */
  background-color: #00c3ff;
  color: white;
  border: none;
  border-radius: 20px;
}
.baner-btn:hover {
  background-color: #004074;
}

.breadcrum-image {
  background-image: url("../img/ccs-academy/breadcrumb.webp");
  background-position: center center;
  background-repeat: no-repeat;

}

.baner-btn a {
  color: white;

}

.baner-content h2 {
  font-size: 34px;
  font-weight: bold;
}

.baner-content2 h2 {
  font-size: 43px;
  font-weight: bold;
}

p {
  color: #000000c2;
  font-size: 15px;
  font-family: sans-serif;
}


/* Black overlay only for the banner carousel */
.banner-carousel .carousel-item {
  position: relative;
}

.banner-carousel .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 18%);
  /* Adjust opacity (0.5 = 50%) */
  z-index: 1;
}

.banner-carousel .carousel-item img {
  position: relative;
  z-index: 0;
}

/* Ensure carousel controls and captions appear above overlay */
.banner-carousel .carousel-caption,
.banner-carousel .carousel-control-prev,
.banner-carousel .carousel-control-next {
  z-index: 2;
}




.page-title {
  position: relative;
}

.page-title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); Black with 50% opacity */
  z-index: 1;
}

.heading {
  position: relative;
  z-index: 2;
  /* Ensure content stays above the overlay */
  color: #fff;
  /* Make text white for better contrast */
}

.abot-img-hight {
  max-width: 100%;
  height: 411px;
}

.diractor-div {
  width: 100%;
  height: 250px;
  border: solid red 2px;
}

.diractor-div img {
  width: 100%;
  height: 100%;
}


.comitment-div {
  width: 100%;
  height: 100px;
  border: solid #10527b 2px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 7px;
  background-color: white;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.comitment-div p {
  font-size: 18px;
}

.bg-abt {
  background-color: rgb(0 58 107);
}



.gallery-thumb {
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, .1);
}

.gallery-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.caption {
  /* font-size: .9rem;
  color: #6c757d;
  padding: .5rem .25rem 0;
  text-align: center; */
}

/* Make modal images fit nicely */
.lightbox-img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 12rem);
  object-fit: contain;
}



.key-baner {
  width: 100%;
  height: 350px;
  border: solid #10527b 2px;
}

.key-baner img {
  width: 100%;
  height: 100%;
}

.key-about {
  width: 100%;
  /* height: 350px; */
  border: solid #10527b 2px;
  padding: 10px;
  margin-bottom: 20px;
}

.key-Service {
  width: 100%;
  /* height: 438px; */
  border: solid #10527b 2px;
  padding: 10px;
  margin-bottom: 20px;
}

.key-Service p {
  margin-bottom: 0px;
  text-align: left;
}

.key-Service p a {
  color: black;
}

.key-contact {
  width: 100%;
  height: 180px;
  border: solid #10527b 2px;
  padding: 12px;
  margin-bottom: 20px;
}

.key-contact p a {
  color: black;
}

.key-contact p i {
  padding-right: 20px;
}


hr {
  margin: 6px 0px;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: .25;
}

.fs {
  font-size: 30px;
}


.neetdp-main-heading {
  text-align: center;
  margin-bottom: 50px;
  color: #1e3a8a;
  font-weight: 700;
  position: relative;
}

.neetdp-main-heading::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: #3b82f6;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.neetdp-feature-box {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 145px;
  background: white;
  margin-bottom: 25px;
}

.neetdp-feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.neetdp-feature-img {
  width: 100%;
  height: 216px;
  object-fit: cover;
  border-bottom: 4px solid #3b82f6;
}

.neetdp-feature-content {
  padding: 20px;
  text-align: center;
}

.neetdp-feature-title {
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.neetdp-feature-icon {
  font-size: 40px;
  color: #3b82f6;
  margin-bottom: 15px;
}

.neetdp-feature-desc {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.neetdp-cta-button {
  display: block;
  width: 180px;
  margin: 40px auto 0;
  padding: 10px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
}

.neetdp-cta-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
}


.neet-repeat-header {
  text-align: center;
  margin-bottom: 60px;
}

.neet-repeat-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* .neet-repeat-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #4f46e5;
            border-radius: 2px;
        } */

.neet-repeat-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.neet-feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.neet-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
  border-color: #c7d2fe;
}

.neet-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #4f46e5;
  transition: height 0.3s ease;
}

.neet-feature-card:hover::before {
  height: 100%;
}

.neet-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1, #10527b);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.neet-feature-card:hover .neet-feature-icon {
  transform: rotate(5deg) scale(1.1);
}

.neet-feature-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.neet-feature-detail {
  color: #64748b;
  line-height: 1.6;
}

.neet-join-button {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.neet-join-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  color: white;
}

.neet-join-button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.neet-join-button:hover i {
  transform: translateX(3px);
}

.neet-course-details {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.neet-course-header {
  text-align: center;
  margin-bottom: 40px;
}

.neet-course-title {
  font-size: 2rem;
  color: #1a365d;
  margin-bottom: 15px;
  font-weight: 700;
}

.neet-course-intro {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
}

.neet-detail-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.neet-detail-title {
  font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid #4299e1;
  padding-bottom: 8px;
}

.neet-detail-content {
  color: #4a5568;
  line-height: 1.6;
}

.neet-highlight-box {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.neet-highlight-title {
  font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.neet-highlight-item {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.neet-highlight-item:before {
  content: "•";
  color: #4299e1;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.neet-subject-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  height: 125px;
}

.neet-subject-title {
  font-size: 1.2rem;
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 600;
}

.neet-subject-desc {
  color: #4a5568;
}

.neet-conclusion {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-chose li {
  list-style: none;
  font-size: 14px;
  margin-bottom: 17px;

  color: black;
}

.why-chose li i {
  color: #10527b;
  padding-right: 20px;
}


.why-image {
  width: 100%;
  height: 300px;

}

.why-image img {
  width: 100%;
  height: 100%;

}


.start-ul li {
  list-style: disc;

  font-size: 14px;
  margin-bottom: 17px;

  color: black;
}


.neet-exam-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.neet-exam-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3b82f6;
  border-radius: 2px;
}


.neet-exam-details {
  padding: 60px 0;
  background-color: #f8fafc;
}

.neet-exam-header {
  text-align: center;
  margin-bottom: 40px;
}

.neet-exam-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.neet-exam-table thead {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

.neet-exam-table th {
  padding: 15px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  background: #10527b;
  color: white;
}

.neet-exam-table td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #e2e8f0;
}

.neet-exam-table tr:last-child td {
  border-bottom: none;
}

.neet-exam-table tbody tr:nth-child(odd) {
  background-color: #f8fafc;
}

.neet-exam-table tbody tr:hover {
  background-color: #f1f5f9;
}

.neet-exam-highlight {
  font-weight: 600;
  color: #1e40af;
}

@media (max-width: 768px) {
  .neet-exam-table thead {
    display: none;
  }

  .neet-exam-table tr {
    display: block;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
  }

  .neet-exam-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .neet-exam-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    padding-right: 10px;
    font-weight: 600;
    color: #1e3a8a;
    text-align: left;
  }
}


.lead-text {
  color: #34495e;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 25px 20px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 15px;
}

.feature-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-desc {
  color: #7f8c8d;
  font-size: 0.95rem;
}

.highlight-box {
  background: rgba(52, 152, 219, 0.1);
  border-left: 4px solid #3498db;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
}


.pnt-feature-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border-top: 4px solid #3498db;
}

.pnt-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pnt-card-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.pnt-card-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.pnt-card-text {
  color: #7f8c8d;
  font-size: 0.95rem;
}

.pnt-highlight-box {
  background: #3498db;
  border-radius: 12px;
  padding: 30px;
  color: white;
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.pnt-highlight-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.pnt-highlight-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: white;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.pnt-benefit-item {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.pnt-benefit-item:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

.pnt-cta-btn {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pnt-cta-btn:hover {
  background: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pnt-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pnt-image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.pnt-image-container:hover img {
  transform: scale(1.03);
}

.pnt-exam-feature-list {
  padding-left: 20px;
}

.pnt-exam-feature-list li {
  margin-bottom: 10px;
  position: relative;
  list-style-type: none;
}

.pnt-exam-feature-list li:before {
  content: "•";
  color: #3498db;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.pnt-exam-conclusion {
  background: #10527b;
  color: white;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
}

.aimss-intro-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  border-left: 5px solid #4a90e2;
}

.aimss-features-box {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.aimss-features-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #4a90e2, #2ecc71);
}

.aimss-feature-title {
  font-weight: 700;
  color: #1a3e72;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.aimss-feature-list {
  list-style: none;
  padding: 0;

}

.aimss-feature-list i {
  padding-right: 32px !important;
  color: #10527b !important;
}


.aimss-feature-item {
  margin-bottom: 1.2rem;
  padding-left: 2.5rem;
  position: relative;
  color: #4a5568;
  font-size: 1.05rem;
}

.aimss-feature-item:before {
  content: '';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #2ecc71;
  font-size: 1.2rem;
}

.aimss-benefit-card {
  background: linear-gradient(135deg, #4a90e2 0%, #1a3e72 100%);
  border-radius: 15px;
  padding: 40px;
  color: white;
  box-shadow: 0 15px 35px rgba(74, 144, 226, 0.3);
  height: 100%;
}

.aimss-benefit-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  font-size: 1.4rem;
}

.aimss-benefit-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #2ecc71;
  bottom: -10px;
  left: 0;
}

.aimss-student-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.aimss-student-img:hover {
  transform: scale(1.02);
}

.aimss-student-img img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .aimss-coaching-section {
    padding: 3rem 0;
  }

  .aimss-features-box {
    padding: 30px 20px;
  }

  .feature-card {
    background: white;
    border-radius: 10px;
    padding: 17px 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
    height: 135px !important;
  }

  .feature-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 13px !important;
  }

  .custom-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    left: -12px !important;
  }

  .feature-icon {
    font-size: 25px !important;
    color: #3498db;
    margin-bottom: 15px;
  }
}


.custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-dropdown-button {
  /* background-color: #3498db; */
  color: black;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.custom-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 4px;
  left: -260px;

}

.custom-dropdown-content a {
  color: black;
  padding: 7px 16px;
  text-decoration: none;
  display: block;
}

.custom-dropdown-content a:hover {
  background-color: #f1f1f1;
}


 .brochures-prgs {
            background: white;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .brochures-prgs:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .brochures-prgs > div:first-child {
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            color: #2c3e50;
            font-size: 18px;
            transition: background-color 0.3s;
        }
        
        .brochures-prgs > div:first-child:hover {
            background: #f8f9fa;
        }
        
        .brochures-prgs > div:first-child i {
            transition: transform 0.3s ease;
        }
        
        .brochures-prgs .active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: #f8f9fa;
            color: #555;
            font-size: 16px;
            line-height: 1.6;
        }
        
        .faq-answer.open {
            padding: 20px;
            max-height: 200px;
        }
        
        .intro-text {
            text-align: center;
            margin-bottom: 40px;
            color: #666;
            font-size: 18px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
    
     
        
       
        
        @media (max-width: 768px) {
            .brochures-prgs > div:first-child {
                font-size: 16px;
                padding: 15px;
            }
            
            h4 {
                font-size: 24px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            select{
            padding: .8rem 12.8px .75rem !important;
            margin-bottom: 20px !important;
          }
          .bg-new-2 {
            padding: 22px!important;
          }
          .enq-btn {
            width: 100%;
          }
        }

/* .footer-links i
  {
    font-size: 20px;
  }  */
/* my css end */

/*top bar*/
.top-bar {
    padding: 7px 0;
    background: #003a6c;
    position: relative;
}
.top-nav-bar {
    height: 35px;
}
.top-info {
    display: flex !important;
}
.top-info li {
    font-size: 16px;
    margin-left: 20px;
    color:#fff;
}
.top-info i {
    font-size: 12px;
    margin-right: 8px;
}
.top-social {
    padding: 0 !important;
}
.social-links {
    /* margin-right: -190px; */
}
.top-social ul li a {
    color: #fff;
    font-size: 15px !important;
    transition: 400ms;
    padding: 9px 12px;
}
/*closed*/
/*news scroll*/
.news-scroll-bg{
  background-color: #003a6c;
}
.gif {
    background-color: #fff;
}
.gif img {
    object-fit: contain;
    max-height: 30px;
    margin-top: 6px;
}
.marquee {
    background-color: #003a6c;
    padding: 6px 0;
}
marquee.blink {
    color: #fdffff;
}
.blink {
            animation: blinker 1.5s linear infinite;
            color:#fff;
        }

        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }
/*closed*/
.content h2{
  font-size: 30px;
  font-weight: 600;
  color: #003a6c;
  border-left: 4px solid #00c3ff;
  padding-left: 12px;
}
.content h5{
  font-size: 18px;
  font-weight: 500;
  color: #003a6c;
}
.founder-main{
  background: linear-gradient(134deg,rgba(0, 58, 108, 1) 26%, rgba(0, 117, 153, 1) 100%);
  /* background-image: url("../img/ccs-academy/dot-bg.png");
  background-position: center center;
  background-repeat: repeat-x repeat-y; */
}
.founder-content h2{
  color: #fff;
  font-weight: 600;
}
.founder-content p{
    color: #fff;
}
.content1 h2 {
    font-size: 30px;
    font-weight: 600;
    color: #003a6c;
}
/**/
.bg-new-2 {
    background-color: #003a6c;
    padding: 49px;
    margin-bottom: 20px;
}
.bg-new-2 h2 {
    color: white;
    font-size: 30px;
    font-weight: 600;
}
.enquiry-ul {
    padding-left: 18px;
}
.enquiry-ul li {
    margin-bottom: 14px;
    color: #fff;
}

@media (max-width: 768px) {
  .section-padding {
    background-size: cover;
  }
  .key-baner {
    width: 100%;
    height: auto;
    border: solid #10527b 2px;
  }
}