* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: #f0f6ff;
            color: #5eb0ea;
            line-height: 1.6;
            scroll-behavior: smooth;
        }
        a {
            text-decoration: none;
            color: #315ddf;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f1f1f1;
        }
        /* Header & Navigation */
        header {
            background: #053361;
            color: white;
            padding: 15px 30px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: 2px;
            user-select: none;
        }
        .logo img {
            height: 40px;
            width: 40px;
            border-radius: 6px;
            object-fit: cover;
            border: 2px solid white;
        }
        .nav-links {
            list-style: none;
            display: flex;
            gap: 25px;
        }
        .nav-links li a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            color: #fff;
            display: inline-block;
          
        }
        .nav-links li a:hover {
            background-color: #032642;
            color: white;
        }
        .nav-links li a:active {
            background-color: #032642;
            color: white;
         }
        .nav-links li a.btn {
            background-color: #ff6f00;
            color: white;
            font-weight: 700;
            box-shadow: 0 3px 8px rgba(255, 111, 0, 0.6);
        }
        .nav-links li a.btn:hover {
            background-color: #ffa726;
            box-shadow: 0 3px 12px rgba(255, 167, 38, 0.8);
            color: #ecedf0;
        }
        /* Hero Section */
        .hero {
            display: flex;
            flex-wrap: wrap;
            padding: 60px 30px 80px;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(13, 26, 64, 0.1);
        }
        .hero-text {
            flex: 1 1 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .badge {
            display: inline-block;
            background: #e3f2fd;
            color: #1976d2;
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
            user-select: none;
        }
        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero-text h1 span {
            color: #1976d2;
        }
        .hero-text p {
            font-size: 1.15rem;
            color: #455a64;
            margin-bottom: 30px;
        }
        .hero-buttons button {
            background-color: #1976d2;
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .hero-buttons button:hover {
            background-color: #1565c0;
            transform: translateY(-3px);
        }
        .stats {
            display: flex;
            gap: 60px;
            margin-top: 40px;
            font-weight: 700;
            font-size: 1.3rem;
            color: #0d47a1;
        }
        .stats div {
            text-align: center;
            user-select: none;
        }
        .stats strong {
            font-size: 2.2rem;
            display: block;
            margin-bottom: 5px;
        }
        /* Hero Cards */
        .hero-cards {
            flex: 1 1 300px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            align-content: center;
        }
        .hero-cards .card {
            background: #e3f2fd;
            color: #1565c0;
            font-size: 1.4rem;
            font-weight: 700;
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 6px 18px rgba(21, 101, 192, 0.25);
            user-select: none;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .hero-cards .card:hover {
            background-color: #1565c0;
            color: white;
            cursor: default;
        }
        /* Services Section */
        .services-section {
            max-width: 1200px;
            margin: 70px auto;
            padding: 0 30px 60px;
            text-align: center;
        }
        .services-section h1 {
            font-size: 2.8rem;
            color: #0d47a1;
            margin-bottom: 45px;
            font-weight: 700;
            user-select: none;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .service-box {
            background: white;
            padding: 30px 25px;
            border-radius: 20px;
            box-shadow: 0 6px 18px rgba(13, 26, 64, 0.1);
            text-align: left;
            transition: transform 0.3s ease;
        }
        .service-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(13, 26, 64, 0.18);
        }
        .service-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1565c0;
            margin-bottom: 15px;
            user-select: none;
        }
        .service-description {
            font-size: 1rem;
            color: #37474f;
            line-height: 1.5;
        }
        .large-card {
            grid-column: 1/-1;
            max-width: 800px;
            margin: 0 auto;
        }
        .language-tags {
            margin-top: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .language-tag {
            background-color: #e3f2fd;
            color: #1565c0;
            padding: 7px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            user-select: none;
            box-shadow: 0 2px 10px rgba(21, 101, 192, 0.15);
        }
        /* About Section */
        .about-section {
            background: #fcfcfc;
            padding: 70px 30px 80px;
            max-width: 1200px;
            margin: 0 auto 80px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(13, 26, 64, 0.1);
        }
        .about-heading {
            font-size: 2.8rem;
            font-weight: 700;
            color: #0d47a1;
            margin-bottom: 50px;
            text-align: center;
            user-select: none;
        }
        .timeline {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .timeline-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }
        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.9s; }

.timeline-icon {
  position: absolute;
  left: -38px;
  top: 0;
  background-color: #0077cc;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.timeline-content h2 {
  margin-top: 0;
  color: #0077cc;
  font-size: 1.5em;
}

.timeline-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

/* Animation */
@keyframes slideIn {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#contact {
  background: linear-gradient(135deg, #0044cc, #66aaff);
  color: white;
  padding: 70px 50px;
  border-radius: 25px;
  max-width: 1200px;
  margin: 60px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#contact h2 {
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: bold;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  text-align: left;
  flex-wrap: wrap;
}

.left-contact,
.right-contact {
  flex: 1;
  min-width: 320px;
}

.left-contact p,
.right-contact p {
  font-size: 22px;
  margin: 20px 0;
  line-height: 1.8;
}

.left-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.left-contact a:hover {
  text-decoration: underline;
  color: #ffd700;
}



        /* Responsive */
        @media (max-width: 900px) {
            .hero {
                flex-direction: column;
                padding: 50px 20px 70px;
            }
            .hero-text h1 {
                font-size: 2.2rem;
            }
            .stats {
                justify-content: center;
                gap: 40px;
            }
            .hero-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-links {
                gap: 18px;
            }
        }
        @media (max-width: 550px) {
            nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
        }