 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'DDIN', sans-serif;
    }

            :root {
            --primary-blue: #003F63;
            --secondary-blue: #065389;
            --accent-green: #00BF63;
            --light-green: #87C340;
            --light-bg: #0653890A;
            --text-dark: #003F63;
            --card-bg: #ffffff;
            --border-color: rgba(6, 83, 137, 0.1);
        }

    body {
      background: #f9f9f9;
      scroll-behavior: smooth;
    }






    nav ul li a:hover {
      color: #00bf63;
      text-decoration: underline;
      transition: ease 0.2s;
    }
    .user-auth{
      margin-left: 100px;
    }

    .user-auth .login-btn-modal{
          font-size: 20px;
          font-weight: 600;
          padding: 8px 30px;
          border: 3px solid #003F63;
          color: #003F63;
          background: #0653890A;
          z-index: 1;
          border-radius: 100px;
    }
    .user-auth .login-btn-modal:hover{
          color: #FFFFFF;
          background: #003F63;
          z-index: 1;
          border-radius: 100px;
    }
    .auth-modal {
      z-index: 2000;
      position: fixed;
      z-index: 6;
      width: 420px;
      height: 440px;
      background: #00bf63;
      border: 2px solid  rgba(255,255,255, .3);
      border-radius: 20px;
      box-shadow: 0 0 30px rgba(0,0,0, .3);
      backdrop-filter: blur(20px);
      color: #fff;
      inset: 0;
      margin: auto;
      display: flex;
      align-items: center;
      overflow: hidden;
      transform: scale(0); 
      transition: height .2s ease,transform .5s ease;
    }

    .auth-modal.show {
      transform: scale(1);
    }


    .auth-modal.slide {
      height: 650px;
    }

    .auth-modal .form-box {
      width: 100%;
      padding: 40px;
    }

    .auth-modal .form-box.login,
    .auth-modal.slide .form-box.register {
      transform: translateX(0);
      transition: transform .18 ease;
    }

    .auth-modal.slide .form-box.login {
      transform: translateX(-400px);
      transition: none;
    }
    .auth-modal .form-box.register{
      position: absolute;
      transform: translateX(400px);
    }
    .form-box h2 {
      font-size: 35px;
      text-align: center;
    }
    .input-box{
      position: relative;
      width: 100%;
      height: 50px;
      margin: 30px 0; 
    }
    .input-box input {
      width: 100%;
      height: 100%;
      background: transparent;
      border: 2px solid rgba(255,255,255, .3);
      outline: none;
      border-radius: 40px;
      font-size: 16px;
      color: #fff;
      padding: 20px 45px 20px 20px;
    }
    .input-box input::placeholder {
      color: #fff;
    }

    .input-box i {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
    }
    .btn{
      height: 45px;
      border-radius: 40px;
      border: none;
      box-shadow: 0 0 10px rgba(0, 0, 0, .1);
      font-size: 16px;
      font-weight: 500;
      cursor: pointer; 
    }
    .form-box p{
      font-size: 14.5px;
      text-align: center;
      margin: 25px 0 10px;
    }
    .form-box p a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
    }
    .form-box p a:hover {
      text-decoration: underline
    }
    .auth-modal .close-btn-modal {
      position: absolute;
      top: 0;
      right: 0;
      width: 45px;
      height: 45px;
      background-color: #fff;
      border: none;
      border-bottom-left-radius: 20px;
      font-size: 35px;
      color: #222;
      cursor: pointer;
      z-index: 3;
    }










    .profile-box .avatar-circle {
      line-height: 40px;
      text-align: center;
      font-size: 25px;
      color: #065389;
      font-weight: 600;
      cursor: pointer;
    }
    .profile-box .dropdown {
      position: absolute;
      top: 85px;
      right: 200px;
      padding: 10px;
      background:#ffffff;
      color: #065389;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      transform: translateY(20px);
      opacity: 0;
      pointer-events: none;
      transition: .5s;
    }

    .profile-box.show .dropdown{
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    } 
    .dropdown{
      border:#065389 solid 1px;
      z-index: 3;
    }
    .profile-box .dropdown a {
      padding: 6px 12px;
      border-radius: 4px;
      color: #065389;
      text-decoration: none;
      font-weight: 500;
      margin: 2px 0;
      transition: .2s;
    }
    .profile-box .dropdown a:hover {
      background: #eee;
    }









    .alert-box{
      position: fixed;
      inset: 0;
      top: 35px;
      margin: 0 auto;
      width: 350px;
      height: 70px;
      background: #fff;
      border-radius: 6px;
      padding: 0 15px;
      z-index: 100000;
      overflow: hidden;
      transform: translateY(calc(-100% - 35px));
      transition: .5s ease;
    }

    .alert-box.show {
      transform: translateY(0);
    }
    .alert {
      display: flex;
      align-items: center;
      height: 100%;
      color: #222;
      font-weight: 500;
    }

    .alert::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: #00bf63;
      animation: progress 6s linear forwards;
    }

    .alert.error::after {
      background: #f00;
    }

    @keyframes progress {
      100%{
        width: 0;
      }
    }
    .alert i {
      font-size: 35px;
      color: #00bf63;
      margin-right: 8px;
    }
    .alert.error i {
      color: #f00;
    }




    /* Hamburger */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 6px;
      transition: transform 0.4s ease;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #004aad;
      transition: 0.4s;
      border-radius: 2px;
    }

    /* X Animation */
    .menu-toggle.open span:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }

    .menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
      transform: rotate(-45deg) translateX(5px) translateY(-12px);;
    }

    /* Responsive */ 
    @media (max-width: 768px) {
      nav {
        padding: 15px 25px;
      }
      .user-auth {
    margin-left: 0px;
      }
      .logo{
        width: 90%;
      } 
      nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 200px;
        height: 334;
        background:#0653890A;
        color: #065389;
        border:#065389 solid 1px;
        border-radius: 50px;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 40px;
        transition: right 0.4s ease;
        z-index: 2;
      }

      nav ul li a {
        color: #065389;
        font-size: 1.1rem;
      }

      nav ul.show {
        right: 0;
        background-color: #ffffff;
      }

      .menu-toggle {
        display: flex;
      }
    }

  





.hero {
  width: 100%;
  padding: 80px 20px 150px;
  display: flex;
  justify-content: center;
  position: relative;
  background: white;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1150px;
  text-align: center;
  position: relative;
}

/* TITLE */
 span {
  color: #63b32e;
  font-family: 'DDIN', sans-serif;

}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #0f2d4a;
  line-height: 1.15;
  margin-bottom: 18px;
  font-family: 'DDIN', sans-serif; 
}

/* SUBTEXT */
.hero-subtext {
  max-width: 720px;
  margin: 0 auto 40px;
  color: #364a63;
  font-size: 18px;
  line-height: 1.55;
  z-index: 10;
    font-family: 'DDIN', sans-serif; 
}

/* GREEN CURVE BACKGROUND */
.green-curve {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: #63b32e;
  border-radius: 100%;
  z-index: 2;
}

/* CIRCLES */
.circles {
  width: 100%;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.vector {
  width: 150%;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* MAN IMAGE */
.man {
  width: 120%;
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* FEATURE TAGS */
.feature {
  position: absolute;
  background: #eef2f6;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 14px;
  color: #0f2d4a;
  z-index: 5;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  white-space: nowrap;
  font-weight: 500;
}

/* Match screenshot placement */
.f1 { top: 200px; left: 13%; }
.f2 { top: 275px; left: 8%; }
.f3 { top: 220px; right: 13%; }
.f4 { top: 300px; right: 8%; }

/* BUTTONS */
.hero-buttons {
  margin-top: 450px;
  position: relative;
  z-index: 10;
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}

.btn-green {
  background: #63b32e;
  color: white;
}

.btn-green:hover {
  background: #4d9625;
}

.btn-outline {
  border: 2px solid #0f2d4a;
  color: #0f2d4a;
}

.btn-outline:hover {
  background: #0f2d4a;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero-title { font-size: 34px; }
  .hero-title span { font-size: 30px; }

  .circles { width: 340px; top: 264px; }
  .man { width: 200%; top: 30%;}

  .green-curve {
    width: 200px;
    height: 200px;
    bottom: 160px;
  }
  .vector{
    top: 60%;
  }


  .hero-buttons { margin-top: 360px; }
}













.about {
  padding: 80px 10%;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

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

.about-text {
  flex: 1 1 500px;
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #004aad;
}

.about-text h2 span {
  color: #00bf63;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.about-visual {
  flex: 1 1 350px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

/* Gradient Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.8;
  animation: float 8s infinite ease-in-out alternate;
}

.blob1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at top left, #004aad, transparent);
  animation-delay: 0s;
}

.blob2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at bottom right, #5de0e6, transparent);
  animation-delay: 3s;
}

.blob3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, #00bf63, transparent);
  animation-delay: 6s;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  from { transform: translateY(0px) scale(1); }
  to { transform: translateY(-40px) scale(1.1); }
}




.quick-links {
  padding: 80px 10%;
  background: #ffffff;
  text-align: center;
}

.quick-links h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #004aad;
}

.links-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.link-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  border-radius: 20px;
  padding: 30px 25px;
  text-decoration: none;
  color: #333;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.link-card .icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00bf63;
  transition: transform 0.4s ease;
}

.link-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #004aad;
}

.link-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Hover Effects */
.link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.link-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
  color: #5de0e6;
}








.stats {
  padding: 80px 10%;
  background: linear-gradient(135deg, #004aad, #5de0e6, #00bf63);
  background-size: 300% 300%;
  animation: gradientFlow 12s ease infinite;
  color: white;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.stat-card h3 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ffffff;
}

.stat-card p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Reuse gradient animation */
@keyframes gradientFlow {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}




.cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #004aad, #00bf63);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 35px;
  text-decoration: none;
  background: white;
  color: #004aad;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25), 0 0 20px rgba(0, 191, 99, 0.6);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #00bf63;
  color: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 25px rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
}


    .formations {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .card {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .card h2 {
      color: #004aad;
      margin-bottom: 1rem;
    }

    .card p {
      font-size: 1rem;
      color: #555;
    }

    .coming-soon {
      background: linear-gradient(135deg, #004aad, #5de0e6, #00bf63);
      color: white;
      font-weight: bold;
      padding: 0.5rem 1rem;
      border-radius: 30px;
      display: inline-block;
      margin-top: 1rem;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.05); opacity: 0.8; }
      100% { transform: scale(1); opacity: 1; }
    }



    /* Style for academic level dropdown */
.input-box select {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid rgba(255,255,255, .3);
  outline: none;
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  padding: 0 45px 0 20px;
  appearance: none;
}

.input-box select option {
  background: #00bf63;
  color: #fff;
}

.input-box .bxs-graduation {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  pointer-events: none;
}






/* Verification Styles */
.verification-notice {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    text-align: center;
}

.verification-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.verification-alert i {
    color: #ff6b6b;
    font-size: 24px;
}

.verification-text strong {
    color: #ff6b6b;
    display: block;
    margin-bottom: 5px;
}

.verification-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.resend-form {
    margin-top: 10px;
}

.resend-btn {
    background: #004aad;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.resend-btn:hover {
    background: #003580;
    transform: translateY(-2px);
}

/* Email Status in My Account */
.email-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.email-status.verified {
    background: rgba(0, 191, 99, 0.1);
    color: #00bf63;
}

.email-status.not-verified {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}













/* Development Verification Box */
.dev-verification-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 3px solid #004aad;
    border-radius: 15px;
    padding: 25px;
    max-width: 90%;
    width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
}

.dev-verification-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00bf63;
}

.dev-verification-header h3 {
    color: #004aad;
    margin-bottom: 10px;
}

.dev-verification-link {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    word-break: break-all;
}

.dev-verification-link a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}

.dev-verification-link a:hover {
    text-decoration: underline;
}

.dev-verification-token {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.dev-verification-token code {
    background: white;
    padding: 5px;
    border-radius: 4px;
    font-size: 12px;
    word-break: break-all;
    display: inline-block;
    margin-top: 5px;
}









/* Development Verification Box */
.dev-verification-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 3px solid #004aad;
    border-radius: 15px;
    padding: 25px;
    max-width: 90%;
    width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
}

.dev-verification-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00bf63;
}

.dev-verification-header h3 {
    color: #004aad;
    margin-bottom: 10px;
}

.dev-verification-link {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    word-break: break-all;
}

.dev-verification-link a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}

.dev-verification-link a:hover {
    text-decoration: underline;
}

.dev-verification-token {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.dev-verification-token code {
    background: white;
    padding: 5px;
    border-radius: 4px;
    font-size: 12px;
    word-break: break-all;
    display: inline-block;
    margin-top: 5px;
}











/* Development Verification Box */
.dev-verification-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 3px solid #004aad;
    border-radius: 15px;
    padding: 25px;
    max-width: 90%;
    width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
}

.dev-verification-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00bf63;
}

.dev-verification-header h3 {
    color: #004aad;
    margin-bottom: 10px;
}

.dev-verification-link {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    word-break: break-all;
}

.dev-verification-link a {
    color: #004aad;
    text-decoration: none;
    font-weight: bold;
}

.dev-verification-link a:hover {
    text-decoration: underline;
}

.dev-verification-token {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.dev-verification-token code {
    background: white;
    padding: 5px;
    border-radius: 4px;
    font-size: 12px;
    word-break: break-all;
    display: inline-block;
    margin-top: 5px;
}






    a{
      text-decoration: none;
    }




@media (max-width: 480px) {
    
}

    /* Formation Card */
    .formations {
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 2rem;
      display: flex;
      justify-content: center;
    } 

    .card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
      width: 350px;
      overflow: hidden;
    }

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

    .card img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .card h2 {
      color: #004aad;
      margin: 1rem 0 0.5rem;
    }

    .card p {
      margin: 0 1rem 1rem;
      color: #555;
    }

    .see-more {
      display: inline-block;
      margin-bottom: 1.5rem;
      padding: 0.6rem 1.5rem;
      background: #004aad;
      color: white;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .see-more:hover {
      background: #00bf63;
    }












   
    
    /* === SPECIALIZATION INFO === */
    .specialization-info {
      max-width: 900px;
      margin: auto;
      padding: 60px 20px 40px;
    }
    
    .specialization-top {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 40px;
    }
    
    .specialization-top .meta {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      align-items: center;
    }
    
    .specialization-top .meta span {
      background: #eef6fd;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      color: #004aad;
      font-weight: 500;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .specialization-top p {
      font-size: 1.1rem;
      line-height: 1.7;
    }
    
    /* === SKILLS SECTION === */
    .skills-section {
      max-width: 900px;
      margin: auto;
      padding: 40px 20px;
    }
    
    .skills-section h2 {
      text-align: center;
      color: #004aad;
      margin-bottom: 30px;
      font-size: 2rem;
    }
    
    .skills-list {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }
    
    .skills-list span {
      background: #eef6fd;
      padding: 10px 18px;
      border-radius: 20px;
      font-size: 0.95rem;
      color: #004aad;
      font-weight: 500;
      transition: all 0.3s ease;
      cursor: default;
    }
    
    .skills-list span:hover {
      background: #004aad;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 74, 173, 0.2);
    }
    
    /* === IMAGE GALLERY === */
    .image-gallery {
      padding: 50px 20px;
      text-align: center;
      background: #f3f9ff;
    }
    
    .image-gallery h2 {
      color: #004aad;
      margin-bottom: 30px;
      font-size: 2rem;
    }
    
    .gallery-container {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
    }
    
    .gallery-container img {
      width: 200px;
      height: 300px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: all 0.4s ease;
    }
    
    .gallery-container img:hover {
      transform: scale(1.08) rotate(2deg);
      box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }
    
    /* === COURSE SECTION === */
    .course-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: auto;
      text-align: left;
    }
    
    .course-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #004aad;
    }
    
    .course-details ul {
      list-style: none;
      padding: 0;
    }
    
    .course-details li {
      margin: 15px 0;
      padding-left: 35px;
      position: relative;
      font-size: 1.1rem;
      line-height: 1.6;
    }
    
    .course-details li::before {
      content: "✔";
      color: #00bf63;
      position: absolute;
      left: 0;
      font-weight: bold;
      font-size: 1.2rem;
    }
    
    /* === PRICE === */
    .price {
      margin-top: 30px;
      font-size: 1.4rem;
      font-weight: bold;
      color: #00bf63;
      text-align: center;
      padding: 15px;
      background: #f0fffa;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    
    /* === ENROLL FORM === */
    .enroll-form {
      margin-top: 40px;
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transform: translateY(20px);
      opacity: 0;
      animation: formAppear 0.8s ease forwards 0.5s;
    }
    
    .enroll-form h3 {
      text-align: center;
      margin-bottom: 25px;
      color: #004aad;
      font-size: 1.6rem;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #004aad;
    }
    
    .form-group input, 
    .form-group select {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s;
    }
    
    .form-group input:focus,
    .form-group select:focus {
      border-color: #00bf63;
      box-shadow: 0 0 0 3px rgba(0,191,99,0.2);
    }
    
    /* === CTA BUTTON === */
    .ctaa {
      text-align: center;
      margin-top: 30px;
    }
    
    .ctaa button {
      padding: 15px 40px;
      font-size: 1.2rem;
      background: linear-gradient(135deg, #004aad, #00bf63);
      color: white;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
    }
    
    .ctaa button:hover {
      background: linear-gradient(135deg, #00bf63, #004aad);
      transform: translateY(-3px);
      box-shadow: 0 7px 20px rgba(0, 74, 173, 0.4);
    }
    
    .ctaa button:active {
      transform: translateY(1px);
    }
    
  
    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 0.9rem;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 20px;
      color: #ccc;
    }
    
    /* === ANIMATIONS === */
    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes formAppear {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* === RESPONSIVE DESIGN === */
    @media (max-width: 768px) {
     
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      .specialization-top .meta {
        justify-content: center;
      }
      
      .gallery-container img {
        width: 150px;
        height: 220px;
      }
      
      .enroll-form {
        padding: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero {
        height: 70vh;
      }
      
      .specialization-top .meta span {
        font-size: 0.8rem;
        padding: 6px 12px;
      }
      
      .course-details li {
        font-size: 1rem;
        padding-left: 28px;
      }
      
      .gallery-container {
        gap: 15px;
      }
      
      .gallery-container img {
        width: 130px;
        height: 180px;
      }
    }















     @font-face {
  font-family: 'DDIN';
  src: url('https://cdn.jsdelivr.net/npm/d-din@1.0.0/dist/D-DIN.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/npm/d-din@1.0.0/dist/D-DIN.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
        *{
            font-family: 'D-DIN';
        }
        body{
            margin: 0;
            padding: 0;
            text-decoration: none;
            font-family: 'DDIN', sans-serif;
        }
        a{
            text-decoration: none;
        }
        li{
            text-decoration: none;
        }
        nav{
            overflow: hidden;
            height: 9vh ;
            width: 83%;
            border: 1px solid #06538933;
            background-color: #0653890A;
            border-radius: 1000px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            margin:auto;
            margin-top: 20px;
            z-index: 1000;
        }
        .logo img{
            width: 100%;
        }
        .logo{
            width: 20%;
            margin: 0 25px;
        }
        ul{
          width: 80%;
          padding: 0;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            list-style-type: none;
            justify-content: center;
            align-items: center;
        }
        li{
          font-size: 20px;
          margin: 10px;
        }
        li,a {
          font-family: 'DDIN', sans-serif;
          color:#003F63 ;
        }









        .grid {
          font-family: 'DDIN', sans-serif;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.item{
    border: 1px solid #06538933;
    border-radius: 10px;
    background: #0653890A;
}

/* Item positions */
.item1 { grid-area: 1 / 1 / 2 / 2; } /* row 1 column 1 */
.item2 { grid-area: 1 / 2 / 2 / 3; } /* row 1 column 2 */
.item3 { grid-area: 1 / 3 / 3 / 4; } /* spans 2 rows */
.item4 { grid-area: 2 / 1 / 3 / 3; } /* spans 2 columns */

.abouttxt{
  position: relative;
  text-align: center;
}


.abouttxt h1{
  width: 100%;
  font-size: 60px;
  text-align: center;
  font-family: 'DDIN', sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}
.item h2{
  margin: 16px;
  font-size: 30px;
  color: #065389;
  font-family: 'DDIN', sans-serif;
}
.item p{
  margin: 16px;
  font-size: 20px;
  font-family: 'DDIN', sans-serif;
  color: #003F63;
}
.item p span{
  font-size: 20px;
  font-family: 'DDIN', sans-serif;
}







.whytxt{
  position: relative;
  text-align: center;
}


.whytxt h1{
  width: 100%;
  font-size: 60px;
  text-align: center;
  font-family: 'DDIN', sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #003F63;
}


.flxtxt{
      width: 100%;
      border: 1px solid #06538933;
    border-radius: 10px;
    background: #0653890A;
}

.flxtxt h2{
  margin: 16px;
  font-size: 30px;
  color: #065389;
  font-family: 'DDIN', sans-serif;
}
.flxtxt p{
  margin: 16px;
  font-size: 20px;
  font-family: 'DDIN', sans-serif;
  color: #003F63;
}

.flximg {
  width: 100%;
  height: 20vh;
  background: #87C340;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 14px;
}
.flximg img{
  width: 80%;
  bottom: 0;
}

.flex{
  display: flex;
  flex-direction: row;
}


.flxitm{
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 24px;
}




.ctgrstxt{
  position: relative;
  text-align: center;
}


.ctgrstxt h1{
  width: 100%;
  font-size: 60px;
  text-align: center;
  font-family: 'DDIN', sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #003F63;
}


.flxmg {
  width: 100%;
  height: 20vh;
  background: #003F63;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 14px;
}
.flxmg img{
    align-items: center;
    width: 30%;
    top: 20%;
    left: 40%;
    position: relative;
}

.flx{
  display: flex;
  flex-direction: column;
  width: 30%;
  align-items: center;
  margin: 0 24px;
  border-radius: 10px;
}








/* ----- Title section ----- */

.QA {
    width: 100%;
    padding: 40px 0;
}

.QAtxt {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.QAtxt img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    top: -40px;
    z-index: -1;
}

.QAtxt h1 {
    font-size: 40px;
    color: #003F63;
    font-weight: 700;
}

.QAtxt h1 span {
    color: #00BF63;
}


/* ----- Grid layout ----- */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 70%;
    margin: auto;
}


/* ----- Card style ----- */

.faq-card {
    background: #0653890A;
    border-radius: 14px;
    border: 1px solid #06538933;
    box-shadow: 0 4px 12px rgba(13, 79, 163, 0.08);
    transition: 0.3s ease;
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 79, 163, 0.12);
}

/* ----- Question ----- */

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #065389;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
}

.faq-question span {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.faq-card.active .faq-question span {
    transform: rotate(180deg);
}


/* ----- Answer ----- */

.faq-answer {
    font-size: 1rem;
    color: #003F63;
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.faq-card.active .faq-answer {
    padding: 22px;
    max-height: 300px;
    opacity: 1;
    background: #f7fbff;
}


/* ----- Responsive ----- */

@media (max-width: 900px) {
    .faq-grid {
        width: 90%;
        grid-template-columns: 1fr;
    }
}




.getready{
  background: #003F63;
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  overflow: hidden;
}

.gtrdy{
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
}

.gtrdy h2 span{
  color: #00BF63;
  font-size: 32px;
  font-weight: 700;
}

.gtrdy p{
  line-height: 1.6;
  max-width: 550px;
}

.gtrdy a{
  border: 1px solid #00BF63;
  background-color: #00BF63;
  color: #003F63;
  padding: 12px 30px;
  border-radius: 20px;
  font-weight: 600;
  width: fit-content;
  transition: 0.3s;
}

.gtrdy a:hover{
  background: transparent;
  color: #00BF63;
}

.img-box{
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.getready img{
  height: 100%;
  object-fit: contain;
  position: relative;
  right: -40px;   /* comme dans l’image */
}



        footer{
          margin-top: 40px;
          width: 100%;
          height: 30vh;
          color: #003F63;
          background: #0653890A;
          border: #0653890A 1px solid;
          display: flex;
          flex-direction: column;
          font-family: 'DDIN', sans-serif;
          align-items: center;
        }
        footer img{
          width:16%;
        }
        .footercontent{
          width: 100%;
          display: flex;
          flex-direction: row;
          justify-content: space-between;
        }
        .footercntct {
          font-size: 16px;
          font-weight: 400;
        }
        .footercntct span{
          font-size: 15px !important;
          font-weight: 700 !important;
          margin: 10px;
        }
        .footercntct{
          display: flex;
          flex-direction: column;
        }
        .footercntct a,p{
          margin: 5px;
        }


        .footer-bottom{
          width: 100%;
          height: 50px;
          color: #003F63;
          background: #0653890A;
          border-top: #0652892a 1px solid;
          align-items: center;
        }



            /* === RESPONSIVE DESIGN === */
    @media (max-width: 768px) {
     

    }
    
    @media (max-width: 480px) {
      .hero-title {
  font-weight: 600;
}

      .green-curve {
    bottom: -110px;
  }
  .vector {
        top: 100%;
    }
    .f1 { top: 200px; left: 1%; }
.f2 { top: 275px; left: 1%; }
.f3 { top: 220px; right: 5%; }
.f4 { top: 300px; right: -6%; }

      .footercontent {
    flex-direction: column;
      }
    .abouttxt h1 {
    font-size: 28px;
  }
  .grid {
    font-family: 'DDIN', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.whytxt h1{
      font-size: 28px;
}
.flex {
    flex-direction: column;
    gap: 24px;
    align-items: center
}
.flxitm {
    width: 70%;
    }
    .ctgrstxt h1{
    font-size: 28px;
    }
    .flx {
    display: flex;
    flex-direction: column;
    width: 70%;

}
.QAtxt h1{
  font-size: 28px;
}
.faq-card {
  width: 70%;
  justify-items: center;
}
.faq-grid {
    justify-items: center;
}
.getready {
  flex-direction: column;
  height: 45vh;
}
.gtrdy {
    gap: 10px;
}
.img-box {
    height: 50%;
  }

.footercontent {
    flex-direction: column;
}

    }









            /* Hero Banner */
        .catalog-hero {
            padding: 180px 0 80px;
            background: linear-gradient(135deg, #003F63 0%, #065389 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
            color: white;
        }
        
        .catalog-hero::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background-color: var(--accent-green);
            border-radius: 50%;
            top: -150px;
            right: -150px;
            opacity: 0.1;
        }
        
        .catalog-hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background-color: var(--light-green);
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
            opacity: 0.1;
        }
        
        .hero-content {
            width: 90%;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .catalog-hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s forwards 0.3s;
        }
        
        .catalog-hero h1 span {
            color: var(--accent-green);
        }
        
        .catalog-hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s forwards 0.5s;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .search-bar {
            max-width: 600px;
            margin: 0 auto 40px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s forwards 0.7s;
        }
        
        .search-bar input {
            width: 100%;
            padding: 18px 25px;
            padding-right: 70px;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .search-bar input:focus {
            outline: none;
            border-color: var(--accent-green);
            background-color: rgba(255, 255, 255, 0.15);
        }
        
        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-bar button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--accent-green);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .search-bar button:hover {
            background-color: #00a856;
            transform: translateY(-50%) scale(1.05);
        }
        
        /* Filter Section */
        .filter-section {
            padding: 30px 0;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            top: 80px;
            z-index: 900;
        }
        
        .filter-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        
        .filter-title {
            font-size: 1.2rem;
            color: var(--primary-blue);
            font-weight: 600;
        }
        
        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            border-radius: 50px;
            background-color: var(--light-bg);
            color: var(--primary-blue);
            border: 1px solid var(--border-color);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--accent-green);
            color: white;
            border-color: var(--accent-green);
        }
        
        .sort-select {
            padding: 10px 20px;
            border-radius: 50px;
            background-color: var(--light-bg);
            color: var(--primary-blue);
            border: 1px solid var(--border-color);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .sort-select:focus {
            outline: none;
            border-color: var(--accent-green);
        }
        
        /* Catalog Grid */
        .catalog-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 0;
        }
        
        .catalog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .catalog-header h2 {
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        .catalog-header h2 span {
            color: var(--accent-green);
        }
        
        .formation-count {
            color: var(--secondary-blue);
            font-size: 1.1rem;
        }
        
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .formation-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            border: 1px solid var(--border-color);
        }
        
        .formation-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .formation-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 63, 99, 0.15);
            border-color: var(--accent-green);
        }
        
        .card-header {
            padding: 25px;
            background-color: var(--light-bg);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
        
        .category-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
        }
        
        .tech-badge {
            background-color: var(--accent-green);
        }
        
        .design-badge {
            background-color: #FF6B6B;
        }
        
        .language-badge {
            background-color: #4ECDC4;
        }
        
        .business-badge {
            background-color: #FFD166;
            color: var(--text-dark);
        }
        
        .card-header h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        .card-header p {
            color: var(--secondary-blue);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .card-body {
            padding: 25px;
        }
        
        .formation-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
        }
        
        .detail-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .detail-icon {
            width: 40px;
            height: 40px;
            background-color: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            color: var(--secondary-blue);
        }
        
        .detail-label {
            font-size: 0.85rem;
            color: var(--secondary-blue);
            margin-bottom: 5px;
        }
        
        .detail-value {
            font-weight: 600;
            color: var(--primary-blue);
        }
        
        .formation-description {
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        
        .formation-features {
            margin-bottom: 25px;
        }
        
        .feature-list {
            list-style: none;
        }
        
        .feature-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-dark);
        }
        
        .feature-list li i {
            color: var(--accent-green);
            margin-right: 10px;
            margin-top: 3px;
        }
        
        .card-footer {
            padding: 25px;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fafdff;
        }
        
        .formation-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .price-duration {
            font-size: 0.9rem;
            color: var(--secondary-blue);
        }
        
        .card-btn {
            padding: 12px 25px;
            border-radius: 50px;
            background-color: var(--accent-green);
            color: white;
            font-weight: 600;
            border: 2px solid var(--accent-green);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .card-btn:hover {
            background-color: transparent;
            color: var(--accent-green);
            transform: translateY(-3px);
        }
        
        /* CTA Section */
        .catalog-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            width: 90%;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .cta-content h2 span {
            color: var(--accent-green);
        }
        
        .cta-content p {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }
        
        .btn-green {
            background-color: var(--accent-green);
            color: white;
            border: 2px solid var(--accent-green);
        }
        
        .btn-green:hover {
            background-color: transparent;
            color: var(--accent-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 191, 99, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 63, 99, 0.2);
        }
        
        /* Footer */
        footer {
            margin-top: 0;
            width: 100%;
            color: var(--text-dark);
            background: var(--light-bg);
            border-top: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 60px 0 0;
        }
        
        .footercontent {
            width: 90%;
            max-width: 1200px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footercntct {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 30px;
            min-width: 200px;
        }
        
        .footercntct span h1 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--secondary-blue);
        }
        
        .footercntct {
            display: flex;
            flex-direction: column;
        }
        
        .footercntct a, .footercntct p {
            margin: 5px 0;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
        
        .footercntct a:hover {
            color: var(--accent-green);
        }
        
        .footer-bottom {
            margin-top: 0;
            width: 100%;
            padding: 20px 0;
            color: var(--text-dark);
            background: var(--light-bg);
            border-top: 1px solid var(--border-color);
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .catalog-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.4s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .filter-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .filter-buttons {
                width: 100%;
                justify-content: center;
            }
            
            .sort-select {
                align-self: flex-end;
            }
            
            .catalog-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .formation-details {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .detail-item {
                width: calc(50% - 10px);
            }
            
            .card-footer {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .card-btn {
                width: 100%;
                text-align: center;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .footercontent {
                justify-content: center;
                text-align: center;
            }
            
            .footercntct {
                width: 45%;
                margin: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .catalog-hero h1 {
                font-size: 2rem;
            }
            
            .catalog-grid {
                grid-template-columns: 1fr;
            }
            
            .filter-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .filter-btn {
                width: 100%;
                text-align: center;
            }
            
            .footercntct {
                width: 100%;
            }
            
            .detail-item {
                width: 100%;
            }
        }
        
        /* Scroll animation class */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* No results message */
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            background-color: white;
            border-radius: 15px;
            border: 2px dashed var(--border-color);
        }
        
        .no-results i {
            font-size: 3rem;
            color: var(--light-bg);
            margin-bottom: 20px;
        }
        
        .no-results h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        .no-results p {
            color: var(--secondary-blue);
            max-width: 500px;
            margin: 0 auto 20px;
        }









        @media (max-width: 768px) {
    .logo {
        width: 50%;
    }
}