:root {
    --primary: #0069d9;
    --accent: #272f37;
    --light: #f7f9fb;
    --white: #ffffff;
    --text: #1a1a1a;
    --gray: #f2f4f7;
      }   
  
      body {
        font-family: 'Segoe UI', sans-serif;
        background-color: var(--light);
        color: var(--text);
        margin: 0;
        padding: 0;
      }
  
      header {
        background: linear-gradient(to right, #ffffff, #f2f2f2);
        padding-bottom: 0;
      }
  
      .carousel-indicators {
      position: absolute;
      right: 0;
      bottom: 12%;
      left: 0;
      z-index: 15;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      padding-left: 0;
      margin-right: 15%;
      margin-left: 15%;
      list-style: none;
      }
  
      .carousel-caption {
      position: absolute;
      right: 15%;
      bottom: 81px;
      left: 15%;
      z-index: 10;
      padding-top: 20px;
      padding-bottom: 20px;
      color: #fff;
      text-align: center;
      }
  
      .carousel-control-prev-icon {
      height: 60px;
      width: 60px;
      outline: black;
      background-color: #000000;
      background-size: 30%, 30%;
      border-radius: 50%;
      border: 0px solid black;
      margin-left: -10%;
      margin-top: 0%;
      }
  
      .carousel-control-next-icon {
      height: 60px;
      width: 60px;
      outline: black;
      background-color: #000000;
      background-size: 30%, 30%;
      border-radius: 50%;
      border: 0px solid black;
      margin-right: 10%;
      margin-top: 0%;
      }
  
      .navbar {
        background-color: transparent;
        padding-top: 1rem;
      }
  
      .navbar-brand img {
        height: 76px;
        margin-left: -17%;
        margin-bottom: 3%;
      }
  
      .nav-link {
        color: #333;
        font-weight: 600;
        margin-right: 1rem;
        text-transform: uppercase;
      }

      .navbar-nav .nav-link {
        position: relative;
        display: inline-block;
        color: #272f37;
        font-weight: 600;
        text-transform: uppercase;
        transition: color 0.3s ease;
      }

      .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        height: 2px;
        width: 0%;
        background-color: #0069d9; /* Primärfarbe */
        transition: width 0.4s ease;
      }

      .navbar-nav .nav-link:hover::after,
      .navbar-nav .nav-link:focus::after {
        width: 100%;
      }

      .navbar .btn {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      
  
      .nav-link:hover {
        color: var(--primary);
      }
  
      .btn-primary {
        background-color: var(--primary);
        border: none;
        border-radius: 30px;
        padding: 0.5rem 1.25rem;
        font-weight: 600;
      }
  
      
      /* Mega Dropdown Style */
  
      .mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 2rem 0;
    border-top: 4px solid #0069d9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
  }
  
  .nav-item.dropdown:hover .mega-dropdown {
    display: block;
  }
  
  .mega-dropdown .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .mega-title {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #272f37;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.4rem;
  }
  
  .mega-dropdown a {
    display: block;
    color: #272f37;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .mega-dropdown a i {
    width: 20px;
    color: #0069d9;
    margin-right: 8px;
  }
  
  .mega-dropdown a:hover {
    color: #0069d9;
  }
  
  /* Mega-Dropdown immer sichtbar bei Hover auf nav-item */
  .nav-item.dropdown:hover .mega-dropdown {
    display: block;
  }
  
  /* Fix: Container darf keine Lücken haben */
  .nav-item.dropdown {
    position: relative;
  }
  
  
  @media (max-width: 991.98px) {
    .mega-dropdown {
      position: static;
      width: 100%;
      padding: 1rem;
      border-top: none;
      box-shadow: none;
    }
  
    .mega-dropdown .container {
      flex-direction: column;
    }
  }
  
  
      /* Mega Dropdown Style */
  
      .carousel-container {
        position: relative;
        overflow: hidden;
      }
  
      .carousel-caption {
        background: rgba(0, 0, 0, 0.5);
        padding: 1.5rem;
        border-radius: 1rem;
      }
  
      .carousel-caption h5 {
        font-size: 1.75rem;
        color: #fff;
      }
  
      .carousel-caption p {
        color: #eee;
        font-size: 1rem;
      }
  
      .wave-bottom {
        position: relative;
        margin-top: -5px;
      }
  
      .wave-bottom svg {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 80px;
        display: block;
      }
  
      .service-card {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      border: 1px solid #eaeaea;
      }
  
      .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 105, 217, 0.15);
      }
  
      .icon-wrapper {
      background: #0069d9;
      color: #fff;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 2rem;
      transition: all 0.3s ease;
      }
  
      .service-card:hover .icon-wrapper {
      background: #272f37;
      }
  
      .service-card h5 {
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #272f37;
      }
  
      .service-card p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1.25rem;
      }
  
      .btn-primary-custom {
      background-color: #0069d9;
      border: none;
      padding: 0.5rem 1.5rem;
      color: #fff;
      border-radius: 30px;
      font-weight: 600;
      transition: background 0.3s ease;
      text-decoration: none;
      }
  
      .btn-primary-custom:hover {
      background-color: #272f37;
      color: #fff;
      }
  
      .about-section p {
          color: #444;
          line-height: 1.7;
      }
  
      .about-section .fa-rocket,
      .about-section .fa-hand-holding-usd {
          color: #0069d9;
      }
  
      .bg-primary-custom {
      background-color: #0069d9;
      }
  
      .bg-dark-custom {
      background-color: #272f37;
      }
  
      .info-tile {
      border-radius: 1.25rem;
      transition: all 0.3s ease;
      }
  
      .info-tile:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
      }
  
      .icon-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 70px;
      width: 70px;
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      margin: 0 auto;
      }
  
      .info-icon {
      color: #0069d9 !important;
      }
  
      .info-icon:hover {
      color: #FFFFFF !important;
      }
  
      .image-circle-wrapper {
      width: 160px;
      height: 160px;
      border: 4px solid #0069d9;
      border-radius: 50%;
      padding: 4px;
      margin: 0 auto;
      background-color: #fff;
      box-shadow: 0 0 15px rgba(0, 105, 217, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      }
  
      .heading-box {
      background-color: #36b6e4;
      }
  
      .heading-box h2 {
    font-size: 1.5rem; /* vorher wahrscheinlich 2rem oder mehr */
    font-weight: 600;
    margin-bottom: 0;
  }
  
      .content-box {
      background-color: #272f37;
      }
      .harald-img-wrapper {
      display: inline-block;
      padding: 0px;
      border: 3px solid #0069d9;
      border-radius: 50%;
      overflow: hidden;
      width: 160px;
      height: 160px;
      }
  
      .harald-img {
      border-radius: 50%;
      width: 100%;
      height: 100%;
      object-fit: none;
      }
  
        .steps-section {
      background-color: #f7f9fb;
      position: relative;
      padding-top: 6rem;
      padding-bottom: 5rem;
    }
  
      .steps-section .step-icon {
      font-size: 2rem;
      color: #0069d9;
      background-color: #e6efff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .steps-section .step-box h5 {
      font-weight: 600;
      margin-top: 1rem;
      color: #272f37;
    }
  
    .steps-section .step-box p {
      font-size: 0.95rem;
      color: #555;
    }
  
   
  
    /* Welle oben */
    .wave-top {
      position: absolute;
      top: 0;
      width: 100%;
      height: 80px;
      overflow: hidden;
      line-height: 0;
    }
  
    .wave-top svg {
      display: block;
      width: 100%;
      height: 100%;
    }
  
  
  
      .fun-facts-section {
      background-color: #0069d9;
      }
  
      .facts-heading {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 2rem;
      }
  
      .fact-box {
      background-color: rgba(255, 255, 255, 0.05);
      padding: 2rem 1rem;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      transition: transform 0.3s ease;
      }
  
      .fact-box:hover {
      transform: translateY(-5px);
      }
  
      .fact-box i {
      color: #ffffff;
      }
  
      .counter {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      }
  
      .fact-box p {
      margin: 0;
      font-size: 1.1rem;
      }
  
      .cta-section {
      background-color: #e3f2fd; /* Sanftes Hellblau, hebt sich ab */
      padding-top: 4rem;
      padding-bottom: 4rem;
      }
  
      .cta-section h2 {
      font-size: 2rem;
      font-weight: 700;
      }
  
      .cta-section p {
      font-size: 1.125rem;
      max-width: 800px;
      margin: 0 auto;
      }
  
      .cta-section .btn {
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      border-radius: 30px;
      min-width: 160px;
      transition: all 0.3s ease;
      }
  
      .cta-section .btn i {
      margin-right: 0.5rem;
      }
  
      .btn-primary-custom {
      background-color: #0069d9;
      color: #fff;
      border: none;
      padding: 0.6rem 1.4rem;
      border-radius: 30px;
      font-weight: 600;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      }
  
      .btn-primary-custom:hover {
      background-color: #0057b7;
      color: #fff;
      text-decoration: none;
      }
  
      .footer-title {
      font-weight: 700;
      font-size: 1.1rem;
      color: #ffffff;
      margin-bottom: 1rem;
      }
  
      footer {
      background-color: var(--accent);
      color: var(--white);
      padding: 2rem 0;
      border-top: 4px solid #0069d9;
      }
  
      .footer-link {
      color: #ccc;
      text-decoration: none;
      font-size: 0.95rem;
      }
  
      .footer-link:hover {
      color: #ffffff;
      text-decoration: underline;
      }
  
      .footer-links li a {
      text-decoration: none;
      }
  
      .footer-links li a:hover {
      text-decoration: none;
      color: #ffffff; /* oder eine andere Wunschfarbe */
      }

      .footer-cookie-btn {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }
  
      .social-circle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #ffffff;
      color: #272f37;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 1.1rem;
      margin-left:20px;
    }
  
    .social-circle:hover {
      background-color: #0069d9;
      color: #ffffff;
    }

    .team-img {
      max-width: 180px;
      border-radius: 8px;
    }

    #content-img {
      width:450px; 
      height:350px;}
      
    .content-img2 {
      width:80%; 
      min-height:350px;
      max-height:560px;}

      .domain-box {margin-left:25px;
        padding-bottom:10px;}
 
 .logo-slider {overflow: hidden;
               position: relative;
               width: 100%;
               height: 100px; }
             
 .logo-slide {display: flex;
              align-items: center;
              animation: slide 20s linear infinite;
              width: calc(100% * 2); }
             
 .logo-systeme {margin: 0 20px;
                height: 80px;}
             
 /* Pausieren der Animation beim Hover */
 .logo-slider:hover .logo-slide {animation-play-state: paused;}
             
             @keyframes slide {
                 0% {
                     transform: translateX(0);
                 }
                 100% {
                     transform: translateX(-50%);
                 }
             }
 
             .card-horizontal {
                 display: flex;
                 flex-direction: row;
                 border: 1px solid #ddd;
                 border-radius: 8px;
                 overflow: hidden;
                 transition: box-shadow 0.3s ease-in-out;
             }
             
             .card-horizontal:hover {
                 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
             }
             
             .card-horizontal .card-header {
                 width: 25%;
                 display: flex;
                 align-items: center;
                 justify-content: center;
                 flex-shrink: 0;
                 padding: 1rem;
             }
             
             .card-horizontal .card-body {
                 width: 75%;
                 padding: 1rem;
                 display: flex;
                 flex-direction: column;
                 justify-content: space-between;
             }
             
             .card-horizontal h5.price {
                 margin: 0;
                 font-size: 1.8rem;
                 font-weight: bold;
             }
             
             .card-horizontal ul.features {
                 padding-left: 0;
                 list-style: none;
                 font-size: 0.9rem;
             }
             
             .card-horizontal p {
                 margin-top: 1rem;
                 font-size: 0.9rem;
                 line-height: 1.5;
             }
             
             .pricing6 {
                 font-family: "Montserrat", sans-serif;
                 color: #8d97ad;
                 font-weight: 300;
               }
               
               .pricing6 h1,
               .pricing6 h2,
               .pricing6 h3,
               .pricing6 h4,
               .pricing6 h5,
               .pricing6 h6 {
                 color: #3e4555;
               }
               
               .pricing6 .font-weight-medium {
                 font-weight: 500;
               }
               
               .pricing6 .bg-light {
                 background-color: #f4f8fa !important;
               }
               
               .pricing6 h5 {
                   line-height: 22px;
                   font-size: 18px;
               }
               
               .pricing6 .subtitle {
                 color: #8d97ad;
                 line-height: 24px;
               }
               
               .pricing6 .card.card-shadow {
                 -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
                 box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
               }
               
               .pricing6 .price-box sup {
                 top: -20px;
                 font-size: 16px;
               }
               
               .pricing6 .price-box .display-5 {
                 line-height: 58px;
                 font-size: 3rem;
               }
               
               .pricing6 .btn-info-gradiant {
                       background: #188ef4;
                   background: -webkit-linear-gradient(legacy-direction(to right), #188ef4 0%, #316ce8 100%);
                   background: -webkit-gradient(linear, left top, right top, from(#188ef4), to(#316ce8));
                   background: -webkit-linear-gradient(left, #188ef4 0%, #316ce8 100%);
                   background: -o-linear-gradient(left, #188ef4 0%, #316ce8 100%);
                   background: linear-gradient(to right, #188ef4 0%, #316ce8 100%);
               }
               
               .pricing6 .btn-info-gradiant:hover {
                       background: #316ce8;
                   background: -webkit-linear-gradient(legacy-direction(to right), #316ce8 0%, #188ef4 100%);
                   background: -webkit-gradient(linear, left top, right top, from(#316ce8), to(#188ef4));
                   background: -webkit-linear-gradient(left, #316ce8 0%, #188ef4 100%);
                   background: -o-linear-gradient(left, #316ce8 0%, #188ef4 100%);
                   background: linear-gradient(to right, #316ce8 0%, #188ef4 100%);
               }
               
               .pricing6 .btn-md {
                   padding: 15px 45px;
                   font-size: 16px;
               }
               
               .pricing6 .text-info {
                   color: #188ef4 !important;
               }
               
               .pricing6 .badge-danger {
                   background-color: #ff4d7e;
               }
               
               .pricing6 .font-14 {
                   font-size: 14px;
               }

               .bg-dark-custom {
                background-color: #272f37;
              }
              
              .website-packages-section .card:hover {
                transform: translateY(-5px);
                transition: 0.3s ease;
              }
              
              .website-packages-section .card i {
                transition: 0.3s ease;
              }
              
              .website-packages-section .card:hover i {
                transform: scale(1.1);
              }
              
              .website-packages-section h2,
              .website-packages-section h3 {
                font-family: 'Segoe UI', sans-serif;
              }

              .badge-new {
                background-color: red;
                color: white;
                font-size: 0.65rem;
                font-weight: bold;
                padding: 2px 6px;
                border-radius: 12px;
                margin-left: 6px;
                vertical-align: middle;
              }
              
    

  @media (max-width: 768px) and (orientation:portrait) {

        .navbar-brand img {
          height: 76px;
          margin-left: 2%;
          margin-bottom: 3%;
        }

      /* Navbar-Toggler Hintergrund in Primärfarbe */
      .navbar-toggler {
        background-color: #0069d9; /* Primärfarbe */
        border: none;
        padding: 0.5rem 0.75rem;
        border-radius: 4px;
      }

      /* Hamburger-Icon (Striche) in Weiß */
      .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
      }

      .carousel-item img {
        height: 320px; /* oder 100vh wenn du vollflächig willst */
        object-fit: cover;
      }

      .carousel-caption {
        padding: 1rem;
        font-size: 0.9rem;
      }

      .carousel-caption h5 {
        font-size: 1.25rem;
      }

      .carousel-caption p {
        font-size: 0.9rem;
      }

      .wave-bottom svg {
        height: 60px; /* leicht anpassen, wenn es zu klein ist */
      }

      .carousel-control-prev {
        left: 2%;
      }

      .carousel-control-next {
        right: 1%;
        width: 17%;
      }

      
      .navbar .btn {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
        width: 230px;
        margin-left: 15% !important;
        margin-bottom: 2%;
        margin-top: 2%;}

      .bg-dark-custom {
        background-color: #272f37;
        margin-top: 3%;}

      .cta-section .btn {
          padding:0.75rem 1.5rem;
          font-weight: 600;
          border-radius:30px;
          min-width: 160px;
          transition:all 0.3s ease;
          margin-bottom: 4%;}

  }