<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
* Template Name: caddinfotech
* 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 &amp; 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: #01218e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accents-color:#5372d6; /* 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: hsl(0, 0%, 100%); /* 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: #001b8f; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5fcf80; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
  margin-top: 3%;
  
}

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



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

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


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;
  }
}
/*--------------------------------------
# add popup 
---------------------------------------*/
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 9999;
  }

  .popup-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    animation: popupFade 0.5s ease-in-out;
  }

  @keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  .popup-content h2 {
    color: #d62828;
  }

  .popup-content p {
    margin: 15px 0;
  }

  .close-btn {
    background: #d62828;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
/*--------------------------------------------------------------
header-row
----------------------------------------------------------------*/

#header-row .contact-icon {
  width: 45px;
  height: 45px;
  background-color: #01218e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}
#header-row .contact-icon:hover {
  width: 45px;
  height: 45px;
  background-color: #ec1f28;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}
#header-row .enquiry-btn,
#header-row .enquiry-btn:focus {
  color: #ffffff;
  background: #01218e;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.3s;
}
#header-row .enquiry-btn:hover {
  color: #ffffff;
  background: #ec1f28;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.3s;
}
#header-row .company-text {
  font-size: 14px;
  color: #555;
}

#header-row .logo {
  max-height: 100px;
}

/* ðŸ”½ Tablets and small desktops */
@media (max-width: 991.98px) {
  #header-row .header-row {
    flex-direction: column;
  }

  #header-row .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  #header-row .enquiry-btn {
    width: 100%;
    margin-top: 1rem;
  }

  #header-row .logo {
    margin-bottom: 1rem;
  }
}

/* ðŸ”½ Mobile phones */
@media (max-width: 768px) {
  #header-row .header-row,
  #header-row .contact-info, 
  #header-row .enquiry-btn {
    display: none; /* Hides elements on mobile */
  }
  #header-row .contact-info {
    text-align: left;
    font-size: 14px;
    margin: 0px;
  }

  #header-row .logo {
    margin-bottom: 1rem;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #000000;
  background-color: #ec1f28;
  padding: 2px 0;
  transition: all 0.5s;
  z-index: 997;
  justify-content: space-between;
}
.header .container-xl {
  justify-content: space-between;
}

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

.header .logo img {
  max-height: 75px;
  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 .social-links i {
  border: 2px solid #fff; /* corrected from 'none' */
  padding: 6px 10px;
  border-radius: 50%;
  color: #fff;
  margin: 0 10px;
  font-size: 16px;
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
  .header {
    padding: 2px 0;
  }
  .header .social-links i {
    padding: 6px 10px;
    margin: 0 8px;
    font-size: 14px;
  }
}

/* Small screens (mobiles) */
@media (max-width: 480px) {
  .header {
    padding: 2px 0;
  }
  .header .social-links i {
    padding: 6px 10px;
    margin: 0 5px;
    font-size: 12px;
  }
}



@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: 0px 30px;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 12px;
    font-size: 16px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

  .navmenu .dropdown&gt;.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&gt;ul {
    display: block;
  }
}

/* Modal Form Styling */
#enquiryModal .modal-content {
  border-radius: 15px;
  padding: 20px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#enquiryModal .modal-header {
  border-bottom: 1px solid #eaeaea;
  background-color: #f5f5f5;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

#enquiryModal .modal-title {
  font-weight: 600;
  font-size: 20px;
  color: #333;
}

#enquiryModal .btn-close {
  background-color: #ccc;
  border-radius: 50%;
  padding: 5px;
}

#enquiryModal .form-label {
  font-weight: 500;
  color: #555;
}

#enquiryModal .form-control,
#enquiryModal .form-select {
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: none;
  transition: border 0.2s;
}

#enquiryModal .form-control:focus,
#enquiryModal .form-select:focus {
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

 .enquiry-btn{
  border: none;
  padding: 4px 10px;
  border-radius: 5px;
  color: white;
  background-color: #01218e;
  font-size: 16px;
  font-weight: 700;
}
/* Medium screens (tablets) */
@media (max-width: 768px) {
  .enquiry-btn {
    padding: 4px 8px;
    font-size: 14px;
  }
}

/* Small screens (mobiles) */
@media (max-width: 480px) {
  .enquiry-btn {
    padding: 4px 8px;
    font-size: 14px;
    margin: 6px 0;
  }
}
.enquiry-btn:hover{
  border: none;
  padding: 4px 10px;
  border-radius: 5px;
  color: white;
  background-color: #1439b3;
  font-size: 16px;
  font-weight: 700;
}

/* Responsive tweak */
@media (max-width: 576px) {
  #enquiryModal .modal-dialog {
    margin: 1rem;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 13px;
  position: relative;
  padding: 50px 0 0;
  margin: 0px;
}

/* Logo Styling */
.footer-about .footer-logo {
  width: 75%;
  max-width: 300px;
  display: block;
}
@media (max-width: 767px) {
  .footer-about {
    text-align: center;
  }

  .footer-about img,
  .footer-about p,
  .footer-about span {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}


.footer-tagline {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333; 
}
.footer .footer-about span {
  font-size: 13px;
  color: #333; 
}

@media (max-width: 768px) {
  .footer-logo {
    width: 80%;
    max-width: 150px;
  }

  .footer-tagline {
    font-size: 16px;  
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 70%;  
    max-width: 120px;  
  }

  .footer-tagline {
    font-size: 14px; 
  }
}

.ft{
  border-right: 1.5px solid #333;
}
@media (max-width: 991.98px) {
  .border-md-none {
    border-right: none !important;
  }
}

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

.footer .footer-about p {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-top: -7px;
    margin-bottom: 10px;
    color: #01218e;
    font-family: 'Dancing Script', cursive;
}
.footer  i {
  font-size: 16px;
  color: #ec1f28;
  margin-right: 5px;
}

.footer .social-links a i {
  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: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ec1f28;
  margin: 0px 10px;
}

.footer .social-links a:hover i {
  color: #ec1f28;
  background-color: #01218e;
  border-color: var(--accent-color);
}

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

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 13px;
  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: #333;
  font-size: 13px;
  display: inline-block;
  line-height: 0.5;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer-newsletter iframe {
  width: 100%;
  height: 275px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
.footer .copyright {
  padding: 15px 0px;
  color: #ffffff;
  background-color: #01218e;
}

.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;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color:  #ec1f28;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top i {
  font-size: 32px;
  color: #fff;
  transition: transform 0.3s;
}

.scroll-top:hover {
  background-color:  #ad0000;
}

.scroll-top:hover i {
  transform: translateY(-3px);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 10px;
  }

  .scroll-top i {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 5px;
  }

  .scroll-top i {
    font-size: 22px;
  }
}


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

/*--------------------------------------------------------------
# Global Page Titles &amp; Breadcrumbs
--------------------------------------------------------------*/

.page-title .heading  {
  position: relative;
  padding: 60px 0px;
  color: white;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}
.page-title .heading h1 {
  color: white;
}

/* Apply background image only to ODD sections */

.page-title .heading:nth-of-type(odd)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(/assets/img/hero_1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  z-index: -1;
}

/* Even sections remain normal (no background image) */


/* Even sections remain normal (no background image) */

.page-title {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #37423b;
  --accent-color: linear-gradient(to right, #4e5c9c,  #d14e4e);
  --surface-color: hsl(0, 0%, 100%);
  --contrast-color: #ffffff;
  position: relative;
}

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

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

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

.page-title nav a {
  color: #ffffff;
}
.page-title nav a:hover {
  color: #ec1f28;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  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: #eea0a0;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0px;
  scroll-margin-top: 900px;
  overflow: clip;
}
section {
  position: relative;
  padding: 60px 0px;
  color: white;
  font-size: 24px;
  z-index: 1;
  overflow: hidden;
}

section:nth-of-type(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/section-bg.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  opacity: 1; /* Adjust transparency */
  z-index: -1;
  padding: 60px 0px;

}


@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding: 50px 0px;
  position: relative;
  text-align: center;
}

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

.section-title h2::after,
.section-title h2::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ec1f28;
  margin: 4px 10px;
}

/* Responsive styles for mobile devices */
@media (max-width: 576px) {
  .section-title {
    padding: 30px 10px;
  }

  .section-title h2 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .section-title h2::after,
  .section-title h2::before {
    width: 60px;
    margin: 4px 5px;
  }
}


.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--nav-font);
}
/* Even section titles â€” heading */
section:nth-of-type(even) .section-title h2 {
  color: #dad7d7; /* or your desired color */
}

/* Even section titles â€” paragraph */
section:nth-of-type(even) .section-title p {
  color: #ffffff; /* or your desired color */
}

.section-title .mech span {
  padding: 0 10px;
  font-size: 30px;
  font-weight: 400;
  color: #c75268; /* Default color */
}

/* If you want the first paragraph's span to have a different color */
.section-title .civil span {
  color: #9ddf2c;
   padding: 0 10px;
  font-size: 30px;
  font-weight: 400;
}
/* If you want the first paragraph's span to have a different color */
.section-title .eee span {
   padding: 0 10px;
  font-size: 30px;
  font-weight: 400;
  color: #7034e9; /* Default color */
}
/* If you want the first paragraph's span to have a different color */
.section-title .web span {
   padding: 0 10px;
  font-size: 30px;
  font-weight: 400;
  color: #2382f7; /* Default color */
}
/* If you want the first paragraph's span to have a different color */
.section-title .fa span {
   padding: 0 10px;
  font-size: 30px;
  font-weight: 400;
  color:   #e02780; /* Default color */
}

.section-tt {
    position: relative;
    display: inline-block;
}

.section-tt::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--Red-color);
    z-index: -1;
}

.section-tt::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--Red-color);
    z-index: -1;
}

.section-tt.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-tt.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.slideshow-container {
  width: 100vw;
  position: relative;
  margin: 0 auto;
}


.mySlides {
  display: none;
  position: relative;
}

.slideshow-container img {
  width: 100%;
  height: 75vh; /* You can change this to 100vh, 120vh, or a fixed px value */
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  box-sizing: border-box;
}


.slide-content h2 {
  font-size: 35px;
  color: #ffff;
  font-weight: 700;
  }

.slide-content p {
  margin: 15px 0;
  font-size: 16px;
}
 
.slide-content .btn-getstarted,
.btn-getstarted:focus {
  color: var(--contrast-color);
  background: #0727b4;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.slide-content .btn-getstarted:hover,
.btn-getstarted:focus:hover {
  background: #001c99;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  user-select: none;
}

.prev { left: 10px; }
.next { right: 10px; }

.fade {
  animation-name: fade;
  animation-duration: 4s;
}

@keyframes fade {
  from { opacity: .4 }
  to { opacity: 1 }
}
@media (max-width: 768px) {
  .slideshow-container img {
    height: 70vh;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/* ===============================
   Enquiry Form - Interactive CSS
   =============================== */
  
   :root {
    --primary-color: #007BFF;
    --border-color: #ccc;
    --focus-shadow: rgba(0, 123, 255, 0.25);
    --main-gray-color: #f8f9fa;
    --light-gray-color: #ffffff;
    --main-primary-color: #007BFF;
    --main-white-color: #ffffff;
    --primary-black-color: #343a40;
  }
  
  /* Form Section */
.form-section {
  width: 100%;
  background-color: var(--main-gray-color);
  padding: 50px 0px;
}

.form-section .img-responsive {
  border-radius: 15px;
  max-width: 100%;
  height: auto;
  margin: 10px 0px;
}
.form-section .form-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
/* Enquiry Form */
.enquiry-form {
  background: var(--light-gray-color);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

/* Heading */
.enquiry-form .enquire {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ec1f28;
  text-align: center;
}

.enquiry-form .sub-title {
  color: #444;
}

/* Form Controls */
.enquiry-form .form-control {
  padding: 9px 15px;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 10px;
}

.enquiry-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 8px var(--focus-shadow);
  outline: none;
}

/* Dropdown Styling */
.enquiry-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='gray' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
} 
/* Submit Button */
.form-submit {
  background-color: #ec1f28;
  color: var(--main-white-color);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}
.form-section button:hover {
  background-color: #01218e;
  color: var(--main-white-color);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}


.gallery-slider .item {
  padding: 10px 15px;
  box-sizing: border-box;
  text-align: center;
}

.gallery-slider .item img {
  width: 100%;
  height: 275px;
  border-radius: 15px 15px 0 0;
}

.gallery-slider .item h4 {
  padding: 10px;
  font-size: 18px;
  color: #ffffff;
  background-color: #01218e;
  border-radius: 0 0 15px 15px;
}

.prev-arrow,
.next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  background: #f1f1f1;
  padding: 0px 16px 5px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.prev-arrow:hover,
.next-arrow:hover,
.prev-arrow:focus,
.next-arrow:focus {
  color: #ffffff;
  background: #000000;
  outline: none;
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .gallery-slider .item img {
    height: 200px;
  }

  .gallery-slider .item h4 {
    font-size: 16px;
    padding: 8px;
  }

  .prev-arrow,
  .next-arrow {
    font-size: 20px;
    padding: 0px 12px 4px;
  }
}

@media (max-width: 480px) {
  .gallery-slider .item img {
    height: 200px;
  }

  .gallery-slider .item h4 {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 1px 0;
}

.counts .stats-item {
  padding: 40px 0px;
  width: 100%;
}
.counts .stats-item .icon {
  font-size: 48px;
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: -15px;
}

.counts .stats-item span {
  font-size: 48px;
  color: #ec1f28;
  font-weight: 700;
}

.counts .stats-item p {
  color: #ffffff;
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 800;
}
.bdr {
  border-right: 1.5px solid white;
}

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

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

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

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

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

.why-us .why-box .more-btn:hover {
  color: #01218e;
  background: white;
  font-weight: 600;
}

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

.why-us .icon-box i {
  color: #ec1f28;
  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: #ffff;
  background: #01218e;
}

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

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

.features .features-item img {
  width: 125px;
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/

.courses .course-item {
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  margin: 10px 0px;
}
.course-item .img-fluid {
  width: 100%;
  height: 250px;
  border-radius: 15px 15px 0 0;
}
 .our-vision img,
.our-mission img{
  width: 100%;
}

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

/* Base Styling */
.category-1 , .category-2, 
.category-3, .category-4,
.category-5, .category-6 {
  color: #fff;
  padding: 5px 10px;
  margin: 0px;
  font-size: 16px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
/* Vibrant Background Colors */
.category-1 { 
  background: linear-gradient(135deg, #c4526c, #f14c2f);
  padding: 5px 10px;
  border-radius: 5px; 
}   /* Hot Pink to Orange */
.category-2 { 
  background: linear-gradient(135deg, #438d84, #9ddf2c);
  padding: 5px 10px;
  border-radius: 5px; 
}  /* Teal to Lime Green */
.category-3 { 
  background: linear-gradient(135deg, #9759ce, #7034e9);
  padding: 5px 10px;
  border-radius: 5px;
 }  /* Purple to Deep Blue */
.category-4 { 
  background: linear-gradient(135deg, #c28e4e, #f5cf24);
  padding: 5px 10px;
  border-radius: 5px;
}  /* Orange to Yellow */
.category-5 { background: linear-gradient(135deg, #50adc7, #2382f7);
  padding: 5px 10px;
  border-radius: 5px;
}  /* Sky Blue to Deep Blue */
.category-6 { background: linear-gradient(135deg, #b47548, #e02780);
  padding: 5px 10px;
  border-radius: 5px;
}  /* Orange to Pink */

/* Responsive Grid Layout */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}


.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: 16px;
  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
--------------------------------------------------------------*/
/* Welcome to Learn Styles */
.welcome-to-learn h1 {
    font-size: 30px;
    font-weight: 700;
}
.welcome-to-learn p {
    font-size: 18px;
    width: 90%;
}
.welcome-to-learn p i {
  color: rgb(1 33 142);
}
.welcome-to-learn .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* Optional responsive adjustments */
@media (max-width: 576px) {
    .welcome-to-learn .img-fluid {
        border-radius: 10px;
    }
}

/* Form Styling (if using forms in this section) */
.welcome-to-learn form .form-group,
.popup form .form-group {
    margin-bottom: 20px;
}

.welcome-to-learn form .form-control:focus,
.popup form .form-control:focus {
    box-shadow: none !important;
    border: 1px solid #ced4da !important;
}

.welcome-to-learn form .form-control:disabled,
.welcome-to-learn form .form-control:read-only,
.popup form .form-control:disabled,
.popup form .form-control:read-only {
    background-color: transparent;
}

/* Category Styles (if using in the same section) */
.category .bg-white.position-absolute {
    width: 50%;
    bottom: 0;
    right: 1px;
}

.category h1 {
    font-size: 28px;
}

.category a {
    height: 100%;
}

.about-us .content {
  padding: 0px 20px;
  text-align: left;
}
.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffff;
}

.about-us .content p{
  font-size: 18px;
  margin-right: 4px;
  color: #000000;
  padding-top: 10px;
  width: 90%;

}
.about-us .content .vision{
  font-size: 18px;
  margin-right: 4px;
  color: #ffffff;
}

.about-us .content p:last-child {
  margin-bottom: 0;
}
.about-us .img-fluid {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  display: block;
}
.about-us .wow .keywords {
  font-size: 16px;
}
.about-us .wow .read {
  color: var(--contrast-color);
  font-size: 16px;
  background: #ec1f28;
  border: 0;
  padding: 8px 15px;
  transition: 0.4s;
  border-radius: 5px;
}
.about-us .wow .read:hover {
  color: var(--contrast-color);
  font-size: 16px;
  background: #c46f73;
  border: 0;
  padding: 8px 15px;
  transition: 0.4s;
  border-radius: 5px;
}
/* Smaller devices (mobile) */
@media (max-width: 576px) {
  .about-us .img-fluid {
    max-width: 100%;
    border-radius: 10px;
  }
}

/* Medium devices (tablets) */
@media (min-width: 577px) and (max-width: 992px) {
  .about-us .img-fluid {
    max-width: 90%;
    border-radius: 12px;
  }
}

/* Custom colors using CSS variables (optional) */
:root {
  --main-primary-color: #007bff; /* Bootstrap default primary */
  --main-text-color: #222222;
  --light-gray-color: #f8f9fa; /* Bootstrap light bg */
}

/* Override section background if needed */
#objectives {
  background-color: var(--light-gray-color);
}

/* Title styling */
#objectives .title,
#objectives h3,
#objectives .card-title {
  color: var(--main-primary-color);
  font-size: 20px;
}
#objectives .card-title {
  color: #01218e;
  font-size: 28px;
  font-weight: 700;
}
#objectives .card-body span i {
  color: #ec1f28;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
}
#objectives .card h2 {
  font-family: inherit;
  visibility: visible;
}
#objectives .card  .count-icon {
  font-family: inherit;
  visibility: visible;
  font-weight: 900;
}
/* Paragraph styling */
#objectives .card-text {
  color: #555555;
  font-size: 18px;
  line-height: 1.6;
}

/* Cards styling */
#objectives .card {
  background-color: #bbc9f6;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  padding: 20px 20px 10px;
}
#objectives .card .card-body {
  height: 275px;
}

#objectives .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Number styling */
#objectives .display-6 {
  color: var(--main-text-color);
  font-weight: 700;
}

/* Responsive text-center override */
@media (max-width: 576px) {
  #objectives p {
    font-size: 0.9rem;
  }
}
/*---------------------------------------------------------------
#placement
-------------------------------------------------*/

#placement .content-pm {
  padding: 0px 20px;
  text-align: left;
}
#placement .content-pm h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
}

#placement .content-pm .plc-content{
  font-size: 18px;
  margin-right: 4px;
  color: #000000;
  padding-top: 10px;
  width: 90%;

}


#placement .content-pm p:last-child {
  margin-bottom: 0;
}
#placement .img-fluid {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  display: block;
}

/* Smaller devices (mobile) */
@media (max-width: 576px) {
  #placement .img-fluid {
    max-width: 100%;
    border-radius: 10px;
  }
}

/* Medium devices (tablets) */
@media (min-width: 577px) and (max-width: 992px) {
  #placement .img-fluid {
    max-width: 90%;
    border-radius: 12px;
  }
}

/*--------------------------------------------------------------
# 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: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  border-radius: 15px 0px;
  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;
  font-size: 16px;
  margin: 15px auto 15px auto;
}

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

.testimonials .swiper-pagination {
  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: #bbc9f6;
  border-radius: 10px;
  border-top: 4px solid var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -20px;
  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%);
  font-size: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact .info-item i {
  color: var(--accent-color);
  background: #ffffff;
  font-size: 20px;
  font-weight: 600;
  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 i:hover {
  color: var(--accent-color);
  background: #ec1f28;
  font-size: 20px;
  font-weight: 600;
  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;
  color: #ffffff;

}

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

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

}

.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: #a8a8a8;
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  font-size: 16px;
  background: #ec1f28;
  border: 0;
  padding: 8px 15px;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  color: var(--contrast-color);
  font-size: 16px;
  border: 0;
  padding: 8px 15px;
  transition: 0.4s;
  border-radius: 5px;
  background-color: #d66e73;
} 


.whatsapp-link {
  position: fixed;
  bottom: 20px;
  left: 25px;
  width: 70px;
  z-index: 1000;
}

.whatsapp-link img {
  width: 100%;
  max-width: 70px;
  cursor: pointer;
}

.whatsapp-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  animation: fadeEffect 1.3s infinite ease;
  box-shadow: 0 0 10px 0 #25D366;
  z-index: -1;
}

@keyframes fadeEffect {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-link {
    left: 15px;
    bottom: 15px;
    width: 60px;
  }

  .whatsapp-link::before {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .whatsapp-link {
    left: 10px;
    bottom: 10px;
    width: 50px;
  }

  .whatsapp-link::before {
    width: 60px;
    height: 60px;
  }
}


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

    .ad-content {
      background: white;
      padding: 2rem;
      border-radius: 8px;
      text-align: center;
      position: relative;
      max-width: 350px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .ad-close {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 20px;
      cursor: pointer;
    }

    .ad-button {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.5rem 1.2rem;
      background: #ff4400;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }</pre></body></html>