﻿@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");


    * {
      -webkit-font-smoothing: antialiased;
      box-sizing: border-box;
    }

    html,
    body {
      align-items: center;
      margin: 0px;
      width: 100%;
      min-height: 100vh;
      overflow-x: hidden;
    }

    img,
    svg {
      max-width: 100%;
      height: auto;
    }

    /* Focus styles for accessibility */
    button:focus-visible,
    a:focus-visible {
      outline: 2px solid #4a90e2 !important;
      outline: -webkit-focus-ring-color auto 5px !important;
    }

    a {
      text-decoration: none;
    }

    /* Animations */
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideUp {
      from {
        opacity: 1;
        transform: translateY(0);
      }
      to {
        opacity: 0;
        transform: translateY(-10px);
      }
    }

    @keyframes rotateArrow {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(180deg);
      }
    }

    /* Main Frame Container */
    .frame {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 1639px;
      height: auto;
      margin: 0 auto;
      position: relative;
    }

    /* Header Navigation */
    .frame-header {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      padding: 20px 48px;
      position: sticky;
      top: 0;
      margin: 0 auto;
      background: white;
      z-index: 50;
    }

    .logo {
      width: 171px;
      height: 50.67px;
      aspect-ratio: 3.38;
    }

    .nav-menu {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      position: relative;
      flex: 0 0 auto;
    }

    /* Hamburger Menu */
    .hamburger-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      gap: 6px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 24px;
    }

    .hamburger-btn span {
      width: 100%;
      height: 2px;
      background-color: #141212;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-list {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 8px;
      position: relative;
      flex: 0 0 auto;
    }

    .nav-dropdown-item {
      gap: 4px;
    }

    .nav-link {
      position: relative;
      font-weight: 400;
      color: #141212;
      font-size: 16px;
      text-align: center;
      letter-spacing: 0;
      line-height: normal;
      white-space: nowrap;
      font-family: "Work Sans", Helvetica, sans-serif;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .nav-link:hover {
      color: #337ab7;
      transform: translateY(-2px);
    }

    .nav-link-active {
      font-weight: 700;
      color: #337ab7;
    }

    .nav-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .nav-dropdown-toggle[aria-expanded="true"] .arrow-down {
      animation: rotateArrow 0.3s ease forwards;
    }

    .arrow-down {
      width: 10px;
      height: 10px;
      aspect-ratio: 1;
      transition: transform 0.3s ease;
    }

    /* Dropdown Menu */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      list-style: none;
      margin: 8px 0 0 0;
      padding: 12px 0;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 100;
    }

    .nav-dropdown-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      animation: slideDown 0.3s ease;
    }

    .dropdown-menu li {
      list-style: none;
    }

    .dropdown-link {
      display: block;
      padding: 12px 20px;
      font-family: "Work Sans", Helvetica, sans-serif;
      font-weight: 400;
      color: #141212;
      font-size: 14px;
      text-align: left;
      letter-spacing: 0;
      line-height: normal;
      transition: all 0.2s ease;
    }

    .dropdown-link:hover {
      background-color: #f3f9ff;
      color: #337ab7;
      padding-left: 24px;
    }

    .language-selector {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      position: relative;
      border-radius: 12px;
      transition: background-color 0.3s ease;
    }

    .language-selector:hover {
      background-color: #f3f9ff;
    }

    .language-dropdown-item {
      gap: 4px;
    }

    .global-icon {
      width: 20px;
      height: 20px;
    }

    .language-btn {
      background: none;
      border: none;
      font-family: "IBM Plex Sans Arabic", Helvetica, sans-serif;
      font-weight: 400;
      color: #141212;
      font-size: 16px;
      cursor: pointer;
      padding: 0;
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .language-btn:hover {
      color: #337ab7;
    }

    .language-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .language-dropdown-toggle[aria-expanded="true"] .language-arrow {
      animation: rotateArrow 0.3s ease forwards;
    }

    .language-arrow {
      width: 16px;
      height: 16px;
      aspect-ratio: 1;
      transition: transform 0.3s ease;
    }

    /* Language Dropdown Menu */
    .language-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 140px;
      list-style: none;
      margin: 8px 0 0 0;
      padding: 12px 0;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 100;
    }

    .language-dropdown-item:hover .language-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      animation: slideDown 0.3s ease;
    }

    .language-dropdown-menu li {
      list-style: none;
    }

    .language-link {
      display: block;
      padding: 12px 20px;
      font-family: "IBM Plex Sans Arabic", Helvetica, sans-serif;
      font-weight: 400;
      color: #141212;
      font-size: 14px;
      text-align: left;
      letter-spacing: 0;
      line-height: normal;
      transition: all 0.2s ease;
    }

    .language-link:hover {
      background-color: #f3f9ff;
      color: #337ab7;
      padding-left: 24px;
    }

    .language-link-active {
      background-color: #f3f9ff;
      color: #337ab7;
      font-weight: 500;
    }

    .sign-in-btn {
      width: 130px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 16px;
      position: relative;
      background-color: #337ab7;
      border-radius: 46px;
      border: 1px solid #337ab7;
      color: #ffffff;
      font-weight: 500;
      font-size: 16px;
      text-align: center;
      cursor: pointer;
      font-family: "Montserrat", Helvetica, sans-serif;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .sign-in-btn:hover {
      background-color: #2d5fa3;
      transform: translateY(-2px);
      box-shadow: 0px 4px 12px rgba(51, 122, 183, 0.3);
    }

    .sign-in-btn span {
      display: block;
    }

    /* Hero Section */
    .hero-section {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1480px;
      align-items: flex-end;
      justify-content: center;
      gap: 67px;
      padding: 80px 40px 40px 24px;
      margin: 60px auto 0;
      border-radius: 20px;
      background: linear-gradient(
          0deg,
          rgba(243, 249, 255, 1) 0%,
          rgba(243, 249, 255, 1) 100%
        ),
        url("../assets/image/hero-section.png") no-repeat center/cover;
      min-height: 536px;
      position: relative;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 583px;
      min-height: 536px;
      align-items: flex-start;
      justify-content: center;
      gap: 32px;
      position: relative;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      position: relative;
      flex: 0 0 auto;
      border-radius: 24px;
      border: 1px solid rgb(106 110 131 / 0.3);
    }

    .badge-text {
      position: relative;
      width: fit-content;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 500;
      color: #337ab7;
      font-size: 20px;
      text-align: right;
      letter-spacing: 0;
      line-height: normal;
      white-space: nowrap;
    }

    .badge-emoji {
      position: relative;
      width: fit-content;
      font-family: "IBM Plex Sans Arabic", Helvetica, sans-serif;
      font-weight: 600;
      color: #000000;
      font-size: 24px;
      text-align: right;
      letter-spacing: 0;
      line-height: normal;
      white-space: nowrap;
    }

    .hero-title {
      position: relative;
      width: 100%;
      max-width: 583px;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: transparent;
      font-size: 48px;
      letter-spacing: 0;
      line-height: 63px;
      margin: 0;
    }

    .hero-title .text-dark {
      color: #141212;
    }

    .hero-title .text-primary {
      color: #337ab7;
    }

    .hero-subtitle {
      position: relative;
      width: 100%;
      max-width: 522px;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #373c40;
      font-size: 16px;
      letter-spacing: 0;
      line-height: 27px;
      margin: 0;
    }

    .hero-buttons {
      display: inline-flex;
      align-items: flex-start;
      gap: 16px;
      flex-wrap: wrap;
      position: relative;
      flex: 0 0 auto;
    }

    .btn-primary {
      width: 208px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 16px;
      position: relative;
      background-color: #337ab7;
      border-radius: 46px;
      border: 1px solid #337ab7;
      color: #ffffff;
      font-weight: 500;
      font-size: 16px;
      text-align: center;
      cursor: pointer;
      font-family: "Montserrat", Helvetica, sans-serif;
      transition: background-color 0.3s ease;
    }

    .btn-primary:hover {
      background-color: #2d5fa3;
    }

    .btn-secondary {
      width: 130px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 16px;
      position: relative;
      background-color: #002e7d14;
      border-radius: 46px;
      border: 1px solid #337ab7;
      color: #337ab7;
      font-weight: 500;
      font-size: 16px;
      text-align: center;
      cursor: pointer;
      font-family: "Montserrat", Helvetica, sans-serif;
      transition: background-color 0.3s ease;
    }

    .btn-secondary:hover {
      background-color: #002e7d24;
    }

    /* Hero Image */
    .hero-image {
      position: relative;
      width: 566px;
      height: 523px;
    }

    .main-image {
      position: absolute;
      top: 18px;
      left: 53px;
      width: 463px;
      height: 505px;
    }

    .badge-overlay {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      position: absolute;
      background-color: #ffffff;
      border-radius: 24px;
      font-family: "Work Sans", Helvetica, sans-serif;
      font-weight: 400;
      color: #337ab7;
      font-size: 14px;
      text-align: center;
      letter-spacing: 0;
      line-height: normal;
    }

    .badge-overlay-1 {
      top: 384px;
      right: 402px;
    }

    .badge-overlay-2 {
      top: 215px;
      right: 0;
    }

    .ai-idea {
      position: absolute;
      top: 0;
      right: 160px;
      width: 75px;
      height: 64px;
      padding: 3.3px 8.7px;
      align-items: flex-end;
      display: flex;
    }

    .ai-idea img {
      width: 59px;
      height: 57px;
    }

    .ai-programming {
      position: absolute;
      top: 113px;
      right: 424px;
      height: 50px;
      padding: 0 2.6px;
      align-items: center;
      min-width: 50px;
      display: flex;
    }

    .ai-programming img {
      width: 45px;
      height: 45px;
    }

    /* Divider Line */
    .divider-line {
      position: relative;
      width: 100%;
      max-width: 1440px;
      height: 1px;
      background-color: #e5e7eb;
      z-index: 10;
      margin: 0 auto;
    }

    /* Ellipse Background */
    .ellipse-right {
      position: absolute;
      right: 0;
      width: 707px;
      height: 707px;
      border-radius: 353.5px;
      filter: blur(100px);
      background: linear-gradient(
        342deg,
        rgba(51, 122, 183, 0.02) 0%,
        rgba(0, 46, 125, 0.09) 100%
      );
      z-index: -1;
    }

    .ellipse-left {
      position: absolute;
      right: 0;
      width: 707px;
      height: 707px;
      border-radius: 353.5px;
      filter: blur(100px);
      background: linear-gradient(
        342deg,
        rgba(51, 122, 183, 0.02) 0%,
        rgba(0, 46, 125, 0.09) 100%
      );
      z-index: -1;
    }

    .ellipse-about {
      position: absolute;
      left: 0;
      width: 589px;
      height: 640px;
      border-radius: 353.5px;
      filter: blur(100px);
      background: linear-gradient(342deg, rgba(51, 122, 183, 0.02) 0%, rgb(0 46 125 / 42%) 100%);
      z-index: -1;
      top: -23px;
    }

    .ellipse-image {
      position: absolute;
      left: -45px;
      top: -40px;
      width: 645px;
      height: 645px;
      z-index: 0;
    }

    .ellipse-course {
      position: absolute;
      left: -110px;
      width: 589px;
      height: 640px;
      border-radius: 353.5px;
      filter: blur(100px);
      background: linear-gradient(342deg, rgba(51, 122, 183, 0.02) 0%, rgb(0 46 125 / 23%) 100%);
      z-index: -1;
      top: -23px;
    }

    /* Stats Section */
    .stats-section {
      display: flex;
      width: 100%;
      max-width: 1280px;
      align-items: flex-start;
      justify-content: space-between;
      padding: 32px;
      margin: 60px auto 0;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0px 20px 60px #33255d1f;
      position: relative;
    }

    .stat-item {
      gap: 20px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      flex: 0 0 auto;
    }

    .stat-icon {
      width: 90px;
      height: 90px;
      aspect-ratio: 1;
    }

    .stat-icon-wrapper {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 20px;
      position: relative;
      flex: 0 0 auto;
      background-color: #f2f4f5;
      border-radius: 52px;
    }

    .stat-icon-svg {
      position: relative;
      width: 45px;
      height: 45px;
      background-size: 100% 100%;
    }

    .stat-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      position: relative;
      flex: 0 0 auto;
    }

    .stat-number {
      position: relative;
      align-self: stretch;
      margin-top: -1px;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: #1e1e1e;
      font-size: 40px;
      text-align: center;
      letter-spacing: 0;
      line-height: normal;
    }

    .stat-label {
      position: relative;
      width: 100%;
      max-width: 236px;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #424242;
      font-size: 16px;
      text-align: center;
      letter-spacing: 0;
      line-height: 26px;
    }

    /* About Section */
    .about-section {
      display: flex;
      align-items: center;
      gap: 78px;
      width: 100%;
      max-width: 1480px;
      margin: 80px auto 0;
      padding: 0 48px;
      position: relative;
    }

    .about-image {
      position: relative;
      width: 467px;
      height: 542px;
    }

    .about-content {
      display: flex;
      flex-direction: column;
      width: 735px;
      align-items: flex-start;
      gap: 24px;
      position: relative;
    }

    .about-title {
      position: relative;
      width: 583px;
      margin-top: -1px;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: transparent;
      font-size: 48px;
      letter-spacing: 0;
      line-height: 63px;
      margin-bottom: 0;
    }

    .about-title .text-dark {
      color: #141212;
    }

    .about-title .text-primary {
      color: #337ab7;
    }

    .about-text {
      position: relative;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #373c40;
      font-size: 18px;
      letter-spacing: 0;
      line-height: 27px;
      margin: 0;
    }

    .btn-download {
      width: 208px;
      flex: 0 0 auto;
      margin-top: 12px;
    }

    /* ===== SECTION 2: SERVICES ===== */

    .services-section {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 1480px;
      align-items: flex-start;
      gap: 48px;
      padding: 0 48px;
      margin: 80px auto 0;
      position: relative;
    }

    .services-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      align-self: stretch;
      width: 100%;
      flex: 0 0 auto;
    }

    .services-title {
      position: relative;
      width: fit-content;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: transparent;
      font-size: 48px;
      letter-spacing: 0;
      line-height: 63px;
    }

    .services-title .text-dark {
      color: #141212;
    }

    .services-title .text-primary {
      color: #337ab7;
    }

    .services-cta {
      display: flex;
      width: 209px;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 14px 12px;
      position: relative;
      background-color: rgba(51, 122, 183, 0.08);
      border-radius: 26px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 500;
      color: #337ab7;
      font-size: 18px;
    }

    .services-cta:hover {
      background-color: rgba(51, 122, 183, 0.15);
      transform: translateY(-2px);
    }

    .services-cta img {
      width: 20px;
      height: 20px;
    }

    .services-cards {
      display: flex;
      align-items: center;
      gap: 32px;
      position: relative;
      align-self: stretch;
      width: 100%;
      flex: 0 0 auto;
    }

    .service-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      padding: 24px 20px;
      position: relative;
      flex: 1;
      flex-grow: 1;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0px 20px 60px 0px rgba(52, 37, 94, 0.12);
      transition: all 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0px 30px 80px 0px rgba(52, 37, 94, 0.18);
    }

    .service-icon-wrapper {
      position: relative;
      width: 90px;
      height: 90px;
    }

    .service-icon-wrapper img {
      width: 100%;
      height: 100%;
    }

    .service-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      align-self: stretch;
      width: 100%;
      flex: 0 0 auto;
    }

    .service-title {
      position: relative;
      width: fit-content;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 600;
      color: #000000;
      font-size: 24px;
      letter-spacing: 0;
      line-height: normal;
    }

    .service-description {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #2b2b2b;
      font-size: 16px;
      letter-spacing: 0;
      line-height: 26px;
    }

    .service-link {
      display: flex;
      width: 167px;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px;
      position: relative;
      flex: 0 0 auto;
      background-color: rgba(51, 122, 183, 0.08);
      border-radius: 26px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 500;
      color: #337ab7;
      font-size: 16px;
    }

    .service-link:hover {
      background-color: rgba(51, 122, 183, 0.15);
    }

    .service-link img {
      width: 24px;
      height: 24px;
    }

    /* ===== SECTION 2: WHAT I OFFER ===== */

    .what-i-offer-section {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 1480px;
      align-items: center;
      gap: 48px;
      padding: 0 48px;
      margin: 80px auto 0;
      position: relative;
    }

    .what-i-offer-title {
      position: relative;
      width: fit-content;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: transparent;
      font-size: 48px;
      text-align: center;
      letter-spacing: 0;
      line-height: 63px;
    }

    .what-i-offer-title .text-dark {
      color: #040516;
    }

    .what-i-offer-title .text-primary {
      color: #337ab7;
    }

    .offer-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      position: relative;
      align-self: stretch;
      width: 100%;
      flex: 0 0 auto;
    }

    .offer-row {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      position: relative;
      align-self: stretch;
      width: 100%;
      flex: 0 0 auto;
    }

    .offer-card {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      gap: 6px;
      padding: 24px;
      position: relative;
      flex: 1;
      flex-grow: 1;
      background-color: rgba(239, 239, 239, 0.2);
      border-radius: 9px;
      border: 1px solid #d9d9d9;
      backdrop-filter: blur(34.5px) brightness(100%);
      transition: all 0.3s ease;
    }

    .offer-card:hover {
      background-color: rgba(239, 239, 239, 0.3);
      transform: translateY(-2px);
    }

    .offer-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      position: relative;
      flex: 1 1 auto;
      min-width: 0;
    }

    .offer-title {
      position: relative;
      width: fit-content;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: #141212;
      font-size: 24px;
      letter-spacing: 0;
      line-height: normal;
    }

    .offer-description {
      position: relative;
      width: 100%;
      max-width: 459px;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #373c40;
      font-size: 18px;
      letter-spacing: 0;
      line-height: 28px;
    }

    .offer-icon {
      position: relative;
      width: 100px;
      height: 100px;
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .offer-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* ===== SECTION 2: TOOLS ===== */

    .tools-section {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 1480px;
      align-items: flex-start;
      gap: 48px;
      padding: 0 48px;
      margin: 80px auto 0;
      position: relative;
    }

    .tools-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      align-self: stretch;
      width: 100%;
      flex: 0 0 auto;
    }

    .tools-title {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: #040516;
      font-size: 48px;
      letter-spacing: 0;
      line-height: normal;
    }

    .tools-cta {
      display: flex;
      width: fit-content;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      position: relative;
      background-color: rgba(51, 122, 183, 0.08);
      border-radius: 26px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 500;
      color: #337ab7;
      font-size: 18px;
    }

    .tools-cta:hover {
      transform: translateX(4px);
    }

    .tools-cta img {
      width: 20px;
      height: 20px;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      position: relative;
      align-self: stretch;
      width: 100%;
    }

    .tool-card {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 24px;
      padding: 24px;
      position: relative;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.5) 100%
      );
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 12px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0px 8px 32px 0px rgba(31, 38, 135, 0.1);
      transition: all 0.3s ease;
    }

    .tool-card:hover {
      transform: translateY(-8px);
      box-shadow: 0px 16px 48px 0px rgba(31, 38, 135, 0.2);
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.6) 100%
      );
    }

    .tool-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      position: relative;
      align-self: stretch;
      width: 100%;
    }

    .tool-title {
      position: relative;
      width: fit-content;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 600;
      color: #000000;
      font-size: 20px;
      letter-spacing: 0;
      line-height: normal;
    }

    .tool-description {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #373c40;
      font-size: 14px;
      letter-spacing: 0;
      line-height: 22px;
    }

    .tool-link {
      display: flex;
      width: fit-content;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      position: relative;
      background-color: rgba(51, 122, 183, 0.08);
      border-radius: 26px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 500;
      color: #337ab7;
      font-size: 18px;
    }

    .tool-link:hover {
      transform: translateX(4px);
    }

    .tool-link img {
      width: 18px;
      height: 18px;
    }

    .tool-icon {
      position: relative;
      width: 80px;
      height: 80px;
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
    }
    .tool-icon::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 1.11px;
      border-radius: 19px;
      background: linear-gradient(
        180deg,
        rgba(143, 164, 252, 0.55) 0%,
        rgba(175, 191, 255, 0.19) 100%
      );
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: 1;
      pointer-events: none;
    }

    .tool-icon img {
      width: 60px;
      height: 60px;
      object-fit: contain;
    }

    /* ===== SECTION 2: COURSES ===== */

    .courses-section {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 1480px;
      align-items: flex-start;
      gap: 48px;
      padding: 0 48px;
      margin: 80px auto 0;
      position: relative;
    }

    .courses-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      align-self: stretch;
      width: 100%;
      flex: 0 0 auto;
    }

    .courses-title {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: #040516;
      font-size: 48px;
      letter-spacing: 0;
      line-height: normal;
    }

    .courses-cta {
      display: flex;
      width: fit-content;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      position: relative;
      background-color: rgba(51, 122, 183, 0.08);
      border-radius: 26px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 500;
      color: #337ab7;
      font-size: 18px;
    }

    .courses-cta:hover {
      transform: translateX(4px);
    }

    .courses-cta img {
      width: 20px;
      height: 20px;
    }

    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      position: relative;
      align-self: stretch;
      width: 100%;
    }

    .course-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: 0;
      position: relative;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
      );
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 12px;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      box-shadow: 0px 8px 32px 0px rgba(31, 38, 135, 0.08);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .course-card:hover {
      transform: translateY(-8px);
      box-shadow: 0px 16px 48px 0px rgba(31, 38, 135, 0.15);
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 100%
      );
      border-color: rgba(51, 122, 183, 0.2);
    }

    .course-image {
      position: relative;
      height: 200px;
      overflow: hidden;
      margin: 20px;
      border-radius: 8px;
    }

    .course-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .course-card:hover .course-image img {
      transform: scale(1.05);
    }

    .course-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      padding: 20px;
      position: relative;
      align-self: stretch;
      width: 100%;
    }

    .course-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      position: relative;
      align-self: stretch;
      width: 100%;
    }

    .course-title {
      position: relative;
      width: fit-content;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: #000000;
      font-size: 18px;
      letter-spacing: 0;
      line-height: normal;
    }

    .course-instructor {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 500;
      color: #6a6e83;
      font-size: 13px;
      letter-spacing: 0;
      line-height: 16px;
    }

    .course-instructor .text-dark {
      font-weight: 600;
    }

    .course-instructor .text-primary {
      color: #337ab7;
      font-weight: 600;
    }

    .course-progress {
      position: relative;
      width: 100%;
      height: 3px;
      background-color: #e0f2fe;
      border-radius: 3px;
      overflow: hidden;
    }

    .progress-bar {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 40%;
      background-color: #1e62c8;
      border-radius: 3px;
    }

    .course-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      position: relative;
    }

    .stars {
      display: flex;
      gap: 3px;
    }

    .stars img {
      width: 16px;
      height: 16px;
    }

    .reviews {
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #6a6e83;
      font-size: 12px;
    }

    .course-meta {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #6a6e83;
      font-size: 12px;
      letter-spacing: 0;
      line-height: 16px;
    }

    .course-footer {
      display: flex;
      justify-content: space-between;
      padding: 16px 20px;
      position: relative;
      align-self: stretch;
      width: 100%;
      gap: 8px;
      flex-direction: column;
    }

    .course-price {
      position: relative;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: #337ab7;
      font-size: 18px;
      letter-spacing: 0;
      line-height: normal;
    }

    .course-button {
      flex: 1;
      padding: 13px 16px;
      background: linear-gradient(135deg, #337ab7 0%, #1e62c8 100%);
      color: white;
      border: none;
      border-radius: 46px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 600;
      font-size: 13px;
      text-align: center;
    }

    .course-button:hover {
      transform: translateY(-2px);
      box-shadow: 0px 8px 16px rgba(30, 98, 200, 0.3);
    }

    /* ===== SECTION 2: CLIENTS ===== */

    .clients-section {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      gap: 48px;
      margin: 80px auto 0;
      position: relative;
      overflow: hidden;
      background-color: #f9fafb;
      margin-top: 120px;
      padding: 60px 0;
    }

    .clients-title {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: #040516;
      font-size: 32px;
      letter-spacing: 0;
      line-height: normal;
    }

    .clients-marquee-container {
      width: 100%;
      overflow: hidden;
      padding-top: 20px;
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 24px;
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .clients-marquee-row {
      display: flex;
      gap: 32px;
      width: max-content;
      will-change: transform;
      animation-timing-function: linear;
    }

    .client-card {
      flex-shrink: 0;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 28px 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: clamp(150px, 24vw, 220px);
      min-width: 150px;
      max-width: 220px;
      height: 110px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .client-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(249, 251, 253, 0) 0%, rgba(249, 251, 253, 0.5) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .client-card:hover::before {
      opacity: 1;
    }

    .client-card:hover {
      transform: translateY(-8px) scale(1.05);
    }

    .client-card img {
      height: 65px;
      max-width: 160px;
      object-fit: contain;
      filter: grayscale(80%);
      opacity: 0.75;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 1;
    }

    .client-card:hover img {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.08);
    }

    .animate-scroll {
      animation: marquee 60s linear infinite;
    }

    .animate-scroll.reverse {
      animation: marquee 70s linear infinite;
      animation-direction: reverse;
    }

    .clients-marquee-row:hover {
      animation-play-state: paused;
    }

    .clients-marquee-container:hover .client-card {
      animation-play-state: paused;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    .clients-marquee-container {
      animation: fadeIn 0.8s ease-out;
    }

    .clients-empty-state {
      text-align: center;
      padding: 40px;
      width: 100%;
    }

    .clients-empty-state p {
      color: #999;
      font-size: 18px;
    }

    @media (prefers-reduced-motion: reduce) {
      .clients-marquee-row {
        animation: none !important;
      }
      
      .client-card {
        transition: none;
      }
      
      .client-card:hover {
        transform: none;
      }
    }

    @media (max-width: 1024px) {
      .client-card {
        width: clamp(140px, 28vw, 200px);
        min-width: 140px;
        max-width: 200px;
        height: 100px;
        padding: 24px 32px;
      }
      
      .client-card img {
        height: 55px;
        max-width: 140px;
      }
      
      .animate-scroll {
        animation-duration: 50s;
      }
      
      .animate-scroll.reverse {
        animation-duration: 60s;
      }
    }

    @media (max-width: 640px) {
      .clients-marquee-container {
        gap: 16px;
      }
      
      .clients-marquee-row {
        gap: 16px;
      }
      
      .client-card {
        width: clamp(130px, 42vw, 190px);
        min-width: 130px;
        max-width: 190px;
        height: 90px;
        padding: 20px 24px;
      }
      
      .client-card img {
        height: 50px;
        max-width: 120px;
      }
      
      .animate-scroll {
        animation-duration: 40s;
      }
      
      .animate-scroll.reverse {
        animation-duration: 50s;
      }
    }

    /* ===== SECTION 3: CLIENTS FEEDBACK ===== */

    .feedback-section {
      display: flex;
      flex-direction: column;
      width: 100%;
      /* max-width: 1480px; */
      align-items: center;
      gap: 48px;
      margin: 80px auto 0;
      position: relative;
      /* overflow-x: clip; */
    }

    .feedback-title {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: #040516;
      font-size: 48px;
      text-align: center;
      letter-spacing: 0;
      line-height: normal;
    }

    .feedback-cards {

      position: relative;
      align-self: stretch;
      width: 100%;
      overflow: hidden;
      
      padding:40px!important;
      /* margin-bottom: 20px; */
      display: flex;
      justify-content: center;
    }

    .feedback-cards .swiper-wrapper {
      align-items: stretch;
    }

    .feedback-cards .swiper-slide {
       height: auto;
      display: flex;
      align-items: center;
    }

    .feedback-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 24px;
      position: relative;
      width: 90%;
      height: 90%;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0px 20px 60px 0px rgba(52, 37, 94, 0.12);
      transition: all 0.3s ease;
    }

    .feedback-card:hover {
      transform: translateY(-4px);
      box-shadow: 0px 30px 80px 0px rgba(52, 37, 94, 0.18);
    }

    .feedback-client {
      position: relative;
      width: 67px;
      height: 67px;
    }

    .feedback-avatar {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }

    .feedback-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      position: relative;
      align-self: stretch;
      width: 100%;
    }

    .feedback-content hr {
      border: none;
      height: 1px;
      background-color: #e5e7eb;
      width: 100%;
    }

    .feedback-quote {
      position: relative;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feedback-quote img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .feedback-text {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #373c40;
      font-size: 16px;
      text-align: center;
      letter-spacing: 0;
      line-height: 24px;
    }

    .feedback-line {
      position: relative;
      width: 273px;
      height: 1px;
      object-fit: cover;
    }

    .feedback-footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      position: relative;
      align-self: stretch;
      width: 100%;
    }

    .feedback-stars {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      position: relative;
    }

    .feedback-stars img {
      width: 16px;
      height: 16px;
    }

    .feedback-name {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #373c40;
      font-size: 14px;
      text-align: center;
      letter-spacing: 0;
      line-height: normal;
    }

    .feedback-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      position: relative!important;
    }

    .feedback-pagination.swiper-pagination {
      width: auto;
    }

    .feedback-pagination .swiper-pagination-bullet {
      width: 14px;
      height: 14px;
      background-color: rgba(51, 122, 183, 0.1);
      border-radius: 20px;
      opacity: 1;
      margin: 0 4px;
      transition: all 0.3s ease;
    }

    .feedback-pagination .swiper-pagination-bullet:hover {
      background-color: rgba(51, 122, 183, 0.3);
    }

    .feedback-pagination .swiper-pagination-bullet-active {
      width: 18px;
      height: 18px;
      background-color: #337ab7;
    }

    .pagination-dot {
      width: 14px;
      height: 14px;
      background-color: rgba(51, 122, 183, 0.1);
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      padding: 0;
    }

    .pagination-dot:hover {
      background-color: rgba(51, 122, 183, 0.3);
    }

    .pagination-dot.active {
      width: 18px;
      height: 18px;
      background-color: #337ab7;
    }
    
    @media (max-width: 1024px) {
      .feedback-cards {
        padding: 12px 32px 36px 32px;
        overflow: hidden;
      }
    }

    @media (max-width: 768px) {
      .feedback-cards {
        padding: 10px 24px 32px 24px;
        overflow: hidden;
      }
    }

    @media (max-width: 480px) {
      .feedback-cards {
        padding: 8px 16px 28px 16px;
        overflow: hidden;
      }
      
      .feedback-card {
        padding: 16px;
      }
    }

    /* ===== SECTION 3: CONTACT US ===== */

    .contact-section {
      display: flex;
      align-items: flex-start;
      padding: 80px 48px;
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      gap: 48px;
      position: relative;
    }

    .contact-wrapper {
      display: flex;
      align-items: flex-start;
      gap: 48px;
      width: 100%;
    }

    /* Contact Form */
    .contact-form-wrapper {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-header {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-title {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: #161616;
      font-size: 48px;
      letter-spacing: 0;
      line-height: normal;
    }

    .contact-subtitle {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #373c40;
      font-size: 16px;
      letter-spacing: 0;
      line-height: 24px;
      width: 100%;
      max-width: 720px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .form-row {
      display: flex;
      gap: 24px;
      width: 100%;
    }

    .contact-form .form-input, .contact-form .form-textarea {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid #d2d6db;
      border-radius: 4px;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #373c40;
      background-color: #ffffff;
      transition: all 0.3s ease;
    }

    .form-input::placeholder {
      color: #a0a6ac;
    }

    .form-input:focus {
      outline: none;
      border-color: #337ab7;
      box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.1);
    }

    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #d2d6db;
      border-radius: 4px;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #373c40;
      background-color: #ffffff;
      resize: vertical;
      min-height: 120px;
      transition: all 0.3s ease;
    }

    .form-textarea::placeholder {
      color: #a0a6ac;
    }

    .form-textarea:focus {
      outline: none;
      border-color: #337ab7;
      box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.1);
    }

    .contact-submit-btn {
      padding: 12px 32px;
      background-color: #337ab7;
      color: white;
      border: none;
      border-radius: 4px;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      width: fit-content;
      margin-top: 8px;
    }

    .contact-submit-btn:hover {
      background-color: #2563a8;
      transform: translateY(-2px);
      box-shadow: 0px 10px 30px rgba(51, 122, 183, 0.2);
    }

    /* Contact Info */
    .contact-info-wrapper {
      flex: 0 1 416px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      top: 40px;
      width: min(416px, 100%);
      max-width: 100%;
      padding: 40px;
      position: relative;
      background-color: #ffffff;
      border-radius: 16px;
      border: 1px solid;
      border-color: #d2d6db;
      align-items: flex-start;
    }

    .contact-info-header {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-info-title {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 700;
      color: #161616;
      font-size: 24px;
      letter-spacing: 0;
      line-height: normal;
    }

    .contact-info-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      position: relative;
    }

    .contact-info-icon {
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-info-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .contact-info-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .contact-info-label {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 600;
      color: #161616;
      font-size: 14px;
      letter-spacing: 0;
      line-height: normal;
    }

    .contact-info-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .contact-link {
      position: relative;
      font-family: "Montserrat", Helvetica, sans-serif;
      font-weight: 400;
      color: #373c40;
      font-size: 14px;
      letter-spacing: 0;
      line-height: normal;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .contact-link:hover {
      color: #337ab7;
      transform: translateX(4px);
    }

    .contact-social {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .social-links {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 25px;
      height: 25px;

      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-icon:hover {
      transform: translateY(-2px);
    }

    .social-icon img {
      width: 16.25px;
      height: 16.25px;
    }

    /* ===== SECTION 3: FOOTER ===== */

    .footer-section {
      display: flex;
      flex-direction: column;
      width: 100%;
      margin-top: 80px;
      background-color: #002e7d;
      border-top: 1px solid #e5e5e5;
      position: relative;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 50px 80px;
      bottom: 0;
      background-color: #002e7d;
    }


    .footer-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 48px;
      gap: 130px;
    }

    .footer-brand {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .footer-social-links {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 14px;
    }

    .footer-social-links img {
      height: 20px!important;
    }

    .footer-brand-header {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer-brand-info {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .footer-brand-icon {
      width: 50px;
      height: 50px;
      object-fit: contain;
    }

    .footer-brand-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .footer-brand-name {
      position: relative;
      margin: -1;
      font-family: "Montserrat", Helvetica;
      font-weight: 700;
      color: #fff;
      font-size: 28px;
      letter-spacing: 0;
      line-height: normal;
    }

    .footer-brand-title {
      position: relative;
      margin: 0;
      font-family: "Montserrat", Helvetica;
      font-weight: 400;
      color: #fff;
      font-size: 18px;
      letter-spacing: 0;
      line-height: 27px;
    }

    .footer-social {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-social-label {
      position: relative;
      margin: -1px;
      font-family: "IBM Plex Sans Arabic-SemiBold", Helvetica;
      font-weight: 600;
      color: #fff;
      font-size: 24px;
      letter-spacing: 0;
      line-height: normal;
    }

    .footer-social img {
      height: 40px;
      object-fit: contain;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
      width: 100%;
      max-width: 809px;
        align-items: center;
        gap: 30px 30px;
        position: relative;
    }

    .footer-link {
      position: relative;
      font-family: "IBM Plex Sans Arabic-Regular", Helvetica;
      font-weight: 400;
      color: #fff;
      font-size: 18px;
      letter-spacing: 0;
      line-height: normal;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-link:hover {
      color: #337ab7;
      transform: translateX(-4px);
    }

    .footer-link.blog-link {
      color: #a0a6ac;
    }

    /* ===== RESPONSIVE DESIGN ===== */

    /* Pre-collapse (1200px and under): reduce spacing before hamburger */
    @media (max-width: 1200px) {
      .frame-header {
        padding: 16px 32px;
      }

      .nav-list {
        gap: 12px;
      }

      .nav-item {
        padding: 6px;
      }

      .nav-link {
        font-size: 15px;
      }

      .stats-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
      }

      .stat-item {
        flex: 1 1 220px;
        max-width: 320px;
      }

      .footer-section {
        padding: 48px 32px;
      }

      .footer-content {
        gap: 48px;
        padding: 0 32px;
      }

      .footer-links {
        max-width: none;
        gap: 16px 24px;
      }
    }

    /* Tablet and below (1024px and under) */
    @media (max-width: 1024px) {
      .frame {
        width: 100%;
        max-width: 100%;
        padding: 0 24px;
      }

      /* Let .frame control page gutters on mobile/tablet */
      .services-section,
      .what-i-offer-section,
      .courses-section,
      .tools-section {
        padding: 0;
      }

      .frame-header {
        padding: 16px 24px;
      }

      .hamburger-btn {
        display: flex;
      }

      .sign-in-btn {
        display: none;
      }

      /* Make the mobile menu truly full-width (header has padding) */
      .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
        background: #ffffff;
        padding: 0;
        z-index: 200;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
      }

      .nav-menu.active {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        padding: 16px 24px;
      }

      .nav-list {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      
      .frame {
        align-items: center;
      }
      .nav-item {
        width: 100%;
        justify-content: flex-start;
        padding: 6px 0;
      }

      .nav-link {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
      }

      .language-selector {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 0;
      }

      /* Touch-friendly dropdowns: hidden by default, shown by aria-expanded */
      .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(243, 249, 255, 0.6);
        margin: 8px 0 0 0;
        box-shadow: none;
        border: none;
        padding: 8px 0;
        border-radius: 8px;
      }

      .nav-dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        display: block;
      }

      .language-dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(243, 249, 255, 0.6);
        margin: 8px 0 0 0;
        box-shadow: none;
        border: none;
        padding: 8px 0;
        border-radius: 8px;
      }

      .language-dropdown-toggle[aria-expanded="true"] + .language-dropdown-menu {
        display: block;
      }

      .hero-section {
        margin: 32px;
        width: 100%;
        max-width: 920px;
        padding: 44px 24px 28px;
        gap: 32px;
        flex-direction: column;
        align-items: center;
      }

      .hero-content {
        min-height: auto;
        align-items: center;
        text-align: center;
      }

      .hero-buttons {
        justify-content: center;
      }

      /* Remove profile image on tablet/mobile */
      .hero-image {
        display: none;
      }

      /* Who I Am: stack + center on tablets */
      .about-section {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 0 24px;
      }

      .about-image {
        width: 100%;
        max-width: 420px;
        height: auto;
        margin: 0 auto;
      }

      .about-content {
        width: 100%;
        max-width: 760px;
        align-items: center;
        text-align: center;
      }

      .about-title {
        width: 100%;
        max-width: 560px;
      }

      .badge-overlay,
      .ai-idea,
      .ai-programming {
        display: none;
      }

      .services-cards,
      .offer-grid,
      .tools-grid,
      .courses-grid {
        gap: 16px;
      }

      .services-cards {
        flex-direction: column;
      }

      .tools-grid,
      .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
      }

      .courses-grid {
        justify-items: center;
      }

      .course-card {
        width: 100%;
        max-width: 360px;
      }

      .contact-section {
        flex-direction: column;
        padding: 56px 24px;
      }

      .contact-wrapper {
        flex-direction: column;
        width: 100%;
      }

      .contact-subtitle {
        max-width: none;
      }

      .contact-info-wrapper {
        width: 100%;
        max-width: 560px;
        padding: 24px;
        top: 0;
        margin: 0 auto;
      }

      .footer-section {
        padding: 40px 24px;
      }

      .form-row {
        flex-direction: column;
      }

      .footer-content {
        flex-direction: column;
        gap: 32px;
        padding: 0 24px;
      }

      .footer-links {
        width: 100%;
        max-width: none;
        justify-content: flex-start;
        gap: 16px 24px;
      }
    }

    /* Mobile (768px and under) */
    @media (max-width: 768px) {
      .frame {
        padding: 0 16px;
      }

      .frame-header {
        padding: 12px 16px;
      }

      .logo {
        width: 140px;
        height: auto;
      }

      /* Full-width menu for smaller padding */
      .nav-menu {
        left: 0;
        right: 0;
        width: 100%;
      }

      .nav-menu.active {
        padding: 14px 16px;
        max-height: calc(100vh - 64px);
      }

      .nav-link {
        font-size: 14px;
      }

      .hero-section {
        width: 100%;
        /* max-width: 560px; */
        padding: 34px 16px 24px;
        gap: 20px;
      }

      .hero-title {
        font-size: 32px;
        line-height: 40px;
      }

      .hero-subtitle {
        font-size: 14px;
        line-height: 22px;
      }

      .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
      }

      .hero-content {
        width: 100%;
        align-items: center;
        text-align: center;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
      }

      /* Decorative blobs: hide on mobile */
      .ellipse-right,
      .ellipse-left,
      .ellipse-about,
      .ellipse-image,
      .ellipse-course {
        display: none;
      }

      .stats-section {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        justify-items: center;
        padding: 20px 16px;
        gap: 16px;
      }

      .stat-item {
        width: 100%;
        gap: 12px;
      }

      .stat-icon-wrapper {
        padding: 16px;
      }

      .stat-number {
        font-size: 32px;
      }

      .stat-label {
        max-width: none;
        font-size: 14px;
        line-height: 22px;
      }

      .about-section {
        flex-direction: column;
        gap: 24px;
        padding: 24px 16px;
      }

      .about-image {
        width: 100%;
        max-width: 360px;
        height: auto;
        margin: 0 auto;
      }

      .about-content {
        width: 100%;
        align-items: center;
        text-align: center;
      }

      .about-title {
        width: 100%;
        max-width: 520px;
      }

      .about-content,
      .contact-wrapper,
      .contact-form-wrapper,
      .contact-info-wrapper {
        width: 100%;
      }

      .services-cards,
      .offer-row {
        flex-direction: column;
        align-items: center;
      }

      .tools-grid,
      .courses-grid,
      .feedback-cards {
        grid-template-columns: 1fr;
      }

      .courses-grid {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
        gap: 16px;
        padding-bottom: 12px;
        scrollbar-width: none;
      }

      .courses-grid::-webkit-scrollbar {
        display: none;
      }

      .course-card {
        border: 1px solid #e5e7eb;
        box-shadow: none;

      }

      .courses-grid > .course-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
      }

      .feedback-cards {
        padding: 0 16px 20px 16px;
      }

      .feedback-card {
        width: 100%;
        max-width: 360px;
      }

      .contact-section {
        flex-direction: column;
        padding: 40px 16px;
      }

      .contact-header {
        text-align: center;
        align-items: center;
      }

      .contact-submit-btn {
        width: 100%;
      }

      .ellipse-about{
        left: auto;
      }
      
      .contact-info-wrapper {
        display: none;
        width: 100%;
        max-width: 520px;
        padding: 20px;
        margin: 0 auto;
      }

      .footer-section {
        padding: 32px 16px;
      }

      .footer-content {
        padding: 0 16px;
      }

      .footer-links {
        justify-content: center;
        text-align: center;
      }
    }

    /* Small mobile (480px and under) */
    @media (max-width: 480px) {
      .frame-header {
        padding: 10px 12px;
      }

      .hamburger-btn {
        width: 28px;
        height: 22px;
      }

      .logo {
        width: 110px;
      }

      .nav-menu {
        left: 0;
        right: 0;
        width: 100%;
      }

      .nav-menu.active {
        padding: 12px;
      }

      .hero-section {
        min-height: auto;
        padding: 30px 12px 24px;
      }

      /* Hero badge: smaller on mobile */
      .badge {
        padding: 6px 12px;
        border-radius: 18px;
        gap: 6px;
      }

      .badge-text {
        font-size: 16px;
      }

      .badge-emoji {
        font-size: 18px;
      }

      .badge {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
      }

      .badge-text,
      .badge-emoji {
        white-space: normal;
        text-align: center;
      }

      .hero-title {
        font-size: 24px;
        line-height: 32px;
      }

      .services-title,
      .what-i-offer-title,
      .feedback-title,
      .tools-title,
      .courses-title,
      .clients-title,
      .contact-title {
        font-size: 30px;
      }

      .stats-section {
        padding: 16px 12px;
      }

      .stats-section {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .stat-icon-wrapper {
        padding: 14px;
      }

      .stat-number {
        font-size: 28px;
      }

      .about-section {
        padding: 16px 12px;
      }

      .contact-section {
        padding: 30px 12px;
      }

      .courses-grid > .course-card {
        flex-basis: 92%;
      }

      .footer-content {
        padding: 0 12px;
      }

      .footer-section {
        padding: 28px 12px;
      }
    }
