    :root {
      --primary-color: #1a1a1a; 
      --secondary-color: #f5f5f5;
      --accent-color: #079968;
      --text-color: #ffffff;
      --font-primary: 'Inter Tight', sans-serif;
      --glass-bg: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.1);
    }

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

    body {
      font-family: var(--font-primary);
      background: #fff;
      background-size: 400% 400%;
      animation: gradientShift 15s ease infinite;
      color: #212121;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* background: radial-gradient(circle at 20% 80%, #05875a47 0%, transparent 50%), radial-gradient(circle at 80% 20%, #009e684d 0%, transparent 50%); */
      pointer-events: none;
      z-index: -1;
    }

    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
/*
    header {
      margin-bottom: 60px;
      backdrop-filter: blur(10px);
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
 */
    .logo {
      width: 220px;
      height: auto;
      /* margin-bottom: 30px; */
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      /* filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)); */
    }

    .logo:hover {
      filter: drop-shadow(0 8px 32px rgb(0 155 102 / 34%));
    }

    h1 {
      font-size: 2.8rem;
      margin-bottom: 15px;
      background: linear-gradient(45deg, #01538d, var(--accent-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
    }

    p {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 40px;
      opacity: 0.9;
      line-height: 1.6;
    }

    .carousel-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      overflow: hidden;
      margin: 40px auto;
      cursor: grab;
      user-select: none;
      -webkit-user-select: none;
      touch-action: pan-y;
      margin-bottom: 60px;
    }

    .carousel-container:active {
      cursor: grabbing;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    .carousel-item {min-width: 100px;height: auto;display: flex;align-items: center;justify-content: center;margin: 0 20px;/* opacity: 0.6; */transition: all 0.3s ease;flex-shrink: 0;/* backdrop-filter: blur(10px); */padding: 10px;}

    .carousel-item img {
      width: 180px;
      height: auto;
      /* filter: grayscale(1) brightness(1.2); */
      transition: filter 0.3s ease;
    }

    .carousel-item:hover {
      opacity: .8;
}

    .carousel-item:hover img {
      filter: grayscale(0) brightness(1);
    }

.partners{
	display:flex;
	gap: 32px;
	align-items: center;
	flex-direction: row;
	align-content: center;
}

.partners .item img{max-width: 100px;}

    .contact-section {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .contact-button {
      display: inline-block;
      background: linear-gradient(45deg, var(--accent-color), #01538d);
      color: #fff;
      padding: 16px 32px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 32px rgb(1 153 101 / 65%);
    }

    .contact-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .contact-button:hover::before {
      left: 100%;
    }

    .contact-button:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 0px 30px rgb(1 151 100 / 78%);
    }

    .email-reveal {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 25px;
      padding: 12px 24px;
      font-size: 0.9rem;
      color: var(--text-color);
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      opacity: 0.8;
    }

    .email-reveal:hover {
      opacity: 1;
      transform: scale(1.02);
      box-shadow: 0 5px 15px rgba(255, 64, 129, 0.2);
    }

    .email-address {
      font-family: 'Courier New', monospace;
      color: var(--accent-color);
      font-weight: 500;
    }

    footer {
    margin-top: 60px;
    font-size: 0.85rem;
    opacity: 0.6;
    padding: 20px;
    backdrop-filter: blur(10px);
    }

    .loading-dots {
      display: inline-block;
      margin-left: 5px;
    }

    .loading-dots::after {
      content: '';
      animation: dots 2s infinite;
    }

    @keyframes dots {
      0%, 20% { content: ''; }
      25%, 45% { content: '.'; }
      50%, 70% { content: '..'; }
      75%, 95% { content: '...'; }
    }

    @media (max-width: 768px) {
      header {
        margin: 20px;
        padding: 30px 20px;
      }

      h1 {
        font-size: 1.8rem;
      }

      p {
        font-size: 1rem;
        padding: 0 20px;
      }

      .carousel-item {
        min-width: 120px;
        height: 60px;
        margin: 0 15px;
      }

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

      footer {
        margin: 40px 20px 20px;
      }
    }

    @media (max-width: 480px) {
      .carousel-item {
        min-width: 100px;
        height: 50px;
        margin: 0 10px;
      }
	  .partners{flex-direction:column;}
    }