
/* ======================================= Hero Section========================================= */


* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: transparent;
      margin: 0;
      padding: 0;
    }

    .hero {
      width: 100%;
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 100px 20px 80px;
    }

    /* Animierte Hintergrund-Elemente */
    .hero::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      top: -200px;
      right: -200px;
      animation: float 8s ease-in-out infinite;
    }

    .hero::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      bottom: -150px;
      left: -150px;
      animation: float 10s ease-in-out infinite reverse;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-30px) rotate(180deg);
      }
    }

    .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      padding: 12px 30px;
      border-radius: 50px;
      color: white;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 30px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      animation: slideDown 1s ease-out 0.2s backwards;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-title {
      font-size: 4rem;
      font-weight: 900;
      color: white;
      margin-bottom: 25px;
      line-height: 1.2;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      animation: slideDown 1s ease-out 0.4s backwards;
    }

    .hero-subtitle {
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 45px;
      line-height: 1.7;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      animation: slideDown 1s ease-out 0.6s backwards;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      animation: slideDown 1s ease-out 0.8s backwards;
    }

    .btn {
      padding: 18px 45px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .btn-primary {
      background: white;
      color: #667eea;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
      transition: left 0.5s;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .btn-secondary:hover {
      background: white;
      color: #667eea;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    }

    /* Scroll-Indikator */
    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      50% {
        transform: translateX(-50%) translateY(10px);
      }
    }

    .scroll-indicator span {
      display: block;
      width: 30px;
      height: 50px;
      border: 2px solid rgba(255, 255, 255, 0.6);
      border-radius: 25px;
      position: relative;
    }

    .scroll-indicator span::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 6px;
      background: white;
      border-radius: 50%;
      animation: scroll 2s ease-in-out infinite;
    }

    @keyframes scroll {
      0% {
        opacity: 1;
        top: 10px;
      }
      100% {
        opacity: 0;
        top: 30px;
      }
    }

    /* Dekorative Elemente */
    .decoration-circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.5;
      }
      50% {
        transform: scale(1.1);
        opacity: 0.8;
      }
    }

    .circle-1 {
      width: 150px;
      height: 150px;
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }

    .circle-2 {
      width: 100px;
      height: 100px;
      top: 60%;
      right: 15%;
      animation-delay: 1s;
    }

    .circle-3 {
      width: 80px;
      height: 80px;
      bottom: 30%;
      left: 20%;
      animation-delay: 2s;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero-title {
        font-size: 3rem;
      }

      .hero-subtitle {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 768px) {
      .hero {
        min-height: 60vh;
        padding: 80px 20px 60px;
      }

      .hero-title {
        font-size: 2.3rem;
      }

      .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        padding: 16px 40px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 1.9rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .hero-badge {
        font-size: 0.85rem;
        padding: 10px 25px;
      }
    }














/* ======================================= Gründer Sektion CSS========================================= */


* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: transparent;
      margin: 0;
      padding: 0;
    }

    .gruender {
      width: 100%;
      max-width: 1400px;
      padding: 60px 20px;
      margin: 0 auto;
    }

    .gruender-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 30px;
      padding: 60px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.8s ease-out;
    }

    .gruender-content::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
      transform: rotate(45deg);
      animation: shine 3s infinite;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes shine {
      0%, 100% {
        transform: translateX(-100%) rotate(45deg);
      }
      50% {
        transform: translateX(100%) rotate(45deg);
      }
    }

    .gruender-text {
      position: relative;
      z-index: 2;
      animation: slideInLeft 0.8s ease-out;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .gruender-text h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #2d3748;
      margin-bottom: 25px;
      line-height: 1.2;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .gruender-text p {
      font-size: 1.2rem;
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 35px;
    }

    .btn-primary {
      display: inline-block;
      padding: 16px 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
    }

    .btn-primary:active {
      transform: translateY(-1px);
    }

    .gruender-image {
      position: relative;
      z-index: 2;
      animation: slideInRight 0.8s ease-out;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .image-container {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .image-container:hover {
      transform: scale(1.05) rotate(2deg);
    }

    .image-container::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .image-container:hover::after {
      opacity: 1;
    }

    .gruender-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
    }

    /* Dekorative Elemente */
    .decoration-circle {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
      animation: float 6s ease-in-out infinite;
    }

    .circle-1 {
      width: 100px;
      height: 100px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
    }

    .circle-2 {
      width: 150px;
      height: 150px;
      bottom: 10%;
      right: 5%;
      animation-delay: 2s;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(180deg);
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .gruender-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
      }

      .gruender-text h1 {
        font-size: 2.2rem;
      }

      .gruender-text p {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 768px) {
      .gruender {
        padding: 40px 15px;
      }

      .gruender-content {
        padding: 30px 25px;
        gap: 30px;
      }

      .gruender-text h1 {
        font-size: 1.8rem;
      }

      .gruender-text p {
        font-size: 1rem;
      }

      .btn-primary {
        padding: 14px 35px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .gruender-text h1 {
        font-size: 1.5rem;
      }

      .gruender-content {
        padding: 20px;
      }

      .btn-primary {
        width: 100%;
        text-align: center;
      }
    }





/* ======================================= Über das Land Bangladesch ========================================= */


 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: transparent;
      margin: 0;
      padding: 0;
    }

    .bangladesch {
      width: 100%;
      max-width: 1400px;
      padding: 60px 20px;
      margin: 0 auto;
    }

    .bangladesch-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 30px;
      padding: 60px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.8s ease-out;
    }

    .bangladesch-content::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
      transform: rotate(45deg);
      animation: shine 3s infinite;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes shine {
      0%, 100% {
        transform: translateX(-100%) rotate(45deg);
      }
      50% {
        transform: translateX(100%) rotate(45deg);
      }
    }

    .bangladesch-image {
      position: relative;
      z-index: 2;
      animation: slideInLeft 0.8s ease-out;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .image-container {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .image-container:hover {
      transform: scale(1.05) rotate(-2deg);
    }

    .image-container::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .image-container:hover::after {
      opacity: 1;
    }

    .bangladesch-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
    }

    .bangladesch-text {
      position: relative;
      z-index: 2;
      animation: slideInRight 0.8s ease-out;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .bangladesch-text h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #2d3748;
      margin-bottom: 25px;
      line-height: 1.2;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .bangladesch-text p {
      font-size: 1.2rem;
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 35px;
    }

    .btn-primary {
      display: inline-block;
      padding: 16px 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
    }

    .btn-primary:active {
      transform: translateY(-1px);
    }

    /* Dekorative Elemente */
    .decoration-circle {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
      animation: float 6s ease-in-out infinite;
    }

    .circle-1 {
      width: 100px;
      height: 100px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
    }

    .circle-2 {
      width: 150px;
      height: 150px;
      bottom: 10%;
      right: 5%;
      animation-delay: 2s;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(180deg);
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .bangladesch-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
      }

      .bangladesch-text h1 {
        font-size: 2.2rem;
      }

      .bangladesch-text p {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 768px) {
      .bangladesch {
        padding: 40px 15px;
      }

      .bangladesch-content {
        padding: 30px 25px;
        gap: 30px;
      }

      .bangladesch-text h1 {
        font-size: 1.8rem;
      }

      .bangladesch-text p {
        font-size: 1rem;
      }

      .btn-primary {
        padding: 14px 35px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .bangladesch-text h1 {
        font-size: 1.5rem;
      }

      .bangladesch-content {
        padding: 20px;
      }

      .btn-primary {
        width: 100%;
        text-align: center;
      }
    }


/* ======================================= Team  Sektion CSS========================================= */

 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: transparent;
      margin: 0;
      padding: 0;
    }

    .team {
      width: 100%;
      max-width: 1400px;
      padding: 60px 20px;
      margin: 0 auto;
    }

    .team-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 30px;
      padding: 60px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.8s ease-out;
    }

    .team-content::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
      transform: rotate(45deg);
      animation: shine 3s infinite;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes shine {
      0%, 100% {
        transform: translateX(-100%) rotate(45deg);
      }
      50% {
        transform: translateX(100%) rotate(45deg);
      }
    }

    .team-text {
      position: relative;
      z-index: 2;
      animation: slideInLeft 0.8s ease-out;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .team-text h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #2d3748;
      margin-bottom: 25px;
      line-height: 1.2;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .team-text p {
      font-size: 1.2rem;
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 35px;
    }

    .btn-primary {
      display: inline-block;
      padding: 16px 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
    }

    .btn-primary:active {
      transform: translateY(-1px);
    }

    .team-image {
      position: relative;
      z-index: 2;
      animation: slideInRight 0.8s ease-out;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .image-container {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .image-container:hover {
      transform: scale(1.05) rotate(2deg);
    }

    .image-container::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .image-container:hover::after {
      opacity: 1;
    }

    .team-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
    }

    /* Dekorative Elemente */
    .decoration-circle {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
      animation: float 6s ease-in-out infinite;
    }

    .circle-1 {
      width: 100px;
      height: 100px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
    }

    .circle-2 {
      width: 150px;
      height: 150px;
      bottom: 10%;
      right: 5%;
      animation-delay: 2s;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(180deg);
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
      }

      .team-text h1 {
        font-size: 2.2rem;
      }

      .team-text p {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 768px) {
      .team {
        padding: 40px 15px;
      }

      .team-content {
        padding: 30px 25px;
        gap: 30px;
      }

      .team-text h1 {
        font-size: 1.8rem;
      }

      .team-text p {
        font-size: 1rem;
      }

      .btn-primary {
        padding: 14px 35px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .team-text h1 {
        font-size: 1.5rem;
      }

      .team-content {
        padding: 20px;
      }

      .btn-primary {
        width: 100%;
        text-align: center;
      }
    }








/* ======================================= Partner Sektion CSS========================================= */


* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: transparent;
      margin: 0;
      padding: 0;
    }

    .partner {
      width: 100%;
      max-width: 1400px;
      padding: 60px 20px;
      margin: 0 auto;
    }

    .partner-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 30px;
      padding: 60px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.8s ease-out;
    }

    .partner-content::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
      transform: rotate(45deg);
      animation: shine 3s infinite;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes shine {
      0%, 100% {
        transform: translateX(-100%) rotate(45deg);
      }
      50% {
        transform: translateX(100%) rotate(45deg);
      }
    }

    .partner-image {
      position: relative;
      z-index: 2;
      animation: slideInLeft 0.8s ease-out;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .image-container {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .image-container:hover {
      transform: scale(1.05) rotate(-2deg);
    }

    .image-container::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .image-container:hover::after {
      opacity: 1;
    }

    .partner-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
    }

    .partner-text {
      position: relative;
      z-index: 2;
      animation: slideInRight 0.8s ease-out;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .partner-text h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #2d3748;
      margin-bottom: 25px;
      line-height: 1.2;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .partner-text p {
      font-size: 1.2rem;
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 35px;
    }

    .btn-primary {
      display: inline-block;
      padding: 16px 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
    }

    .btn-primary:active {
      transform: translateY(-1px);
    }

    /* Dekorative Elemente */
    .decoration-circle {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
      animation: float 6s ease-in-out infinite;
    }

    .circle-1 {
      width: 100px;
      height: 100px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
    }

    .circle-2 {
      width: 150px;
      height: 150px;
      bottom: 10%;
      right: 5%;
      animation-delay: 2s;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(180deg);
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .partner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
      }

      .partner-text h1 {
        font-size: 2.2rem;
      }

      .partner-text p {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 768px) {
      .partner {
        padding: 40px 15px;
      }

      .partner-content {
        padding: 30px 25px;
        gap: 30px;
      }

      .partner-text h1 {
        font-size: 1.8rem;
      }

      .partner-text p {
        font-size: 1rem;
      }

      .btn-primary {
        padding: 14px 35px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .partner-text h1 {
        font-size: 1.5rem;
      }

      .partner-content {
        padding: 20px;
      }

      .btn-primary {
        width: 100%;
        text-align: center;
      }
    }













/* ======================================= Award Sektion CSS========================================= */











        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .section-header h2 {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.2em;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .award-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .award-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .award-logo-container {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 2;
        }

        .award-logo {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .award-logo i {
            font-size: 28px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .award-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .award-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .award-card:hover .award-image-container img {
            transform: scale(1.1);
        }

        .award-info {
            padding: 30px;
        }

        .award-year {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .award-title {
            font-size: 1.5em;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .award-organization {
            color: #718096;
            margin-bottom: 15px;
            font-size: 1em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .award-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #10b981;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9em;
            margin-bottom: 15px;
        }

        .award-description {
            color: #4a5568;
            line-height: 1.6;
            font-size: 0.95em;
        }

        .click-hint {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            color: white;
            font-size: 1.1em;
            margin-top: 20px;
        }

        .click-hint i {
            margin-right: 10px;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1000;
            overflow-y: auto;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            border-radius: 30px;
            max-width: 1200px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: white;
            border: none;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            transform: rotate(90deg);
            background: #f56565;
            color: white;
        }

        .modal-hero {
            height: 400px;
            position: relative;
            overflow: hidden;
            border-radius: 30px 30px 0 0;
        }

        .modal-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            padding: 40px;
            color: white;
        }

        .modal-hero-overlay h2 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        .modal-hero-overlay .award-year {
            font-size: 1.1em;
        }

        .modal-body {
            padding: 50px;
        }

        .modal-section {
            margin-bottom: 50px;
        }

        .modal-section:last-child {
            margin-bottom: 0;
        }

        .modal-section h3 {
            font-size: 1.8em;
            color: #2d3748;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .modal-section h3 i {
            color: #667eea;
        }

        .modal-section p {
            color: #4a5568;
            line-height: 1.8;
            font-size: 1.1em;
            margin-bottom: 15px;
        }

        .modal-section ul {
            list-style: none;
            padding: 0;
        }

        .modal-section ul li {
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
            color: #4a5568;
            font-size: 1.05em;
            display: flex;
            align-items: start;
            gap: 15px;
        }

        .modal-section ul li:last-child {
            border-bottom: none;
        }

        .modal-section ul li i {
            color: #10b981;
            margin-top: 4px;
            font-size: 1.2em;
        }

        .highlight-box {
            background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #667eea;
            margin: 30px 0;
        }

        .highlight-box h4 {
            color: #667eea;
            font-size: 1.3em;
            margin-bottom: 15px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-item {
            text-align: center;
            padding: 25px;
            background: #f7fafc;
            border-radius: 15px;
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #718096;
            margin-top: 10px;
            font-size: 1em;
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2em;
            }

            .awards-grid {
                grid-template-columns: 1fr;
            }

            .modal-body {
                padding: 30px 20px;
            }

            .modal-hero {
                height: 300px;
            }

            .modal-hero-overlay h2 {
                font-size: 1.8em;
            }

            .modal-section h3 {
                font-size: 1.4em;
            }
        }


