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

  .body-nav {
    color: #fff;
    font-family: Arial, sans-serif;
    height: 100%;

    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
  }

  nav {
    width: 60%;
    margin: 0px auto;
    background: rgba(0, 215, 253, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.404);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;

    top: 10px;
    left: 0;
    right: 0;

    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  /* Logo */
  .logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0ff;

  }

  /* Hamburger toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    width: 24px;
    height: 15px;
    justify-content: space-between;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: #0ff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    display: block;
    transition: color 0.3s ease;
  }

  nav ul li a:hover {
    color: #0ff;
  }

  nav ul li a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0ff;
    border-radius: 5px;
    transform: scaleX(0);
    transition: all 0.5s ease;
    bottom: 0;
    left: 0;
  }

  ul li a:hover::before {
    transform: scaleX(1);
  }

  /* Tablet mode */
  @media (max-width: 1024px) {
    nav {
      width: 80%;
      padding: 0.75rem 1.5rem;
    }

    nav ul {
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
    }
  }

  /* Mobile mode */
  @media (max-width: 599px) {
    nav {
      width: 95%;
      padding: 0.5rem 1rem;
    }

    .menu-toggle {
      display: flex;

    }

    nav ul {
      flex-direction: column;
      position: absolute;
      top: 100%;
      right: 0;
      width: 100%;
      background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      border-top: 1px solid #0ff;
    }

    nav ul.open {
      max-height: 500px;
    }

    nav ul li {
      text-align: center;
    }
  }

  /* nav bar___________________________________________________________________ */
  /* Reset and base styles */





  .body-hero {
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding: 20px;
  }

  /* Hero Section */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80vh;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 5%;
  }

  .hero-left {
    flex: 1 1 400px;
    max-width: 600px;

  }

  .welcome {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    text-align: left;
  }

  .highlight {
    color: #4cc9f0;
  }

  .mention {
    color: #a78bfa;
  }

  .desc {
    margin: 20px 0;
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
  }

  .cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
  }

  .btn.primary {
    background: linear-gradient(90deg, #4cc9f0, #4361ee);
    color: #0b0e22;
  }

  .btn.secondary {
    border: 1px solid #4cc9f0;
    color: #ffffff;
  }

  /* Hero Right */
  .hero-right {
    flex: 1 1 300px;
    max-width: 500px;
    position: relative;
  }

  .image-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(80, 180, 255, 0.2);
    box-shadow: 0 0 30px rgba(80, 180, 255, 0.3);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  /* Socials */
  .socials {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .socials span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.7rem;
    color: #94a3b8;
  }

  .socials img {
    width: 24px;
    height: 24px;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
  }

  .socials img:hover {
    transform: scale(1.2);
  }

  /* Media Queries */
  @media (max-width: 1024px) {
    .hero {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .hero-left h1 {
      font-size: 2.8rem;
    }

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

    .socials {
      position: static;
      flex-direction: row;
      justify-content: center;
      transform: none;
      margin-top: 20px;
    }
  }

  @media (max-width: 600px) {
    .hero-left h1 {
      font-size: 2.4rem;
      height: 100px;
      text-align: center;
    }

    .desc {
      font-size: 0.95rem;
    }

    .btn {
      width: 100%;
      text-align: center;
      justify-content: center;
    }

    .image-container {
      width: 220px;

      height: 220px;
    }

    .hero {
      flex-direction: row;
    }
  }

  /* _________________________hero  */



  .service-icon {
    display: block;
    margin: 0 auto 12px;
    width: 80px;
    height: 80px;
  }

  .card-front h4 {
    font-size: 0.9rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .card-front h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 8px;
  }

  .card-front p {
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.85;
  }

  :root {
    --primary: #4cc9f0;
    --secondary: #a78bfa;
    --bg-0: #070815;
    --bg-1: #0d1025;
    --text: #e6e6f0;
    --carousel-radius: 360px;
    --card-w: 280px;
    --card-h: 380px;
    --spin-speed: 0.035;
  }

  body {
    margin: 0;
    font-family: sans-serif;
    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
    color: var(--text);
  }

  .body-services-carasol {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .wrap {
    display: grid;
    place-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }

  .title {
    font-size: 2.2rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px rgba(80, 180, 255, 0.25);
    animation: pulseGlow 3.2s ease-in-out infinite alternate;
  }

  @keyframes pulseGlow {
    from {
      text-shadow: 0 0 8px rgba(80, 180, 255, 0.18);
    }

    to {
      text-shadow: 0 0 18px rgba(80, 180, 255, 0.42);
    }
  }

  .scene {
    width: 100%;
    max-width: 1100px;
    height: min(90vh, 650px);
    perspective: 1400px;
    perspective-origin: 50% 50%;
    position: relative;
    touch-action: none;
  }

  .carousel {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
  }

  .card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--card-w);
    height: var(--card-h);
    transform-style: preserve-3d;
    translate: -50% -50%;
    perspective: 1000px;
    cursor: pointer;
  }

  .card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s;
    border-radius: 20px;
  }

  .card.flipped .card-inner {
    transform: rotateY(180deg);
  }

  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    backface-visibility: hidden;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(0, 204, 255, 0.2);
    background: rgba(0, 215, 253, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .card-back {
    transform: rotateY(180deg);
  }

  .facilities-list {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    margin-top: 12px;
  }

  .service-icon {
    display: block;
    margin-bottom: 12px;
    width: 80px;
    height: 80px;
  }

  .card-front h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .card-front h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .card-front p {
    font-size: 0.9rem;
    opacity: 0.85;
  }

  @media (min-width: 768px) {
    :root {
      --card-w: 250px;
      --card-h: 350px;
    }
  }

  @media (min-width: 1024px) {
    :root {
      --card-w: 280px;
      --card-h: 380px;
    }
  }

  /* Our Service _______________________________________ */

  .body-priceing {
    font-family: Arial, sans-serif;

    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
  }

  h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  p.subtitle {
    color: #bbb;
    text-align: center;
    max-width: 500px;
    margin-bottom: 2rem;
  }

  /* Toggle Switch */
  .toggle {
    display: flex;
    justify-content: center;
    background: #222;
    border-radius: 20px;
    padding: 4px;
    margin-bottom: 2rem;
  }

  .toggle button {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .toggle button.active {
    background: #0ff;
    color: #000;
  }

  /* Pricing Cards */
  .pricing-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
  }

  .card-pricing {
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    background: rgba(0, 215, 253, 0.103);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .card-pricing:hover {
    transform: translateY(-10px);
    border-color: #0ff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  }

  .price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
  }

  ul.features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 1rem 0;
  }

  ul.features li {
    padding-left: 20px;
    margin: 0.5rem 0;
    color: #ccc;
  }

  .pricing-container {

    flex-direction: column;
    /* stack cards vertically */
    align-items: center;
    /* center horizontally */
    gap: 20px;
    /* space between cards */
  }



  .btn-pricing {
    background: #0ff;
    color: #000;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
  }

  .btn-pricing:hover {
    background: #00cccc;
  }

  /* Responsive */
  @media (min-width: 768px) {
    .pricing-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* price ------------------------------------------------------- */

  .about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    perspective: 1500px;
    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
    font-family: Arial, sans-serif;
    color: #fff;
  }

  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
  }

  .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #4cc9f0, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(80, 180, 255, 0.25);
  }

  .about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

  /* Right photo */
  .about-right .photo-card {
    width: 240px;
    aspect-ratio: 1/1.2;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 215, 253, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 204, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .about-right .photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Left card */
  .about-left .about-card {
    background: rgba(0, 215, 253, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
  }

  /* Stats */
  .about-left .stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    justify-content: space-between;
  }

  .about-left .stat h3 {
    font-size: 1.5rem;
    color: #0ff;
    margin-bottom: 0.3rem;
  }

  .about-left .stat p {
    font-size: 0.9rem;
    color: #ccc;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      align-items: center;
    }

    /* Photo first on mobile */
    .about-right {
      order: -1;
    }

    .about-left .stats {
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      text-align: center;
    }
  }

  /* __________________________________________________About Me */

  .skills-body {
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
    color: #fff;
    padding: 40px 20px;
  }

  .skills-body h1 {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #4cc9f0, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* Tabs buttons */
  .skills-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .skills-tab-button {
    padding: 12px 25px;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #0ff;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
  }

  .skills-tab-button::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0ff;
    transition: width 0.3s ease;
    border-radius: 8px;
  }

  .skills-tab-button.active {
    background: rgba(0, 255, 255, 0.4);
    color: #000;
  }

  /* Tab content grid */
  .skills-tab-content {
    display: none;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .skills-tab-content.active {
    display: flex;
  }

  /* Card style */
  .skills-tab-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    flex: 0 0 30%;
    min-width: 220px;
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
    cursor: pointer;
    margin: 10px;
  }

  .skills-tab-card:hover {
    transform: translateY(-10px) rotateZ(2deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.6);
    background: rgba(0, 255, 255, 0.1);
  }

  .skills-tab-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #4cc9f0;
  }

  .skills-tab-card p,
  .skills-tab-card li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #ccc;
  }

  .skills-tab-card ul {
    padding-left: 18px;
    margin-top: 6px;
  }

  .skills-download-btn {
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(90deg, #4cc9f0, #a78bfa);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .skills-download-btn:hover {
    transform: scale(1.05);
  }

  /* Keep 3 cards per row and center aligned */
  @media (max-width: 1024px) {
    .skills-tab-card {
      flex: 1 0 30%;

    }
  }

  @media (max-width: 768px) {
    .skills-tab-card {
      flex: 0 0 30%;
      min-width: 650px;
      min-height: 250px;
      padding: 45px;
    }
  }

  @media (max-width: 480px) {
    .skills-tab-card {
      flex: 0 0 30%;
      min-width: 350px;
      min-height: 150px;
      padding: 45px;
    }
  }


  /* ______________________________skills */
  .body-portfolio {
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
    color: #fff;
    padding: 20px;
    padding-bottom: 40px;
  }

  .portfolio-card h1 {
    text-align: center;
    margin-bottom: 30px;
  }

  /* Tabs */
  .tab-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-button {
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #0ff;
    font-weight: bold;
    transition: 0.3s;
  }

  .tab-button.active {
    background: rgba(0, 255, 255, 0.4);
    color: #000;
    border-color: #0ff;
  }

  /* Tab content grid */
  .tab-content {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .tab-content.active {
    display: grid;
  }

  /* Card styles per tab */
  .wordpress-card,
  .webdev-card,
  .graphic-card {
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: rgba(0, 255, 255, 0.05);
  }

  /* WordPress cards unique */
  .wordpress-card:hover {
    transform: translateY(-10px) rotateY(10deg);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.5);
  }

  /* Web Dev cards unique */
  .webdev-card:hover {
    transform: translateY(-10px) rotateX(10deg);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.5);
  }

  /* Graphic Design cards unique */
  .graphic-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 0, 0.5);
  }

  .portfolio-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .portfolio-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .portfolio-card a {
    text-decoration: none;
    color: #0ff;
    font-weight: bold;
    transition: color 0.3s;
  }

  .portfolio-card a:hover {
    color: #00cccc;
  }

  /* Modal */
  .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .modal img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 15px;
    box-shadow: 0 0 20px #0ff;
  }

  .modal.active {
    display: flex;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .tab-content.active {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 480px) {
    .tab-content.active {
      grid-template-columns: 1fr;
    }
  }

  /* ___________________________________________________________portfollio */


  .testimonial-section {
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #4cc9f0, #a78bfa);


    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;

    color: transparent;
  }

  .testimonial-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .testimonial-carousel {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
  }

  .testimonial-card {
    flex: 0 0 23%;
    /* 4 cards in desktop */
    background: rgba(0, 215, 253, 0.08);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.5);
  }

  .testimonial-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #cbd5e1;
    margin-bottom: 15px;
  }

  .testimonial-card h4 {
    font-size: 1.1rem;
    color: #0ff;
  }

  /* scrolling animation */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }

    /* move half because of duplicate cards */
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .testimonial-card {
      flex: 0 0 45%;
      /* 2 cards */
    }
  }

  @media (max-width: 600px) {
    .testimonial-card {
      flex: 0 0 80%;
      /* 1 card per view */
    }
  }


  /* // --------------------------------------------------testimonial */
  .footer-section {
    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 204, 255, 0.2);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 3rem 2rem 1rem 2rem;
    font-family: Arial, sans-serif;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }

  .footer-brand h3 {
    font-size: 1.5rem;
    color: #0ff;
    margin-bottom: 0.5rem;
  }

  .footer-brand p {
    font-size: 0.95rem;
    color: #ccc;
    max-width: 250px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    color: #0ff;
    margin-bottom: 0.5rem;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links ul li {
    margin-bottom: 0.5rem;
  }

  .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links ul li a:hover {
    color: #0ff;
  }

  .footer-contact p {
    font-size: 0.95rem;
    margin: 0.3rem 0;
    color: #ccc;
  }

  /* Footer Bottom */
  .footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    border-top: 1px solid rgba(0, 204, 255, 0.2);
    padding-top: 1rem;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-brand p {
      max-width: 100%;
    }
  }



  /* contact  */
  .contact-section {
    padding: 60px 20px;
    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(15px);
    color: #e6e6f0;
    font-family: sans-serif;
  }

  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #4cc9f0, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .section-subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 40px;
    color: #a0a0c0;
  }

  .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 400px;
    min-width: 300px;
  }

  .contact-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }

  .contact-info a {
    color: #4cc9f0;
    text-decoration: none;
  }

  .contact-form label {
    display: block;
    margin: 15px 0 5px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #1a1a2e;
    color: #fff;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #aaa;
  }

  .btn-contact {
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(90deg, #4cc9f0, #a78bfa);
    border: none;
    border-radius: 50px;
    color: #0b0e22;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }

  .btn-contact:hover {
    opacity: 0.85;
  }

  @media(max-width:768px) {
    .contact-content {
      flex-direction: column;
      gap: 30px;

    }

    .contact-info {
      flex: 1 1 0px;
    }
  }


  /* Contact */

  .certificate-section {
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at center, #0a0c1f 0%, #050613 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #4cc9f0, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .certificate-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .certificate-carousel {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
  }

  .certificate-card {
    flex: 0 0 300px;
    background: rgba(0, 215, 253, 0.08);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .certificate-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.5);
  }

  .certificate-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 10px;
  }

  #lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
  }

  #lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
  }

  /* Continuous scrolling */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }

    /* move half carousel width (because of duplicates) */
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .certificate-card {
      flex: 0 0 45%;
    }
  }

  @media (max-width: 600px) {
    .certificate-card {
      flex: 0 0 80%;
    }
  }