*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    background: #fffcea;
    box-sizing: border-box;
    

}

/* NAVBAR)))))))))))))))))))))) */
 .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background: transparent;
      backdrop-filter: blur(1px);
      z-index: 1000;
    }
    /* Show dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Hide by default */
.navbar .dropdown .dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4px 0px;
      padding-left: 70px;
    }

    .logo {
      font-size: 24px;
    }
    .logo img {
      max-height: 60px;
      height: auto;
      width: auto;
      padding: 3px;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      font-family: golos text;
      align-items: center;
      font-weight: 400;
      padding-right: 70px;
    }

    .nav-links a,
    .selected {
      position: relative;
      text-decoration: none;
      color: #053f6a;
      padding: 8px 12px;
      border-radius: 4px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .nav-links a:hover,
    .selected:hover {
      background-color: #f0d321;
      color: #053f6a;
    }

    .dropdown {
      position: relative;
      padding: 8px 0;
    }

    .options {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fffcea;
      border-radius: 4px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      display: none;
      flex-direction: column;
      min-width: 120px;
      z-index: 99;
    }

    .options a {
      padding: 10px 12px;
      text-decoration: none;
      color: #053f6a;
      white-space: nowrap;
    }

    .options a:hover {
      background-color: #f0d321;
    }

    .dropdown:hover .options {
      display: flex;
    }

    /* Hamburger menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 1100;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #053f6a;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* Hamburger animation to cross */
    #menu-toggle:checked + .hamburger span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked + .hamburger span:nth-child(2) {
      opacity: 0;
    }

    #menu-toggle:checked + .hamburger span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hide checkbox */
    #menu-toggle {
      display: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        top: 60px;
        right: 20px;
        background: #fffcea;
        backdrop-filter: blur(8px);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 8px;
        display: none;
        width: 200px;
        gap: 10px;
      }

      #menu-toggle:checked ~ .nav-links {
        display: flex;
      }

      .hamburger {
        display: flex;
        padding-right: 20px;
      }

      .dropdown .options {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding-left: 15px;
      }

      .dropdown.active .options {
        display: flex;
      }

      .nav-container {
        padding-left: 26px;
        padding-right: 23px;
      }
    }
    @media (max-width:480px){
      .logo img
      {width: 130px;}
      
    }














/*  _________ FOR HEROOOOO___________ */
/*  _________ FOR HEROOOOO___________ */
:root {
  --gpi-deep-blue: #0A2463;
  --gpi-electric-mint: #4FFFB0;
  --gpi-pure-white: #FFFFFF;
  --gpi-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gpi-smooth-scroll-wrapper {
  overflow: hidden;
}

.gpi-hero-section {
  background:#fffcea;
  color: #053f6a;
  height: 100vh;
  min-height: 800px;
  padding: 0 8%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gpi-hero-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  gap: 40px;
  font-family: golos text;
}

.gpi-hero-content-block {
  max-width: 600px;
  flex: 1;
}

.gpi-hero-main-heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(30px);
}

.gpi-typewriter-wrapper {
  display: inline-block;
}

#typewriter-text {
  color: #f0d321;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

#typewriter-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gpi-electric-mint);
  transform-origin: left;
  transform: scaleX(0);
}

.gpi-hero-subtext {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  line-height: 1.6;
  max-width: 90%;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.gpi-hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  flex-wrap: wrap;
}

.gpi-cta-button {
  padding: clamp(12px, 2vw, 16px) clamp(24px, 3vw, 36px);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.gpi-cta-button--primary {
  background: #f0d321;
  color: #053f6a;
  box-shadow: #f0d321;
}

.gpi-cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px #f0d42171;
  background: #f0d321;
  
}

.gpi-cta-button--secondary {
  background: transparent;
  color: #053f6a;
  border: 2px solid #f0d321;
}

.gpi-cta-button--secondary:hover {
  background: #f0d321;
  color: #053f6a;
}

.gpi-lottie-animation-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 300px;
}

@media (max-width: 1200px) {
  .gpi-hero-section {
    padding: 0 5%;
  }
}

/* 992px Breakpoint - Tablet Landscape to Tablet Portrait */
@media (max-width: 992px) {
  .gpi-hero-section {
    min-height: calc(100vh - 80px); /* Adjust if navbar height differs */
    padding-top: 80px; /* Matches navbar height */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 40px; /* Prevents animation cropping */
  }

  .gpi-hero-container {
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 20px 0;
    width: 100%;
  }

  .gpi-hero-content-block {
    max-width: 100%;
    margin-top: 0;
    order: 1;
  }

  .gpi-hero-main-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

  .gpi-hero-subtext {
    max-width: 100%;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
  }

  .gpi-hero-cta-group {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .gpi-lottie-animation-container {
    order: 2;
    justify-content: center;
    margin-top: 0;
    max-width: 450px;
    width: 100%;
    min-height: 250px;
    padding-bottom: 0;
  }
}

/* 768px Breakpoint - Tablet Portrait to Mobile */
@media (max-width: 768px) {
  .gpi-hero-section {
    min-height: auto;
    padding-top: 70px; /* Slightly reduced for mobile */
    padding-bottom: 30px;
  }

  .gpi-hero-container {
    gap: 25px;
  }

  .gpi-lottie-animation-container {
    max-width: 400px;
    min-height: 220px;
  }
}

/* 576px Breakpoint - Mobile Devices */
@media (max-width: 576px) {
  .gpi-hero-section {
    padding: 70px 5% 40px;
  }

  .gpi-hero-main-heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .gpi-hero-subtext {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .gpi-hero-cta-group {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.5rem;
  }

  .gpi-cta-button {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .gpi-lottie-animation-container {
    min-height: 200px;
    max-width: 100%;
    transform: scale(0.95);
  }
}
/*  ###########    HERO   STATS   ########## */

    .stats-wrapper {
      font-family: 'Fredoka', sans-serif;
      color: white;
      background: #053f6a;
    }

    .stats-wrapper {
      padding: 60px 20px 40px;
      text-align: center;
      
    }

    .stats-container {
      max-width: 1200px;
      margin: 0 auto 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

    .stat-box {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .stat-icon {
      font-size: 2.8rem;
      color: #f0d321;
      margin-bottom: 10px;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 600;
      color: #f0d321;
      font-family: golos text;
    }

    .stat-labell {
      font-size: 1.1rem;
      margin-top: 5px;
      color: #fff;
    }

    /* .cta-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #fefefe;
      padding: 40px 25px;
      border-radius: 20px;
      max-width: 720px;
      margin: 0 auto;
      box-shadow: 0 0 20px #4d594572;
      animation: glow 2.5s ease-in-out infinite;
    }

    @keyframes glow {
      0% { box-shadow: 0 0 20px #4d59455d; }
      50% { box-shadow: 0 0 40px #4d5945b2; }
      100% { box-shadow: 0 0 20px #4d59457a; }
    }

    .cta-icon {
      font-size: 2.8rem;
      color: #0d44da;
      margin-bottom: 10px;
    }

    .cta-text {
      font-size: 1.7rem;
      color: #000;
      margin-bottom: 12px;
      text-align: center;
      font-family: golos text;
    }

    .cta-subtext {
      font-size: 1rem;
      color: #494444;
      margin-bottom: 20px;
      text-align: center;
    }

    .cta-button {
      background-color: #d8a200;
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      padding: 12px 28px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.2s;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .cta-button:hover {
      background-color: rgb(14, 110, 190);
      transform: translateY(-2px);
      color: white;
    }

    .cta-button i {
      margin-left: 10px;
    } */

    @media (max-width: 768px) {
      .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      /* .cta-text {
        font-size: 1.2rem;
      }

      .cta-button {
        padding: 12px 22px;
      } */
    }

    @media (max-width: 480px) {
      /* .cta-button {
        width: 100%;
      } */
    }




















.call{
   display: flex;
      justify-content: center;
      align-items: center;
}

     .hero-card {
      position: relative;
      background: linear-gradient(145deg, #053f6a 0%, #084d83 100%);
      color: #fff;
      border-radius: 2rem;
      padding: 1rem 0.5rem;
      max-width: 1050px;
      width: 100%;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      box-shadow: 0 20px 60px rgba(5, 63, 106, 0.25);
      animation: fadeIn 0.7s ease-in-out;
      font-family: golos text;
      
    }

    .hero-card::before,
    .hero-card::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      z-index: 0;
      opacity: 0.1;
    }

    .hero-card::before {
      width: 180px;
      height: 180px;
      background: #f0d321;
      top: -60px;
      right: -60px;
    }

    .hero-card::after {
      width: 140px;
      height: 140px;
      background: #ffffff;
      bottom: -40px;
      left: -40px;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-heading {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .hero-subtext {
      font-size: 1.15rem;
      line-height: 1.8;
      color: #e6f0f9;
    }

    .hero-cta {
      position: relative;
      z-index: 1;
    }

    .hero-btn {
      margin-top: 0.5rem;
      display: inline-block;
      background: linear-gradient(to right, #f0d321, #ffe85d);
      color: #053f6a;
      font-weight: 600;
      padding: 0.9rem 2.2rem;
      font-size: 1rem;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(240, 211, 33, 0.35);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hero-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 40px rgba(240, 211, 33, 0.45);
    }

    .hero-icon {
      width: 80px;
      height: 80px;
      background: #f0d321;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 700;
      color: #053f6a;
      box-shadow: 0 8px 20px rgba(240, 211, 33, 0.3);
      position: relative;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .hero-card {
        grid-template-columns: 80px 1fr auto;
        align-items: center;
        padding: 2.5rem 3rem;
      }
      .hero-btn{
        margin-top: 2rem;
      }
      

      .hero-content {
        padding-left: 1rem;
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    /*  !!!!!!!!!!!!!!!!        SEVICESSSS    SECTION  !!!!!!!!!!!!!! */

    /* :root {
      --visa-yellow: #ffcb15;
      --visa-black: #111;
      --visa-card-bg: rgba(255, 255, 255, 0.85);
    }
      .visa-services-wrapper {
      margin: auto;
      padding: 80px 20px;
      background: linear-gradient(135deg, rgb(14, 110, 190) 0%, #0d44da 100%);
    }

    .visa-services-heading {
      text-align: center;
      margin-bottom: 60px;
    }

    .visa-services-heading h2 {
      font-size: 40px;
      font-weight: 700;
      font-family: golos text;
      color: #ffffff;
    }
    .visa-hp{
      color: #D7E8CD;
      font-family: golos text;
    }

    .visa-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }

    .visa-card {
      background: #fefefe;
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 32px 24px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.06);
      transition: 0.3s ease;
      overflow: hidden;
      border: 1px solid;
    }

    .visa-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .visa-icon {
      width: 60px;
      height: 60px;
      background: #d8a2002e;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      color: #d8a200;
      margin-bottom: 20px;
      transition: 0.3s ease;
    }

    .visa-card:hover .visa-icon {
       box-shadow:  0 0 18px 4px #d8a2005b;
    }

    .visa-card-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
      color: rgb(8 43 113);
      font-family: nunito;
    }

    .visa-card-subtitle {
      font-size: 15px;
      color: #555;
      margin-bottom: 16px;
    }

    .visa-feature-list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .visa-feature-list li {
      font-size: 14px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      font-family: golos text;
    }

    .visa-feature-list li i {
      margin-right: 10px;
      color: var(--visa-black);
    }

    .visa-btn {
      padding: 10px 20px;
      background: var(--gpi-electric-mint);
      color: #042350;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      font-size: 14px;
      transition: 0.3s ease;
    }

    .visa-btn:hover {
      background:  #F6D155;
      color: white;
      transform: scale(1.04);
    }

    @media (max-width: 768px) {
      .visa-services-heading h2 {
        font-size: 28px;
      }
    } */
    .visa-services-heading{
      text-align: center;
      font-family: golos text;
      color:#4e4a4a;
    }
    .visa-services-heading h2{
      padding-top: 40px;
      font-size: 3.5rem;
      font-weight: 700;
      color: #053f6a;
    }
    .visa-services-heading p{
      padding-top: 1rem;
    }

        .consultancy-grid-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 80px;
      background: #fffcea;
      font-family: golos text
    }

    .service-tile {
      width: 370px;
      height: 270px;
      position: relative;
      display: flex;
      justify-content: center;
      padding: 20px;
      border-radius: 15px;
      transition: all 0.5s ease;
    }

    .service-tile::before {
      content: attr(data-label);
      position: absolute;
      width: 0px;
      height: 60px;
      border-left: 30px solid #3A486F;
      border-right: 30px solid #3A486F;
      border-bottom: 10px solid transparent;
      top: -10px;
      left: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 11px;
      text-transform: uppercase;
      transition: all 0.5s ease;
    }

    /* Individual Tile Colors */
    .service-tile[data-label="Study"] {
      background: #f0d321;
    }
    .service-tile[data-label="Study"]::before {
      border-left: 30px solid #2c3e50;
      border-right: 30px solid #2c3e50;
    }

    .service-tile[data-label="Work"] {
      background: #f0d321;
    }
    .service-tile[data-label="Work"]::before {
      border-left: 30px solid #27ae60;
      border-right: 30px solid #27ae60;
    }

    .service-tile[data-label="MBA"] {
      background: #f0d321;
    }
    .service-tile[data-label="MBA"]::before {
      border-left: 30px solid #8e44ad;
      border-right: 30px solid #8e44ad;
    }

    .service-tile[data-label="Language"] {
      background: #f0d321;
    }
    .service-tile[data-label="Language"]::before {
      border-left: 30px solid #e67e22;
      border-right: 30px solid #e67e22;
    }

    .icon-holder {
      height: 100px;
      width: 100px;
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .graphic-symbol {
      width: 5em;
      height: 5em;
      fill: #2c3e50;
    }

    .icon-holder svg {
      position: absolute;
      overflow: visible;
    }

    /* Study Visa Icons */
    .academic-cap {
      transition: all 0.5s ease;
      transform: scale(1) rotate(10deg);
    }
    .travel-document {
      transition: all .4s ease-in;
      transform: rotate(55deg) translate(200px, 0px) scale(0.5);
    }

    /* Work Visa Icons */
    .professional-bag {
      transition: all 0.5s ease;
      transform: scale(1) rotate(10deg);
    }
    .luggage {
      transition: all .4s ease-in;
      transform: rotate(55deg) translate(200px, 0px) scale(0.5);
    }

    /* PR Icons */
    .global {
      transition: all 0.5s ease;
      transform: scale(1) rotate(10deg);
    }
    .identity-card {
      transition: all .4s ease-in;
      transform: rotate(55deg) translate(200px, 0px) scale(0.5);
    }

    /* Language Icons */
    .language-convert {
      transition: all 0.5s ease;
      transform: scale(1) rotate(10deg);
    }
    .voice-input {
      transition: all .4s ease-in;
      transform: rotate(55deg) translate(200px, 0px) scale(0.5);
    }

    .tile-content {
      display: flex;
      flex-direction: column;
      justify-content: end;
      text-align: center;
      gap: 10px;
      align-items: center;
    }

    .tile-content span {
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase;
      color: #2c3e50;
    }

    .tile-content p {
      color: #3A486F;
      font-weight: 600;
    }

    .tile-content .action-button {
      text-decoration: none;
      background-color: #343434;
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      box-sizing: border-box;
      transition: all 0.5s ease;
      font-weight: 600;
    }

    .service-tile:hover {
      box-shadow:0 10px 20px rgb(0 0 0 / 63%);
      transform: translateY(-5px);
    }

    /* Study Visa Hover Effects */
    .service-tile[data-label="Study"]:hover .travel-document {
      transform: rotate(0deg) translate(0px, 0px) scale(0.6);
    }
    .service-tile[data-label="Study"]:hover .academic-cap {
      transform: scale(1.1) rotate(0deg) translate(0, 0);
    }

    /* Work Visa Hover Effects */
    .service-tile[data-label="Work"]:hover .luggage {
      transform: rotate(0deg) translate(0px, 0px) scale(0.6);
    }
    .service-tile[data-label="Work"]:hover .professional-bag {
      transform: scale(1.1) rotate(0deg) translate(0, 0);
    }

    /* PR Hover Effects */
    .service-tile[data-label="MBA"]:hover .identity-card {
      transform: rotate(0deg) translate(0px, 0px) scale(0.6);
    }
    .service-tile[data-label="MBA"]:hover .global {
      transform: scale(1.1) rotate(0deg) translate(0, 0);
    }

    /* Language Hover Effects */
    .service-tile[data-label="Language"]:hover .voice-input {
      transform: rotate(0deg) translate(0px, 0px) scale(0.6);
    }
    .service-tile[data-label="Language"]:hover .language-convert {
      transform: scale(1.1) rotate(0deg) translate(0, 0);
    }

    .action-button:hover {
      background-color: #3A486F;
      transform: scale(1.05);
    }

    .service-tile:hover::before {
      top: -15px;
    }

    /* Responsive styles */
    @media (max-width: 1200px) {
      .consultancy-grid-wrapper {
        flex-direction: column;
        align-items: center;
      }
      .service-tile {
        width: 100%;
      }
      .visa-services-heading h2{
        font-size: 2.5rem;
      }
    }

    /* 🔥 Fix: Force all 4 in a single row on desktop */
    @media (min-width: 1201px) {
      .consultancy-grid-wrapper {
        flex-wrap: nowrap;
      }
    }

/* +++++++++++++++++++++++  IMMIGRATION STEPS +++++++++++++++++++ */



   :root {
      --primary: #053f6a;
      --accent: #f0d321;
      --light: #fffcea;
      --transition: all 0.3s ease;
    }
 .timeline-wrapper {
      padding: 20px;
      font-family: 'Golos Text', sans-serif;
    }

    .immigration-section {
      max-width: 1200px;
      margin: auto;
    }

    .immigration-banner {
      background: var(--accent);
      border-radius: 20px 20px 0 0;
      position: relative;
      height: 220px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .immigration-banner svg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
    }

    .immigration-banner svg path {
      fill: var(--primary);
    }

    .banner-content {
      padding: 0 40px 40px;
      color: white;
      z-index: 1;
    }

    .banner-content h1 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .banner-content p {
      font-size: 16px;
      opacity: 0.9;
    }

    .immigration-timeline {
      background: #fffee4;
      border-radius: 0 0 20px 20px;
      padding: 40px;
      box-shadow: 0px 20px 50px -30px rgba(5, 63, 106, 0.3);
      position: relative;
    }

    .immigration-timeline h3 {
      font-size: 24px;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .immigration-timeline label {
      font-size: 16px;
      color: var(--primary);
      opacity: 0.8;
      margin-bottom: 30px;
      display: block;
    }

    .timeline-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      position: relative;
    }

    .timeline-grid::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: var(--primary);
      opacity: 0.2;
      transform: translateX(-50%);
    }

    .timeline-step-card {
      background: beige;
      border-left: 4px solid var(--accent);
      border-right: 4px solid var(--accent);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0px 5px 15px -5px rgba(5, 63, 106, 0.1);
      transition: var(--transition);
      display: flex;
      align-items: flex-start;
      max-width: 90%;

    }

    .timeline-step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 10px 25px -10px rgba(5, 63, 106, 0.2);
    }

    .timeline-icon {
      color: var(--accent);
      font-size: 20px;
      margin-right: 15px;
    }

    .timeline-text h4 {
      font-size: 16px;
      color: var(--primary);
      font-weight: 600;
      opacity: 0.8;
      margin-bottom: 6px;
    }

    .timeline-text p {
      font-size: 18px;
      color: var(--primary);
      font-weight: 600;
    }

    .timeline-buttons {
      text-align: center;
      margin-top: 30px;
    }

    .timeline-btn {
      padding: 15px 30px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .timeline-btn:hover {
      background: var(--accent);
      color: var(--primary);
    }

    /* MOBILE RESPONSIVENESS */
    @media (max-width: 768px) {
      .timeline-grid {
        grid-template-columns: 1fr;
      }

      .timeline-grid::before {
        display: none;
      }

      .timeline-step-card {
        max-width: 100%;
      }

      .hidden-mobile-step {
        display: none;
      }

      .show-all .hidden-mobile-step {
        display: flex;
      }

      .desktop-only-btn {
        display: none;
      }
    }

    @media (min-width: 769px) {
      #mobileToggleBtn {
        display: none;
      }
    }
/* .steps-hed p{
  text-align: center;
  color: #6c757d;
  font-family: golos text;
  padding-bottom: 2.5rem;
  background: white;
}
.steps-hed h2{
  font-family: golos text;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    color: #0e6ebe;
    padding-top: 2.5rem;
    background: white;
    padding-bottom: 1rem;
}
.timeline-wrapper {

      margin: auto;
      padding: 60px 20px;
      position: relative;
      background: #fff;
    }

    .timeline-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: #006E51;
      transform: translateX(-50%);
      z-index: 1;
    }

    .timeline-item {
      position: relative;
      width: 50%;
      padding: 20px 40px;
    }

    .timeline-item-left {
      left: 0;
    }

    .timeline-item-right {
      left: 50%;
    }

    .timeline-item::after {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      background: #fff;
      border: 2px solid #006E51;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
    }

    .timeline-item-left::after {
      right: -8px;
    }

    .timeline-item-right::after {
      left: -8px;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      height: 2px;
      width: 40px;
      top: 50%;
      background: #006E51;
      transform: translateY(-50%);
      z-index: 1;
    }

    .timeline-item-left::before {
      right: 8px;
    }

    .timeline-item-right::before {
      left: 8px;
    }

    .timeline-date {
      position: absolute;
      font-size: 19px;
      font-weight: bold;
      color: #006E51;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      font-family: nunito;
    }

    .timeline-item-left .timeline-date {
      right: -90px;
    }

    .timeline-item-right .timeline-date {
      left: -95px;
    }

    .timeline-icon {
      position: absolute;
      width: 40px;
      height: 40px;
      background: #F6D155;
      border: 2px solid #006E51;
      border-radius: 50%;
      font-size: 25px;
      color: #006E51;
      text-align: center;
      line-height: 38px;
      top: 50%;
      z-index: 3;
      transform: translateY(-50%);
      padding: 5px 0;
    }

    .timeline-item-left .timeline-icon {
      right: 55px;
    }

    .timeline-item-right .timeline-icon {
      left: 55px;
    }

    .timeline-content {
      background: #F6D155;
      padding: 30px 90px 30px 30px;
      border-radius: 0 100px 100px 0;
      position: relative;
      z-index: 1;
    }

    .timeline-item-right .timeline-content {
      padding: 30px 30px 30px 90px;
      border-radius: 100px 0 0 100px;
    }

    .timeline-content h2 {
      margin: 0 0 10px;
      font-size: 30px;
      color: #006E51;
      font-family: nunito;
    }

    .timeline-content p {
      margin: 0;
      font-size: 16px;
      color: #312f31;
      font-family: golos text;
    }

    @media (max-width: 768px) {
      .timeline-wrapper::after {
        left: 90px;
      }
      .timeline-item-left .timeline-date {
      right: 0px;
      font-size: 16px;
    }
    .timeline-item-right .timeline-date{
      font-size: 16px;
    }
    .timeline-wrapper{
      padding: 60px 10px;
    }
      .timeline-item {
        width: 100%;
        padding-left: 120px;
        padding-right: 30px;
      }

      .timeline-item-left,
      .timeline-item-right {
        left: 0;
      }

      .timeline-item::after {
        left: 82px;
      }

      .timeline-item::before {
        left: 100px;
      }

      .timeline-icon {
        left: 124px !important;
        right: auto;
      }

      .timeline-date {
        left: 6px !important;
        right: auto;
      }

      .timeline-content {
        padding: 30px 30px 30px 90px;
        border-radius: 100px 0  100px !important;
      }
    }
    @media (max-width: 430px) {
      .timeline-content{
        border-radius: 54px 0 54px !important;
        padding: 30px 30px 30px 50px;
      }
      .timeline-item-right .timeline-content {
      padding: 30px 30px 30px 50px;
      }
      .timeline-date{
        font-size: 16px;
      }
      .timeline-content h2 {
        font-size: 18px;
      }
      .steps-hed h2{
        font-size: 2.5rem;
      }
      .timeline-icon{
        font-size: 18px;
        padding: 9px 0;


      }
    } */
    

/*================OUR STUDENTS FLYING==========================*/
 
       /* ===== STUDENT FLIGHT MAP STYLES ===== */
    .flightmap-container {
      max-width: 90%;
      margin: auto;
      padding: 20px;
      text-align: center;
    }

    .flightmap-heading {
      font-size: 3rem;
      color: #053f6a;
      font-family: golos text;
      padding: 50px 0;
    }

    .flightmap-map-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 2 / 1;
      background-color: #1c3a52eb;
      border-radius: 9px;
      overflow: hidden;
    }

    .flightmap-world-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .flightmap-plane {
      position: absolute;
      width: 24px;
      height: 24px;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 24 24"><path d="M22 16.21v-1.895L14 8V4a2 2 0 0 0-4 0v4l-8 6.315v1.895l8-2.526V18l-2 2v2l3.5-1 3.5 1v-2l-2-2v-4.316l8 2.526z"/></svg>');
      background-size: contain;
      background-repeat: no-repeat;
      transform: translate(-50%, -50%);
      z-index: 5;
    }

    .flightmap-path {
      position: absolute;
      height: 3px;
      background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
      border-radius: 50%;
      transform-origin: left center;
      z-index: 2;
      opacity: 0;
      box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
    }

    .flightmap-marker {
      position: absolute;
      width: 20px;
      height: 20px;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ff0000" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
      background-size: contain;
      background-repeat: no-repeat;
      transform: translate(-50%, -50%);
      opacity: 0;
      z-index: 4;
    }

    @media (max-width: 768px) {
      .flightmap-heading {
        font-size: 2.4rem;
      }
    }
    @media (max-width:480px){
      .flightmap-container{
        max-width: 100%;
      }
       .flightmap-heading {
        font-size: 2rem;
      }
    }




/*  ++++++++++++++ COUNTRYSSS WEE SPECIALIZE   IN    */
 :root {
            /* --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #10b981;
            --accent: #8b5cf6;
            --dark: #1e293b;
            --light: #f8fafc;
            --card-bg: #ffffff; */
            --card-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
            --border-radius: 24px;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --text-gradient: linear-gradient(135deg, var(--primary), var(--accent));}

 .global-gateway-container {
            max-width: 1440px;
            margin: 0 auto;
            position: relative;
            
        }

        .background-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -1;
            opacity: 0.5;
        }

        .global-gateway-heading {
            text-align: center;
            font-family: 'Golos Text';
            margin-bottom: 3rem;
            font-size: 3.5rem;
            font-weight: 700;
            position: relative;
            color: #053f6a;
            line-height: 1.1;
            letter-spacing: -0.05em;
        }

        .global-gateway-heading::after {
            content: '';
            position: absolute;
            bottom: -1.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 6px;
            background: #053f6a;
            border-radius: 3px;
            transition: var(--transition);
        }

        .global-gateway-heading:hover::after {
            width: 160px;
        }

        .gateway-cards-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 2.5rem;
            justify-content: center;
            padding: 80px;
        }

        .gateway-card {
            background: var(--card-bg);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 1;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .gateway-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            opacity: 0;
            z-index: -1;
            transition: var(--transition);
            transform: translateZ(-1px);
        }

        .gateway-card:hover {
            transform: translateY(-1rem) rotateX(5deg);
            box-shadow: 0 35px 60px -15px rgba(79, 70, 229, 0.3);
        }

        .gateway-card:hover::before {
            opacity: 0.03;
        }

        .country-header {
            display: flex;
            align-items: center;
            padding: 1.3rem;
            background: #f0d321;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .country-header::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 40%;
            height: 200%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(30deg);
            transition: var(--transition);
        }

        .gateway-card:hover .country-header::after {
            right: 100%;
        }

        .country-flag {
            width: 3.3rem;
            height: 3.3rem;
            border-radius: 50%;
            margin-right: 1.5rem;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            filter: saturate(1.1);
        }

        .gateway-card:hover .country-flag {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .country-name {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            position: relative;
            font-family: nunito;
            color: #0e4c96;
        }

        .country-name::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 2.5rem;
            height: 3px;
            background: hsla(0, 0%, 100%, 0.5);
            transition: var(--transition);
        }

        .gateway-card:hover .country-name::after {
            width: 3.5rem;
            background: #0e4c96;
        }

        .country-stats {
            display: flex;
            justify-content: space-around;
            padding: 2rem;
            background-color: var(--card-bg);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            background: lightgoldenrodyellow;
        }

        .country-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
        }

        .stat-item {
            text-align: center;
            padding: 0 1.5rem;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 1px;
            height: 2.5rem;
            background: rgba(0, 0, 0, 0.1);
        }

        .stat-numbers {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
            background: var(--text-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: nunito;
        }

        .students-count {
            background: #0e4c96;
            -webkit-background-clip: text;
            background-clip: text;
        }

        .success-rate {
            color: #379e37;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #0e6ebe;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
            font-family: golos text;
        }

        .gateway-card:hover .stat-label {
            color: var(--dark);
        }

        .country-features {
            padding: 1.5rem;
            background:lightgoldenrodyellow;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.25rem;
            color: #0e4c96;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding-left: 1rem;
            font-family: golos text;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 0;
            background: #0d44da;
            border-radius: 2px;
            transition: var(--transition);
        }

        .feature-item:hover {
            transform: translateX(0.75rem);
        }

        .feature-item:hover::before {
            height: 100%;
        }

        .feature-icon {
            width: 2rem;
            height: 2rem;
            margin-right: 1.25rem;
            background: #0d44da12;
            color: #0e4c96;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .feature-item:hover .feature-icon {
            background: #0d44da;
            color: white;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 20px #0d44da4b;
        }

        .explore-btn {
            display: block;
            width: 100%;
            padding: 10px 0;
            background: #f0d321;
            font-family: nunito;
            color: #0e4c96;
            border: none;
            border-radius: 3rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
        }

        .explore-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 2rem;
            height: 200%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(30deg);
            transition: var(--transition);
        }

        .explore-btn:hover {
            transform: translateY(-0.5rem);
            box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
        }

        .explore-btn:hover::after {
            left: 110%;
        }

        .explore-btn:active {
            transform: translateY(-0.25rem);
        }

        @media (max-width: 1200px) {
            .gateway-cards-wrapper {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {

            
            .global-gateway-heading {
                font-size: 2.5rem;
                margin-bottom: 3rem;

            }
            
            .gateway-cards-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .country-header {
                padding: 1.5rem;
            }
            
            .country-flag {
                width: 3rem;
                height: 3rem;
            }
        }

        @media (max-width: 480px) {
            .global-gateway-heading {
                font-size: 2rem;
                margin-bottom: 2rem;
                margin-top: 1rem;
            }
            .global-gateway-heading::after{
              width: 70px;
            }
            
            .country-name {
                font-size: 1.5rem;
            }
            
            .stat-number {
                font-size: 1.75rem;
            }
            .country-stats{
                  padding: 1rem;
            }
             .explore-btn {
        font-size: 0.90rem;
        font-weight: 600;
        padding: 0.60rem;
         }
         .stat-numbers{
          font-size: 1.5rem;
         }
         .stat-label {
          font-size: 0.7rem;
         }
         .country-header {
          padding: 1rem;
         }
             .gateway-cards-wrapper{
              padding: 35px;
             }
             .country-features {
            padding: 1rem;
            }
            .feature-icon{
                  width: 2rem;
                 height: 2rem;
            }
            .gateway-card{
              border-radius: 15px;
            }

        }

        /* Animation for counter */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(1.5rem);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .counter-animate {
            animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        /* Floating animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotateX(0);
            }
            50% {
                transform: translateY(-1rem) rotateX(5deg);
            }
        }

        .gateway-card {
            animation: float 6s ease-in-out infinite;
            animation-play-state: paused;
        }

        .gateway-card:hover {
            animation-play-state: running;
        }

        /* Particle animation */
        @keyframes particle-float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 50%;
            animation: particle-float linear infinite;
        }
   /* :root {
       --bg: #f5f7fa;
      --text: #1e293b;
      --muted: #6b7280;
      --card: #ffffff;
      --accent: #0f62fe;
      --accent-hover: #0043ce;
      --radius: 14px;
    }  */
 .pg-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      
      padding: 2rem;
      background-color: #053f6a;
      font-family: 'Inter', sans-serif;
    }

    .pg-hero {

      padding: 3rem 2rem;
      max-width: 1300px;
      width: 100%;
      text-align: center;
      animation: pg-fadeIn 0.7s ease-out both;

    border-radius: 30px;
    background: #053f6a;
    box-shadow: 25px 25px 20px #032844, -25px -25px 33px #075690;
    }

    @keyframes pg-fadeIn {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .pg-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
      line-height: 1.25;
      font-family: golos text;
    }

    .pg-description {
      font-size: clamp(1rem, 1.4vw, 1.125rem);
      color: #e5dfdf;
      margin-bottom: 2.2rem;
      line-height: 1.6;
      max-width: 640px;
      margin-inline: auto;
      font-family: golos text;
    }

    .pg-cta-button {
      display: inline-block;
      background-color: #f0d321;
      color: #1c1c1e;
      padding: 0.85rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.25s ease;
      box-shadow: 0 0 0 rgba(15, 98, 254, 0.5);
      animation: pg-glowPulse 2.5s infinite ease-in-out;
    }

    .pg-cta-button:hover {
      background-color: #fffcea;
      color: #052f6a;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 67, 206, 0.2);
    }

    @keyframes pg-glowPulse {
      0% {
        box-shadow: 0 0 0 rgba(77, 89, 69, 0.36);
      }
      50% {
        box-shadow: 0 0 12px rgba(77, 89, 69, 0.542);
      }
      100% {
        box-shadow: 0 0 0 rgb(77, 89, 69);
      }
    }

    @media (max-width: 480px) {
      .pg-hero {
        padding: 2rem 1.2rem;
      }

      .pg-cta-button {
        width: 100%;
        padding: 0.70rem;
      }
      
    }

.stat-icon-stu {
    font-size: 1.5rem;
    color: #0e4c96;
    margin-bottom: 0.4rem;
}
.stat-icon-per {
    font-size: 1.5rem;
    color: #379e37;
    margin-bottom: 0.4rem;
}




/* testimonials  ################ */
 /* :root {
            --primary: #2563eb;
            --text: #1e293b;
            --gray: #64748b;
            --light-bg: #f8fafc;
        } */
  
        
        .testimonials {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            overflow: hidden;
            font-family: sans-serif;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 0 1rem;
        }
        
        .section-header h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 600;
            margin-bottom: 1rem;
            color: #053f6a;
            font-family: golos text;
        }
        
        .section-header p {
            color: #4e4a4a;
            max-width: 600px;
            margin: 0 auto;
            font-size: clamp(0.9rem, 2vw, 1rem);
            line-height: 1.5;
        }
        
        .carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 1rem 0;
        }
        
        .testimonial-carousel {
            display: flex;
            will-change: transform;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            flex: 0 0 calc(100% - 2rem);
            margin: 0 1rem;
            min-height: 300px;
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }
        
        .client-info {
            margin-bottom: 1rem;
        }
        
        .client-name {
            font-weight: 600;
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 0.25rem;
            color: #053f6a;
        }
        
        .client-program {
            color: #f0d321;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .stars {
            color: #f59e0b;
            margin-bottom: 0.5rem;
            font-size: clamp(1rem, 2vw, 1.2rem);
        }
        
        .client-location {
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            color: #6b7280;
            margin-bottom: 1rem;
            display: block;
        }
        
        .testimonial-text {
            color: #4b5563;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            line-height: 1.6;
        }
        
        @media (min-width: 640px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 2rem);
                min-height: 320px;
            }
        }
        
        @media (min-width: 1024px) {
            .testimonial-card {
                flex: 0 0 calc(33.333% - 2rem);
                min-height: 340px;
                padding: 2rem;
            }
        }




/* %%%%%%%%%%%%%%%%%%     FAQ      %%%%%%%%%%%%%%%% */
    /* :root {
      --primary: #4e60ff;
      --dark: #1e1f29;
      --gray: #6c757d;
      --light: #f5f7fa;
      --bg: #ffffff;
      --radius: 16px;
      --transition: 0.3s ease;
    } */
   .faq-section {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 1rem;
      
    }

    .faq-title {
      font-family: golos text;
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 2.5rem;
      text-align: center;
      color: #053f6a;
      
    }

    .faq-container {
      display: flex;
      gap: 2rem;
      background: #e9f2f88c;
      border-radius: 12px;
      box-shadow: 0 12px 24px rgba(0,0,0,0.06);
      overflow: hidden;
      padding: 2.5rem;
      font-family: nunito;
    }

    .faq-questions {
      flex: 2;
    }

    .faq-item {
      border-bottom: 1px solid #eaeaea;
      padding: 1.25rem 0;
      cursor: pointer;
      transition: var(--transition);
    }

    .faq-question {
      font-size: 1.1rem;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #222;
      font-family: golos text;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      font-size: 0.96rem;
      color: var(--gray);
      transition: max-height 0.4s ease;
      padding-right: 1.5rem;
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      margin-top: 0.75rem;
    }

    .faq-icon {
      font-size: 1.5rem;
      color: #053f6a ;
      transition: transform var(--transition);
    }

    .faq-item.active .faq-icon {
      transform: rotate(2deg);
    }

    .faq-sidebar {
      flex: 1;
      background: #f0d321;
      border-radius: 10px;
      color: white;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .faq-sidebar p {
      margin: 1rem 0 2rem;
      font-size: 2rem;
      font-family: golos text;
      line-height: 1.5;
      opacity: 1;
      color: #ffffff;
    }

    .contact-btn {
      background: #053f6a;
      color: white;
      padding: 0.75rem 1.25rem;
      border-radius: 50px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      text-decoration: none;
      transition: var(--transition);
      text-align: center;
      font-size: 1.3rem;
    }

    .contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
      .faq-container {
        flex-direction: column;
        padding: 1.5rem;
      }

      .faq-sidebar {
        order: 2;
        text-align: center;
        padding: 2rem 1.5rem;
      }

      .faq-questions {
        order: 1;
      }

      .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
      }
      .faq-sidebar p{
        font-size: 1.2rem;
      }
      .contact-btn{
        font-size: 1rem;
      }
    }






    /*============ foooter ====================*/
    footer {
      background: #fff7c7;
      color: #ccc;
      padding: 40px 20px 20px;
      font-family: "Segoe UI", sans-serif;
    }

    .footer-main {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-left {
      flex: 1;
      min-width: 250px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-logo img {
     
      height: 71px;
    }

    .footer-logo h2 {
      font-size: 1.2rem;
      color: white;
      font-family: outfit;
    }

    .footer-left p {
      margin: 15px 0;
      max-width: 350px;
      line-height: 1.2;
      color: #053f6a;
      font-size: 13px;
    }

    .footer-socials-heading {
      margin-top: 15px;
      font-weight: bold;
      color: #f0d321;
    }

    .footer-socials {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .footer-socials a {
      background-color: #053f6a;
      color: white;
      font-size: 14px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .footer-socials a:hover {
      background-color: #f0d321;
      color: #053f6a;
    }

    .footer-links,
    .footer-contact {
      min-width: 180px;
    }

    .footer-links h3,
    .footer-contact h3 {
      color: #f0d321;
      margin-bottom: 10px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links ul li {
      margin-bottom: 8px;
    }

    .footer-links ul li a {
      text-decoration: none;
      color: #053f6a;
      transition: color 0.2s;
    }

    .footer-links ul li a:hover {
      color: #f0d321;
      
    }

    .footer-contact p {
      margin: 10px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #053f6a;
    }

    .footer-contact i {
      color: #053f6a;
    }

    .footer-bottom {
      border-top: 1px solid #053f6a;
      margin-top: 30px;
      padding-top: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .footer-bottom p {
      font-size: 14px;
      color: #053f6a;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-main {
        flex-direction: column;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }





    





    /*$$$$$$$$$$$$44   WHATSAPP FLOATING $$$$$$$$$$$$$$$$$*/
        .whatsapp-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      background-color: #25d366;
      border-radius: 30px;
      padding: 10px 15px;
      color: white;
      text-decoration: none;
      font-size: 16px;
      z-index: 1000;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .whatsapp-container:hover {
      transform: scale(1.05);
    }

    .whatsapp-container i {
      font-size: 24px;
      margin-right: 10px;
    }