body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(#0f2027, #203a43, #2c5364);
    color: #fff;
    text-align: center;
    overflow-x: hidden;
  }
  
  header {
    padding: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
  }
  
  .logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 10px #00f2ff);
    animation: float 3s ease-in-out infinite;
  }
  
  h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    color: #00f2ff;
  }
  
  p {
    font-size: 1.1rem;
  }
  
  .banner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  }
  
  .about, .work {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
  }
  
  .about h2, .work h2 {
    color: #00f2ff;
    margin-bottom: 1rem;
  }
  
  .work ul {
    list-style: none;
    padding: 0;
  }
  
  .work li {
    margin: 0.5rem 0;
    font-size: 1rem;
  }
  
  footer {
    padding: 1rem;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  /* Animation */
  @keyframes glow {
    from {
      text-shadow: 0 0 10px #00f2ff;
    }
    to {
      text-shadow: 0 0 20px #00f2ff, 0 0 30px #00c3ff;
    }
  }
  
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }
  .parallax {
    background-image: url('your-background-image.jpg');
    height: 500px;
    background-attachment: fixed;
    background-size: cover;
  }
  button:hover {
    background-color: #00f2ff;
    transform: scale(1.1);
    transition: 0.3s;
  }
  
  a:hover {
    color: #00f2ff;
    text-decoration: underline;
  }
  html {
    scroll-behavior: smooth;
  }
  img:hover {
    transform: perspective(500px) rotateY(15deg);
    transition: transform 0.5s;
  }
  .typing {
    font-size: 2rem;
    color: #00f2ff;
    display: inline-block;
    border-right: 2px solid #00f2ff;
    animation: typing 3s steps(30) infinite;
  }
  
  @keyframes typing {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  .modal { display: none; position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.4); }
.modal-content { background-color: #fff; margin: 15% auto; padding: 20px; width: 80%; }
.close { color: #aaa; font-size: 28px; font-weight: bold; }
.close:hover, .close:focus { color: black; text-decoration: none; cursor: pointer; }
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .item {
    background: #fff;
    padding: 10px;
    text-align: center;
  }
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body { font-family: 'Roboto', sans-serif; }
.my-button {
    background-color: #00f2ff; /* Button Color */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .my-button:hover {
    background-color: #008c99; /* Hover Color */
    transform: scale(1.1); /* Button Hover Animation */
  }
  .banner {
    background: linear-gradient(45deg, #00f2ff, #0066cc); /* Beautiful Gradient Background */
    color: white;
    text-align: center;
    padding: 80px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
  }
  
  .banner-text {
    font-size: 48px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
  }
  
  .banner-description {
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    font-weight: normal;
    opacity: 0.8;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Button Styling */
  .banner-button {
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #008C99;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  .banner-button:hover {
    background-color: #00b3b3; /* Hover Effect */
  }
  /* Button Hover Effect */
.banner-button:hover {
    background-color: #00b3b3; /* Hover Effect */
    transform: scale(1.1); /* Enlarge the button */
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  /* Fade In Animation for Banner Text */
  .banner-text {
    animation: fadeIn 2s ease-in-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* Fade In on Scroll */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .fade-in.visible {
    opacity: 1;
  }
  
  /* JavaScript to detect scroll event */
  document.addEventListener('scroll', function () {
    var element = document.querySelector('.fade-in');
    if (element.getBoundingClientRect().top < window.innerHeight) {
      element.classList.add('visible');
    }
  });
  /* Sticky Navbar */
.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #333;
    padding: 10px 0;
    z-index: 1000;
  }
  
  .navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
  }
  
  .navbar a:hover {
    background-color: #ddd;
    color: black;
  }
  .testimonials {
    background-color: #f4f4f4;
    padding: 50px;
    text-align: center;
  }
  
  .testimonial {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  /* Loading Spinner */
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .typing {
    font-size: 30px;
    font-family: 'Courier', sans-serif;
    color: #fff;
    border-right: 4px solid #3498db;
    padding-right: 10px;
    animation: typing 3s steps(30) 1s infinite, blink 0.75s step-end infinite;
  }
  
  @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }
  
  @keyframes blink {
    50% { border-color: transparent; }
  } 
    

    
    
    



    
    


