*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe Ui', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
      background-color: #f5f5f5;
      color: #333;
      line-height: 1.6;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  header {
        background: linear-gradient(135deg, #0056b3, #003366);
        color: white;
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
  }

  .logo span { 
    color: #ffcc00;
  }

  .logo-icon {
    margin-right: 10px;
    font-size: 2rem;
  }

  nav ul {
    display: flex;
    list-style: none;
  }

  nav ul li {
    margin-left: 2rem;
  }

  nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }

  nav ul li a:hover {
    color: #ffcc00;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffcc00;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
  }

  nav ul li a:hover::after {
    width: 100%;
  }

  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    margin-top: 60px;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100;
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
  }

  .hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease;
  }

  .btn {
    display: Inline-block;
    background: #ffcc00;
    color: #003366;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    animation: fadeIn 1.5s ease;
  }

  .btn-outline {
    background: transparent;
    border: 2px solid #ffcc00;
    color: #ffcc00;
    margin-left: 1rem;
  }

  .btn:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-outline:hover {
    background: #ffcc00;
    color: #003366;
  }

  .services {
    padding: 5rem 0;
    background-color: white;
  }

  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
    color: #003366;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
  }

  .section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #ffcc00;
    bottom: 0;
    left: 25%;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 2rem;
  }

  .service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 2rem;
    border-top: 4px solid #ffcc00;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
    margin-bottom: 1.5rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-icon i {
    font-size: 3rem;
    color: #ffcc00;
  }

  .service-icon img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #ffcc00;
    padding: 5px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #003366;
  }

  .features {
    padding: 5rem 0;
    background-color: #f0f8ff;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 2rem
  }

  .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
  }

  .feature-icon {
    font-size: 1.8rem;
    color: #0056b3;
    margin-right: 1.5rem;
    margin-top: 5px;
  }

  .feature-text h3 {
    margin-bottom: 1rem;
    color: #003366;
  }

  .contact {
    padding: 5rem 0;
    backround-color: #f0f8ff;
  }

  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .contact-icon {
    font-size: 1.5rem;
    color: #0056b3;
    margin-right: 1rem;
    margin-top: 5px;
  }

  .contact-text h3 {
    margin-bottom: 0.5rem;
    color: #003366:
  }

  footer {
   background: #001a33;
   color: white;
   padding: 3rem 0 1rem;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .footer-col h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #ffcc00;
    bottom: 0;
    left: 0;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 0.8rem;
  }

  .footer-col ul li a {
    transition: color 0.3s;
  }

  .footer-col ul li a:hover {
    color: #ffcc00;
  }