/*--------------------------------------------------------------
# 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. */
  --primary-blue: #3e4095;
  --red-main: #ec3236;
  --red-light: #f36a6d;
}

/* 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: #ec3236;
  /* 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: #ec3236;
  /* 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: #ffffff;
}

/* 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(--red-main);
  text-decoration: none;
  transition: 0.3s;
}

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

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

/* 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(--red-main);
  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(--red-main) 50%, color-mix(in srgb, var(--red-main), 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(--red-main), 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(--red-main);
  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: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--red-main);
  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, var(--red-main), 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: var(--nav-color);
    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: 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: 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 i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .header .logo img {
    max-height: 45px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .header {
    padding: 10px 0;
  }

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

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

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--red-main);
    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;
  }
}

@media (max-width: 576px) {
  .header .logo img {
    max-height: 55px;
    max-width: 170px;
  }

  .header .btn-getstarted {
    padding: 6px 9px;
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

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

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--red-main);
  border-color: var(--red-main);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

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

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

.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(--red-main);
}

.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(--red-main);
  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(--red-main), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  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(--red-main) transparent var(--red-main) 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: var(--red-main);
  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(--red-main), 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(--red-main);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 50px 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(--red-main) 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: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 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;
  text-align: center;
}

.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(--red-main);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0;
  font-size: 22px;          /* pehle 36px tha */
  font-weight: 500;         /* pehle 700 tha */
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  text-transform: none;     /* uppercase hata diya */
  line-height: 1.4;
}

@media (max-width: 576px){
  .section-title{
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 10px;
  }

  .section-title p {
    font-size: 15px;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  padding: 0;
}

.hero-slide {
  width: 100%;
  /* height: 100vh; full screen height */
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* pura image show karega, crop nahi hoga */
  object-position: center;
  background: #000; /* optional, empty space black */
}

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

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

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

.hero-slide 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(--red-main);
  border: 2px solid var(--red-main);
}

.hero-swiper .swiper-pagination-bullet {
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  opacity: 0.9;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--red-main);
}

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

  .hero-slide p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Course Strip Section
--------------------------------------------------------------*/
.course-strip-section {
  background: var(--primary-blue);
  padding: 15px 0;
  overflow: hidden;
}

.course-strip-wrapper {
  width: 100%;
  overflow: hidden;
}

.course-strip {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.strip-item {
  background: #ffffff;
  color: #0b1c2d;
  padding: 10px 22px;
  margin: 0 10px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional but premium feel) */
.course-strip:hover {
  animation-play-state: paused;
}

@media screen and (max-width: 768px) {
  .course-strip-section{
    padding: 6px 0;
  }

  .strip-item {
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 600;
  }
  
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .row {
  align-items: stretch;
}

.about .col-lg-6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  /* optional: premium look */
}

.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(--red-main);
}

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

.about .content .read-more {
  background: var(--red-main);
  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(--red-main), transparent 20%);
  padding-right: 19px;
}

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

.btn-green {
  background: var(--red-main);
  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;
}

.btn-green:hover {
  background: color-mix(in srgb, var(--red-light), transparent 0%);
}

@media (max-width: 576px) {
  .btn-green, .about .content .read-more, .academic-admission .service-btn.whatsapp {
    padding: 10px 16px !important;
    font-size: 10px;
  }

  .btn-get-started, .btn-view-id{
    padding: 9px 10px !important;
    font-size: 8px !important;
  }

  .about .content h3 {
    font-size: 18px;
  }
  .about .content ul li {
    font-size: 12px;
  }
  .about .content p {
    font-size: 12px;
  }
  .about .content .read-more {
    font-size: 12px;
  }
  .about .content .read-more i {
    font-size: 14px;
  }
  .about .content .read-more:hover {
    font-size: 12px;
  }
  .about .content .read-more:hover i {
    font-size: 14px;
  }
  .about .content .read-more:hover {
    font-size: 12px;
  }
  .about .content .read-more:hover i {
    font-size: 14px;
  }
  .about .content .read-more:hover {
    font-size: 12px;
  }
  .about .content .read-more:hover i {
    font-size: 14px;
  }
  .about .content .read-more:hover {
    font-size: 12px;
  }
  .about .content .read-more:hover i {
    font-size: 14px;
  }
  .about .content .read-more:hover {
    font-size: 12px;
  }
  .about .content .read-more:hover i {
    font-size: 14px;
  }
  .about .content .read-more:hover {
    font-size: 12px;
  }
  .about .content .read-more:hover i {
    font-size: 14px;
  }
  .about .content .read-more:hover {
    font-size: 12px;
  }
  .about .content .read-more:hover i {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
}

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

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--red-main);
  font-weight: 700;
}

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

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
/* WHY US SECTION */
.why-us {
  padding: 80px 0;
  background: #f8fafc;
}

/* LEFT BOX */
.why-us .why-box {
  position: relative;
  height: 100%;
  color: #fff;
  padding: 45px;
  border-radius: 20px;
  background: url("../../assets/img/why-bg.png") center center / cover no-repeat;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* overlay */
.why-us .why-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.75));
  z-index: 0;
}

.why-us .why-box * {
  position: relative;
  z-index: 1;
}

.why-us .why-box h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.why-us .why-box p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #f1f1f1;
  margin-bottom: 18px;
}

/* Button */
.why-us .why-box .more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0a7c3a;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.why-us .why-box .more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* RIGHT SIDE CARDS */
.feature-card {
  height: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #0a7c3a, #3fd27a);
  transition: 0.4s;
}

.feature-card:hover::after {
  width: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Icon circle */
.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: rgba(10, 124, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.icon-circle i {
  font-size: 34px;
  color: #0a7c3a;
  transition: 0.3s;
}

.feature-card:hover .icon-circle {
  background: #0a7c3a;
}

.feature-card:hover .icon-circle i {
  color: #fff;
}

/* Text */
.feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.feature-card p {
  font-size: 14.8px;
  line-height: 1.7;
  color: #6b7280;
}

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

.achievements h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.achievement-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.achievement-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 250px;
}

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

.card-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery-section {
  padding: 80px 0;
  background: #f9fbfa;
}

/* Card */
.gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

/* Hover effect */
.gallery-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.gallery-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
  padding: 20px;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

.gallery-card .overlay span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# 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(--red-main);
}

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

.academic-admission .service-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.academic-admission .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--primary-blue);
}

.academic-admission .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.academic-admission .service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.academic-admission .service-card h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.academic-admission .service-card p {
  font-size: 15px;
  color: #555;
}

.academic-admission .service-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.academic-admission .service-card ul li {
  padding: 6px 0;
  font-size: 14px;
  position: relative;
  padding-left: 18px;
}

.academic-admission .service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--red-main);
  font-size: 12px;
}

.academic-admission .service-card.highlight {
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  border: 2px solid color-mix(in srgb, var(--primary-blue), transparent 70%);
}

.academic-admission .service-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--red-main);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.academic-admission .service-btn:hover {
  background: color-mix(in srgb, var(--red-main), transparent 20%);
}

.academic-admission .service-btn.whatsapp {
  background: var(--red-main);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.academic-admission .service-btn.whatsapp:hover {
  background: var(--red-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--red-light);
}

@media (max-width: 576px) {
  .features{
    display: none;
  }
  .features .features-item {
    padding: 10px;
  }
  .features .features-item i{
    font-size: 20px;
  }
  .features .features-item h3 {
    font-size: 11px;
  }
  .features .features-item p {
    font-size: 12px;
  }

}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
/* Course Card */
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.courses .course-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Image Fix */
.courses .course-item img {
  width: 100%;
  height: 220px;
  /* 👈 fixed height */
  object-fit: cover;
  /* 👈 crop properly */
}

/* Content */
.courses .course-content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0;
}

.courses .course-content .category {
  background: var(--primary-blue);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 15px;
  flex: 1;
  /* 👈 content stretch equal */
}

/* WhatsApp Button */
.course-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  background: var(--red-main);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.course-btn:hover {
  background: var(--red-light);
  color: #fff;
  transform: translateY(-2px);
}

/* Course cards: 2 cols + smaller fonts on mobile & small tablet */
@media (max-width: 991px) {
  .courses .course-item img {
    height: 160px;
  }
  .courses .course-content {
    padding: 12px;
  }
  .courses .course-content h3 {
    font-size: 15px;
    margin: 8px 0;
  }
  .courses .course-content .category {
    font-size: 11px;
    padding: 4px 10px;
  }
  .courses .course-content .description {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .courses .course-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .courses .course-item img {
    height: 120px;
  }
  .courses .course-content h3 {
    font-size: 13px;
  }
  .courses .course-content .category {
    font-size: 9px;
  }
  .courses .course-content .description {
    font-size: 10px;
  }
  .courses .course-btn {
    padding: 8px 11px;
    font-size: 9px;
  }
}

.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(--red-main);
}

.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 img {
  max-width: 100%;
  height: 350px;
  width: 100%;
}

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

@media (max-width: 576px) {
  .trainers-index .member img {
    height: 220px;
    object-fit: cover;
  }

  .trainers-index .member h4 {
    font-size: 15px;
  }

  .trainers-index .member span {
    font-size: 11px;
  }

  .trainers-index .member p {
    font-size: 12px;
  }
}

.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(--red-main);
}

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

/*--------------------------------------------------------------
# Achievements Section
--------------------------------------------------------------*/
.achievements-section {
  background: var(--surface-color);
}

.achievements-slider-wrapper {
  position: relative;
  padding: 0 50px;
}

.achievements-section .achievement-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.achievements-section .achievement-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.achievements-section .achievement-item a {
  display: block;
  height: 100%;
}

.achievements-section .achievement-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.achievements-section .swiper-pagination {
  margin-top: 24px;
}

.achievements-section .swiper-button-next,
.achievements-section .swiper-button-prev {
  color: var(--default-color);
}

.achievements-section .swiper-button-next:hover,
.achievements-section .swiper-button-prev:hover {
  color: var(--red-main);
}

@media (max-width: 768px) {
  .achievements-slider-wrapper {
    padding: 0 20px;
  }

  .achievements-section .achievement-item img {
    height: 200px;
  }
}

/*--------------------------------------------------------------
# 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(--red-main);
}

.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(--red-main), 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(--red-main);
}

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

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

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

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

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


/*--------------------------------------------------------------
# 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(--red-main);
  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(--red-main);
}

/*--------------------------------------------------------------
# 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(--red-main);
}

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

.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(--red-main);
    background: var(--red-main);
  }
}

/*--------------------------------------------------------------
# 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(--red-main);
}

.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(--red-main);
}

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

/*--------------------------------------------------------------
# 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(--red-main);
  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(--red-main);
  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(--red-main), transparent 20%);
}

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

.pricing .advanced {
  background: var(--red-main);
  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: var(--red-main);
  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(--red-main);
}

.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(--red-main);
  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(--red-main), transparent 20%);
}

/*--------------------------------------------------------------
# Admission Form Section
--------------------------------------------------------------*/
.admission-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.admission-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.admission-form .form-control {
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  transition: border-color 0.3s;
}

.admission-form .form-control:focus {
  border-color: var(--red-main);
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.2);
}

.admission-form button.btn-get-started {
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  background: var(--red-main);
  color: #fff;
  border: none;
  transition: all 0.3s;
}

.admission-form button.btn-get-started:hover {
  background: color-mix(in srgb, var(--red-main), transparent 20%);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.admission-form button.btn-view-id {
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  transition: all 0.3s;
}

.admission-form button.btn-view-id:hover {
  background: color-mix(in srgb, var(--primary-blue), transparent 20%);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.admission-form small {
  font-size: 12px;
  color: #6c757d;
}

/*--------------------------------------------------------------
# Inquiry Page
--------------------------------------------------------------*/
.inquiry-section {
  position: relative;
}

.inquiry-info-card {
  background: linear-gradient(160deg, rgba(181, 31, 36, 0.96), rgba(117, 15, 18, 0.96));
  color: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 24px 60px rgba(92, 20, 23, 0.22);
}

.inquiry-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.inquiry-info-card h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 16px;
}

.inquiry-info-card p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}

.inquiry-points {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.inquiry-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.inquiry-point i {
  font-size: 20px;
  color: #ffd166;
  margin-top: 2px;
}

.inquiry-contact-list {
  display: grid;
  gap: 12px;
}

.inquiry-contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.inquiry-contact-list a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.inquiry-form-card {
  height: 100%;
}

.inquiry-form-card .section-title h2 {
  margin-bottom: 8px;
}

.inquiry-helper-text {
  max-width: 430px;
  color: var(--default-color);
  font-size: 14px;
}

@media (max-width: 991px) {
  .inquiry-info-card,
  .inquiry-form-card {
    padding: 28px 22px;
  }

  .inquiry-info-card h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Student ID Card
--------------------------------------------------------------*/
.id-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
}

.id-card-inner {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
}

/* CARD BASE */
.student-id-card.print-style {
  width: 560px;
  min-width: 560px;
  height: 360px;
  border: 1.5px solid #d4b15f;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
}

.id-card-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.btn-download-id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--red-main);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 50, 54, 0.3);
}

.btn-download-id:hover {
  background: color-mix(in srgb, var(--red-main) 85%, #000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 50, 54, 0.4);
}

.btn-download-id:active {
  transform: translateY(0);
}

/* HEADER */
.id-header {
  background: linear-gradient(to right, #0b7fa4, #3bb5d5);
  color: #ffffff;
  padding: 4px 10px 6px;
  box-sizing: border-box;
  overflow: hidden;
}

/* top line */
.header-top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  opacity: 0.95;
}

.header-top span:last-child {
  font-family: 'Noto Sans Devanagari', sans-serif;
}

/* main row */
.header-main {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

/* logo */
.header-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
  flex-shrink: 0;
}

.header-text {
  flex: 1;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  min-width: 0;
}

/* text block */
.header-text h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #ffd84d;
  letter-spacing: 0.2px;
  line-height: 1.15;
  word-wrap: break-word;
}

.header-text .tagline {
  margin: 1px 0 0;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
}

.header-text small {
  display: block;
  margin-top: 1px;
  font-size: 9px;
  color: #e9f6fb;
}

/* IDENTITY STRIP */
.id-title {
  background: #ec3236;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 16px;
  display: inline-block;
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}


/* BODY */
.id-body {
  position: relative;          /* 🔥 important */
  display: flex;
  gap: 18px;
  padding: 14px 16px 10px;
  box-sizing: border-box;
  overflow: hidden;            /* logo bahar na nikle */
}

/* 🔥 Background logo watermark */
.id-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/logo.png") no-repeat center;
  background-size: 170px;      /* logo size (adjustable) */
  opacity: 0.07;               /* watermark effect */
  z-index: 0;
  transform: rotate(-12deg);   /* premium tilt (optional) */
}

/* content upar rahe */
.id-body > div {
  position: relative;
  z-index: 1;
}

/* LEFT */
.left {
  width: 110px;
}

.photo {
  width: 92px;
  height: 118px;
  border: 1.5px solid #8a8a8a;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* DETAILS */
.right {
  flex: 1;
}

.right p {
  font-size: 14px;
  margin: 7px 0;
  padding-bottom: 2px;
  border-bottom: 1.5px dotted #6b6b6b;
}

.right strong {
  font-weight: 700;
}

/* ROLL NO */
.roll {
  text-align: right;
  border-bottom: none !important;
  margin-top: 10px;
  font-weight: 700;
}

/* FOOTER */
.id-footer {
  display: flex;
  justify-content: space-between;
  padding: 6px 30px 0;
  font-size: 12px;
  box-sizing: border-box;
}

.footer-block {
  text-align: center;
}

.sign {
  width: 140px;
  border-bottom: 1.5px solid #000;
  margin-bottom: 4px;
}

/* ID Card - Mobile Responsive */
@media (max-width: 600px) {
  .id-card-wrapper {
    padding: 12px 0;
  }

  .id-card-inner {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 12px 12px;
  }

  .id-card-inner::-webkit-scrollbar {
    height: 6px;
  }

  .id-card-inner::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }

  .id-card-inner::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  .student-id-card.print-style {
    width: 340px;
    min-width: 340px;
    height: 220px;
    flex-shrink: 0;
  }

  .id-header {
    padding: 3px 8px 4px;
  }

  .header-top {
    font-size: 7px;
  }

  .header-main {
    gap: 5px;
    margin-top: 1px;
  }

  .header-logo {
    width: 32px;
    height: 32px;
  }

  .header-text h3 {
    font-size: 9px;
    line-height: 1.1;
  }

  .header-text .tagline {
    font-size: 8px;
    margin-top: 0;
  }

  .header-text small {
    font-size: 7px;
    margin-top: 0;
  }

  .id-title {
    font-size: 9px;
    padding: 2px 10px;
    top: 22%;
  }

  .id-body {
    padding: 8px 10px 6px;
    gap: 10px;
  }

  .left {
    width: 75px;
  }

  .photo {
    width: 65px;
    height: 85px;
  }

  .right p {
    font-size: 10px;
    margin: 4px 0;
  }

  .roll {
    font-size: 10px;
    margin-top: 4px;
  }

  .id-footer {
    padding: 4px 12px 0;
    font-size: 9px;
  }

  .footer-block .sign {
    width: 80px;
  }

  .id-body::before {
    background-size: 100px;
  }
}

@media (max-width: 600px) {
  .btn-download-id {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Results Section
--------------------------------------------------------------*/
.result-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.result-card h4 {
  font-weight: 600;
  color: #012970;
}

.table th {
  width: 40%;
  background: #f8f9fa;
}

#snackbar {
  visibility: hidden;
  min-width: 280px;
  background: #323232;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 14px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}
#snackbar.show { visibility: visible; }
#snackbar.success { background: #2e7d32; }
#snackbar.error { background: #c62828; }

.student-img {
    width: 150px;       /* fixed width */
    height: 150px;      /* fixed height */
    object-fit: cover;  /* image ko crop karke fit kare */
    border-radius: 8px; /* thoda rounded corner optional */
}

/*--------------------------------------------------------------
# Certificates Verification Result Card
--------------------------------------------------------------*/
.cert-result-card {
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  border: 1px solid rgba(15,23,42,0.08);
  background: #ffffff;
  padding: 24px 26px 20px;
}

.cert-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-photo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--red-main);
}

.cert-photo-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px dashed rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.25);
  font-size: 40px;
}

.cert-brand-header {
  border-bottom: 1px solid rgba(15,23,42,0.06);
  padding-bottom: 8px;
}

.cert-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.cert-brand-name {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.cert-brand-sub {
  font-size: 0.7rem;
}

.cert-header {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.cert-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cert-institute-name {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111827;
}

.cert-institute-sub {
  font-size: 0.7rem;
  color: #6b7280;
}

.cert-title {
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #dc2626;
}

.cert-student-row {
  padding-top: 14px;
}

.cert-student-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.cert-student-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
}

.cert-mainline {
  font-size: 0.92rem;
  color: #374151;
}

.cert-course-name {
  font-weight: 600;
  color: #2563eb;
}

.cert-meta {
  margin-top: 4px;
}

.cert-result-table th {
  width: 40%;
  background: #f3f4f6;
  font-weight: 600;
  text-align: left;
  vertical-align: middle;
}

.cert-result-table td {
  font-weight: 500;
  vertical-align: middle;
}

.cert-result-section h6 {
  font-weight: 600;
  color: #111827;
}

.cert-info-table th {
  width: 32%;
  font-weight: 600;
  font-size: 13px;
  color: #6c757d;
}

.cert-info-table td {
  font-size: 13px;
}

.cert-result-card h5 {
  font-weight: 600;
  color: #111827;
}

.cert-result-card .badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.cert-result-card .badge.bg-success {
  background: #16a34a !important;
}

.cert-result-card .badge.bg-danger {
  background: #dc2626 !important;
}

.cert-download-btn {
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cert-download-btn i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .cert-result-card {
    padding: 18px;
  }

  .cert-photo,
  .cert-photo-placeholder {
    width: 90px;
    height: 90px;
  }
}

.floating-socials {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}

.floating-socials .social {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}

.floating-socials .social:hover {
  transform: scale(1.08);
}

/* Brand Colors */
.whatsapp { background: #25d366; }
.instagram { background: #e4405f; }
.youtube { background: #ff0000; }
.facebook { background: #1877f2; }
.gmb { background: #4285f4; }
.call { background: #0d6efd; /* Call blue */}

.quick-enquiry-wrapper.left {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

/* Toggle Icon */
.quick-enquiry-toggle {
  width: 52px;
  height: 52px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Form Box */
.quick-enquiry-box {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 280px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.quick-enquiry-box.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Header */
.qe-header {
  background: #f8f9fa;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.qe-header i {
  cursor: pointer;
  font-size: 16px;
}

/* Form */
.quick-enquiry-box form {
  padding: 15px;
}

.quick-enquiry-box input,
.quick-enquiry-box select,
.quick-enquiry-box textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  resize: none;
}

.quick-enquiry-box select {
  cursor: pointer;
  appearance: auto;
}

.quick-enquiry-box button {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #0d6efd;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.quick-enquiry-box button:hover {
  background: #0b5ed7;
}

.quick-enquiry-box button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Homepage Lead Modal */
.lead-modal-content {
  border-radius: 18px;
  overflow: hidden;
  border: none;
}

.lead-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.lead-modal-image-wrap {
  height: 100%;
  min-height: 260px;
}

.lead-modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-modal-body {
  padding: 24px 24px 20px;
}

@media (max-width: 576px) {
  .lead-modal-body {
    padding: 20px 18px 18px;
  }
}

/* Quick Enquiry Toast */
.qe-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.qe-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.qe-toast.success {
  background: #198754;
  color: #fff;
}

.qe-toast.error {
  background: #dc3545;
  color: #fff;
}

@media (max-width: 576px) {
  .quick-enquiry-wrapper.left {
    left: 12px;
    bottom: 12px;
  }

  .quick-enquiry-box {
    width: calc(100vw - 40px);
    max-width: 320px;
  }
}

/*--------------------------------------------------------------
# Admin Tables
--------------------------------------------------------------*/
.admin-table-card {
  border-radius: 12px;
  overflow: hidden;
}

.admin-table-wrapper {
  max-height: 540px;
}

@media (max-width: 768px) {
  .admin-table-wrapper {
    max-height: 420px;
  }
}

.admin-table-card .table {
  font-size: 13px;
}

.admin-table-card thead th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 12px;
}

.admin-table-card tbody td,
.admin-table-card tbody th {
  padding-top: 8px;
  padding-bottom: 8px;
}

.admin-table-card tbody tr:hover {
  background: rgba(13, 110, 253, 0.03);
}

.admin-table-search .form-control {
  border-radius: 0 50px 50px 0;
}

.admin-table-search .input-group-text {
  border-radius: 50px 0 0 50px;
}

.admin-table-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.admin-table-pagination .pages {
  display: inline-flex;
  gap: 4px;
}

.admin-table-pagination button {
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
}

.admin-table-pagination .page-btn.active {
  background-color: var(--red-main);
  color: #fff;
  border-color: var(--red-main);
}

.admin-results-table th:nth-child(1),
.admin-results-table td:nth-child(1) {
  width: 12%;
}

.admin-results-table th:nth-child(2),
.admin-results-table td:nth-child(2) {
  width: 18%;
}

.admin-results-table th:nth-child(3),
.admin-results-table td:nth-child(3) {
  width: 16%;
}

.admin-results-table th:nth-child(4),
.admin-results-table td:nth-child(4) {
  width: 14%;
}

.admin-results-table th:nth-child(5),
.admin-results-table td:nth-child(5) {
  width: 10%;
}

.admin-results-table th:nth-child(6),
.admin-results-table td:nth-child(6) {
  width: 16%;
}

.admin-results-table th:nth-child(7),
.admin-results-table td:nth-child(7) {
  width: 14%;
}

.admin-admissions-table th:nth-child(1),
.admin-admissions-table td:nth-child(1) {
  width: 10%;
}

.admin-admissions-table th:nth-child(2),
.admin-admissions-table td:nth-child(2) {
  width: 15%;
}

.admin-admissions-table th:nth-child(3),
.admin-admissions-table td:nth-child(3) {
  width: 15%;
}

.admin-admissions-table th:nth-child(4),
.admin-admissions-table td:nth-child(4) {
  width: 15%;
}

.admin-admissions-table th:nth-child(5),
.admin-admissions-table td:nth-child(5) {
  width: 12%;
}

.admin-admissions-table th:nth-child(6),
.admin-admissions-table td:nth-child(6) {
  width: 15%;
}

.admin-admissions-table th:nth-child(7),
.admin-admissions-table td:nth-child(7) {
  width: 8%;
}

.admin-admissions-table th:nth-child(8),
.admin-admissions-table td:nth-child(8) {
  width: 10%;
}

.admin-enquiries-table th:nth-child(1),
.admin-enquiries-table td:nth-child(1) {
  width: 16%;
}

.admin-enquiries-table th:nth-child(2),
.admin-enquiries-table td:nth-child(2) {
  width: 14%;
}

.admin-enquiries-table th:nth-child(3),
.admin-enquiries-table td:nth-child(3) {
  width: 16%;
}

.admin-enquiries-table th:nth-child(4),
.admin-enquiries-table td:nth-child(4) {
  width: 26%;
}

.admin-enquiries-table th:nth-child(5),
.admin-enquiries-table td:nth-child(5) {
  width: 12%;
}

.admin-enquiries-table th:nth-child(6),
.admin-enquiries-table td:nth-child(6) {
  width: 16%;
}

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

/*--------------------------------------------------------------
# Global Mobile Typography Tweaks
# (Chhoti screens par overall font-size kam)
--------------------------------------------------------------*/
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 13px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 17px;
  }

  h5 {
    font-size: 15px;
  }

  h6 {
    font-size: 13px;
  }
}