/* main theme styles */
/* =====CSS FOR HEADER===== */
/* Add this to your style.css or custom CSS file */

:root {
  --primary-yellow: #FFC107;
  --primary-blue: #003B7A;
  --text-white: #FFFFFF;
  --text-dark: #1a1a1a;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== STICKY HEADER ===== */
.site-header {
  background: rgba(255, 193, 7, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgb(255, 193, 7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.38);
  transition: background 0.3s ease, box-shadow 0.3s ease;

}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo Styles */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
  gap: 12px;
}

.site-logo img {
  height: 200px;
  margin-top: 25%;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.site-logo:hover img {
  transform: scale(1.05);
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  transition: var(--transition);
}

.site-description {
  font-size: 10px;
  color: var(--primary-blue);
  opacity: 0.85;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Navigation Menu */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  display: block;
  padding: 28px 22px;
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

/* .site-header.scrolled .site-nav a {
      color: var(--primary-blue);
    } */

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 22px;
  width: 0;
  height: 3px;
  background-color: var(--primary-blue);
  transition: var(--transition);
  border-radius: 2px;
}

.site-nav a:hover::after,
.site-nav li.current-menu-item>a::after,
.site-nav li.current_page_item>a::after {
  width: calc(100% - 44px);
}

.site-nav li.current-menu-item>a,
.site-nav li.current_page_item>a {
  color: var(--primary-blue);
  font-weight: 700;
}

.site-header.scrolled .site-nav li.current-menu-item>a,
.site-header.scrolled .site-nav li.current_page_item>a {
  color: var(--primary-blue);
}

/* Hamburger Menu */
.hamburger {
  display: none !important;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.site-header.scrolled .hamburger span {
  background-color: var(--primary-blue);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none !important;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD700 100%);
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.3s ease-out;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 999;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu.active {
  display: flex !important;
}

.mobile-menu li {
  width: 100%;
  border-bottom: 1px solid rgba(0, 59, 122, 0.1);
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.mobile-menu a {
  padding: 16px 20px !important;
  display: block;
  width: 100%;
  text-align: left;
  color: var(--text-white) !important;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary-blue) !important;
}

.mobile-menu li.current-menu-item>a,
.mobile-menu li.current_page_item>a {
  background-color: rgba(0, 59, 122, 0.15);
  border-left: 4px solid var(--primary-blue);
  padding-left: 16px !important;
  color: var(--primary-blue) !important;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
  }

  .site-nav a {
    padding: 28px 16px;
    font-size: 14px;
  }

  .site-nav a::after {
    left: 16px;
  }

  .site-nav a:hover::after,
  .site-nav li.current-menu-item>a::after,
  .site-nav li.current_page_item>a::after {
    width: calc(100% - 32px);
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
    padding: 0 15px;
  }

  .site-logo-text {
    display: none;
  }

  .site-logo img {
    height: 170px !important;
    margin-top: 25%;
  }

  .hamburger {
    display: flex !important;
  }

  .site-nav {
    display: none !important;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-menu {
    top: 70px !important;
  }

  .site-name {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .header-container {
    height: 65px;
  }

  .site-logo img {
    height: 150px;
    margin-top: 25%;
  }

  .hamburger span {
    width: 24px;
    height: 2.5px;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  margin-top: -100px;
  justify-content: center;
  background: linear-gradient(rgba(160, 160, 159, 0.58), rgba(0, 0, 0, 0.70)), url('../images/bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(0, 59, 122, 0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-heading {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 2px 8px 16px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
  word-spacing: 2px;
}

.hero-subtitle {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: 25px;
  text-shadow: 1px 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.hero-text {
  font-size: clamp(14px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

.hero-btn-primary,
.hero-btn-secondary {
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary {
  background: var(--primary-yellow);
  color: var(--primary-blue);
  border-color: var(--primary-yellow);
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: -1;
}

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

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: #FFD700;
}

.hero-btn-secondary {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}

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

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

.hero-btn-secondary:hover {
  color: var(--primary-yellow);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
/* @media (max-width: 1024px) {
      .header-container {
        padding: 0 20px;
      }

      .site-nav a {
        padding: 28px 16px;
        font-size: 14px;
      }

      .site-nav a::after {
        left: 16px;
      }

      .site-nav a:hover::after,
      .site-nav li.current-menu-item > a::after,
      .site-nav li.current_page_item > a::after {
        width: calc(100% - 32px);
      }
    } */

@media (max-width: 768px) {
  .hero-heading {
    font-size: clamp(32px, 6vw, 52px);
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 18px;
  }

  .hero-text {
    font-size: clamp(13px, 1vw, 16px);
    margin-bottom: 30px;
  }

  .hero-buttons {
    gap: 15px;
    margin-top: 35px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 14px 40px;
    font-size: 14px;
  }

  .site-name {
    font-size: 18px;
  }
}

@media (max-width: 600px) {

  /* .hero-section{
        padding-top: -100px !important;
      } */
  .hero-heading {
    font-size: clamp(28px, 5vw, 42px);
  }

  .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
  }

  .hero-text {
    font-size: 13px;
    padding: 0 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 13px 30px;
    font-size: 13px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 30px;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(0, 59, 122, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-blue) 100%);
  border-radius: 10px;
}

.about-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #666;
  max-width: 600px;
  margin: 40px auto 0;
  line-height: 1.8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-text-block {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary-yellow);
  transition: all 0.3s ease;
}

.about-text-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-left-color: var(--primary-blue);
}

.about-text-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-text-block h3::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary-yellow);
  border-radius: 50%;
}

.about-text-block p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-box {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.about-image-box::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: 30px;
  bottom: 30px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, rgba(255, 193, 7, 0.2) 100%);
  border-radius: 20px;
  z-index: -1;
}

.about-image-box img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: block;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.about-cta {
  text-align: center;
  margin-top: 80px;
}

.about-cta-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
}

.about-btn {
  display: inline-block;
  padding: 16px 50px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD700 100%);
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
  background: linear-gradient(135deg, #FFD700 0%, var(--primary-yellow) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-header {
    margin-bottom: 50px;
  }

  .about-title::after {
    width: 60px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-text-block {
    padding: 20px;
  }

  .about-image-box::before {
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 50px 15px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-subtitle {
    font-size: 14px;
  }

  .about-text-block h3 {
    font-size: 18px;
  }

  .about-text-block p {
    font-size: 13px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 20px 15px;
  }
}

/* ===== COMPACT FOOTER CSS ===== */

/* Footer Main */
.site-footer {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #002850 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 193, 7, 0.05);
  border-radius: 50%;
  z-index: 0;
}

/* Footer Content */
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Footer Column */
.footer-column h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary-yellow);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-yellow);
  border-radius: 2px;
}

/* Footer Logo Section */
.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo-section img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-logo-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: white;
  padding-bottom: 0;
}

.footer-logo-text h3::after {
  display: none;
}

/* Footer Description */
.footer-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-yellow);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 4px;
}

/* Contact Info */
.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info span {
  min-width: 18px;
  font-size: 14px;
  color: var(--primary-yellow);
  line-height: 1.4;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-yellow);
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 0;
  padding: 0;
  border: none;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
  color: var(--primary-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-yellow);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    padding: 40px 20px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 35px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-column h3::after {
    width: 35px;
  }

  .footer-bottom {
    padding: 18px 20px;
  }

  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 15px;
  }

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

@media (max-width: 600px) {
  .footer-content {
    padding: 30px 15px;
    align-items: center;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-column h3 {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-logo-section {
    gap: 10px;
    margin-bottom: 12px;
  }

  .footer-logo-section img {
    height: 58px !important;
  }

  .footer-logo-text h3 {
    font-size: 16px;
  }

  .footer-links a,
  .contact-info li,
  .footer-description {
    font-size: 12px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .footer-bottom {
    padding: 15px 15px;
  }

  .footer-bottom-links {
    gap: 10px;
  }

  .footer-copyright,
  .footer-bottom-links a {
    font-size: 11px;
  }

  .footer-column h3::after {
    width: 30px;
  }
}

/* ===== COUNTER SECTION ===== */
.counter-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #002850 100%);
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}

.counter-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.counter-item {
  text-align: center;
  color: white;
}

.counter-number {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  color: var(--primary-yellow);
  line-height: 1;
  margin-bottom: 15px;
  display: block;
}

.counter-number1 {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  color: var(--primary-yellow);
  line-height: 1;
  margin-bottom: 15px;
  display: block;
}

.counter-label {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.counter-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 100px 30px;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.testimonials-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-blue) 100%);
  border-radius: 10px;
}

.testimonials-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #666;
  max-width: 600px;
  margin: 40px auto 0;
  line-height: 1.8;
}

.testimonials-slider {
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  border-top: 4px solid var(--primary-yellow);
}

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

.testimonial-quote {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 48px;
  color: var(--primary-yellow);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD700 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

.author-info p {
  font-size: 13px;
  color: #999;
  margin: 5px 0 0;
}

.rating {
  display: flex;
  gap: 3px;
  margin: 8px 0;
}

.star {
  color: var(--primary-yellow);
  font-size: 14px;
}

@media (max-width: 768px) {
  .counter-section {
    padding: 60px 20px;
  }

  .counters-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }

  .counter-number {
    font-size: 48px;
  }

  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-card {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .counter-section {
    padding: 50px 15px;
  }

  .counters-grid {
    gap: 30px;
  }

  .counter-number {
    font-size: 36px;
  }

  .counter-label {
    font-size: 16px;
  }

  .testimonials-section {
    padding: 50px 15px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}

/* ===== UPCOMING PROGRAMS SECTION ===== */
.upcoming-programs-section {
  padding: 100px 30px;
  background: white;
  position: relative;
  overflow: hidden;
}

.upcoming-programs-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 193, 7, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.upcoming-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.upcoming-header {
  text-align: center;
  margin-bottom: 60px;
}

.upcoming-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.upcoming-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-blue) 100%);
  border-radius: 10px;
}

.upcoming-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: #666;
  max-width: 600px;
  margin: 35px auto 0;
  line-height: 1.7;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.upcoming-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border-top: 4px solid var(--primary-yellow);
}

.upcoming-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.upcoming-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD700 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  overflow: hidden;
  position: relative;
}

.upcoming-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upcoming-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(0, 59, 122, 0.1) 100%);
}

.upcoming-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-blue);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.upcoming-card-content {
  padding: 25px;
}

.upcoming-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.upcoming-date span {
  font-size: 16px;
}

.upcoming-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
  line-height: 1.3;
}

.upcoming-card-description {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

.upcoming-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.upcoming-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
}

.upcoming-meta-item span:first-child {
  font-size: 16px;
  color: var(--primary-yellow);
}

.upcoming-meta-item strong {
  color: var(--primary-blue);
  font-weight: 600;
}

@media (max-width: 768px) {
  .upcoming-programs-section {
    padding: 60px 20px;
  }

  .upcoming-header {
    margin-bottom: 45px;
  }

  .upcoming-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .upcoming-card {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }

  .upcoming-card-image {
    height: 180px;
    font-size: 60px;
  }

  .upcoming-card-content {
    padding: 20px;
  }

  .upcoming-card-title {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .upcoming-programs-section {
    padding: 50px 15px;
  }

  .upcoming-title {
    font-size: 28px;
  }

  .upcoming-subtitle {
    font-size: 14px;
  }

  .upcoming-card {
    border-top: 3px solid var(--primary-yellow);
  }

  .upcoming-card-image {
    height: 160px;
    font-size: 50px;
  }

  .upcoming-card-title {
    font-size: 17px;
  }

  .upcoming-card-description {
    font-size: 13px;
  }

  .upcoming-meta-item {
    font-size: 12px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 30px;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(0, 59, 122, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-blue) 100%);
  border-radius: 10px;
}

.faq-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: #666;
  max-width: 600px;
  margin: 35px auto 0;
  line-height: 1.7;
}

.faq-accordion {
  margin-top: 50px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left-color: var(--primary-yellow);
}

.faq-item.active {
  border-left-color: var(--primary-blue);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-blue);
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  color: var(--primary-blue);
  background: rgba(255, 193, 7, 0.05);
}

.faq-question-text {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-yellow);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  padding-bottom: 3px;
  padding-left:1px;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary-blue);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-cta-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.faq-cta-link {
  color: var(--primary-blue);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.faq-cta-link:hover {
  color: var(--primary-yellow);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-header {
    margin-bottom: 45px;
  }

  .faq-item {
    margin-bottom: 15px;
    border-left-width: 3px;
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 15px;
    gap: 15px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-answer-text {
    font-size: 14px;
  }

  .faq-cta {
    padding: 25px 20px;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 50px 15px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 14px;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 18px 18px;
  }

  .faq-answer-text {
    font-size: 13px;
  }

  .faq-cta {
    padding: 20px 15px;
  }

  .faq-cta-text,
  .faq-cta-link {
    font-size: 14px;
  }
}