@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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: "Ubuntu",  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: #394450; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #5a1a1a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #dc2626; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.7);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* 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 */
  
}

/* 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: #f5faff;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #991b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #fca5a5;
  --surface-color: #b91c1c;
  --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);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #991b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #dc2626;
  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-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/* Modern Text-Based Logo Styling - Enhanced for Red Header */
.logo-text {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.3px;
  color: #ffffff;
  text-transform: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-text::before {
  content: '\F3A3';
  font-family: 'bootstrap-icons';
  font-size: 28px;
  color: #ffffff;
  margin-right: 6px;
  font-weight: normal;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: flame-flicker 2s ease-in-out infinite;
}

@keyframes flame-flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

.logo-text .logo-accent {
  font-weight: 800;
  position: relative;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #fca5a5 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.logo-text .logo-accent::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  border-radius: 2px;
  opacity: 0.6;
}

.logo-text .logo-secondary {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 8px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(4px);
  text-shadow: none;
  display: inline-flex;
  align-items: center;
}

/* Logo badge/container for extra branding */
.logo {
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  inset: -8px -12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  z-index: -1;
  transition: all 0.3s ease;
}

.logo:hover::before {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Footer Logo - Dark background version */
.footer .logo-text {
  font-size: 24px;
  color: #5a1a1a;
  text-shadow: none;
}

.footer .logo-text::before {
  font-size: 24px;
  color: #dc2626;
  filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.3));
  animation: none;
}

.footer .logo-text .logo-accent {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .logo-text .logo-accent::after {
  height: 3px;
  background: linear-gradient(90deg, transparent, #dc2626, transparent);
  opacity: 0.8;
}

.footer .logo-text .logo-secondary {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  font-size: 12px;
  padding: 3px 8px;
}

.footer .logo::before {
  display: none;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  font-size: 14px;
  padding: 10px 28px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  font-weight: 600;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

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

  .logo-text {
    font-size: 22px;
  }

  .logo-text::before {
    font-size: 24px;
  }

  .logo-text .logo-secondary {
    font-size: 11px;
    padding: 2px 6px;
    margin-left: 4px;
    letter-spacing: 0.5px;
  }

  .logo::before {
    inset: -6px -8px;
  }

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

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 991px) {
  .logo-text {
    font-size: 18px;
    gap: 4px;
  }

  .logo-text::before {
    font-size: 20px;
    margin-right: 4px;
  }

  .logo-text .logo-secondary {
    font-size: 9px;
    padding: 2px 5px;
    margin-left: 3px;
    letter-spacing: 0.3px;
    border-radius: 12px;
  }

  .logo::before {
    inset: -4px -6px;
    border-radius: 8px;
  }
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    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: 70px 15px 20px 15px;
    padding: 15px 0;
    margin: 0;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
    border: 2px solid rgba(220, 38, 38, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    max-height: calc(100vh - 100px);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #5a1a1a;
    padding: 14px 24px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #dc2626;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.08) 0%, transparent 100%);
    border-left-color: #dc2626;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    transform: scale(1.1);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
    color: #ffffff;
  }

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

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

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

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles - Modern Styling
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  position: relative;
  background: linear-gradient(135deg, #5a1a1a 0%, #dc2626 50%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #991b1b 100%);
  display: inline-block;
  border-radius: 2px;
  vertical-align: middle;
}

.section-title h2::before {
  margin: 0 20px 8px 0;
}

.section-title h2::after {
  margin: 0 0 8px 20px;
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

  .section-title h2::before,
  .section-title h2::after {
    width: 30px;
    height: 3px;
  }
  
  .section-title p {
    font-size: 16px;
    padding: 0 20px;
  }
}

/*--------------------------------------------------------------
# CTA Sections - Modern Styling
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  position: relative;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.cta .features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--default-color);
}

.cta .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-actions.cta-center {
  justify-content: center;
}

.cta-actions .btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border: none;
  color: #ffffff;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  transition: all 0.3s ease;
}

.cta-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.cta-actions .btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-actions .btn-outline:hover {
  background: var(--accent-color);
  color: #ffffff;
}

.cta-stats-box {
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.stat-box-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.stat-box-item:last-child {
  border-bottom: none;
}

.stat-box-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.stat-box-item .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

.stat-box-item .stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
}

/* Service Areas Grid */
.service-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 2rem 0;
}

.area-tag {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}

.area-tag:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Emergency Badge */
.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.emergency-badge i {
  font-size: 1.1rem;
}

/* Emergency Contact Box */
.emergency-contact-box {
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.emergency-contact-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item .label {
  display: block;
  font-size: 0.85rem;
  color: var(--default-color);
  margin-bottom: 4px;
}

.contact-item .value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
}

.contact-item a.value:hover {
  color: var(--accent-color);
}

/* Service Detail Cards */
.service-detail-card {
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.1);
  height: 100%;
  transition: all 0.4s ease;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

.service-detail-card .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-detail-card .service-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.service-detail-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.service-detail-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 1.5rem;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--default-color);
}

.service-features li i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Accent Background CTA */
.cta.accent-background {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 50%, #b91c1c 100%);
}

.cta.accent-background .cta-content h2,
.cta.accent-background .cta-content p {
  color: #ffffff;
}

.cta.accent-background .btn-light {
  background: #ffffff;
  color: #dc2626;
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta.accent-background .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-stats-box,
  .emergency-contact-box {
    margin-top: 2rem;
  }
  
  .service-areas-grid {
    gap: 8px;
  }
  
  .area-tag {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 0;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Courses Hero Section - Unique Background Style
--------------------------------------------------------------*/
.courses-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-with-bg {
  background: url('../img/bg/abstract-bg-3.webp') center center / cover no-repeat;
  position: relative;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 10, 10, 0.85) 0%, rgba(60, 20, 20, 0.8) 50%, rgba(40, 15, 15, 0.75) 100%);
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(220, 38, 38, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(185, 28, 28, 0.15) 0%, transparent 50%);
  z-index: 2;
}

.hero-with-bg .hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
  font-size: 18px;
  color: #ffffff;
}

.hero-with-bg .hero-text h1 {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-with-bg .hero-text p {
  color: #ffffff;
  font-size: 1.3rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-with-bg .hero-stats .stat-item .number {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-with-bg .hero-stats .stat-item .label {
  color: rgba(255, 255, 255, 0.95);
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrap i {
  font-size: 22px;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.hero-with-bg .hero-features .feature span {
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.courses-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.courses-hero .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .courses-hero .hero-text h1 {
    font-size: 2.5rem;
  }
}

.courses-hero .hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.courses-hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .courses-hero .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

.courses-hero .hero-stats .stat-item {
  text-align: center;
}

.courses-hero .hero-stats .stat-item .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.courses-hero .hero-stats .stat-item .label {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.courses-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .courses-hero .hero-buttons {
    flex-direction: column;
  }
}

.courses-hero .hero-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.courses-hero .hero-buttons .btn.btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border: 2px solid transparent;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.courses-hero .hero-buttons .btn.btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.courses-hero .hero-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid #dc2626;
  color: #dc2626;
}

.courses-hero .hero-buttons .btn.btn-outline:hover {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.courses-hero .hero-features {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .courses-hero .hero-features {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.courses-hero .hero-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.courses-hero .hero-features .feature i {
  font-size: 1.25rem;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.courses-hero .hero-features .feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.courses-hero .hero-image {
  position: relative;
}

.courses-hero .hero-image .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.courses-hero .hero-image .main-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.courses-hero .hero-image .floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.courses-hero .hero-image .floating-cards .course-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(1) {
  top: 20%;
  left: -10%;
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(2) {
  top: 50%;
  right: -15%;
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(3) {
  bottom: 20%;
  left: -5%;
}

.courses-hero .hero-image .floating-cards .course-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.courses-hero .hero-image .floating-cards .course-card .card-icon i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.courses-hero .hero-image .floating-cards .course-card .card-content h6 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5a1a1a;
  line-height: 1.2;
}

.courses-hero .hero-image .floating-cards .course-card .card-content span {
  font-size: 0.8rem;
  color: #7f1d1d;
}

@media (max-width: 992px) {
  .courses-hero .hero-image .floating-cards .course-card {
    display: none;
  }
}

.courses-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.courses-hero .hero-background .bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.courses-hero .hero-background .bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(153, 27, 27, 0.05) 100%);
}

.courses-hero .hero-background .bg-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.courses-hero .hero-background .bg-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.courses-hero .hero-background .bg-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 30%;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 992px) {
  .courses-hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-with-bg {
    min-height: auto;
  }

  .courses-hero .hero-text {
    margin-bottom: 3rem;
  }
  
  .why-card {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .courses-hero {
    text-align: center;
  }
  
  .hero-with-bg .hero-text p {
    font-size: 1.1rem;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .courses-hero .hero-stats {
    justify-content: center;
  }

  .courses-hero .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .feature-icon-wrap {
    width: 38px;
    height: 38px;
  }
  
  .feature-icon-wrap i {
    font-size: 18px;
  }
  
  .why-icon {
    width: 70px;
    height: 70px;
  }
  
  .why-icon i {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Featured Courses / Services Section - Modern Red Styling
--------------------------------------------------------------*/
.featured-courses .course-card {
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.featured-courses .course-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.18);
  border-color: rgba(220, 38, 38, 0.15);
}

.featured-courses .course-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.featured-courses .course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-courses .course-image:hover img {
  transform: scale(1.05);
}

.featured-courses .course-image .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-courses .course-image .badge.featured {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: var(--contrast-color);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.featured-courses .course-image .badge.new {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
}

.featured-courses .course-image .badge.certificate {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.featured-courses .course-image .badge.popular {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(248, 113, 113, 0.3);
}

.featured-courses .course-image .price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--heading-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
}

.featured-courses .course-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-courses .course-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.featured-courses .course-meta span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 15px;
  font-weight: 500;
}

.featured-courses .course-meta span.level {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.featured-courses .course-meta span.duration {
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
}

.featured-courses h3 {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.3;
}

.featured-courses h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.featured-courses p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-courses .instructor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.featured-courses .instructor .instructor-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.featured-courses .instructor .instructor-info h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.featured-courses .instructor .instructor-info span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.featured-courses .course-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-courses .course-stats .rating {
  display: flex;
  align-items: center;
  gap: 3px;
}

.featured-courses .course-stats .rating i {
  color: #ffc107;
  font-size: 12px;
}

.featured-courses .course-stats .rating span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 12px;
  margin-left: 8px;
  font-weight: 500;
}

.featured-courses .course-stats .students {
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-courses .course-stats .students i {
  color: var(--accent-color);
  font-size: 14px;
}

.featured-courses .course-stats .students span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 12px;
  font-weight: 500;
}

.featured-courses .btn-course {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  border: none;
}

.featured-courses .btn-course:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.featured-courses .more-courses {
  margin-top: 50px;
}

.featured-courses .more-courses .btn-more {
  display: inline-block;
  background: transparent;
  color: var(--accent-color);
  padding: 15px 40px;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.featured-courses .more-courses .btn-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .featured-courses .course-image {
    height: 200px;
  }

  .featured-courses .course-content {
    padding: 20px;
  }

  .featured-courses h3 {
    font-size: 18px;
  }

  .featured-courses .course-stats {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
# Course Categories Section
--------------------------------------------------------------*/
.course-categories .category-card {
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.08);
}

.course-categories .category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
  text-decoration: none;
  border-color: rgba(220, 38, 38, 0.2);
}

.course-categories .category-card .category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.course-categories .category-card .category-icon i {
  font-size: 30px;
  color: var(--contrast-color);
}

.course-categories .category-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.course-categories .category-card .course-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

/* Unified Red Theme for Service Area Cards */
.course-categories .category-card .category-icon {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.course-categories .category-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
}

.course-categories .category-card.category-tech .category-icon,
.course-categories .category-card.category-business .category-icon,
.course-categories .category-card.category-design .category-icon,
.course-categories .category-card.category-health .category-icon,
.course-categories .category-card.category-language .category-icon,
.course-categories .category-card.category-science .category-icon,
.course-categories .category-card.category-marketing .category-icon,
.course-categories .category-card.category-finance .category-icon,
.course-categories .category-card.category-photography .category-icon,
.course-categories .category-card.category-music .category-icon,
.course-categories .category-card.category-engineering .category-icon,
.course-categories .category-card.category-law .category-icon,
.course-categories .category-card.category-culinary .category-icon,
.course-categories .category-card.category-sports .category-icon,
.course-categories .category-card.category-writing .category-icon,
.course-categories .category-card.category-psychology .category-icon,
.course-categories .category-card.category-environment .category-icon,
.course-categories .category-card.category-communication .category-icon {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

@media (max-width: 576px) {
  .course-categories .category-card {
    padding: 20px 15px;
  }

  .course-categories .category-card .category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .course-categories .category-card .category-icon i {
    font-size: 24px;
  }

  .course-categories .category-card h5 {
    font-size: 14px;
  }

  .course-categories .category-card .course-count {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Featured Instructors / Why Choose Us Section - Modern Styling
--------------------------------------------------------------*/
#about.section-title h2 {
  background: linear-gradient(135deg, #5a1a1a 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-us {
  background: linear-gradient(180deg, #ffffff 0%, #fef2f2 50%, #ffffff 100%);
}

.featured-instructors .instructor-card {
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.featured-instructors .instructor-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fca5a5 0%, #dc2626 50%, #991b1b 100%);
}

/* Why Choose Us Card Styling */
.why-card {
  padding: 30px 20px;
}

.why-card .instructor-info {
  text-align: center;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
}

.featured-instructors .instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.featured-instructors .instructor-card:hover .instructor-image .overlay-content {
  opacity: 1;
}

.featured-instructors .instructor-card:hover .instructor-image img {
  transform: scale(1.05);
}

.featured-instructors .instructor-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.featured-instructors .instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-instructors .instructor-image .overlay-content {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-instructors .instructor-image .rating-stars {
  background: var(--surface-color);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-instructors .instructor-image .rating-stars i {
  color: #ffc107;
  font-size: 12px;
}

.featured-instructors .instructor-image .rating-stars i.bi-star {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.featured-instructors .instructor-image .rating-stars span {
  font-size: 12px;
  font-weight: 600;
  margin-left: 4px;
  color: var(--heading-color);
}

.featured-instructors .instructor-image .course-count {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-instructors .instructor-image .course-count i {
  font-size: 14px;
}

.featured-instructors .instructor-image .course-count span {
  font-size: 12px;
  font-weight: 600;
}

.featured-instructors .instructor-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.featured-instructors .instructor-info h5 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.featured-instructors .instructor-info .specialty {
  color: #dc2626;
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
}

.featured-instructors .instructor-info .description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.featured-instructors .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.featured-instructors .stats-grid .stat {
  text-align: center;
}

.featured-instructors .stats-grid .stat .number {
  display: block;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.featured-instructors .stats-grid .stat .label {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.featured-instructors .action-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-instructors .action-buttons .btn-view {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.featured-instructors .action-buttons .btn-view:hover {
  transform: translateY(-2px);
}

.featured-instructors .action-buttons .social-links {
  display: flex;
  gap: 6px;
}

.featured-instructors .action-buttons .social-links a {
  width: 32px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.featured-instructors .action-buttons .social-links a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.featured-instructors .action-buttons .social-links a i {
  font-size: 14px;
}

@media (max-width: 1399px) {
  .featured-instructors .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (max-width: 1199px) {
  .featured-instructors .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (max-width: 991px) {
  .featured-instructors .instructor-card {
    margin-bottom: 20px;
  }

  .featured-instructors .instructor-image {
    height: 220px;
  }

  .featured-instructors .instructor-info {
    padding: 20px;
  }

  .featured-instructors .instructor-info h5 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .featured-instructors .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .featured-instructors .instructor-image {
    height: 200px;
  }

  .featured-instructors .instructor-info {
    padding: 18px;
  }
}

@media (max-width: 575px) {
  .featured-instructors .row>* {
    width: 100% !important;
  }

  .featured-instructors .instructor-image {
    height: 250px;
  }

  .featured-instructors .instructor-image .overlay-content {
    opacity: 1;
  }

  .featured-instructors .action-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .featured-instructors .action-buttons .btn-view {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# FAQs Section - Modern Styling
--------------------------------------------------------------*/
#faqs .card {
  border: none;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #fef2f2 100%);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

#faqs .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #dc2626 0%, #991b1b 100%);
}

#faqs .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
}

#faqs .card-body {
  padding: 28px 28px 28px 32px;
}

#faqs .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #5a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

#faqs .card-title i {
  font-size: 22px;
  color: #dc2626;
  flex-shrink: 0;
  margin-top: 2px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

#faqs .card-text {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  margin-left: 48px;
}

@media (max-width: 768px) {
  #faqs .card-body {
    padding: 22px 20px 22px 24px;
  }
  
  #faqs .card-text {
    margin-left: 0;
    margin-top: 12px;
  }
  
  #faqs .card-title {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Cta Section
--------------------------------------------------------------*/
.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/bg/abstract-bg-3.webp") center/cover;
  opacity: 0.03;
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta .cta-content {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .cta .cta-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.cta .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.cta .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.cta .features-list {
  margin-bottom: 32px;
}

.cta .features-list .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.cta .features-list .feature-item i {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 12px;
  flex-shrink: 0;
}

.cta .features-list .feature-item span {
  font-weight: 500;
  color: var(--default-color);
}

.cta .cta-actions {
  margin-bottom: 40px;
}

.cta .cta-actions .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 16px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.cta .cta-actions .btn.btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border: 2px solid transparent;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cta .cta-actions .btn.btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.cta .cta-actions .btn.btn-outline {
  background: transparent;
  border: 2px solid #dc2626;
  color: #dc2626;
}

.cta .cta-actions .btn.btn-outline:hover {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.cta .stats-row {
  display: flex;
  gap: 40px;
}

@media (max-width: 576px) {
  .cta .stats-row {
    flex-direction: column;
    gap: 24px;
  }
}

.cta .stats-row .stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.cta .stats-row .stat-item p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta .cta-image {
  position: relative;
}

.cta .cta-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta .cta-image .floating-element {
  position: absolute;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.cta .cta-image .floating-element.student-card {
  top: 20px;
  right: -20px;
}

@media (max-width: 576px) {
  .cta .cta-image .floating-element.student-card {
    right: 10px;
    padding: 15px;
  }
}

.cta .cta-image .floating-element.course-card {
  bottom: 30px;
  left: -20px;
}

@media (max-width: 576px) {
  .cta .cta-image .floating-element.course-card {
    left: 10px;
    padding: 15px;
  }
}

.cta .cta-image .floating-element .card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta .cta-image .floating-element .card-content i {
  font-size: 2rem;
  color: var(--accent-color);
}

.cta .cta-image .floating-element .card-content .text .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.cta .cta-image .floating-element .card-content .text .label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

