@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
 
		
  /* CSS Variables */
  :root {
    --primary: #0066cc;
    --primary-dark: #004c99;
    --primary-light: #66ccff;
    --secondary: #002b5c;
    --dark-blue: #001f3f;
    --darker-blue: #001428;
    --light-text: #f0f0f0;
    --accent: #66ccff;
    --accent-alt: #ff9966;
    --transition-standard: all 0.3s ease;
    --box-shadow-light: 0 10px 20px rgba(0, 0, 0, 0.2);
    --box-shadow-medium: 0 15px 30px rgba(0, 0, 0, 0.3);
    --box-shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.4);
    --border-radius-standard: 10px;
    --border-accent-light: 1px solid rgba(102, 204, 255, 0.1);
    --border-accent-medium: 1px solid rgba(102, 204, 255, 0.2);
    --border-accent-heavy: 1px solid rgba(102, 204, 255, 0.3);
	
  }
  
  /* Smooth Scrolling */
  html.lenis { height: auto; }
  .lenis.lenis-smooth { scroll-behavior: auto; }
  .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
  .lenis.lenis-stopped { overflow: hidden; }
  .lenis.lenis-scrolling iframe { pointer-events: none; }
  
  /* Base Styles */
  body {
    font-family: 'Poppins', system-ui, sans-serif;
    background-color: var(--dark-blue);
	
    color: var(--light-text);
    line-height: 1.7;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
  }

  section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
	
  }

  /* Section Patterns */
  .section-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.05;
    background-image: radial-gradient(var(--accent) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
	
  }

  .section-content {
    position: relative;
    z-index: 1;
	
  }

  /* Navbar */
  .navbar {
    background-color: rgba(0, 31, 63, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    transition: var(--transition-standard);
  }
  
  .navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 31, 63, 0.95);
  }

  .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent) !important;
    letter-spacing: 1px;
    font-size: 1.5rem;
  }

  .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--light-text) !important;
    margin: 0 10px;
    padding: 8px 0;
    position: relative;
    font-size: 0.95rem;
    transition: var(--transition-standard);
  }

  .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
  }

  .navbar-nav .nav-link:hover:after,
  .navbar-nav .nav-link.active:after {
    width: 100%;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--accent) !important;
  }



  .brand-logo .first-letter {
    font-size: 38px;
    color: white;
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--darker-blue);
    padding: 0;
  }

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 20, 40, 0.7), rgba(0, 31, 63, 0.6)), url('https://33x.de/img/background1.gif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }

  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  }

  .hero-buttons {
    margin-top: 30px;
  }

  .btn-hero {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-standard);
    background-color: var(--accent);
    color: var(--darker-blue);
    border: none;
  }

  .btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-light);
    background-color: #86d6ff;
  }

  /* Section Styling */
  .section-title {
    position: relative;
    margin-bottom: 50px;
    color: var(--accent);
    font-weight: 700;
    display: inline-block;
  }

  .section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    bottom: -10px;
    left: 0;
  }

  .text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .subtitle {
    color: var(--accent-alt);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
  }

  /* Cards */
  .service-card {
    background-color: rgba(0, 43, 92, 0.5);
    border-radius: var(--border-radius-standard);
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition-standard);
    border: var(--border-accent-light);
    height: 100%;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-medium);
    border-color: rgba(102, 204, 255, 0.3);
  }

  .service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-text);
  }

  /* Image Styling */
  .img-feature {
    border-radius: var(--border-radius-standard);
    box-shadow: var(--box-shadow-medium);
    transition: var(--transition-standard);
    border: 3px solid var(--secondary);
  }

  .img-feature:hover {
    transform: scale(1.02);
    box-shadow: var(--box-shadow-heavy);
  }

  /* About Section Image */
  #about .image-container img {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
    transition: var(--transition-standard);
    height: 380px;
    width: 380px;
    object-fit: cover;
  }

  #about .image-container img:hover {
    transform: scale(1.02);
    box-shadow: var(--box-shadow-heavy);
  }

  /* Testimonials */
  .testimonial-card {
    background-color: rgba(0, 43, 92, 0.5);
    border-radius: var(--border-radius-standard);
    padding: 30px;
    margin-bottom: 30px;
    border: var(--border-accent-light);
    position: relative;
  }

  .testimonial-card:before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(102, 204, 255, 0.1);
    line-height: 1;
  }

  /* Contact Form */
  .contact-form-container {
    background-color: rgba(0, 43, 92, 0.5);
    border-radius: var(--border-radius-standard);
    padding: 40px;
    border: var(--border-accent-light);
  }
  
  .form-control {
    background-color: rgba(0, 20, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 6px;
    transition: var(--transition-standard);
  }
  
  .form-control:focus {
    box-shadow: none;
    border-color: var(--accent);
    background-color: rgba(0, 20, 40, 0.7);
    color: #ffffff;
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .form-check-label, .form-label {
    color: #ffffff;
  }
  
  .btn-submit {
    background-color: var(--accent);
    color: var(--darker-blue);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-standard);
    width: 100%;
  }

  .btn-submit:hover {
    background-color: #86d6ff;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-light);
  }

  /* Footer */
  .footer {
    background-color: var(--darker-blue);
    padding: 20px 0;
    border-top: var(--border-accent-light);
    margin-top: 60px;
  }

  .copyright-text {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }

  .footer-links {
    text-align: right;
  }

  .footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-standard);
    margin-left: 15px;
  }

  .footer-link:hover {
    color: var(--accent);
    text-decoration: none;
  }

  /* LinkedIn Link */
  .linkedin-link {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition-standard);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  }

  .linkedin-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }

  /* Modal Styling */
  .modal-content {
    background-color: var(--secondary);
    border: var(--border-accent-medium);
    border-radius: var(--border-radius-standard);
    color: var(--light-text);
  }

  .modal-header {
    border-bottom: var(--border-accent-light);
    background-color: var(--secondary);
  }

  .modal-title {
    color: var(--accent);
  }

  .modal-body {
    overflow-y: auto;
    max-height: 60vh;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(0, 0, 0, 0.1);
  }

  .modal-body::-webkit-scrollbar {
    width: 8px;
  }

  .modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }

  .modal-body::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
  }

  .modal-body::-webkit-scrollbar-thumb:hover {
    background: #86d6ff;
  }

  .modal-footer {
    border-top: var(--border-accent-light);
    background-color: var(--secondary);
  }

  .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
  }

  .btn-accent {
    background-color: var(--accent);
    color: var(--darker-blue);
    border: none;
    padding: 8px 20px;
    font-weight: 600;
    transition: var(--transition-standard);
  }

  .btn-accent:hover {
    background-color: #86d6ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--darker-blue);
  }

  /* Image Preview */
  .image-preview-link {
    position: relative;
    display: block;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.375rem;
  }
  
  .image-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 20, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .image-preview-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
  }
  
  .image-preview-link:hover .image-preview-overlay {
    opacity: 1;
  }
  
  .image-preview-link:hover .image-preview-overlay i {
    transform: scale(1);
  }
  
  .img-preview-modal {
    max-width: 100%;
    max-height: 85vh;
  }

  /* Timeline (Mobile) */
  .timeline-mobile {
    margin-left: 20px;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 30px;
  }
  
  .timeline-icon {
    position: absolute;
    left: -32px;
    top: 0;
    background-color: var(--accent);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .timeline-content {
    background-color: rgba(0, 43, 92, 0.5);
    border-radius: 8px;
    padding: 20px;
    border: var(--border-accent-light);
  }

  /* Pulse Animation */
  .pulse-animation {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(102, 204, 255, 0.4);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.5);
      opacity: 1;
    }
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  /* Fade-in Animation */
  .fade-in-up {
    animation: fadeInUp 1s both;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 2.8rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
    
    section {
      padding: 80px 0;
    }
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.3rem;
    }
    
    .navbar-collapse {
      background-color: rgba(0, 20, 40, 0.95);
      backdrop-filter: blur(10px);
      padding: 20px;
      border-radius: 8px;
      margin-top: 15px;
      border: var(--border-accent-light);
      z-index: 1000;
    }
    
    .navbar-nav .nav-link {
      padding: 10px 15px;
      margin: 0;
      border-radius: 4px;
    }
    
    .navbar-nav .nav-link:hover {
      background-color: rgba(102, 204, 255, 0.1);
    }
    
    .hero-section {
      height: auto;
      min-height: 100vh;
      padding: 150px 0 100px;
    }
    
    .footer-links, .copyright-text {
      text-align: center;
    }
    
    .copyright-text {
      margin-bottom: 10px;
    }
    
    #about .image-container img {
      height: 180px;
      width: 180px;
      display: block;
      margin: 0 auto;
    }
    
    .modal-body {
      max-height: 50vh;
    }
  }


  
  /* Base styles for the navbar brand */
.responsive-brand {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: #f0f6ff;
  margin: 0;
  padding: 0;
  font-size: 1.5rem; /* Default size */
}

.responsive-brand .first-letter {
  color: #0cf;
}

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
  .responsive-brand {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}

/* Media query for very small screens */
@media (max-width: 480px) {
  .responsive-brand {
    font-size: 1rem;
    letter-spacing: 1px;
  }
}


@keyframes waveTextColors {
  0% { color: #ff6347; }
  25% { color: #32cd32; }
  50% { color: #1e90ff; }
  75% { color: #ff1493; }
  100% { color: #ff6347; }
}

.waving-text {
  animation: waveTextColors 4s ease-in-out infinite;
}