﻿/* Home Page Styles */

/* ============================================
   FONT IMPORTS - AVENIR (ENGLISH)
============================================ */

/* Avenir Light */
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-Light-07.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-LightOblique-08.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Avenir Book (Regular) */
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-Book-01.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-BookOblique-02.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Avenir Roman */
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-Roman-12.ttf') format('truetype');
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-Oblique-11.ttf') format('truetype');
  font-weight: 450;
  font-style: italic;
  font-display: swap;
}

/* Avenir Medium */
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-Medium-09.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-MediumOblique-10.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Avenir Heavy */
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-Heavy-05.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-HeavyOblique-06.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Avenir Black */
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-Black-03.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/avenir/Avenir-BlackOblique-04.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ============================================
   FONT IMPORTS - ALEXANDRIA (ARABIC/RTL)
============================================ */

/* Alexandria Regular */
@font-face {
  font-family: 'Alexandria';
  src: url('../fonts/Alexandria-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Alexandria Medium */
@font-face {
  font-family: 'Alexandria';
  src: url('../fonts/Alexandria-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Alexandria SemiBold */
@font-face {
  font-family: 'Alexandria';
  src: url('../fonts/Alexandria-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  --font-family-avenir: 'Avenir', sans-serif;
  --font-family-alexandria: 'Alexandria', 'Arial', sans-serif;
  --primary: #22297A;
  --secondary: #E98024;
  --accent: #CD9967;
  --blue: #006699;
  --dark-bg: #0D1721;
  --dark-bg-2: #09141E;
  --dark-bg-3: #142230;
  --dark-bg-4: #243241;
  --gray-10: #F5F5F5;
  --gray-20: #F8F9FB;
  --gray-40: #898989;
  --gray-60: #606060;
  --gray-80: #262626;
  --text-dark: #0B0B0B;
  --text-gray: #747474;
  --text-light: #F8F9FB;
  --white: #FFFFFF;
  --error: #E82929;
  --border-color: #DADADA;
}

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

/* Enable smooth scrolling and hardware acceleration */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Optimize animations performance */
.wow,
.animate__animated {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

body {
  font-family: var(--font-family-avenir );
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 2000;
  padding: 20px 0;
  overflow-x: hidden;
  max-height: 90px;
  overflow: visible;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo img {

  width: 110px;

}


.flag-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 40px;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;

}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.language-selector {
  position: relative;
}

.language-current {
  background: none;
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

.language-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 8px;
  min-width: 50px;
  display: none; /* Hidden by default */
  z-index: 2100;
}

.language-dropdown.show {
  display: block;
}

.language-dropdown li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0px 8px;
  border-radius: px;
  transition: background-color 0.2s ease;
}

.language-dropdown li a:hover {
  background-color: var(--gray-10);
}

.hamburger {
  display: flex;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px;
  width: 44px;
  height: 44px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.hamburger svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

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

.hamburger:active {
  transform: scale(0.95);
}

/* Pulse animation for hamburger on first load */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hamburger-icon {
  display: block;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  opacity: 1;
}

.close-icon {
  display: block;
  transform: translate(-50%, -50%) rotate(-180deg) scale(0);
  opacity: 0;
}

.hamburger.active .hamburger-icon {
  transform: translate(-50%, -50%) rotate(180deg) scale(0);
  opacity: 0;
}

.hamburger.active .close-icon {
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  opacity: 1;
  color: var(--primary) !important;
}

/* Mobile Header Actions - Hidden on Desktop */
.mobile-header-actions {
  display: none;
}

.flag-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}


.btn-dashboard {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  border: 1px solid var(--secondary);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: var(--secondary);
}
.btn-dashboard:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-login {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: var(--primary);
}

.btn-login:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-signup {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  background: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-signup:hover {
  background: #1a1f5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 41, 122, 0.3);
}




/* Hero Section */
.hero-section {
  position: relative;
  min-height: 704px;
  background: linear-gradient(95deg, 
    var(--primary) 0%, 
    var(--primary) 45%, 
    #1e2669 55%,
    #1a2360 62%,
    #172058 68%,
    #141c4f 73%,
    #111847 78%,
    #0e1540 82%,
    #0c1238 86%,
    #0a0f30 90%,
    #080d28 94%,
    #09141E 100%
  );
  overflow: hidden;
  margin-top: 90px;
  padding: 0;
  z-index: 1;
}


.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: -50px;
  width: 1156px;
  height: 1037px;
  top: -329px;
  left: -450px;
  background-image: url('../images/v-shape.png');
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  opacity: 1;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: -100%;
  bottom: 0;
  width: 200%;

  z-index: 2;
}

.hero-image {
  position: absolute;
  width: 641px;
  height: 982px;
  right: 0;
  top: 0;
  overflow: hidden;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

.hero-image img {
  position: absolute;
  width: auto;
  height: 85%;
  max-width: none;
  right: 50%;
  top: 28%;
  transform: translate(50%, -50%);
  object-fit: contain;
  z-index: 3;
  opacity: 1;
}

.hero-content {
  display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 0px;
      gap: 20px;
      position: absolute;
      width: 603px;
      height: 426px;
      left: 180px;
      top: 108px;
      z-index: 3;
}

.hero-badge {
  display: inline-flex;
  padding: 10px 16px;
  background: rgba(34, 41, 122, 0.6);
  border: 1px solid #B4B6B8;
  border-radius: 4px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.hero-badge span {
  color: var(--white);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 12px;
  letter-spacing: 0.5px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 57.6px;
  color: var(--white);
}

.hero-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--text-light);
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  transition: all 0.3s ease;
  height: 48px;
}

.btn-contact:hover {
  background: #005580;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 102, 153, 0.3);
}

.icon-wrapper {
  width: 28px;
  height: 28px;
  background: rgba(5, 42, 117, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 146px;
  background-image: url('../images/Wave.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  z-index: 3;
}

/* ============================================
   PAGE HERO SECTION (Reusable for all pages)
============================================ */
.page-hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a2160 100%);
  margin-top: 90px;
  padding: 100px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 1;
}

.page-hero-pattern {
  position: absolute;
  width: 1066px;
  height: 955px;
  left: calc(50% - 1066px/2);
  top: -476px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 890px;
  text-align: center;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.page-hero-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.95);
}

.page-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3;
}

/* Page Hero Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0;
    margin-top: 40px;
    min-height: 400px;
  }

  .page-hero-content h1 {
    font-size: 32px;
  }

  .page-hero-content p {
    font-size: 16px;
  }

  .page-hero-wave {
   
    bottom: 0;

  
  }
}

@media (max-width: 480px) {

  .page-hero-content h1 {
    font-size: 28px;
  }

  .page-hero-content p {
    font-size: 15px;
  }

  .page-hero-wave {
   
    bottom: 0;
  }

  .page-hero-pattern {
    position: absolute;
    width: auto;
    height: auto;
    left: 0;
    top: 0;
  }
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

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

.section-badge {
  display: inline-flex;
  padding: 10px 20px;
  border: 1px solid var(--secondary);
  border-radius: 8px;
  width: 120px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-badge span {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  color: var(--text-dark);
}

.about-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--gray-60);

}

.btn-read-more-about {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--primary);
    border: none;
    width: fit-content;
height: 44px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-read-more-about:hover {
  background: #1a1f5c;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(34, 41, 122, 0.3);
}

.btn-read-more-about svg {
  transition: transform 0.3s ease;
}

.btn-read-more-about:hover svg {
  transform: translateX(4px);
}

.about-image-wrapper {
  flex: 1;
  position: relative;
  max-width: 517px;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 517px;
  height: 304px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
  
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-frame {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: auto;
  z-index: 1;
  opacity: 0.8;
}

.about-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 35px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  border: 1px solid #D6D6D6;
  min-height: 200px;
}

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

.feature-card.featured {
  background: var(--secondary);
  color: var(--white);
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag-line {
  width: 4px;
  height: 18px;
  background: var(--secondary);
  border-radius: 2px;
}

.tag-line-blue {
  width: 4px;
  height: 18px;
  background: var(--primary);
  border-radius: 2px;
}

.tag-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: var(--text-dark);
}

.feature-card.featured .tag-text {
  color: var(--white);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: var(--text-dark);
}

.feature-card.featured h3 {
  color: var(--white);
}

.feature-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  color: var(--gray-60);
}

.feature-card.featured p {
  color: rgba(255, 255, 255, 0.95);
}

/* Mobile App Section */
.mobile-app-section {
  padding: 0;

height: 665.95px;

  background: var(--primary);
  position: relative;
  overflow: hidden;
  max-height: 665.95px;
}




.mobile-app-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 146px;
  background-image: url('../images/Wave.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  z-index: 3;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  line-height: 0;
}

.wave-top img {
  width: 100%;
  height: auto;
  display: block;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3;
  line-height: 0;
}

.wave-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-background-shape {
  position: absolute;
  right: 0;
  left: 50%;
  top: 50%;
  width: 900px;
  height: 900px;
  transform: translateY(-50%);

  background-image: url('../images/Intersect.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  opacity: 0.9;
}

.mobile-content {
  display: flex;
  
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 2;

}

.mobile-text {
  display: flex;
  max-width: 600px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
padding: 0px;
gap: 0px;



}

.mobile-text h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  color: var(--white);
  margin-bottom: 24px;
}

.mobile-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

.app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.app-store,
.google-play {
  display: inline-block;
  transition: transform 0.3s ease;
}

.app-store img,
.google-play img {
  height: 50px;
  width: auto;
}

.app-store:hover,
.google-play:hover {
  transform: translateY(-4px);
}

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

.mobile-image {
  position: relative;
  max-width: 450px;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.mobile-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* How It Works Section */
.how-it-works-section {
  padding: 100px 0;
  background: var(--white);
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 60px;

  margin-left: auto;
  margin-right: auto;
}

.steps-left,
.steps-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.steps-left {
  align-items: flex-end;
  text-align: right;
}

.steps-right {
  align-items: flex-start;
  text-align: left;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 400px;
}

.steps-left .step-item {
  flex-direction: row-reverse;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(233, 128, 36, 0.3);
}

.step-info h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 28px;
}

.step-info p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: var(--gray-60);
}

.steps-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.center-image-wrapper {
  position: relative;
  width: 380px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-image-wrapper img {
  width: 100%;
  height: 100%;
 
  border-radius: 20px;
}

.logo-overlay {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 2;
}

.logo-overlay img {
  width: 100%;

  object-fit: contain;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: #F8F9FB;

}

.stats-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--gray-60);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stat-card {

  padding: 32px 24px;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
}

.stat-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-60);
}

/* Partners Section */
.partners-section {
  padding: 30px 0px 250px 0;
  background: var(--white);
}

.partners-grid {
  display: flex;
  transition: transform 1.5s ease;
  gap: 30px;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);

  border-radius: 12px;
  padding: 20px;
  height: 120px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partners-carousel-container {
  position: relative;
}

.partners-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.partners-grid {
  display: flex;
  transition: transform 1.5s ease;
  gap: 30px;
}

.partner-logo {
  flex: 0 0 calc(25% - 22.5px); /* 4 items with 30px gap */
  box-sizing: border-box;
}

.partners-carousel-prev {
  left: -40px;
}

.partners-carousel-next {
  right: -40px;
}

/* ============================================
   SWIPER CAROUSEL STYLES
============================================ */

/* Clean Swiper Styles */
.partnersSwiper,
.blogSwiper {
  width: 100%;
  max-width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.partnersSwiper .swiper-wrapper,
.blogSwiper .swiper-wrapper {
  align-items: center;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
}

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

/* Navigation */
.partners-carousel-container {
  position: relative;
  padding: 0 60px;
  overflow: hidden;
  max-width: 100%;
}

.partners-carousel-prev,
.partners-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.partners-carousel-prev {
  left: 0;
}

.partners-carousel-next {
  right: 0;
}

@media (min-width: 1024px) {
  .partners-carousel-container {
    padding: 0 80px;
  }
}

/* ============================================
   BLOG DETAILS PAGE STYLES
============================================ */
.blog-detail-section {
  padding: 80px 0;
  background: var(--white);
}

.blog-detail-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-detail-main {
  width: 100%;
}

.blog-detail-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.blog-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-detail-body {
  color: var(--text-dark);
}

.blog-detail-intro {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.0;
  color: #5A5A5A;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid var(--secondary);
}

.blog-detail-text {
  margin-bottom: 40px;
}

.blog-detail-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-detail-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin: 30px 0 16px;
  line-height: 1.4;
}

.blog-detail-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #5A5A5A;
  margin-bottom: 20px;
}

.blog-detail-text ul,
.blog-detail-text ol {
  margin: 20px 0;
  padding-left: 30px;
}

.blog-detail-text ul li,
.blog-detail-text ol li {
  font-size: 18px;
  line-height: 1.8;
  color: #5A5A5A;
  margin-bottom: 12px;
}

.blog-detail-text ul li {
  list-style: disc;
}

.blog-detail-text ol li {
  list-style: decimal;
}

.blog-detail-highlight {
  background: linear-gradient(135deg, #F8F9FB 0%, #E8EBF0 100%);
  padding: 40px;
  border-radius: 16px;
  border-left: 4px solid var(--secondary);
  margin: 40px 0;
  text-align: center;
}

.blog-detail-highlight p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary);
  font-style: italic;
  margin: 0 0 16px 0;
}

.highlight-author {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
}

.blog-detail-image-inline {
  margin: 40px 0;
  text-align: center;
}

.blog-detail-image-inline img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.image-caption {
  font-size: 14px;
  color: #898989;
  font-style: italic;
}

.blog-detail-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #F8F9FB;
  border-radius: 12px;
  border: 1px solid #E5EAF4;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(233, 128, 36, 0.2);
}

.benefit-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #5A5A5A;
  margin: 0;
}

.blog-detail-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1a2160 100%);
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  margin: 60px 0 40px;
}

.blog-detail-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.blog-detail-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.btn-detail-cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--secondary);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-detail-cta:hover {
  background: #d47320;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 128, 36, 0.4);
}

.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 30px 0;
  border-top: 1px solid #E5EAF4;
  border-bottom: 1px solid #E5EAF4;
}

.tag {
  padding: 8px 20px;
  background: #F8F9FB;
  border: 1px solid #E5EAF4;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--primary);
  color: var(--white);
}

.blog-detail-share {
  padding: 30px 0;
}

.blog-detail-share h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #E5EAF4;
  background: var(--white);
}

.share-facebook {
  color: #1877F2;
}

.share-facebook:hover {
  background: #1877F2;
  color: var(--white);
  border-color: #1877F2;
}

.share-twitter {
  color: #1DA1F2;
}

.share-twitter:hover {
  background: #1DA1F2;
  color: var(--white);
  border-color: #1DA1F2;
}

.share-linkedin {
  color: #0A66C2;
}

.share-linkedin:hover {
  background: #0A66C2;
  color: var(--white);
  border-color: #0A66C2;
}

.share-whatsapp {
  color: #25D366;
}

.share-whatsapp:hover {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

/* ============================================
   BLOG COMMENTS SECTION
============================================ */

.blog-comments-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #E5EAF4;
}

.blog-comments-section h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.comments-list {
  margin-bottom: 50px;
}

.comment-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #F0F0F0;
}

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

.comment-avatar {
  flex-shrink: 0;
}

.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.comment-author {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.comment-date {
  font-size: 14px;
  color: #888;
}

.comment-text {
  font-size: 16px;
  line-height: 1.6;
  color: #5A5A5A;
  margin: 0;
}

.no-comments {
  text-align: center;
  padding: 40px 0;
  color: #888;
  font-size: 16px;
}

.comment-form-wrapper {
  margin-top: 40px;
  padding: 30px;
  background: #F8F9FB;
  border-radius: 12px;
}

.comment-form-wrapper h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.comment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5EAF4;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 41, 122, 0.1);
}

.comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-comment {
  padding: 12px 30px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-comment:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 41, 122, 0.2);
}

@media (max-width: 768px) {
  .comment-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .comment-item {
    flex-direction: column;
    gap: 15px;
  }
}

/* Sidebar Styles */
.blog-detail-sidebar {
  position: sticky;
  top: 110px;
  height: fit-content;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid #E5EAF4;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--secondary);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.author-details p {
  font-size: 14px;
  color: #898989;
}

.author-bio {
  font-size: 15px;
  line-height: 1.7;
  color: #5A5A5A;
}

.related-post-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E5EAF4;
}

.related-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-post-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-content h4 {
  margin-bottom: 8px;
}

.related-post-content h4 a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
  color: var(--secondary);
}

.related-post-date {
  font-size: 13px;
  color: #898989;
}

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

.categories-list li {
  margin-bottom: 12px;
}

.categories-list li:last-child {
  margin-bottom: 0;
}

.categories-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #F8F9FB;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.categories-list li a:hover {
  background: var(--primary);
  color: var(--white);
}

.categories-list li a span {
  font-size: 14px;
  font-weight: 400;
  color: #898989;
}

.categories-list li a:hover span {
  color: rgba(255, 255, 255, 0.8);
}

/* Blog Detail Responsive */
@media (max-width: 1200px) {
  .blog-detail-content {
    gap: 40px;
  }

  .blog-detail-content {
    grid-template-columns: 1fr 320px;
  }
}

@media (max-width: 992px) {
  .blog-detail-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .blog-detail-sidebar {
    position: static;
    top: auto;
  }

  .sidebar-card {
    max-width: 600px;
    margin: 0 auto 24px;
  }
}

@media (max-width: 768px) {
  .blog-detail-section {
    padding: 60px 0;
  }

  .blog-detail-intro {
    font-size: 18px;
    padding-left: 16px;
  }

  .blog-detail-text h2 {
    font-size: 28px;
  }

  .blog-detail-text h3 {
    font-size: 22px;
  }

  .blog-detail-text p,
  .blog-detail-text ul li,
  .blog-detail-text ol li {
    font-size: 16px;
  }

  .blog-detail-highlight {
    padding: 30px 24px;
  }

  .blog-detail-highlight p {
    font-size: 20px;
  }

  .benefit-item {
    flex-direction: column;
    padding: 20px;
  }

  .blog-detail-cta {
    padding: 36px 24px;
  }

  .blog-detail-cta h3 {
    font-size: 24px;
  }

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

  .sidebar-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .blog-detail-intro {
    font-size: 16px;
  }

  .blog-detail-text h2 {
    font-size: 24px;
  }

  .blog-detail-text h3 {
    font-size: 20px;
  }

  .blog-detail-text p,
  .blog-detail-text ul li,
  .blog-detail-text ol li {
    font-size: 15px;
  }

  .blog-detail-highlight p {
    font-size: 18px;
  }

  .blog-detail-cta h3 {
    font-size: 22px;
  }

  .share-buttons {
    justify-content: center;
  }
}

/* ============================================
   BLOGS PAGE SPECIFIC STYLES
============================================ */
.blogs-page-section {
  padding: 80px 0;
  background: var(--white);
}

.blogs-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  margin-top: 50px;
}

/* Blogs Page Responsive */
@media (max-width: 992px) {
  .blogs-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blogs-page-section {
    padding: 60px 0;
  }

  .blogs-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .blogs-page-section {
    padding: 60px 0;
  }

  .blogs-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Registration CTA */
.registration-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding: 60px 0;
  height: 300px;
  background: linear-gradient(181.37deg, #E98024 -23.82%, #22297A 109.37%);
}

.cta-box {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  max-width: 1200px;
  height: 304px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
}

/* Fix animation transform conflict for cta-box */
.cta-box.animate__animated {
  transform: translateX(-50%) !important;
}

.cta-box.animate__fadeInUp {
  animation-name: fadeInUpCTA !important;
}

@keyframes fadeInUpCTA {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cta-box {
  text-align: center;
  flex-wrap: nowrap;
  flex-direction: column;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 40px;
}

.cta-box h2 span {
  color: var(--secondary);
}

.cta-box p {
  font-size: 16px;
  color: var(--gray-60);
  margin-bottom: 32px;
}

.btn-register {
  display: inline-block;
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background: var(--primary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background: #1a1f5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 41, 122, 0.3);
}

/* Blog Section */
.blog-section {
  padding: 80px 0;

}

.blog-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background: #f8f8f8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
  left: -40px;
}

.carousel-next {
  right: -40px;
}

.carousel-nav svg {
  color: #333;
}

.blog-grid {
  display: flex;
  gap: 30px;
  width: 100%;
  transition: transform 1.5s ease;
}

.blog-card {
  flex: 0 0 calc(33.333% - 20px);
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #D9D9D9;

}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary);
}

.blog-image {
  height: 280px;
  margin: 0 auto;
  overflow: hidden;

  margin-top: 10px;
  padding: 0 10px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* .blog-card:hover .blog-image img {
  transform: scale(1.05);
} */

.blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 30px;
  margin-bottom: 4px;
}

.blog-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: #666;
  margin-bottom: 12px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 19px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #D9D9D9;
  color: var(--primary);
  background: var(--white);
  border-radius: 6px;
  width: fit-content;
  height: 37px;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background: #1a1f5c;
  color: var(--white);
  transform: translateX(2px);
}

.read-more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-image: url('../images/icon-blue.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.btn-read-more:hover .read-more-icon {
  background-image: url('../images/icon-white.svg');
  transform: translateX(2px);
}

.read-more-icon svg {
  display: none;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.contact-content {
  display: flex;
  align-items: start;
  gap: 80px;
  position: relative;
}

.contact-form-wrapper {
  flex: 0 0 auto;
  width: 100%;
  max-width: 660px;
  min-width: 500px;
}

.contact-form-wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.contact-form-wrapper h2 .highlight {
  color: #F7941D;
}

.contact-subtitle {
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
  font-weight: 400;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 16px 20px;
  font-size: 16px;
  color: #333;
  background: var(--white);
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(34, 41, 122, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  position: relative;
  background-repeat: no-repeat;
  background-position: right 16px bottom 16px;
  background-size: 20px 20px;
}

.btn-send {
  padding: 14px 48px;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  text-transform: uppercase;
}

.btn-send:hover {
  background: #1a1f5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 41, 122, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--white);
}

.contact-info-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-text p {
  font-size: 14px;
  color: #333;
  font-weight: 400;
}

.contact-map {
  width: 715px;
  height: 705px;
  min-height: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  background: #F5F7FA;
  color: #2C3E50;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 80px;
  margin-bottom: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E1E8ED;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: #373737;
  text-transform: uppercase;
}

.footer-logo img {
  height: 75px;
  width: auto;
  margin-bottom: 20px;
  filter: none;
}

.footer-tagline {
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  color: #0B0B0B;

  margin-bottom: 28px;

}

.app-downloads {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.app-download {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-download img {
  height: 40px;
  width: auto;
}

.app-download:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* Company Info Section */
.footer-company .company-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-company .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-company .info-icon {
  width: 50px;
  height: 50px;
  background: #CED8EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #3B82F6;
}

.footer-company .info-icon svg {
  width: 22px;
  height: 22px;
}

.footer-company .info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.footer-company .info-label {
  font-size: 14px;
  color: #4E4E4E;
  margin: 0;
}

.footer-company .info-value {
  font-size: 17px;
  font-weight: 600;
  color: #0B0B0B;
  margin: 0;
}

/* Links Section */
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  font-size: 15px;
  line-height: 1.5;
}

.footer-links ul li a {
  color: #0B0B0B;
  transition: color 0.3s ease;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.footer-links ul li a:hover {
  color: #3B82F6;
}

.footer-bottom {

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

.copyright {
  font-size: 12px;
  color: #9CA3AF;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.copyright .year {
  font-weight: 600;
  color: #6B7280;
}

/* Override prefers-reduced-motion to always show animations */




/* WOW.js Animation Support - Content visible by default */
.wow {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Disable animations on mobile */
@media (max-width: 768px) {
  .wow {
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition: none !important;
  }
  
  .animated {
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition: none !important;
  }
}

/* Optimize specific animation speeds */
/* Smooth Animation Settings */
.animate__animated {
  animation-duration: 0.8s !important;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  animation-fill-mode: both !important;
}

.animate__fadeInUp {
  animation-duration: 0.6s !important;
  animation-timing-function: ease-out !important;
}

.animate__fadeInLeft,
.animate__fadeInRight {
  animation-duration: 0.7s !important;
  animation-timing-function: ease-out !important;
}

.animate__slideInLeft {
  animation-duration: 0.7s !important;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.animate__pulse {
  animation-duration: 1s !important;
}

.animate__zoomIn {
  animation-duration: 0.5s !important;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.animate__fadeIn {
  animation-duration: 0.6s !important;
  animation-timing-function: ease-in !important;
}

/* Custom shorter distance animations */
@keyframes fadeInUpShort {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftShort {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightShort {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Override animate.css with shorter distances */
.animate__fadeInUp {
  animation-name: fadeInUpShort !important;
}

.animate__fadeInLeft {
  animation-name: fadeInLeftShort !important;
}

.animate__fadeInRight {
  animation-name: fadeInRightShort !important;
}

/* Smooth transitions for all animated elements */
.wow {
  visibility: hidden;
}

.wow.animate__animated {
  visibility: visible;
}

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

  .about-content,
  .mobile-content {
    gap: 60px;
  }

  .features-grid {
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }

  .navbar {
    flex-wrap: wrap;
    position: relative;
    gap: 20px;
  }

  .logo {
    flex: 0 0 auto;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  .header {
    max-height: 75px;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .language-selector-mobile {
    position: relative;
    z-index: 2100;
  }

  .language-current-mobile {
    background: var(--white);
    border: 1.5px solid var(--border-color);
    padding: 6px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    height: 36px;
    min-width: 50px;
    position: relative;
    z-index: 2100;
  }

  .language-current-mobile span {
    font-size: 11px;
    line-height: 1;
  }

  .language-current-mobile svg {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
  }

  .language-dropdown-mobile {
    position: fixed;
    top: 70px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 8px;
    min-width: 50px;
    display: none;
    height: 36px;
    z-index: 2500;
    list-style: none;
    animation: dropdownSlide 0.3s ease;
  }

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

  .language-dropdown-mobile.show {
    display: block;
  }

  .language-dropdown-mobile li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0px 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
  }

  .language-dropdown-mobile li a:hover {
    background-color: var(--gray-10);
  }

  .btn-mobile-action {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border-color);
    background: var(--white);
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
  }

  .btn-mobile-action:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
  }

  .btn-mobile-action svg {
    width: 18px;
    height: 18px;
    display: block;
  }

  .btn-signup-mobile {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
  }

  .btn-signup-mobile:hover {
    background: #d47320;
    border-color: #d47320;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }

  .nav-container {
    display: none;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    height: calc(100vh - 75px);
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 1px solid rgba(34, 41, 122, 0.08);
    box-shadow: none;
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 20px;
  }

  /* Remove decorative elements */
  .nav-container::after {
    display: none;
  }

  /* Mobile menu backdrop overlay */
  .nav-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  

    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

  .nav-container.active::before {
    opacity: 1;
  }

  .nav-container.active {
    display: flex;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .nav-container.closing {
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

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

  @keyframes slideUp {
    from {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    to {
      opacity: 0;
      transform: translateY(-20px) scale(0.98);
    }
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding: 0;
    position: relative;
    z-index: 1;
  }

  .nav-menu li {
    width: 100%;
  }

  /* Only animate menu items in mobile menu */
  .nav-container .nav-menu li {
    opacity: 1;
    transform: translateX(-20px);
  }

  .nav-container.active .nav-menu li {
    animation: slideInLeft 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .nav-container.active .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
  .nav-container.active .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
  .nav-container.active .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
  .nav-container.active .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
  .nav-container.active .nav-menu li:nth-child(5) { animation-delay: 0.3s; }

  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .nav-menu a {
    padding: 0px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    border-radius: 12px;
    border: none;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  /* Remove decorative elements */
  .nav-menu a::before {
    display: none;
  }

  /* Arrow icon */
  .nav-menu a::after {
    content: '';
    font-size: 20px;
    color: var(--text-dark);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
  }

  .nav-menu a:hover {
    background: rgba(233, 128, 36, 0.08);
    transform: translateX(4px);
    padding-left: 28px;
  }

  .nav-menu a:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--secondary);
  }

  .nav-menu a.active {

    color: var(--secondary);
  }

  .nav-menu a.active::after {
    color: var(--white);
    opacity: 1;
    transform: translateX(0);
  }

  .nav-buttons {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px dashed rgba(34, 41, 122, 0.1);
    position: relative;
  }

  /* Decorative element above buttons */
  .nav-buttons::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
  }

  .nav-container.active .nav-buttons {
    display: none;
 
  }

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

  .language-selector {
    flex: 0 0 auto;
  }

  .btn-login, .btn-signup {
    flex: 1;
    text-align: center;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
  }

  .btn-login::before, .btn-signup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .btn-login:hover::before {
    width: 300px;
    height: 300px;
    background: rgba(34, 41, 122, 0.05);
  }

  .btn-signup:hover::before {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
  }

  .btn-login:hover, .btn-signup:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .btn-login {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
  }

  .btn-login:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
  }

  .btn-signup {
    background: linear-gradient(135deg, var(--secondary) 0%, #d47320 100%);
    color: var(--white);
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 12px rgba(233, 128, 36, 0.3);
  }

  .btn-signup:hover {
    box-shadow: 0 8px 24px rgba(233, 128, 36, 0.4);
  }

  .language-current {
    padding: 10px 14px;
    font-size: 13px;
  }

  .language-dropdown {
    width: 140px;
    top: auto;
    bottom: 100%;
    position: absolute;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    margin-bottom: 5px;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .about-content,
  .mobile-content {
    flex-direction: column;
    gap: 40px;
  }

  .mobile-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-center {
    grid-column: 1;
    grid-row: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logo {
    flex: 0 0 calc(50% - 15px);
  }

  .partners-carousel-prev,
  .partners-carousel-next {
    display: none;
  }

  .partner-card {
    flex: 0 0 calc(50% - 15px);
  }



  .blog-carousel-wrapper {
    gap: 20px;
    overflow: hidden;
  }



  .blog-card {
    flex: 0 0 calc(50% - 15px);
  }

  .contact-content {
    flex-direction: column;
    gap: 60px;
  }

  .contact-form-wrapper {
    min-width: auto;
    max-width: 100%;
  }

  .contact-form-wrapper h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .form-group input,
  .form-group textarea {
    font-size: 15px;
    padding: 14px 18px;
  }

  .contact-map {
    min-height: 500px;
    width: 100%;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .contact-info-item {
    align-items: flex-start;
  }

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

  .app-downloads {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .header {
    width: 100vw;
    max-width: 100%;
    padding: 15px 0;
    overflow: visible;
  }


  .flag-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
  }
  
  .container {
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
  }

  .navbar {
    width: 100%;
    gap: 0;
    padding: 0;
  }

  .logo {
    max-width: 140px;
  }

  .logo img {
    height: 45px;
    width: auto;
  }

  .hamburger {
    width: 42px;
    height: 42px;
    padding: 8px;
    margin-left: 10px;
  }

  .hamburger svg {
    width: 26px;
    height: 26px;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 100px; /* Add padding to ensure content is visible */
    margin-top: 75px; /* Match mobile header height */
  }

  .hero-content {
    position: relative; /* Change from absolute to relative */
    left: auto;
    top: auto;
    width: 100%;
    padding: 60px 0 40px;
    text-align: center;
    align-items: center;
  }

  .hero-pattern {
    display: none; /* Hide decorative pattern on small screens */
  }

  .hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    right: auto;
    left: 0;
    top: 0;
    opacity: 0.2; /* Make background image more subtle */
    -webkit-mask-image: none;
    mask-image: none; /* Remove mask on mobile */
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area */
    top: 0;
    left: 0;
    transform: none;
  }

  .hero-section::after {
    height: 80px;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .section-title,
  .about-text h2,
  .mobile-text h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-wrapper {
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }

  .contact-form-wrapper h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .form-group input,
  .form-group textarea {
    font-size: 15px;
    padding: 14px 18px;
  }

  .contact-map {
    min-height: 400px;
    width: 100%;
    height: 350px;
  }

  .footer {
    padding: 50px 0 25px;
  }

  .footer-content {
    gap: 35px;
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

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

  .footer-company .info-value {
    font-size: 15px;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-text p {
    margin-bottom: 0;
  }
  
  .about-image-wrapper {
    max-width: 100%;
  }

  .about-image {
    width: 100%;
    height: 250px;
  }

  .about-frame {
    width: 80px;
    bottom: -15px;
    right: 9px;
  }

  .features-section {
    padding: 60px 0;
  }

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

  .feature-card {
    padding: 24px;
    min-height: auto;
  }

  .mobile-app-section {
    padding: 60px 0;
    height: auto;
    max-height: none;
  }

  .mobile-app-section::after {
    height: 100px;
    background-size: cover;
  }

  .mobile-content {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }

  .mobile-text {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .mobile-text h2 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 16px;
  }

  .mobile-text p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
  }

  .app-buttons {
    justify-content: center;
  }

  .mobile-image-wrapper {
    justify-content: center;
  }

  .mobile-image {
    max-width: 300px;
  }

  .mobile-background-shape {
    width: 600px;
    height: 600px;
    left: 30%;
    top: 58%;
  }

  .how-it-works-section {
    padding: 60px 0;
  }

  .steps-container {
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
  }

  .steps-left,
  .steps-right {
    align-items: flex-start;
    text-align: left;
    gap: 30px;
  }

  .steps-left .step-item {
    flex-direction: row;
  }

  .step-item {
    max-width: 100%;
    align-items: flex-start;
  }

  .center-image-wrapper {
    width: 300px;
  }

  .center-image-wrapper img {
    width: 300px;
  }

  .logo-overlay {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -20px;
    padding: 15px;
  }

  .stats-section {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .partners-section {
    padding: 40px 0;
  }

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

  .partner-logo {
    flex: 0 0 100%;
  }

  .registration-cta {
    padding: 60px 20px 40px;
    height: auto;
  }

  .cta-box {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 40px 24px;
    margin: 0;
  }

  .cta-box.animate__animated {
    transform: none !important;
  }

  .cta-box h2 {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  .cta-box p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .btn-register {
    padding: 12px 36px;
    font-size: 15px;
  }

  .blog-section {
    padding: 60px 0;
  }

  .blog-grid {
    gap: 20px;
  }

  .blog-card {
    flex: 0 0 100%;
  }

  .blog-image {
    height: 220px;
    padding: 0 15px;
  }
  .blog-image img {
    padding: 0;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h3 {
    font-size: 17px;
    line-height: 26px;
  }

  .blog-content p {
    font-size: 13px;
    line-height: 22px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .nav-menu {
    gap: 12px;
    font-size: 13px;
  }

  .nav-buttons {
    order: 2;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
  }

  .carousel-nav svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .header {
    width: 100vw;
    max-width: 100%;
    padding: 15px 0;
    overflow: visible;
  }

  .flag-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
  }
  .container {
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
  }

  .navbar {
    width: 100%;
    gap: 0;
    padding: 0;
  }

  .btn-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    transition: all 0.3s ease;
    height: 48px;
  }
  
  .btn-contact:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 102, 153, 0.3);
  }

  .logo {
    max-width: 140px;
  }

  .logo img {
    height: 45px;
    width: auto;
  }

  .hamburger {
    width: 42px;
    height: 42px;
    padding: 8px;
  }

  .hamburger svg {
    width: 26px;
    height: 26px;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 100px; /* Add padding to ensure content is visible */
    margin-top: 75px; /* Match mobile header height */
  }

  .hero-content {
    position: relative; /* Change from absolute to relative */
    left: auto;
    top: auto;
    width: 100%;
    padding: 60px 0 40px;
    text-align: center;
    align-items: center;
  }
  .hero-badge{
    display: none
  }


  .hero-pattern {
    display: none; /* Hide decorative pattern on small screens */
  }

  .hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    right: auto;
    left: 0;
    top: 0;
    opacity: 0.2; /* Make background image more subtle */
    -webkit-mask-image: none;
    mask-image: none; /* Remove mask on mobile */
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area */
    top: 0;
    left: 0;
    transform: none;
  }

  .hero-section::after {
    height: 80px;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 26px;
  }

  

  .section-title,
  .about-text h2,
  .mobile-text h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-wrapper {
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }

  .contact-form-wrapper h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .form-group input,
  .form-group textarea {
    font-size: 15px;
    padding: 14px 18px;
  }

  .contact-map {
    min-height: 400px;
    width: 100%;
    height: 350px;
  }

  .footer {
    padding: 50px 0 25px;
  }

  .footer-content {
    gap: 35px;
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

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

  .footer-company .info-value {
    font-size: 15px;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
  }


  
  .about-image-wrapper {
    max-width: 100%;
  }

  .about-image {
    width: 100%;
    height: 250px;
  }

  .about-frame {
    width: 80px;
    bottom: -15px;
    right: -9px;
  }

  .features-section {
    padding: 60px 0;
  }

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

  .feature-card {
    padding: 24px;
    min-height: auto;
  }

  .mobile-app-section {
    padding: 60px 0;
    height: auto;
    max-height: none;
  }

  .mobile-app-section::after {
    height: 100px;
    background-size: cover;
  }

  .mobile-content {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }

  .mobile-text {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .mobile-text h2 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 16px;
  }

  .mobile-text p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
  }

  .app-buttons {
    justify-content: center;
  }

  .mobile-image-wrapper {
    justify-content: center;
  }

  .mobile-image {
    max-width: 300px;
  }

  .mobile-background-shape {
    width: 600px;
    height: 600px;
    left: 30%;
    top: 58%;
  }

  .how-it-works-section {
    padding: 60px 0;
  }

  .steps-container {
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
  }

  .steps-left,
  .steps-right {
    align-items: flex-start;
    text-align: left;
    gap: 30px;
  }

  .partners-carousel-container{
    padding: 0;
  }

  .steps-left .step-item {
    flex-direction: row;
  }

  .step-item {
    max-width: 100%;
    align-items: flex-start;
  }

  .center-image-wrapper {
    width: 300px;
  }

  .center-image-wrapper img {
    width: 300px;
  }

  .logo-overlay {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -20px;
    padding: 15px;
  }

  .stats-section {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 20px 12px;
  }
  
  .stat-card h3 {
    font-size: 32px;
  }
  
  .stat-card p {
    font-size: 14px;
  }

  .partners-section {
    padding: 40px 0;
  }

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

  .partner-logo {
    flex: 0 0 100%;
  }

  .registration-cta {
    padding: 60px 20px 40px;
    height: auto;
  }

  .cta-box {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 40px 24px;
    margin: 0;
  }

  .cta-box h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  .cta-box p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .btn-register {
    padding: 12px 36px;
    font-size: 15px;
  }

  .blog-section {
    padding: 60px 0;
  }

  .blog-grid {
    gap: 20px;
  }

  .blog-card {
    flex: 0 0 100%;
  }

  .blog-image {
    height: 220px;
    padding: 0 12px;
  }
  .blog-image img {
    padding: 0;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h3 {
    font-size: 17px;
    line-height: 26px;
  }

  .blog-content p {
    font-size: 13px;
    line-height: 22px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .nav-menu {
    gap: 12px;
    font-size: 13px;
  }

  .nav-buttons {
    order: 2;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
  }

  .carousel-nav svg {
    width: 18px;
    height: 18px;
  }
}
 

/* ============================================
   ABOUT US PAGE SPECIFIC STYLES
============================================ */

/* About Us: Who We Are Section */
.about-who-section {
  padding: 80px 0;

}

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

.about-section-text {
  padding-right: 20px;
}

.about-section-title {
  margin-bottom: 20px;
}

.about-section-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-title-underline {
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.about-section-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #5A5A5A;
  margin-top: 24px;
}

.about-section-image {
  position: relative;
  width: 100%;
  max-width: 600px;
  justify-self: end;
}

.about-section-image img {
  width: 100%;
  height: auto;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.about-logo-overlay {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 2;
}

.about-logo-overlay img {
  width: 100%;
  object-fit: contain;
}

/* About Us: Purpose Section */
.about-purpose-section {
  padding: 100px 0;
  background: #F8F9FB;
  position: relative;
  overflow: hidden;
}



.about-frame-2 {
  position: absolute;
  width: 108px;
  height: 104px;
  left: 1473px;
  top: 189px;
}

.about-frame-2 img {
  width: 100%;
  height: auto;
  display: block;
}

.about-section-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

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

.about-purpose-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-purpose-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.about-purpose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.about-purpose-card-featured {
  background: var(--secondary);
  color: var(--white);
}

.about-purpose-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
  text-align: center;
}

.about-purpose-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-60);
  text-align: center;
}

.about-purpose-card-featured p {
  color: rgba(255, 255, 255, 0.95);
}

.about-purpose-image img {
  border: 1px solid #E5EAF4;
  width: 500px;
  height: 500px;
  filter: drop-shadow(0px 15px 35px rgba(28, 40, 51, 0.07));
  border-radius: 16px;
}

/* About Us: Why Choose Section */
.about-why-section {
  padding: 50px 0px 250px 0;


}

.about-section-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 60px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 37px;
}

.about-feature-item {
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #E5EAF4;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 65px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 37px;
}

.about-feature-item:hover {
  box-shadow: 0px 20px 45px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.about-feature-icon {
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.about-feature-icon svg {
  width: 74px;
  height: 74px;
  display: block;
}

.about-feature-icon img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.about-icon-bg {
  display: none;
}

.about-icon-graphic {
  display: none;
}

.about-feature-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.about-feature-content h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.2px;
  color: #22297A;
  margin: 0;
}

.about-feature-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #5A7184;
  margin: 0;
}

/* About Us: CTA Section */
.about-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #d17020 100%);
}

.about-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.about-cta-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

.about-btn-cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--white);
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* About Us: Responsive Overrides */
@media (max-width: 1200px) {
  .about-section-content,
  .about-purpose-content {
    gap: 40px;
  }

  .about-section-text {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about-section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section-image {
    max-width: 100%;
    justify-self: center;
  }

  .about-purpose-content {
    grid-template-columns: 1fr;
  }
  
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-section-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .about-who-section,
  .about-purpose-section,
  .about-why-section,
  .about-cta-section {
    padding: 60px 0;
  }

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

  .about-section-text p {
    font-size: 15px;
  }

  .about-section-heading {
    font-size: 32px;
  }

  .about-purpose-cards {
    gap: 16px;
  }

  .about-purpose-card {
    padding: 24px;
  }

  .about-feature-item {
    padding: 55px 24px 36px;
    margin-top: 30px;
  }

  .about-feature-icon {
    width: 60px;
    height: 60px;
    top: -30px;
  }

  .about-feature-icon svg {
    width: 60px;
    height: 60px;
  }

  .about-features-grid {
    padding-top: 30px;
  }

  .about-feature-content h3 {
    font-size: 20px;
  }

  .about-feature-content p {
    font-size: 15px;
  }

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

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

  .about-logo-overlay {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -20px;
    padding: 15px;
  }

  .about-frame-2 {
    width: 80px;
    bottom: -15px;
    right: 9px;
  }
}

@media (max-width: 480px) {
  .about-section-title h2 {
    font-size: 28px;
  }

  .about-section-text p {
    font-size: 14px;
    margin-top: 16px;
  }

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

  .about-section-heading {
    font-size: 32px;
    margin-bottom: 32px;
  }

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

  .about-feature-content h3 {
    font-size: 18px;
  }

  .about-feature-content p {
    font-size: 14px;
  }

  .about-feature-item {
    margin-top: 25px;
    padding: 50px 20px 32px;
  }

  .about-feature-icon {
    width: 50px;
    height: 50px;
    top: -25px;
  }

  .about-feature-icon svg {
    width: 50px;
    height: 50px;
  }

  .about-features-grid {
    padding-top: 25px;
  }

  .about-logo-overlay {
    display: none;
  }

  .about-purpose-image img {
   
    width: 400px;
    height: 400px;
  
  }


  .about-frame-2 {
 display: none;
  }

}

/* ============================================
   FEATURES PAGE SPECIFIC STYLES
============================================ */

/* Features Page: About Features Section */
.feat-about-section {
  padding: 80px 0;
  background: var(--white);
}

.feat-about-content {
  display: flex;
  align-items: center;
  
  gap: 60px;
}

.feat-images-grid {
  position: relative;
  flex: 1;
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.feat-images-grid .feat-image-card:first-child {
  grid-column: 1 / -1;
}

.feat-image-card {


  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feat-image-card:hover {
  transform: translateY(-4px);
}

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

.feat-text-content {
  flex: 1;
}

.feat-text-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.feat-text-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
}

/* Features Page: Features Grid Section */
.feat-grid-section {
  padding: 80px 0;

}

.feat-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 60px;
}

.feat-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feat-service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.feat-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.feat-service-card-highlight {
  background: var(--secondary);
  color: var(--white);
  grid-column: 1 / -1;
  width: 557px;
  height: 202px;
  margin: 0 auto;
  justify-self: center;
}

.feat-service-icon {
  width: 41px;
  height: 41px;
  flex-shrink: 0;
}

.feat-service-icon svg {
  width: 100%;
  height: 100%;
}

.feat-service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-service-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}

.feat-service-card-highlight h3 {
  color: var(--white);
}

.feat-service-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-60);
  margin: 0;
}

.feat-service-card-highlight p {
  color: rgba(255, 255, 255, 0.95);
}

/* Features Page: Responsive Overrides */
@media (max-width: 1200px) {
  .feat-cards-grid {
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .feat-about-content {
    flex-direction: column;
    gap: 40px;
  }

  .feat-images-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feat-images-grid .feat-image-card:first-child {
    grid-column: auto;
  }

  .feat-text-content h2 {
    font-size: 32px;
  }

  .feat-text-content p {
    font-size: 18px;
  }

  .feat-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feat-service-card {
    flex-direction: column;
    padding: 32px 24px;
  }

  .feat-service-card-highlight {
    width: 100%;
    height: auto;
  }

  .feat-service-icon {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 768px) {
  .feat-about-section {
    padding: 60px 0;
  }

  .feat-images-grid {
    grid-template-columns: 1fr;
  }

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

  .feat-text-content p {
    font-size: 16px;
  }

  .feat-grid-section {
    padding: 60px 0;
  }

  .feat-section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .feat-cards-grid {
    padding: 0 16px;
  }

  .feat-service-card {
    padding: 24px 20px;
    flex-direction: column;
  }

  .feat-service-card-highlight {
    width: 100%;
    height: auto;
  }

  .feat-service-icon {
    width: 40px;
    height: 40px;
  }

  .feat-service-card h3 {
    font-size: 18px;
  }

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

@media (max-width: 480px) {
  .feat-text-content h2 {
    font-size: 24px;
  }

  .feat-section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .feat-cards-grid {
    padding: 0 12px;
    gap: 16px;
  }

  .feat-service-card {
    padding: 20px 16px;
    flex-direction: column;
  }

  .feat-service-card-highlight {
    width: 100%;
    height: auto;
    padding: 24px 20px;
  }

  .feat-service-icon {
    width: 36px;
    height: 36px;
  }

  .feat-service-card h3 {
    font-size: 16px;
  }

  .feat-service-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ====================================
   Process Section (How To Work Page)
   ==================================== */
.how-process-section {
  padding: 75px 40px 200px 40px;

}

.how-process-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.process-steps-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step-card {
  background-color: var(--white);
  border: 1px solid #E5EAF4;
  border-radius: 16px;
  padding: 32px;
  height: 220px;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 20px 45px rgba(0, 0, 0, 0.1);
}

.process-step-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.process-step-number::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.process-step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0 0 8px 0;
}

.process-step-description {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}

/* CTA Section (How To Work Page) */
.how-cta-section {
  padding: 80px 40px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
}

.how-cta-card {
  max-width: 800px;
  background-color: var(--white);
  border: 1px solid #e5eaf4;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 4px 44px rgba(0, 0, 0, 0.1);
}

.how-cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.5;
}

.how-cta-description {
  font-size: 24px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 32px;
}

/* ====================================
   How To Work Page - Responsive
   ==================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .how-process-section {
    padding: 60px 24px;
  }
  
  .how-process-title {
    font-size: 32px;
    margin-bottom: 60px;
  }
  
  .process-steps-grid {
    gap: 48px;
  }
  
  .process-step-number {
    font-size: 36px;
  }
  
  .process-step-title {
    font-size: 20px;
  }
  
  .how-cta-section {
    padding: 60px 24px;
  }
  
  .how-cta-card {
    padding: 36px;
  }
  
  .how-cta-title {
    font-size: 28px;
  }
  
  .how-cta-description {
    font-size: 20px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .how-process-section {
    padding: 48px 16px;
  }
  
  .how-process-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .process-step-card {
    padding: 20px;
  }
  
  .process-step-number {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .process-step-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .process-step-description {
    font-size: 15px;
  }
  
  .how-cta-section {
    padding: 48px 16px;
  }
  
  .how-cta-card {
    padding: 24px;
  }
  
  .how-cta-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .how-cta-description {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .how-process-section {
    padding: 40px 16px;
  }
  
  .how-process-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .process-step-number {
    font-size: 37px;
    margin-bottom: 10px;
  }
  
  .process-step-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .process-step-card {
    padding: 20px;
    height: 180px;
  }
  
  .process-step-description {
    font-size: 14px;
  }
  
  .how-cta-title {
    font-size: 20px;
  }
  
  .how-cta-description {
    font-size: 16px;
  }
}