:root {
    --dark-blue: #0C134F;
    --light-blue: #1D267D;
    --white: #ffffff;
    --highlight: #5C469C;
    --secondary: #D4ADFC;
}
  
  body {
    background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
  }
  
  header {
    background-color: var(--dark-blue);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
  .logo img {
    margin-left: 10px;
    border-radius: 50%;
    height: 60px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  nav ul {
    list-style: none;
    display: flex;
    margin-right: 5%;
  }
  
  nav ul li {
    margin-left: 30px;
  }
  
  nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    font-size: clamp(16px, 2vw, 20px);
  }
  
  nav ul li a:hover {
    color: var(--secondary);
  }
  
  nav ul li a i {
    margin-right: 5px;
  }
  
  /* Navigation menu icons */
  nav ul li:nth-child(1) a i {
    color: #ff6b6b;
  }
  
  nav ul li:nth-child(2) a i {
    color: #4ecdc4;
  }
  
  nav ul li:nth-child(3) a i {
    color: #ffe66d;
  }
  
  nav ul li:nth-child(4) a i {
    color: #1a535c;
  }
  
  .hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--light-blue);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 42% 56% 72% 28% / 42% 42% 56% 48%;
    animation: morph 3.5s linear infinite;
    opacity: 0.8;
    top: -200px;
    right: -200px;
    z-index: 0;
  }
  
  @keyframes morph {
    0%, 100% {
      border-radius: 42% 56% 72% 28% / 42% 42% 56% 48%;
    }
    33% {
      border-radius: 72% 28% 48% 48% / 28% 28% 72% 72%;
    }
    66% {
      border-radius: 100% 56% 56% 100% / 100% 100% 56% 56%;
    }
  }
  
  h1 {
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .hero p {
    font-size: clamp(16px, 2.5vw, 24px);
    margin-bottom: 40px;
    color: var(--white);
  }
  
  .button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .button {
    display: inline-block;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    background-color: var(--highlight);
    font-weight: 500;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-size: clamp(14px, 2vw, 18px);
  }
  
  .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: left 0.3s;
    z-index: 1;
  }
  
  .button:hover::before {
    left: 100%;
  }
  
  .button.primary {
    background-color: darkblue;
  }
  
  .button:hover {
    background-color: var(--secondary);
  }
  
  .features {
    padding: 100px 0;
    background-color: var(--dark-blue);
    position: relative;
    overflow: hidden;
  }
  
  .feature {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
  }
  
  .feature i {
    font-size: 48px;
    margin-bottom: 20px;
    animation: iconFloat 2s ease-in-out infinite;
  }
  
  /* Feature icons */
  .feature:nth-child(1) i {
    color: #ff6b6b;
  }
  
  .feature:nth-child(2) i {
    color: #4ecdc4;
  }
  
  .feature:nth-child(3) i {
    color: #ffe66d;
  }
  
  @keyframes iconFloat {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .feature p {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 20px;
  }
  
  .learn-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    font-size: clamp(14px, 2vw, 18px);
  }
  
  .learn-more::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  
  .learn-more:hover::after {
    transform: scaleX(1);
  }
  
  .about {
    padding: 100px 0;
    background-color: var(--dark-blue);
  }
  
  h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 20px;
  }
  
  .about ul {
    margin-bottom: 20px;
  }
  
  .about ul li {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 10px;
  }
  
  .cta {
    padding: 100px 0;
    text-align: center;
    background-color: var(--dark-blue);
    position: relative;
    overflow: hidden;
  }
  
  footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    font-size: clamp(14px, 1.5vw, 16px);
  }
  
  .blob2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--highlight);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph2 4s linear infinite;
    opacity: 0.6;
    bottom: -100px;
    left: -100px;
    z-index: 0;
  }
  
  @keyframes morph2 {
    0%, 100% {
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    33% {
      border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    66% {
      border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
  }
  
  .blob3 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    border-radius: 42% 58% 62% 38% / 41% 51% 49% 59%;
    animation: morph3 5s linear infinite;
    opacity: 0.4;
    top: -250px;
    right: -250px;
    z-index: 0;
  }
  
  @keyframes morph3 {
    0%, 100% {
      border-radius: 42% 58% 62% 38% / 41% 51% 49% 59%;
    }
    33% {
      border-radius: 38% 62% 58% 42% / 59% 49% 51% 41%;
    }
    66% {
      border-radius: 62% 38% 42% 58% / 49% 59% 41% 51%;
    }
  }
  
  .blob4 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--highlight);
    border-radius: 52% 48% 32% 68% / 61% 41% 59% 39%;
    animation: morph4 6s linear infinite;
    opacity: 0.7;
    bottom: -200px;
    left: -200px;
    z-index: 0;
  }
  
  @keyframes morph4 {
    0%, 100% {
      border-radius: 52% 48% 32% 68% / 61% 41% 59% 39%;
    }
    33% {
      border-radius: 32% 68% 48% 52% / 39% 59% 41% 61%;
    }
    66% {
      border-radius: 68% 32% 52% 48% / 59% 39% 61% 41%;
    }
  }
  
  .typing-text {
    display: inline-block;
    border-right: 2px solid transparent;
    padding-right: 5px;
  }
  
  .typing-text.typing {
    border-right-color: var(--white);
    animation: blink 0.7s infinite;
  }
  
  @keyframes blink {
    0%, 100% {
      border-color: transparent;
    }
    50% {
      border-color: var(--white);
    }
  }
  
  /* Media Queries */
  @media screen and (max-width: 768px) {
    nav {
      flex-direction: column;
      align-items: flex-start;
    }
    
    nav ul {
      margin-top: 20px;
      flex-direction: column;
    }
    
    nav ul li {
      margin-left: 0;
      margin-bottom: 10px;
    }
    
    .logo img {
      height: 40px;
    }
    
    .hero {
      padding: 80px 20px;
    }
    
    .button-group {
      flex-direction: column;
      align-items: center;
    }
    
    .button {
      width: 100%;
      max-width: 200px;
    }
    
    .features {
      padding: 60px 0;
    }
    
    .about {
      padding: 60px 0;
    }
    
    .cta {
      padding: 60px 0;
    }
  }
  
  @media screen and (max-width: 480px) {
    h1 {
      font-size: clamp(24px, 6vw, 36px);
    }
    
    .hero p {
      font-size: clamp(14px, 3.5vw, 18px);
    }
    
    .button {
      font-size: clamp(12px, 3vw, 16px);
      padding: 12px 24px;
    }
    
    h2 {
      font-size: clamp(20px, 4vw, 28px);
    }
    
    .feature p {
      font-size: clamp(12px, 3vw, 16px);
    }
    
    .learn-more {
      font-size: clamp(12px, 3vw, 16px);
    }
    
    h3 {
      font-size: clamp(18px, 4vw, 22px);
    }
    
    .about p {
      font-size: clamp(12px, 3vw, 16px);
    }
    
    .about ul li {
      font-size: clamp(12px, 3vw, 16px);
    }
    
    footer {
      font-size: clamp(12px, 2.5vw, 14px);
    }
  }
  .contact-form {
  padding: 80px 0;
  background-color: var(--light-blue);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--secondary);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 80px 0;
  background-color: var(--dark-blue);
}

.info-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-group i {
  font-size: 24px;
  margin-right: 15px;
  color: var(--secondary);
}

.info-group p {
  font-size: 18px;
}