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

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* ==================================================
   Premium Fonts – Posh IT / Software Company
   ================================================== */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --heading-font: "Playfair Display", Georgia, serif;
  --nav-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ==================================================
   Global Colors – Royal Blue Luxury Theme
   ================================================== */
:root { 
  --background-color: #ffffff;
  --default-color: #4a4a4a;       /* Refined body text */
  --heading-color: #0b1c2d;       /* Deep navy-charcoal */
  --accent-color: #1f3a8a;        /* ROYAL BLUE (posh, not bright) */
  --surface-color: #f6f7fb;       /* Elegant soft gray */
  --contrast-color: #ffffff;
}

/* ==================================================
   Navigation Colors
   ================================================== */
:root {
  --nav-color: #0b1c2d;
  --nav-hover-color: #1f3a8a;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #0b1c2d;
  --nav-dropdown-hover-color: #1f3a8a;
}

/* ==================================================
   Color Presets
   ================================================== */
.light-background {
  --background-color: #eef1f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #020617;
  --default-color: #e5e7eb;
  --heading-color: #ffffff;
  --surface-color: #0b1c2d;
  --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: linear-gradient(135deg, var(--accent-color), #2563eb) !important;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  transition: all 0.35s ease;

}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .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>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

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

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

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* ==================================================
   MODERN ROYAL BLUE HEADER & NAVBAR (FULL FILE)
   Responsive • Clean • Premium IT UI
   ================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --accent-color: #1f3a8a; /* Royal Blue */
  --heading-color: #0b1c2d;
  --nav-color: #1e293b;
  --nav-hover-color: #1f3a8a;
  --background-color: #ffffff;
  --surface-color: #f6f7fb;
  --contrast-color: #ffffff;
  --default-color: #475569;

  --nav-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 997;
  background: #ffffff;
  border-bottom: 1px solid #eef2f7;
  padding: 14px 0;
  transition: all 0.3s ease;
}

/* Scroll effect */
.scrolled .header {
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* Logo */
.header .logo {
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: 40px;
}

/* ---------- CTA BUTTON ---------- */
.header .btn-getstarted {
  background: var(--accent-color);
  color: #fff;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 999px;
  margin-left: 28px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 22px rgba(31, 58, 138, 0.25);
}

.header .btn-getstarted:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(31, 58, 138, 0.35);
}

/* ---------- NAV MENU DESKTOP ---------- */
@media (min-width: 1200px) {

  .navmenu {
    display: flex;
    align-items: center;
  }

  .navmenu ul {
    display: flex;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    color: var(--nav-color);
    padding: 8px 14px;
    border-radius: 999px;
    transition: all 0.25s ease;
  }

  .navmenu a:hover {
    background: rgba(31, 58, 138, 0.08);
    color: var(--nav-hover-color);
  }

  .navmenu .active {
    background: rgba(31, 58, 138, 0.12);
    color: var(--nav-hover-color);
  }

  .mobile-nav-toggle {
    display: none;
  }
}

/* ---------- NAV MENU MOBILE ---------- */
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    color: var(--heading-color);
    margin-left: auto;
  }

  .navmenu {
    position: relative;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 72px 16px 16px 16px;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    z-index: 9998;
  }

  .navmenu a {
    display: block;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    color: var(--nav-color);
    padding: 14px 22px;
    margin: 4px 12px;
    border-radius: 12px;
    transition: all 0.25s ease;
  }

  .navmenu a:hover,
  .navmenu .active {
    background: rgba(31, 58, 138, 0.08);
    color: var(--nav-hover-color);
  }

  /* Mobile active state */
  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.6);
    z-index: 9997;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 32px;
    color: #ffffff;
    z-index: 9999;
  }

  .header .btn-getstarted {
    padding: 8px 18px;
    font-size: 14px;
    margin-left: 12px;
  }
}

/* ---------- EXTRA SMALL DEVICES ---------- */
@media (max-width: 480px) {
  .header .logo img {
    max-height: 34px;
  }

  .header .btn-getstarted {
    padding: 7px 16px;
  }
}

/*--------------------------------------------------------------
# Footer – Modern Premium UI
--------------------------------------------------------------*/

.footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #cbd5e1;
  font-size: 14px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Decorative top border glow */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
}

/* Footer top */
.footer .footer-top {
  padding: 70px 0 40px;
}

/* Logo */
.footer .footer-about .logo span {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: #ffffff;
}

/* Contact text */
.footer .footer-about p {
  color: #94a3b8;
  line-height: 1.7;
}

/* Social Icons */
.footer .social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 12px;
  transition: all 0.35s ease;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

/* Headings */
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
}

.footer h4::after {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 10px;
}

/* Footer links */
.footer .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-links ul a {
  color: #94a3b8;
  transition: all 0.3s ease;
  position: relative;
}

.footer .footer-links ul a::before {
  content: "›";
  position: absolute;
  left: -14px;
  opacity: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.footer .footer-links ul a:hover {
  color: #ffffff;
  padding-left: 10px;
}

.footer .footer-links ul a:hover::before {
  opacity: 1;
}

/* Newsletter */
.footer .footer-newsletter p {
  color: #94a3b8;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 25px;
  padding: 6px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  color: #e2e8f0;
}

.footer .footer-newsletter .newsletter-form input[type=email]::placeholder {
  color: #94a3b8;
}

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

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  padding: 10px 22px;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 20%)
  );
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
}

/* Copyright */
.footer .copyright {
  padding: 20px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  margin-top: 40px;
}

.footer .copyright p {
  margin: 0;
  color: #94a3b8;
}

.footer .copyright .sitename {
  color: #ffffff;
  font-weight: 600;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .footer .footer-top {
    padding: 50px 0 30px;
  }

  .footer .social-links {
    justify-content: flex-start;
  }
}




@media (max-width: 768px) {

  /* Keep container padding */
  .footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Stack columns naturally */
  .footer .row > div {
    margin-bottom: 28px;
  }

  /* Text stays LEFT aligned */
  .footer,
  .footer h4,
  .footer p,
  .footer ul,
  .footer li,
  .footer a {
    text-align: left !important;
  }

  /* Social icons aligned left */
  .footer .social-links {
    justify-content: flex-start;
  }

  /* Newsletter full width but aligned nicely */
  .footer .footer-newsletter .newsletter-form {
    max-width: 100%;
  }

  /* Copyright centered only */
  .footer .copyright {
    text-align: center;
  }
}

@media (max-width: 768px) {

  /* Footer content stays left aligned */
  .footer {
    text-align: left;
  }

  /* Force copyright to center ONLY */
  .footer .copyright,
  .footer .copyright p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

}

/*--------------------------------------------------------------
# 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 – Modern Floating UI
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: -60px;
  z-index: 99999;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 20%)
  );

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  opacity: 0;
  visibility: hidden;

  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon */
.scroll-top i {
  font-size: 26px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

/* Hover effect */
.scroll-top:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 45px color-mix(in srgb, var(--accent-color), transparent 45%);
}

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

/* Active (visible) state */
.scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 24px;
}

/* Subtle pulse glow */
.scroll-top::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.25;
  filter: blur(18px);
  z-index: -1;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .scroll-top {
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .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 & Breadcrumbs – Modern UI
--------------------------------------------------------------*/
.page-title {
  --default-color: var(--contrast-color);
  --heading-color: var(--contrast-color);

  position: relative;
  overflow: hidden;
  color: var(--default-color);
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 18%)
  );
}

/* subtle background glow */
.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.15),
    transparent 60%
  );
  z-index: 0;
}

/* ---------------- Heading ---------------- */
.page-title .heading {
  position: relative;
  z-index: 1;
  padding: 90px 0 70px;
  text-align: center;
}

.page-title .heading h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.page-title .heading p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/* ---------------- Breadcrumbs ---------------- */
.page-title .breadcrumbs {
  position: relative;
  z-index: 1;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.page-title .breadcrumbs ol {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  list-style: none;
  margin: 0;
  padding: 0;

  font-size: 14px;
  font-weight: 600;
}

/* breadcrumb items */
.page-title .breadcrumbs ol li {
  display: flex;
  align-items: center;
}

/* links */
.page-title .breadcrumbs ol li a {
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--default-color);
  transition: 0.3s ease;
}

.page-title .breadcrumbs ol li a:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* separator */
.page-title .breadcrumbs ol li + li::before {
  content: "›";
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

/* current page */
.page-title .breadcrumbs ol li.current {
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--contrast-color);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
  .page-title .heading {
    padding: 70px 0 55px;
  }

  .page-title .heading h1 {
    font-size: 32px;
  }

  .page-title .heading p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# 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 – Modern Royal Blue (Posh UI)
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f7fb; /* soft off-white for premium contrast */
}

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

/* Elegant dark royal-blue overlay */
.hero:before {
  content: "";
  background: linear-gradient(
    135deg,
    rgba(10, 25, 74, 0.75),
    rgba(15, 32, 90, 0.65)
  );
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.hero p {
  color: rgba(245, 247, 251, 0.85);
  margin: 12px 0 0 0;
  font-size: 20px;
  line-height: 1.6;
}

/* Premium CTA Button */
.hero .btn-get-started {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.8px;
  display: inline-block;
  padding: 10px 38px;
  border-radius: 50px;
  transition: all 0.4s ease;
  margin-top: 32px;
  border: 2px solid #4c6fff; /* royal blue accent */
  color: #ffffff;
  background: transparent;
}

/* Smooth luxury hover */
.hero .btn-get-started:hover {
  background: linear-gradient(
    135deg,
    #4c6fff,
    #2f4ed8
  );
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(76, 111, 255, 0.35);
  transform: translateY(-2px);
}

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

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

/*--------------------------------------------------------------
# About Section – Modern Royal Blue UI
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
  background: #f7f9fd; /* soft luxury background */
}

.about .container {
  position: relative;
}

/* Image styling */
.about img {
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(15, 32, 90, 0.18);
  transition: transform 0.5s ease;
}

.about img:hover {
  transform: translateY(-6px);
}

/* Content Card Feel */
.about .content {
  background: #ffffff;
  padding: 42px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(15, 32, 90, 0.08);
}

/* Heading */
.about .content h3 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0f205a; /* deep royal blue */
  line-height: 1.35;
  margin-bottom: 20px;
}

/* Paragraphs */
.about .content p {
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 18px;
}

/* Optional list styling (if enabled later) */
.about .content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about .content ul li {
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #374151;
}

.about .content ul i {
  font-size: 1.3rem;
  margin-right: 10px;
  color: #4c6fff;
}

/* Read More Button – Premium CTA */
.about .content .read-more {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--accent-color), #2563eb);
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.8px;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  transition: all 0.35s ease;

}

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

/* Hover Effects */
.about .content .read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(76, 111, 255, 0.45);
}

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

/* Responsive polish */
@media (max-width: 991px) {
  .about .content {
    padding: 30px;
  }

  .about .content h3 {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
# Counts Section – Modern Royal Blue UI
--------------------------------------------------------------*/
.counts {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

/* Card-style counter */
.counts .stats-item {
  background: #ffffff;
  padding: 40px 20px !important;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(15, 32, 90, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* subtle top accent line */
.counts .stats-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 4px;
  background: linear-gradient(135deg, #4c6fff, #2f4ed8);
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
}

/* Hover elevation */
.counts .stats-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(15, 32, 90, 0.15);
}

/* Number styling */
.counts .stats-item span {
  font-size: 52px;
  display: block;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #4c6fff, #2f4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Label text */
.counts .stats-item p {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #4b5563;
}

/* Responsive polish */
@media (max-width: 768px) {
  .counts {
    padding: 60px 0;
  }

  .counts .stats-item {
    padding: 30px 15px;
  }

  .counts .stats-item span {
    font-size: 44px;
  }
}

/*--------------------------------------------------------------
# Why Us Section – Modern Royal Blue UI
--------------------------------------------------------------*/
.why-us {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

/* Left feature box */
.why-us .why-box {
  background: linear-gradient(135deg, #0a194a, #0f205a);
  color: #ffffff;
  padding: 45px 35px;
  border-radius: 22px;
  height: 100%;
  box-shadow: 0 30px 80px rgba(15, 32, 90, 0.25);
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 25px;
  line-height: 1.3;
  color: #fff;
}

.why-us .why-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* CTA button */
.why-us .why-box .more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 42px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  background: linear-gradient(135deg, #4c6fff, #2f4ed8);
  color: #ffffff;
  transition: all 0.4s ease;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.why-us .why-box .more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(76, 111, 255, 0.45);
}

.why-us .why-box .more-btn:hover i {
  transform: translateX(4px);
}

/* Right icon cards */
.why-us .icon-box {
  background: #ffffff;
  text-align: center;
  padding: 45px 30px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 32, 90, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* top accent line */
.why-us .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 4px;
  background: linear-gradient(135deg, #4c6fff, #2f4ed8);
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
}

.why-us .icon-box i {
  font-size: 34px;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #4c6fff, #2f4ed8);
  color: #ffffff;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(76, 111, 255, 0.35);
  transition: all 0.4s ease;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0f172a;
}

.why-us .icon-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* Hover interaction */
.why-us .icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(15, 32, 90, 0.15);
}

.why-us .icon-box:hover i {
  transform: scale(1.05);
}

/* Responsive tuning */
@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
  }

  .why-us .why-box h3 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Features Section – Placement Companies (Modern UI)
--------------------------------------------------------------*/
.features {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

/* Logo card */
.features .features-item {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 170px;
  height: 100px;
  margin: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 32, 90, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* subtle accent line */
.features .features-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #4c6fff, #2f4ed8);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

/* Logo styling */
.features img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.4s ease;
}

/* Hover interaction */
.features .features-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(15, 32, 90, 0.15);
}

.features .features-item:hover::before {
  width: 60%;
}

.features .features-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive tuning */
@media (max-width: 768px) {
  .features {
    padding: 60px 0;
  }

  .features .features-item {
    width: 150px;
    height: 90px;
  }

  .features img {
    max-height: 50px;
  }
}

/*--------------------------------------------------------------
# Courses Section – Modern UI Upgrade
--------------------------------------------------------------*/

.courses.section {
  padding-bottom: 20px !important;
}

/* Course Card */
.courses .course-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.courses .course-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Course Image */
.courses .course-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.courses .course-item:hover img {
  transform: scale(1.08);
}

/* Course Content */
.courses .course-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Category Badge */
.courses .course-content .category {
  background: linear-gradient(135deg, var(--accent-color), #3b82f6);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.4px;
}

/* Price */
.courses .course-content .price {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-color);
}

/* Title */
.courses .course-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 14px 0 10px;
  line-height: 1.3;
}

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

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

/* Description */
.courses .course-content .description {
  font-size: 14.5px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Trainer Section */
.courses .trainer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* View Details */
.courses .trainer-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.courses .trainer-profile i {
  font-size: 18px;
  color: var(--accent-color);
}

.courses .trainer-profile .trainer-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.courses .trainer-profile .trainer-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Duration + Mode */
.courses .trainer-rank {
  font-size: 13.5px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.courses .trainer-rank i {
  color: var(--accent-color);
}

/* View More Button */
.courses .read-more {
  background: linear-gradient(135deg, var(--accent-color), #2563eb);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.6px;
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 30px auto;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  transition: all 0.35s ease;
}

.courses .read-more i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.courses .read-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.45);
}

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

/*--------------------------------------------------------------
# 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 – Modern UI
--------------------------------------------------------------*/
.about-us {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-us .container {
  max-width: 1200px;
}

/* .about-us .row {
  align-items: center;
} */

/* Image Styling */
.about-us img {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-us img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

/* Content Card */
.about-us .content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Heading */
.about-us .content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--heading-color);
}

/* Description */
.about-us .content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 24px;
}

/* Checklist */
.about-us .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us .content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--default-color);
}

/* Icon */
.about-us .content ul i {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Text */
.about-us .content ul span {
  line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .about-us {
    padding: 80px 0;
  }

  .about-us .content {
    padding: 30px;
    margin-top: 30px;
  }

  .about-us .content h3 {
    font-size: 1.9rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section – Modern UI Upgrade
--------------------------------------------------------------*/

.testimonials {
  position: relative;
}

/* Wrapper spacing */
.testimonials .testimonial-wrap {
  padding: 20px;
}

/* Testimonial Card */
.testimonials .testimonial-item {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 40px 30px 35px;
  margin: 25px 15px;
  position: relative;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Profile Image */
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--background-color);
  margin: -80px auto 15px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Name */
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 4px;
  color: var(--heading-color);
}

/* Role */
.testimonials .testimonial-item h4 {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin-bottom: 10px;
}

/* Stars */
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #fbbf24;
  font-size: 16px;
  margin: 0 1px;
}

/* Quote Icons */
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  font-size: 28px;
}

.testimonials .testimonial-item .quote-icon-left {
  margin-right: 5px;
}

.testimonials .testimonial-item .quote-icon-right {
  margin-left: 5px;
  transform: scale(-1, -1);
}

/* Testimonial Text */
.testimonials .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/* Swiper Pagination */
.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  opacity: 1;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 767px) {
  .testimonials .testimonial-item {
    padding: 35px 25px 30px;
    margin: 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-img {
    margin-top: -70px;
  }
}

/* ============================================================
   COURSE DETAILS – COMPLETE MODERN UI CSS
============================================================ */

/* --------- GLOBAL --------- */
.course-details,
.tabs {
  background: #f8fafc;
}

.course-details.section,
.tabs.section {
  padding: 60px 0;
}

/* --------- COURSE HEADER --------- */
.course-header {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  margin-bottom: 50px;
}

.course-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.course-meta {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #e5e7eb;
}

/* Instructor */
.instructor {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #f1f5f9;
  padding: 14px 18px;
  border-radius: 16px;
}

.instructor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.instructor-info h6 {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
}

.instructor-info span {
  font-size: 13px;
  color: #64748b;
}

/* Stats */
.course-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stat-item {
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-item i {
  color: var(--accent-color);
}

/* --------- COURSE CONTENT --------- */
.course-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
}

.course-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

/* What you learn */
.what-you-learn {
  margin-top: 40px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.what-you-learn h3 {
  font-weight: 700;
  margin-bottom: 25px;
}

.learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.learn-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #334155;
}

.learn-list i {
  color: var(--accent-color);
  font-size: 18px;
}

/* --------- CURRICULUM --------- */
.course-curriculum {
  margin-top: 60px;
}

.course-curriculum h3 {
  font-weight: 700;
  margin-bottom: 30px;
}

.curriculum-section {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section-header {
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(37,99,235,0.03));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.lessons-count {
  font-size: 14px;
  color: #64748b;
}

.lesson-item {
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.lesson-item:hover {
  background: rgba(37,99,235,0.05);
  transform: translateX(4px);
}

.lesson-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lesson-info i {
  color: var(--accent-color);
}

.lesson-duration {
  font-size: 14px;
  color: #64748b;
}

/* --------- SIDEBAR --------- */
.course-sidebar {
  position: sticky;
  top: 120px;
}

/* Pricing Card */
.pricing-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 35px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  margin-bottom: 35px;
}

.price {
  margin-bottom: 10px;
}

.currency {
  font-size: 22px;
  vertical-align: top;
}

.amount {
  font-size: 54px;
  font-weight: 800;
  color: var(--accent-color);
}

.period {
  font-size: 14px;
  color: #64748b;
}

.original-price {
  text-decoration: line-through;
  color: #94a3b8;
  margin-bottom: 25px;
}

.course-features .feature {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.course-features i {
  color: var(--accent-color);
}

.btn-enroll {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  margin-bottom: 12px;
}

.btn-preview {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
}

/* Info + Tags */
.course-info-card,
.course-tags {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.course-info-card h4,
.course-tags h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 14px;
  background: rgba(37,99,235,0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 12px;
}

/* --------- TABS --------- */
.tabs {
  background: #fff;
}

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

.tabs .nav-link {
  border: none;
  background: #f1f5f9;
  border-radius: 12px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #475569;
}

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

.tab-content {
  background: #f8fafc;
  padding: 35px;
  border-radius: 20px;
}

/* --------- RESPONSIVE --------- */
@media (max-width: 768px) {
  .course-image img {
    height: 260px;
  }

  .course-content h2 {
    font-size: 28px;
  }

  .course-sidebar {
    position: static;
    margin-top: 40px;
  }

  .tab-content {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# 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 – Modern UI (Editorial / Premium)
--------------------------------------------------------------*/
.events {
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--background-color), white 95%),
    var(--background-color)
  );
}

.events .card {
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

/* Image Wrapper */
.events .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

/* Image */
.events .card-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* Gradient Overlay */
.events .card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.55)
  );
  opacity: 0.85;
}

/* Hover Zoom */
.events .card:hover img {
  transform: scale(1.12);
}

/* Card Body */
.events .card-body {
  margin-top: -70px;
  background: var(--surface-color);
  border-radius: 22px;
  padding: 40px 35px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

/* Hover Lift */
.events .card:hover .card-body {
  transform: translateY(-6px);
}

/* Title */
.events .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

/* Subtitle */
.events .fst-italic {
  font-size: 0.95rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin-bottom: 18px;
}

/* Text */
.events .card-text {
  font-size: 0.96rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Subtle Accent Line */
.events .card-body::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 35px;
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 40%)
  );
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .events .card-img img {
    height: 240px;
  }

  .events .card-body {
    margin-top: -50px;
    padding: 30px 25px;
  }
}

/*--------------------------------------------------------------
# Placement Section – Career Pillars UI
--------------------------------------------------------------*/
.pricing {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at top,
      color-mix(in srgb, var(--accent-color), white 92%),
      transparent 70%
    ),
    var(--background-color);
}

/* Placement Item */
.pricing .pricing-item {
  height: 100%;
  background: var(--surface-color);
  padding: 45px 35px;
  border-radius: 24px;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

/* Vertical Accent Line */
.pricing .pricing-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 65%)
  );
}

/* Hover Elevation */
.pricing .pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Title */
.pricing .pricing-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 14px;
  color: var(--heading-color);
}

/* Content */
.pricing .pricing-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .pricing-item ul li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  padding-left: 14px;
}

/* Featured Highlight (Interview Prep) */
.pricing .featured {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent-color), white 94%),
      var(--surface-color)
    );
  border: 1px solid
    color-mix(in srgb, var(--accent-color), transparent 65%);
}

.pricing .featured::before {
  width: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing {
    padding: 70px 0;
  }

  .pricing .pricing-item {
    padding: 35px 28px;
  }
}

/*--------------------------------------------------------------
# Contact Section – Modern Corporate UI
--------------------------------------------------------------*/
.contact {
  padding: 90px 0 60px;
  background: linear-gradient(
    180deg,
    #f5f7fb 0%,
    #ffffff 100%
  );
}

/* Map Wrapper */
.contact iframe {
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(15, 32, 80, 0.12);
}

/* Info Column */
.contact .info-item {
  background: #ffffff;
  padding: 22px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(15, 32, 80, 0.08);
  transition: all 0.35s ease;
  align-items: flex-start;
}

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

.contact .info-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15, 32, 80, 0.15);
}

/* Icons */
.contact .info-item i {
  background: linear-gradient(135deg, #1f3c88, #3b82f6);
  color: #ffffff;
  font-size: 22px;
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-right: 16px;
}

/* Info Text */
.contact .info-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.contact .info-item p {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* Form Wrapper */
.contact .php-email-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(15, 32, 80, 0.1);
}

/* Inputs */
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.95rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #1f3c88;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(31, 60, 136, 0.12);
}

/* Placeholder */
.contact .php-email-form ::placeholder {
  color: #94a3b8;
}

/* Submit Button */
.contact .php-email-form button[type="submit"] {
  background: linear-gradient(
    135deg,
    #1f3c88,
    #3b82f6
  );
  color: #ffffff;
  padding: 14px 42px;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
  box-shadow: 0 14px 35px rgba(31, 60, 136, 0.35);
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(31, 60, 136, 0.45);
}

/* Status Messages */
.contact .loading,
.contact .error-message,
.contact .sent-message {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 70px 0 40px;
  }

  .contact .php-email-form {
    padding: 30px 24px;
  }
}

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

/* Internship */

section {
  padding: 80px 0;
}

.bg-light {
  background: var(--light-bg);
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
}

.section-title p {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-muted);
}

/*--------------------------------------------------------------
# WHO CAN APPLY – Cards
--------------------------------------------------------------*/
.card {
  background: var(--card-bg);
  padding: 32px;
  height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: none;
  transition: all 0.3s ease;
}

.card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/*--------------------------------------------------------------
# Internship Domains
--------------------------------------------------------------*/
.domain {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #ffffff;
  text-align: center;
  padding: 18px;
  border-radius: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.domain:hover {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Internship Structure
--------------------------------------------------------------*/
.structure {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

.structure h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.structure p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/*--------------------------------------------------------------
# Benefits List
--------------------------------------------------------------*/
.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits li {
  font-size: 16px;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.benefits li:last-child {
  border-bottom: none;
}

/*--------------------------------------------------------------
# Call To Action (CTA)
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  text-align: center;
  padding: 60px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta .btn {
  background: #ffffff;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta .btn:hover {
  background: #e0e7ff;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Responsive Fixes
--------------------------------------------------------------*/
@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

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

  .cta p {
    font-size: 16px;
  }
}





/* Modal */

/* =========================================
   Modern Get Started Modal – Gletix UI
========================================= */

/* Modal dialog */
#getStartedModal .modal-dialog {
  max-width: 420px;
}

/* Modal content */
#getStartedModal .modal-content {
  border: none;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Modal header */
#getStartedModal .modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0.5rem;
}

#getStartedModal .modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d1b2a;
}

/* Close button */
#getStartedModal .btn-close {
  background-size: 0.8rem;
  opacity: 0.6;
}

#getStartedModal .btn-close:hover {
  opacity: 1;
}

/* Modal body */
#getStartedModal .modal-body {
  padding: 1.5rem;
}

/* Floating inputs */
#getStartedModal .form-control,
#getStartedModal .form-select {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  font-size: 0.95rem;
  padding: 1rem 0.75rem;
  transition: all 0.25s ease;
}

#getStartedModal .form-control:focus,
#getStartedModal .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

/* Floating labels */
#getStartedModal .form-floating label {
  font-size: 0.85rem;
  color: #6c757d;
}

/* Submit button */
#getStartedModal .btn-primary {
  border-radius: 12px;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#getStartedModal .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
}

/* Success state */
#successMessage {
  padding: 1.5rem 0.5rem;
}

#successMessage h4 {
  font-weight: 700;
  margin-top: 0.75rem;
  color: #198754;
}

#successMessage p {
  font-size: 0.95rem;
  color: #555;
}

/* Success icon */
.success-icon {
  font-size: 3.2rem;
  color: #198754;
}

/* Success buttons */
#successMessage .btn-success {
  border-radius: 12px;
  font-weight: 600;
}

#successMessage .btn-outline-secondary {
  border-radius: 12px;
  font-weight: 500;
}

/* Mobile optimization */
@media (max-width: 576px) {
  #getStartedModal .modal-dialog {
    margin: 1rem;
  }
}





/* Whatsapp */

/*--------------------------------------------------------------
# Floating WhatsApp Button (UX Friendly)
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  bottom: 90px;              /* ABOVE scroll-to-top */
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 9998;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

/* Icon pulse animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Show after scroll */
.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 80px;
    right: 18px;
    font-size: 26px;
  }

  .wa-tooltip {
    display: none;
  }
}


