/**
* 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 #0788dc;*/
: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: #0a5c3f;/* 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: #0a5c3f; /* 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: #0a5c3f; /* 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(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* 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: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.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: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  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(--accent-color), 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);
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: #064635; /* Dark Green */
    color: #ffffff;
  font-size: 14px;
  padding-bottom: 20px;
  position: relative;
}

.footer .footer-top {
  padding-top: 20px;
}

.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: #ffffff;
}

.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, #ffffff, transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, #ffffff, transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #ffffff;
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 20px;
}

.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, #ffffff, transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #ffffff;
}

.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, #ffffff, transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: #ffffff;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: black;
}

.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: 5px;
  padding-bottom: 5px;
  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: var(--accent-color);
  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);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  position: relative;
  background-color: var(--background-color);
  z-index: 1;
  overflow: hidden; /* 👈 zaroori hai taaki overlay bahar na nikle */
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/slider2 (7) - Copy.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2; /* background ke liye */
}

.page-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* 👈 yeh dark overlay hai (0.5 = 50% black) */
  z-index: -1;
}



.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border: none !important;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: white;
}
.page-title .heading p {
  color:white;
  font-size: 18px;
  font-weight: 400;
}

.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%);
}
.breadcrumb-simple {
  color: #fff;          /* white text */
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  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: 60vh;
  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;
  }
}

/*--------------------------------------------------------------
# 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;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  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 .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.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);
}

.why-us .slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-us .slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.why-us .icon-box {
  min-width: 100%;
  box-sizing: border-box;
  transition: opacity 0.5s ease-in-out;
}

/* Row ke andar dono divs ko equal height dene ke liye */
.why-us .row {
  display: flex;
  align-items: stretch;
}

/* Dots (Pagination) */
.why-us .dots {
  text-align: center;
  margin-top: 15px;
}

.why-us .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.why-us .dot.active {
  background-color: var(--accent-color);
}

.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #4CAF50;
}



/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# 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);
}


/*--------------------------------------------------------------
# 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(--accent-color);
  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
--------------------------------------------------------------*/


.top-bar {
  background:hwb(20 2% 42%);
  color: white;
  padding: 5px 15px;
  font-size: 14px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
}
.contact-info a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
}


.social-links a {
  color: white;
  text-decoration: none;
  margin-left: 10px; 
  font-size: 16px;
}


.social-links a:hover, .contact-info a:hover {
  color: #f1c40f;
}
.sitename{
  color:rgb(1, 107, 178);
  font-weight: 600;
  margin-left: 3%;
  margin-top: 30px;
}

.top-bar2 {
      display: flex;
      align-items: center;
      background-color: white;
      padding: 5px 15px;
      font-size: 14px;
      position: relative;
      border-bottom: 1px solid rgb(214, 209, 209)
    }

    .contact-info {
      display: flex;
      align-items: center;
    }

    .contact-info .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .contact-info .logo img {
      height: 80px;
      border-radius: 50%;
      margin-left: 20px;
      margin-top: 20px;
    }
     
    

    .diagonal-section {
      position: absolute;
      right: 0;
      top: 10;
      height: 100%;
      width: 40%;
      background: linear-gradient(to right, #2b80e2, hsl(212, 97%, 13%));
      clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
      color: white;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding-right: 40px;
    }
    .affiliation { 
      font-size: 18px;
      text-align: right;
    } 
    .overview-image {
      text-align: center;
  }
  .overview-image img {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      object-fit: cover;
  }
  

  /* login pages css */
  .login-content-center {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .login-box {
      background-color: #fff;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      width: 500px;
      text-align: left;
  }

  
  .login-header {
      margin-bottom: 20px;
      font-size: 24px;
      color: rgb(76, 175, 162);
      text-align: center; 
  }

 
  .login-box h2 {
      font-family: 'Arial', sans-serif; 
      font-weight: bold;
      font-size: 28px;
      color: #4CAF50; 
      margin-bottom: 15px;
      text-transform: uppercase; 
  }

  
  .textbox {
      margin-bottom: 20px;
  }

  .textbox input {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
  }

  .textbox textarea {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
  }

  .textbox textarea:focus,
  .textbox input:focus {
      border-color: rgb(76, 175, 162);
      outline: none;
  }

  /* Forgot Password */
  .forgot-password a {
      font-size: 14px;
      color: rgb(76, 175, 162);
      text-decoration: none;
  }

  .forgot-password a:hover {
      text-decoration: underline;
  }

  /* Login Button */
  .button-container {
      margin-top: 20px;
  }

  .login-button {
      background-color: rgb(76, 175, 162);
      color: #fff;
      border: none;
      padding: 10px 20px;
      width: 100%;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
  }

  .login-button:hover {
      background-color: rgb(76, 175, 162);
  }

  /* library section */
  .body {
    font-family: Arial, sans-serif;
    background:  rgba(255, 255, 255, 0.8); 
    margin: 0;
    padding: 0;
    color: #333;
}

/* Content Container */
.content-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap; 
}


.box {
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff; 
    background: linear-gradient(to right, #2c3e50, #4ca1af);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(136, 34, 34, 0.3);
    cursor: pointer;
}


.box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    color: black; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}


.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-item {
  background: rgba(0, 0, 0, 0.3);
            margin: 10px 0;
            padding: 15px;
            border-left: 5px solid black;
            border-radius: 5px;
            transition: 0.3s;
}


.list-item:hover {
    background-color:  rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    color: #2c3e50; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .box {
        flex: 1 1 100%;
    }
}
/* criteria section */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}


.criteria-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 50px 10%;
  background-color: #FCE8D5;
  flex-wrap: wrap;
}


.criteria-card {
  flex: 1;
  background-color: #FFDAB9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}


.criteria-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1A237E;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: blink 1.5s infinite;
}
 .criteria-title p
 {
   color: rgb(18, 17, 17);
 }
.criteria-title i {
  color: #D32F2F;
}


.criteria-card ul {
  list-style: none;
  padding: 0;
}

.criteria-card ul li {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 10px;
}


.image-container img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
}


@media (max-width: 992px) {
  .criteria-section {
      flex-direction: column;
      text-align: center;
      padding: 20px;
  }
}
/* residential Section */
.residential-section-title {
  text-align: center;
  margin-bottom: 30px;
}

.residential-section-icon i {
  font-size: 50px;
  color: #2c3e50;
  margin-bottom: 15px;
}


.residential-section-title p {
  font-size: 1.2rem;
  color: #555;
}


.residential-facilities-container {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
  gap: 20px;
}


.facility-card {
  background-color: #13121215;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(65, 143, 215, 0);
  padding: 20px;
  width: calc(50% - 20px); 
  transition: transform 0.3s ease;
  text-align: center;
}


.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(219, 37, 37, 0.604);
  cursor: pointer;
}

.facility-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}


.facility-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 10px 0;
}


.facility-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}


@media (max-width: 768px) {
  .facility-card {
      width: 100%; 
  }
}

.content-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}


.info-box {
background: linear-gradient(to right, #2c3e50, #4ca1af);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: calc(33.333% - 20px);
  box-shadow: 0 4px 8px rgba(163, 45, 45, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}


.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}


.info-title {
  font-size: 1.5rem;
  color:rgb(0, 0, 0);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box p {
  font-size: 1rem;
  color: white;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .info-box {
      width: 100%; 
  }
}
/* syllabussection */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;

  color:#fff;
}
.main-header {
  background: linear-gradient(to right, #2c3e50, #4ca1af);
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  letter-spacing: 2px;
}

.nav-link:hover {
  color:  black;
  transform: scale(1.1);
}
.content-box {
  width: 90%;
  margin: 30px auto;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.subject-container {
  background: linear-gradient(to right, #2c3e50, #4ca1af);
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  /* box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); */
  width: 48%; 
  box-sizing: border-box;
}
.section-title {
  color: black;
  text-transform: uppercase;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); */
}
.list-items {
  list-style: none;
  padding: 0;
}
.list-item {
  
  margin: 10px 0;
  padding: 15px;
  border-left: 5px solid  black;
  border-radius: 5px;
  transition: 0.3s;
}
.list-item:hover {
 
  transform: translateX(10px);
}
@media (max-width: 768px) {
  .subject-container {
      width: 100%; 
  }
}

/* calender section */
.calendar-section {
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 1000px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
  background-color: #fff; 
  border: 1px solid #ddd; 
}

.calendar-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2c3e50;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


.calendar-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  min-width: 600px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}


.calendar-table thead {
  background-color: #2c3e50;
  color: #fff;
}

.calendar-table th {
  padding: 15px 20px;
  text-align: center;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calendar-table tbody tr {
  background-color: #f9f9f9;
  transition: background 0.3s ease;
}

.calendar-table tbody tr:hover {
  background-color: #e0e0e0;
}

.calendar-table td {
  padding: 12px 15px;
  text-align: center;
  font-size: 1rem;
  color: #333;
  border: 1px solid #ddd;
}


@media (max-width: 768px) {
  .calendar-section {
      padding: 30px 15px;
  }

  .calendar-table th, .calendar-table td {
      padding: 10px;
      font-size: 0.9rem;
  }
}
/* research section */

.section-title {
text-align: center;
margin-bottom: 30px;
}

.research-icon i {
font-size: 50px;
color: #2c3e50;
margin-bottom: 15px;
}

.section-title p {
font-size: 1.2rem;
color: #5e5858;
}

.research-container {
display: flex;
flex-wrap: wrap; 
justify-content: space-between;
gap: 20px;
}


.research-card {
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
width: calc(50% - 20px);
transition: transform 0.3s ease;
text-align: center;
}


.research-card:hover {
transform: translateY(-10px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
cursor: pointer;
}


.research-card img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 15px;
}

.research-card h3 {
font-size: 1.5rem;
color: #2c3e50;
margin: 10px 0;
}


.research-card p {
font-size: 1rem;
color: #666;
line-height: 1.5;
}


@media (max-width: 768px) {
.research-card {
width: 100%; 
}
}


.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 40px;
}

.text-section, .image-section {
  flex: 1;
  margin: 20px;
  min-width: 350px;
}

.text-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: italic;
  color: #004d99;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 100%;
  margin-bottom: 20px;
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-section p {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}


.related-section h2 {
  font-size: 2.3rem;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}


.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  padding: 40px 0;
}


.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border-radius: 12px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
  min-height: 430px; 
}

.card:hover {
  transform: scale(1.08);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background-color: #008080;
  color: white;
  min-height: 160px; 
}


.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}


.card-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}


@keyframes blinkText {
  0% { color: yellow; }
  100% { color: white; }
}

/* examsection */
.exam-container {
  width: 80%;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  color: #000;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}


.exam-header h2 {
  text-align: center;
  font-size: 30px;
  color: #000;
  margin-bottom: 10px;
}

.exam-header p {
  text-align: center;
  font-size: 16px;
  color: #555;
}


.exam-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.exam-table {
  width: 100%;
  border-collapse: collapse;
}

.exam-table th,
.exam-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
}

.exam-table th {
  background-color: #000;
  color: #fff;
  font-weight: bold;
}

.exam-table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.exam-table tr:hover {
  background-color: #ddd;
}


.exam-guidelines {
  margin-top: 40px;
}

.exam-guidelines h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 15px;
  color: #000;
}

.exam-guidelines ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
}

.exam-guidelines li {
  margin-bottom: 10px;
}

/* Notice */
.exam-notice {
  margin-top: 40px;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}

.exam-notice h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 15px;
  color: #000;
}

.exam-notice ul {
  list-style-type: circle;
  padding-left: 20px;
  color: #333;
}

.exam-notice li {
  margin-bottom: 10px;
}


@media (max-width: 768px) {
  .exam-container {
    width: 95%;
    padding: 15px;
  }

  .exam-header h2 {
    font-size: 24px;
  }

  .exam-table th, .exam-table td {
    padding: 8px;
  }

  .exam-guidelines h3,
  .exam-notice h3 {
    font-size: 20px;
  }
}

/* fees section */
.content-container {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #000000;
}

.content-container h2, .content-container h3 {
  text-align: center;
  margin: 20px 0;
  color: #000000;
}

.fee-table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #000000;
}

.fee-table, .fee-table th, .fee-table td {
  border: 1px solid #000000;
}

.fee-table th, .fee-table td {
  padding: 12px;
  text-align: center;
}

.fee-table th {
  background-color: #000000;
  color: #ffffff;
}

.fee-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.highlight-row {
  background-color: #eaeaea;
  font-weight: bold;
}

/* gallery section--> */

.school-gallery-section {
  font-family: Arial, sans-serif;
  background-color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.school-gallery-section h2 {
  color: red;
  font-size: 30px;
  font-weight: bold;
  animation: blinkText 1s infinite alternate;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


.school-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto 0;
}


.school-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}


.school-gallery img:hover {
  transform: scale(1.03);
}


@keyframes blinkText {
  0% { opacity: 1; }
  100% { opacity: 0.6; }
}


@media (max-width: 768px) {
  .school-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .school-gallery {
    grid-template-columns: 1fr;
  }
}
.program-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.missionblink, .visionblink {
  animation: blink 2s infinite;
  color: #0d6efd; 
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.related-section ul li {
  font-size: 16px;       /* text size visible ho */
  color: #000;           /* black color */
  line-height: 1.8;      /* spacing achha lage */
  list-style: none;      /* default bullets hatane ke liye */
}
.related-section p {
  font-size: 16px;     /* normal size */
  color: #000;         /* black text */
  line-height: 1.6;    /* spacing achha ho */
  margin-bottom: 10px; /* thoda gap neeche */
}
.related-section h2,
.related-section h3 {
  color: #222;       /* dark heading color */
  margin-bottom: 10px;
}
.related-section {
  padding: 20px 40px;   /* upar-neeche 20px, left-right 40px */
  margin: 20px auto;    /* thoda bahar ka gap */
  max-width: 1200px;    /* content ko center aur limited width me rakhega */
}
.related-section p, 
.related-section ul {
  margin-bottom: 15px;  /* har paragraph aur list ke neeche gap */
}

.blink {
  animation: blinkAnim 1.5s infinite;
  color: #c82333; /* red highlight */
}


@keyframes blinkAnim {
  50% { opacity: 0; }
}
.blink-multicolor {
  font-weight: bold;
  animation: blinkColor 2s infinite;
}

@keyframes blinkColor {
  0%   { color: red; }
  33%  { color: green; }
  66%  { color: blue; }
  100% { color: red; }
}

.school-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.school-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.school-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0,0,0,0.3);
}
  #hero1 {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* transition: background-image 1s ease-in-out; */
  }

  .hero1-text {
    margin-top: 50px;
    position: absolute;
    text-align: center;
    color: white;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(9, 9, 9, 0.7);
  }

  .hero1-text h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color:white;
    
  }

  .hero1-text p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color:white;
  }

  .hero1-text .btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
  }

  /* Optional: dark overlay on image */
  #hero1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }

  
  .approved-section {
  text-align: center;
  padding: 40px 0;
}

.approved-logos {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;    /* align vertically */
  gap: 40px;              /* space between logos */
  flex-wrap: wrap;        /* responsive on small screens */
  margin-top: 20px;
}

.approval-logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%; /* round shape */
  object-fit: cover;
  border: 3px solid #ddd;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease-in-out;
}

.approval-logo img:hover {
  transform: scale(1.1);
}
.approval-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease-in-out;
}

.approval-logo:hover {
  transform: scale(1.1);
}

.announcement-marquee {
  display: flex;
  flex-direction: column;
  height: 415px; 
  border-radius: 10px;
  padding: 12px;
  background: #f4fcf8; /* light soft bg */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
}

.announcement-marquee h3 {
  margin: 0 0 12px 0;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  border-left: 5px solid #0a5c3f;
  padding-left: 8px;
}

/* Scrolling */
.marquee-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  flex-direction: column;
  animation: scroll-up 8s linear infinite;
}

.marquee-inner {
  display: flex;
  flex-direction: column;
}

.marquee-item {
  margin: 0;
  padding: 8px 12px;
  font-size: 0.95rem;
  color: #05472c;
  font-weight: 500;
  line-height: 1.4;
  border-left: 3px solid #8bc34a; /* green accent */
  background: #ffffffc7;
  border-radius: 4px;
  margin-bottom: 8px;
  transition: background 0.3s;
}

.marquee-item:nth-child(even) {
  background: #e8f5e9;
}

.marquee-item:hover {
  background: #dcedc8;
}

/* Hover pause */
.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}

/* Animation */
@keyframes scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Blinking colors */
.blink-multicolor {
  animation: blinkColors 2s linear infinite;
  font-weight: 600;
}

@keyframes blinkColors {
  0%   { color: red; }
  33%  { color: green; }
  66%  { color: blue; }
  100% { color: red; }
}
/* Row ke andar jo bhi col hai usko full stretch karao */
.notices-quicklinks .row {
  display: flex;
  align-items: stretch;
}

/* Har col ko flex banado */
.notices-quicklinks .col-lg-8,
.notices-quicklinks .col-lg-4 {
  display: flex;
}

/* Card full height le aur andar ka content flex column ho */
.notices-quicklinks .card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.btn-learn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0a5c3f, #28a745); /* gradient green */
  border: none;
  border-radius: 50px; /* pill shape */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.btn-learn:hover {
  background: linear-gradient(135deg, #28a745, #0a5c3f);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Ripple / Shine Effect */
.btn-learn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
}

.btn-learn:hover::after {
  left: 100%;
  transition: left 0.5s ease;
}

