/**
* Template Name: Presento
* Template URL: https://bootstrapmade.com/presento-bootstrap-corporate-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts - Bossify Academy: The Modern African Queen in Business */
:root {
  --default-font: "Montserrat", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --heading-font: "Playfair Display", "Prata", serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - Modern African Queen Brand Palette */
:root { 
  --background-color: #FAFAFA; /* Off-White Canvas */
  --default-color: #1A1A1A; /* Deep Charcoal for text */
  --heading-color: #4B2C5E; /* Royal Purple - primary heading */
  --accent-color: #4B2C5E; /* Royal Purple/Deep Plum - primary accent */
  --accent-gold: #D4AF37; /* Burned Gold/Champagne Metallic - secondary */
  --accent-terracotta: #E2725B; /* Terra Cotta/Savannah Orange - accent */
  --accent-bronze: #CD7F32; /* Bronze for gradient */
  --surface-color: #ffffff; /* White surface for cards */
  --surface-dark: #1A1A1A; /* Deep Charcoal for dark sections */
  --contrast-color: #ffffff; /* White text on dark */
  --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #CD7F32 100%); /* Gold-to-Bronze */
  --gradient-royal: linear-gradient(135deg, #4B2C5E 0%, #6B3D7E 100%); /* Royal Purple gradient */
  --gradient-warm: linear-gradient(135deg, #E2725B 0%, #D4AF37 50%, #E2725B 100%); /* Warm accent */
  --glass-bg: rgba(255, 255, 255, 0.7); /* Glassmorphism background */
  --glass-border: rgba(212, 175, 55, 0.2); /* Glassmorphism border */
}

/* Nav Menu Colors */
:root {
  --nav-color: #1A1A1A;  /* Deep Charcoal for nav links */
  --nav-hover-color: #D4AF37; /* Burned Gold on hover */
  --nav-mobile-background-color: #FAFAFA; /* Mobile nav background */
  --nav-dropdown-background-color: #FAFAFA; /* Dropdown background */
  --nav-dropdown-color: #1A1A1A; /* Dropdown link color */
  --nav-dropdown-hover-color: #D4AF37; /* Dropdown hover color */
}

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

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1A1A1A; /* Deep Charcoal background */
  --default-color: #FAFAFA;
  --heading-color: #ffffff;
  --surface-color: #2A2A2A;
  --contrast-color: #ffffff;
}

.light-background {
  --background-color: #FAFAFA;
  --default-color: #1A1A1A;
  --heading-color: #4B2C5E;
  --surface-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;
}

/* Enrollment Form Specific Styling */
#enrollmentForm {
  position: relative;
}

#enrollmentForm .error-message,
#enrollmentForm .sent-message,
#enrollmentForm .loading {
  display: none;
  text-align: center;
  padding: 18px 20px;
  margin-bottom: 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.3s ease-out;
  position: relative;
  z-index: 10;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#enrollmentForm .error-message {
  background: linear-gradient(135deg, #df1529 0%, #c01426 100%);
  color: #ffffff;
  border-left: 4px solid #ff4757;
}

#enrollmentForm .sent-message {
  background: linear-gradient(135deg, #059652 0%, #047a42 100%);
  color: #ffffff;
  border-left: 4px solid #2ecc71;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 25px 30px;
  font-size: 16px;
  min-height: 120px;
}

#enrollmentForm .sent-message::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.4);
  animation: checkmarkPulse 0.6s ease-out;
}

@keyframes checkmarkPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#enrollmentForm .sent-message span {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

#enrollmentForm .loading {
  background: linear-gradient(135deg, #4B2C5E 0%, #6B3D7E 100%);
  color: #ffffff;
  border-left: 4px solid #D4AF37;
}

#enrollmentForm .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0 10px -5px 0;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  animation: php-email-form-loading 1s linear infinite;
}

/* Enrollment Modal Styling */
#enrollmentModal .modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

#enrollmentModal .modal-header {
  background: linear-gradient(135deg, #4B2C5E 0%, #6B3D7E 100%);
  color: #ffffff;
  border-bottom: 3px solid #D4AF37;
  padding: 25px 30px;
}

#enrollmentModal .modal-title {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

#enrollmentModal .modal-title i {
  font-size: 28px;
  color: #D4AF37;
}

#enrollmentModal .btn-close-white {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

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

#enrollmentModal .modal-body {
  padding: 35px 30px;
  background: #ffffff;
}

/* Enrollment Form Fields */
#enrollmentForm .row {
  margin-bottom: 0;
}

#enrollmentForm .row.gy-3 > * {
  padding-top: 12px;
  padding-bottom: 12px;
}

#enrollmentForm .form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

#enrollmentForm .form-label .text-danger {
  color: #df1529;
  font-size: 16px;
  font-weight: 700;
}

#enrollmentForm .form-control,
#enrollmentForm .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #2c3e50;
}

#enrollmentForm .form-control:focus,
#enrollmentForm .form-select:focus {
  border-color: #4B2C5E;
  box-shadow: 0 0 0 0.2rem rgba(75, 44, 94, 0.15);
  outline: none;
}

#enrollmentForm .form-control::placeholder {
  color: #95a5a6;
  opacity: 0.7;
}

#enrollmentForm textarea.form-control {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

#enrollmentForm .form-control:invalid:not(:placeholder-shown),
#enrollmentForm .form-select:invalid:not(:placeholder-shown) {
  border-color: #df1529;
}

#enrollmentForm .form-control:valid:not(:placeholder-shown),
#enrollmentForm .form-select:valid:not(:placeholder-shown) {
  border-color: #059652;
}

#enrollmentForm .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
  padding-right: 40px;
}

#enrollmentForm .form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234B2C5E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* Enrollment Form Submit Button */
#enrollmentForm button[type="submit"] {
  background: linear-gradient(135deg, #4B2C5E 0%, #6B3D7E 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(75, 44, 94, 0.3);
  width: 100%;
  margin-top: 10px;
}

#enrollmentForm button[type="submit"]:hover:not(:disabled) {
  background: linear-gradient(135deg, #5B3C6E 0%, #7B4D8E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 44, 94, 0.4);
}

#enrollmentForm button[type="submit"]:active:not(:disabled) {
  transform: translateY(0);
}

#enrollmentForm button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#enrollmentForm .text-muted {
  color: #6c757d !important;
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
}

/* Success Message Enhanced Styling */
#enrollmentForm .sent-message.d-block {
  display: flex !important;
  animation: successPulse 0.5s ease-out;
}

/* Hide form when success is shown */
#enrollmentForm .sent-message.d-block ~ * {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#enrollmentForm .sent-message.d-block ~ button[type="submit"],
#enrollmentForm .sent-message.d-block ~ .text-muted {
  display: none !important;
}

@keyframes successPulse {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  #enrollmentModal .modal-header {
    padding: 20px;
  }
  
  #enrollmentModal .modal-title {
    font-size: 20px;
  }
  
  #enrollmentModal .modal-body {
    padding: 25px 20px;
  }
  
  #enrollmentForm .form-control,
  #enrollmentForm .form-select {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  #enrollmentForm button[type="submit"] {
    padding: 14px 30px;
    font-size: 15px;
  }
  
  #enrollmentForm .sent-message {
    font-size: 14px;
    padding: 16px;
  }
}

.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: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.header .logo img,
.footer .logo img {
  max-height: 40px;
  margin-right: 10px;
  width: auto;
  height: auto;
}

.logo-img {
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--gradient-primary);
  font-size: 14px;
  padding: 10px 30px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1);
}

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

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 4px 20px rgba(75, 44, 94, 0.15);
  background-color: rgba(250, 250, 250, 0.98);
}

/*--------------------------------------------------------------
# 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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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;
  }
}

/*--------------------------------------------------------------
# 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 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

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

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

.footer .social-links a:hover {
  color: var(--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 30%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

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

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  animation: float 3s ease-in-out infinite;
}

.scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  filter: brightness(1.1);
}

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

.scroll-top:hover {
  background: var(--accent-secondary);
  color: var(--contrast-color);
}

.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 Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

/* Warm Golden Hour Filter for Images */
section img,
.section img {
  filter: sepia(15%) saturate(110%) brightness(0.95) contrast(0.98);
}

/* Section Dividers with Afrocentric Patterns */
.section-divider {
  height: 60px;
  position: relative;
  overflow: hidden;
  background: var(--background-color);
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(212, 175, 55, 0.05) 15px, rgba(212, 175, 55, 0.05) 30px),
    repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(75, 44, 94, 0.05) 15px, rgba(75, 44, 94, 0.05) 30px);
  opacity: 0.5;
}

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg:after {
  content: "";
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(212, 175, 55, 0.03) 20px, rgba(212, 175, 55, 0.03) 40px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(75, 44, 94, 0.03) 20px, rgba(75, 44, 94, 0.03) 40px);
  pointer-events: none;
  z-index: 0;
}

.section-bg .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .section-title {
    padding-bottom: 40px;
  }

  .section-title h2 {
    font-size: 26px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .section-title p {
    font-size: 14px;
    padding: 0 15px;
    line-height: 1.6;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 22px;
    text-transform: none;
    line-height: 1.3;
  }
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: #FAFAFA;
  --background-color: #1A1A1A;
  --heading-color: #ffffff;
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  background: var(--background-color);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
  filter: brightness(0.4) contrast(1.1);
}

/* Dark overlay for text readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(75, 44, 94, 0.75) 50%,
    rgba(26, 26, 26, 0.85) 100%
  );
  z-index: 2;
}

/* Subtle gold accent overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(226, 114, 91, 0.1) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}

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

.hero .row {
  position: relative;
  z-index: 10;
}

.hero-buttons {
  position: relative;
  z-index: 10;
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 8px rgba(0, 0, 0, 0.7),
    0 8px 16px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 0, 0, 0.5);
  position: relative;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.hero h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  z-index: 11;
}

.hero p {
  color: #ffffff;
  margin: 35px 0 0 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
  max-width: 700px;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 8px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.7);
  position: relative;
  padding-left: 25px;
  border-left: 4px solid var(--accent-gold);
  z-index: 11;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 25px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.hero .btn-get-started {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 45px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: var(--gradient-primary);
  color: var(--contrast-color);
  text-transform: uppercase;
  box-shadow: 
    0 8px 30px rgba(212, 175, 55, 0.5),
    0 0 0 2px rgba(212, 175, 55, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 11;
  backdrop-filter: blur(10px);
}

.hero .btn-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.hero .btn-get-started:hover::before {
  left: 100%;
}

.hero .btn-get-started:hover {
  background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 40px rgba(212, 175, 55, 0.7),
    0 0 0 3px rgba(212, 175, 55, 0.4),
    0 6px 30px rgba(0, 0, 0, 0.4);
  filter: brightness(1.15) drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 36px;
    font-weight: 800;
    text-shadow: 
      0 2px 4px rgba(0, 0, 0, 0.9),
      0 4px 8px rgba(0, 0, 0, 0.8),
      0 0 30px rgba(0, 0, 0, 0.6);
  }

  .hero p {
    font-size: 18px;
    font-weight: 500;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
  }
  
  .about-content-wrapper h3,
  .about .content h3 {
    font-size: 28px;
  }
  
  .about-content-wrapper p,
  .about .content p {
    font-size: 16px;
  }
  
  .about .icon-box h4 {
    font-size: 20px;
  }
  
  .about .icon-box p {
    font-size: 15px;
  }

  .founder-section-enhanced {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .founder-image-wrapper {
    width: 100%;
    max-width: 340px;
  }

  .founder-quote-container {
    width: 100%;
  }

  .founder-quote {
    padding: 25px;
  }

  .founder-quote p {
    font-size: 20px;
    padding-left: 15px;
  }

  .founder-quote cite {
    font-size: 14px;
    padding-left: 15px;
  }

  .quote-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: 15px;
    left: 15px;
  }
}

/* ========================================
   NEW HERO SECTION ENHANCED STYLING
   ======================================== */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) sepia(20%) saturate(120%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(75, 44, 94, 0.75) 50%,
    rgba(26, 26, 26, 0.85) 100%
  );
  z-index: 2;
}

.hero .min-vh-100 {
  min-height: 100vh;
  padding: 100px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--accent-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-badge i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 25px;
  font-family: var(--heading-font);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.hero-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stats .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.hero-feature-cards .feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
}

.hero-feature-cards .feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.hero-feature-cards .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: white;
}

.hero-feature-cards .feature-card h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-feature-cards .feature-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  color: white;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
  color: white;
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(5px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.scroll-down i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .hero-stats .stat-number {
    font-size: 2rem;
  }
  
  .hero-feature-cards {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-content-wrapper h3 {
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.about-content-wrapper p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Backward compatibility */
.about .content h3 {
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.about .content p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--default-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 48px;
  color: var(--accent-gold);
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  .about .icon-box {
    margin-bottom: 25px;
    padding: 20px;
  }

  .about .icon-box i {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .about .icon-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .about .icon-box p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.about .icon-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about .icon-box h4 a {
  color: #ffffff;
  transition: 0.3s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about .icon-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/* ========================================
   NEW ABOUT SECTION ENHANCED STYLING
   ======================================== */
.section-header {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.section-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.founder-card {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.founder-image-container {
  position: relative;
  margin-bottom: 25px;
  text-align: center;
}

.founder-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.founder-badge {
  position: absolute;
  bottom: 10px;
  right: calc(50% - 100px);
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.founder-quote-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 4px solid var(--accent-gold);
  padding: 25px;
  border-radius: 15px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.founder-quote-card blockquote {
  margin: 0;
  padding: 0;
}

.founder-quote-card blockquote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.founder-quote-card blockquote cite {
  display: block;
  font-style: normal;
  margin-top: 15px;
}

.founder-quote-card blockquote cite strong {
  display: block;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.founder-quote-card blockquote cite span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.mission-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #6B3D7E 100%);
  color: white;
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
}

.mission-box h4 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-box p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.feature-card-modern {
  background: white;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

.feature-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(205, 127, 50, 0.1) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-wrapper i {
  color: white;
  transform: scale(1.1);
}

.feature-card-modern h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.feature-card-modern p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.feature-highlight i {
  font-size: 1rem;
}

.values-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 40px;
  border-radius: 24px;
  margin-top: 60px;
}

.values-section h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin-bottom: 40px;
}

.value-item {
  text-align: center;
  padding: 20px;
}

.value-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: 15px;
}

.value-item h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.value-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .founder-image {
    width: 150px;
    height: 150px;
  }
  
  .feature-card-modern {
    margin-bottom: 20px;
  }
  
  .values-section {
    padding: 40px 20px;
  }
  
  .value-number {
    font-size: 3rem;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

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

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
    margin: 20px 10px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
    margin-top: 15px;
  }

  .testimonials .testimonial-item h4 {
    font-size: 14px;
  }
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

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

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

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

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background: var(--surface-color);
  padding: 50px 35px;
  box-shadow: 0 8px 30px rgba(75, 44, 94, 0.1);
  height: 100%;
  position: relative;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: visible;
  width: 100%;
}

.pricing .pricing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s;
  z-index: 1;
}

.pricing .pricing-item:hover::before {
  transform: scaleX(1);
}

.pricing .pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing .featured ul i {
  color: var(--accent-gold);
  font-size: 26px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  background: var(--gradient-primary);
  display: inline-block;
  padding: 14px 45px;
  border-radius: 50px;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: white;
  text-decoration: none;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.pricing .buy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.pricing .buy-btn:hover::before {
  left: 100%;
}

.pricing .buy-btn:hover {
  background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 3px solid var(--accent-gold);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: visible;
}

.pricing .featured .pricing-item::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.1;
}

.pricing .featured .pricing-item h3 {
  color: var(--accent-gold);
  font-size: 1.75rem;
  font-weight: 700;
}

.pricing .featured .pricing-item h4 {
  color: var(--heading-color);
  font-size: 2.5rem;
}

.best-value-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  z-index: 5;
}

/* Ensure all pricing cards are fully visible */
.pricing .container {
  overflow: visible;
  max-width: 1200px;
}

.pricing .row {
  overflow: visible;
}

.pricing .row > [class*="col-"] {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .pricing .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
  
  .pricing .row > [class*="col-lg-4"] {
    display: flex;
    max-width: 100%;
  }
  
  .pricing .featured {
    position: relative;
    z-index: 10;
  }
  
  .pricing .featured .pricing-item {
    transform: scale(1.05);
    margin-top: -10px;
    margin-bottom: 10px;
  }
  
  /* Make featured card stand out more */
  .pricing .featured .pricing-item .buy-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-bronze) 100%);
    color: white;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.1rem;
  }
  
  .pricing .featured .pricing-item .buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  }
}

@media (min-width: 1200px) {
  .pricing .container {
    max-width: 1320px;
  }
}

/* Featured pricing card styling - ensure content is visible */
.pricing .featured .pricing-item {
  background: var(--surface-color) !important;
  color: var(--default-color) !important;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 sup {
  color: var(--accent-color) !important;
}

.pricing .featured ul,
.pricing .featured ul li,
.pricing .featured ul li span {
  color: var(--default-color) !important;
}

.pricing .featured ul i {
  color: #059652 !important;
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(75, 44, 94, 0.08);
}

.faq .faq-container .faq-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transform: translateX(5px);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin: 0 50px 0 0;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 20px;
  line-height: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  color: var(--accent-gold);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--contrast-color);
  background: var(--accent-gold);
  transform: scale(1.1);
}

.faq .faq-container .faq-active {
  background: var(--surface-color);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(180deg);
  color: var(--contrast-color);
  background: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.faq .faq-container .faq-active .faq-content p {
  color: var(--default-color);
  line-height: 1.8;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

@media (max-width: 768px) {
  .contact .info-item {
    margin-bottom: 20px;
    padding: 20px 0;
  }

  .contact .info-item h3 {
    font-size: 18px;
    margin: 10px 0 5px 0;
  }

  .contact .info-item p {
    font-size: 14px;
  }

  .contact .php-email-form {
    padding: 25px 20px;
  }

  .contact .php-email-form input,
  .contact .php-email-form textarea {
    font-size: 16px;
    padding: 12px 15px;
  }
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

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

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Bossify Academy Custom Styles
--------------------------------------------------------------*/

/* Hero Section Buttons */
.hero .btn-secondary {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(75, 44, 94, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(75, 44, 94, 0.6);
  position: relative;
  overflow: hidden;
  z-index: 11;
  box-shadow: 
    0 4px 20px rgba(75, 44, 94, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-royal);
  transition: left 0.4s;
  z-index: 0;
}

.hero .btn-secondary:hover::before {
  left: 0;
}

.hero .btn-secondary:hover {
  border-color: rgba(75, 44, 94, 0.9);
  background: rgba(75, 44, 94, 0.4);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(75, 44, 94, 0.5),
    0 0 0 2px rgba(75, 44, 94, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary span {
  position: relative;
  z-index: 1;
}

.hero .btn-ghost {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(226, 114, 91, 0.25);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(226, 114, 91, 0.5);
  position: relative;
  overflow: hidden;
  z-index: 11;
  box-shadow: 
    0 4px 20px rgba(226, 114, 91, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero .btn-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(226, 114, 91, 0.2);
  transition: left 0.4s;
  z-index: 0;
}

.hero .btn-ghost:hover::before {
  left: 0;
}

.hero .btn-ghost:hover {
  background: rgba(226, 114, 91, 0.4);
  border-color: rgba(226, 114, 91, 0.8);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(226, 114, 91, 0.5),
    0 0 0 2px rgba(226, 114, 91, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero .btn-ghost span {
  position: relative;
  z-index: 1;
}

/* About Section with Background Founder Image */
#about {
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(15, 15, 25, 0.96) 0%, rgba(15, 15, 25, 0.94) 40%, rgba(15, 15, 25, 0.8) 70%, rgba(15, 15, 25, 0.6) 100%);
  z-index: 1;
}

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

/* About founder hero */
.about-founder-hero {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 10px;
}

.about-founder-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-founder-text {
  color: #f8f9fa;
}

.about-founder-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-founder-title {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

.about-founder-quote {
  font-size: 1.05rem;
  font-style: italic;
  background: rgba(0, 0, 0, 0.5);
  padding: 14px 18px;
  border-radius: 16px;
  border-left: 3px solid var(--accent-gold);
  margin: 0;
}

/* Curriculum Cards - Glassmorphism Effect */
.curriculum-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(75, 44, 94, 0.1), 0 0 0 1px var(--glass-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.curriculum-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s;
  z-index: 1;
}

.curriculum-card:hover::before {
  transform: scaleX(1);
}

.curriculum-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25), 0 0 0 1px rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.85);
}

.curriculum-card > * {
  position: relative;
  z-index: 1;
}

.curriculum-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--contrast-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.curriculum-card:hover .card-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1);
}

.curriculum-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.curriculum-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.curriculum-card ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: var(--default-color);
  font-size: 15px;
}

@media (max-width: 768px) {
  .curriculum-card ul li {
    font-size: 14px;
    padding: 8px 0;
  }

  .curriculum-card ul li i {
    font-size: 16px;
    margin-right: 8px;
    flex-shrink: 0;
  }
}

.curriculum-card ul li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 10px;
}

.btn-curriculum {
  display: inline-block;
  padding: 12px 35px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  border: none;
}

.btn-curriculum::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-curriculum:hover::before {
  left: 100%;
}

.btn-curriculum:hover {
  background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.btn-enroll-large {
  display: inline-block;
  padding: 18px 55px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  border: none;
}

.btn-enroll-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-enroll-large:hover::before {
  left: 100%;
}

.btn-enroll-large:hover {
  background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
  color: var(--contrast-color);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
  filter: brightness(1.1) drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
}

/* Stats Section - Modern African Queen Theme */
.stats-icon {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  width: 70px;
  height: 70px;
  font-size: 32px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float 3s ease-in-out infinite;
}

.stats-icon:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stats .stats-item {
  background: var(--surface-color);
  margin-top: -35px;
  padding: 40px 30px 30px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 30px rgba(75, 44, 94, 0.1);
  border-radius: 24px;
  z-index: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.stats .stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.stats .stats-item span {
  font-size: 42px;
  display: block;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
  margin-bottom: 10px;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  color: var(--default-color);
  font-weight: 500;
}

/* Cohorts Section */
.cohort-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.cohort-info .lead {
  font-size: 20px;
  color: var(--default-color);
  margin-bottom: 25px;
}

.cohort-details {
  list-style: none;
  padding: 0;
}

.cohort-details li {
  padding: 15px 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cohort-details li {
    font-size: 14px;
    padding: 12px 0;
  }

  .cohort-details li i {
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
  }

  .cohort-details li strong {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
}

.cohort-details li i {
  font-size: 24px;
  color: var(--accent-gold);
  margin-right: 15px;
  transition: all 0.3s ease;
}

.cohort-details li:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--accent-terracotta);
}

.cohort-details li strong {
  color: var(--heading-color);
  margin-right: 5px;
}

.cohort-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-cohort-primary,
.btn-cohort-secondary {
  display: block;
  padding: 15px 30px;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn-cohort-primary {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  border: none;
}

.btn-cohort-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-cohort-primary:hover::after {
  left: 100%;
}

.btn-cohort-primary:hover {
  background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.btn-cohort-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-cohort-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.cohort-note {
  padding: 15px;
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
}

.cohort-note p {
  margin: 0;
  color: var(--default-color);
}

.cohort-note i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* Learning Format Cards */
.learning-format-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(75, 44, 94, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.learning-format-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s;
  z-index: 1;
}

.learning-format-card:hover::before {
  transform: scaleX(1);
}

.learning-format-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.learning-format-card > * {
  position: relative;
  z-index: 1;
}

.learning-format-card i {
  font-size: 56px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
}

.learning-format-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

.learning-format-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.learning-format-card p {
  color: var(--default-color);
  line-height: 1.6;
}

.mentors-section {
  margin-top: 60px;
}

.mentors-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.mentor-item {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: 0.3s;
}

.mentor-item:hover {
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.2);
}

.mentor-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.mentor-item h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.mentor-item p {
  color: var(--default-color);
  margin: 0;
  font-size: 14px;
}

/* Partners Section */
.partner-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.partner-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .partner-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .partner-item i {
    font-size: 28px;
    margin: 0 auto;
  }

  .partner-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .partner-item p {
    font-size: 14px;
  }
}

.partner-item i {
  font-size: 32px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.partner-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.partner-item p {
  color: var(--default-color);
  margin: 0;
}

.partner-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.btn-partner-primary,
.btn-partner-secondary {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  min-width: 200px;
  text-align: center;
}

.btn-partner-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.btn-partner-primary:hover {
  background: var(--accent-secondary);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.btn-partner-secondary {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.btn-partner-secondary:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
}

/* Join Options */
.join-options h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.btn-join-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: var(--surface-color);
  color: var(--heading-color);
  border: 2px solid var(--accent-color);
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn-join-option:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.btn-join-option i {
  font-size: 18px;
}

/* Pricing Badge */
.pricing-item {
  position: relative;
}

.best-value-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
  z-index: 10;
}

.pricing-description {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.pricing-note {
  padding: 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.pricing-note p {
  margin: 0;
  color: var(--default-color);
}

.pricing-note i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet and Below (768px) */
@media (max-width: 768px) {
  /* Hero Section */
  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero h2 {
    font-size: 32px;
    line-height: 1.3;
    text-shadow: 
      0 2px 15px rgba(0, 0, 0, 0.6),
      0 0 30px rgba(212, 175, 55, 0.2);
  }

  .hero h2::after {
    width: 60px;
    height: 3px;
  }

  .hero p {
    font-size: 16px;
    padding-left: 15px;
    border-left-width: 2px;
    margin-top: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons {
    z-index: 15;
    position: relative;
    margin-top: 25px;
  }

  .hero .btn-get-started,
  .hero .btn-secondary,
  .hero .btn-ghost {
    width: 100%;
    margin-bottom: 12px;
    padding: 14px 30px;
    font-size: 14px;
    display: block;
    text-align: center;
    z-index: 15;
    position: relative;
  }

  .hero img {
    opacity: 0.5;
  }

  .hero::before {
    background: linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.85) 0%,
      rgba(75, 44, 94, 0.75) 50%,
      rgba(26, 26, 26, 0.85) 100%
    );
  }

  /* Header */
  .header .logo h1 {
    font-size: 20px;
  }

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

  .header .btn-getstarted {
    padding: 8px 20px;
    font-size: 12px;
    margin: 0 10px 0 0;
  }

  /* About Section */
  .about .content {
    margin-bottom: 30px;
  }

  .about-content-wrapper h3,
  .about h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about-founder-hero {
    border-radius: 24px;
  }

  .founder-quote-container {
    width: 100%;
  }

  .founder-quote {
    padding: 25px 20px;
  }

  .founder-quote p {
    font-size: 20px;
    padding-left: 15px;
  }

  .founder-quote cite {
    font-size: 14px;
    padding-left: 15px;
  }

  .quote-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: 15px;
    left: 15px;
  }

  .founder-badge-overlay {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Legacy founder-section */
  .founder-section {
    margin-top: 30px;
  }

  .founder-section .founder-image-wrapper {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

  .founder-quote {
    padding: 25px 20px;
    margin: 0;
  }

  .founder-quote p {
    font-size: 18px;
  }

  .founder-quote cite {
    font-size: 14px;
  }

  .about .icon-box {
    margin-bottom: 20px;
  }

  /* Curriculum Cards */
  .curriculum-card {
    margin-bottom: 30px;
    padding: 30px 20px;
  }

  .curriculum-card h3 {
    font-size: 24px;
  }

  .curriculum-card .card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .btn-curriculum {
    padding: 10px 25px;
    font-size: 14px;
    width: 100%;
  }

  .btn-enroll-large {
    padding: 14px 35px;
    font-size: 16px;
    width: 100%;
  }

  /* Stats Section */
  .stats-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .stats .stats-item {
    padding: 30px 20px 25px 20px;
    margin-top: -30px;
  }

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

  .stats .stats-item p {
    font-size: 14px;
  }

  /* Cohorts Section */
  .cohort-info h3 {
    font-size: 28px;
  }

  .cohort-info .lead {
    font-size: 18px;
  }

  .cohort-details li {
    font-size: 14px;
    padding: 12px 0;
  }

  .cohort-actions {
    margin-top: 30px;
  }

  .btn-cohort-primary,
  .btn-cohort-secondary {
    width: 100%;
    padding: 14px 25px;
  }

  /* Learning Format */
  .learning-format-card {
    padding: 30px 20px;
    margin-bottom: 25px;
  }

  .learning-format-card i {
    font-size: 42px;
  }

  .learning-format-card h4 {
    font-size: 20px;
  }

  .mentors-section h3 {
    font-size: 24px;
  }

  .mentor-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  /* Testimonials */
  .testimonials .testimonial-item {
    padding: 25px 20px;
    margin: 20px 10px;
  }

  /* Pricing */
  .pricing .pricing-item {
    padding: 40px 25px;
    margin-bottom: 30px;
  }

  .pricing h3 {
    font-size: 20px;
  }

  .pricing h4 {
    font-size: 36px;
  }

  .best-value-badge {
    top: -12px;
    right: 15px;
    padding: 6px 15px;
    font-size: 10px;
  }

  .pricing .buy-btn {
    width: 100%;
    padding: 12px 30px;
  }

  /* FAQ */
  .faq .faq-container .faq-item {
    padding: 20px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 16px;
    padding-right: 40px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
  }

  /* Partners */
  .partner-item {
    margin-bottom: 20px;
  }

  .partner-item h4 {
    font-size: 18px;
  }

  .btn-partner-primary,
  .btn-partner-secondary {
    width: 100%;
    min-width: auto;
    padding: 12px 25px;
  }

  /* Contact */
  .join-options h4 {
    font-size: 20px;
  }

  .btn-join-option {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Section Titles */
  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 14px;
  }

  /* Section Padding */
  section,
  .section {
    padding: 40px 0;
  }

  .section-bg {
    padding: 100px 0;
  }
}

/* Small Mobile (575px and below) */
@media (max-width: 575px) {
  /* Hero */
  .hero {
    padding: 50px 0;
  }

  .hero h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .hero p {
    font-size: 15px;
    padding-left: 12px;
  }

  /* Header */
  .header {
    padding: 15px 0;
  }

  .header .logo h1 {
    font-size: 18px;
  }

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

  /* About */
  .about h3 {
    font-size: 24px;
  }

  .founder-image-wrapper {
    width: 120px;
    height: 120px;
  }

  .founder-quote {
    padding: 20px 15px;
  }

  .founder-quote p {
    font-size: 16px;
  }

  /* Curriculum */
  .curriculum-card {
    padding: 25px 15px;
  }

  .curriculum-card h3 {
    font-size: 20px;
  }

  .curriculum-card ul li {
    font-size: 14px;
    padding: 8px 0;
  }

  /* Stats */
  .stats-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .stats .stats-item {
    padding: 25px 15px 20px 15px;
    margin-top: -25px;
  }

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

  /* Cohorts */
  .cohort-info h3 {
    font-size: 24px;
  }

  .cohort-info .lead {
    font-size: 16px;
  }

  /* Learning Format */
  .learning-format-card {
    padding: 25px 15px;
  }

  .learning-format-card i {
    font-size: 36px;
  }

  .learning-format-card h4 {
    font-size: 18px;
  }

  /* Pricing */
  .pricing .pricing-item {
    padding: 35px 20px;
  }

  .pricing h4 {
    font-size: 32px;
  }

  /* Section Titles */
  .section-title {
    padding-bottom: 40px;
  }

  .section-title h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  /* Buttons */
  .btn-get-started,
  .btn-secondary,
  .btn-ghost,
  .btn-curriculum,
  .btn-enroll-large,
  .btn-cohort-primary,
  .btn-cohort-secondary,
  .pricing .buy-btn {
    font-size: 14px;
    padding: 12px 25px;
  }

  /* Section Padding */
  section,
  .section {
    padding: 30px 0;
  }

  .section-bg {
    padding: 80px 0;
  }

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

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

  /* Additional small screen fixes */
  .col-lg-8,
  .col-lg-6,
  .col-lg-4,
  .col-xl-6,
  .col-xl-5,
  .col-xl-7 {
    width: 100%;
    max-width: 100%;
  }

  /* Ensure stats are visible */
  .stats .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .stats .col-lg-3 {
    width: 100%;
    max-width: 100%;
  }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
  .hero h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
    padding-left: 10px;
  }

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

  .curriculum-card h3,
  .cohort-info h3,
  .about h3 {
    font-size: 20px;
  }

  .founder-image-wrapper {
    width: 100px;
    height: 100px;
  }

  /* Ensure all buttons fit */
  .btn-get-started,
  .btn-secondary,
  .btn-ghost,
  .btn-curriculum,
  .btn-enroll-large,
  .btn-cohort-primary,
  .btn-cohort-secondary,
  .pricing .buy-btn,
  .btn-partner-primary,
  .btn-partner-secondary,
  .btn-join-option {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
  }

  /* Reduce padding on cards */
  .curriculum-card,
  .learning-format-card,
  .pricing-item,
  .testimonial-item {
    padding: 20px 15px;
  }

  /* Smaller icons */
  .stats-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .curriculum-card .card-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Fix overflow issues and ensure visibility */
@media (max-width: 768px) {
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .container,
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    overflow-x: hidden;
  }

  /* Ensure text doesn't overflow */
  h1, h2, h3, h4, h5, h6, p, span, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* Fix table overflow */
  table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Ensure all sections are visible */
  section,
  .section {
    overflow-x: hidden;
    width: 100%;
  }

  /* Fix swiper on mobile */
  .swiper {
    width: 100%;
    overflow: visible;
  }

  .swiper-slide {
    width: 100% !important;
  }

  /* Ensure buttons are tappable */
  a, button {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Fix form elements */
  input, textarea, select {
    width: 100%;
    max-width: 100%;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Ensure cards don't overflow */
  .curriculum-card,
  .learning-format-card,
  .pricing-item,
  .testimonial-item,
  .mentor-item {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* Fix grid layouts */
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Ensure icons are visible */
  i, .bi {
    font-size: inherit;
  }

  /* Fix navigation on mobile */
  .navmenu ul {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  /* Ensure footer is visible */
  .footer {
    padding-bottom: 30px;
  }

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

  /* Fix spacing issues */
  .mt-4, .mt-5 {
    margin-top: 2rem !important;
  }

  .mb-4, .mb-5 {
    margin-bottom: 2rem !important;
  }

  /* Ensure all text is readable */
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Fix z-index issues */
  .hero .container {
    z-index: 10;
  }
}