 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
    }

    /* Header and Navbar */
    header.site-header {
      position: fixed;
      top: 0;
      width: 100%;
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    header.site-header.scrolled {
      background: linear-gradient(135deg, #1a2f5c 0%, #234880 100%);
      padding: 5px 0;
    }

    .navbar {
      max-width: 1400px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 40px;
    }

    .navbar img.logo {
      height: 70px;
      width: auto;
      filter: brightness(0) invert(1);
      transition: all 0.3s ease;
    }

    .navbar img.logo:hover {
      transform: scale(1.05);
    }

    .nav-menu {
      list-style: none;
      display: flex;
      gap: 5px;
      align-items: center;
    }

    .nav-menu li a {
      text-decoration: none;
      color: #ffffff;
      font-weight: 600;
      padding: 10px 18px;
      transition: all 0.3s;
      border-radius: 8px;
      font-size: 15px;
    }

    .nav-menu li a:hover {
      background-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    .translate-box {
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      padding: 8px 12px;
    }

    .translate-box select {
      background-color: transparent;
      color: white;
      border: none;
      font-size: 14px;
      cursor: pointer;
    }

    /* Hero Section */
    .hero-section {
      background: linear-gradient(135deg, rgba(30, 60, 114, 0.95), rgba(42, 82, 152, 0.9)), 
                  url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1600') center/cover;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 120px 20px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.3) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(142, 68, 173, 0.2) 0%, transparent 50%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .hero-content h1 {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 800;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease;
    }

    .hero-content p {
      font-size: 1.3em;
      margin-bottom: 35px;
      opacity: 0.95;
      animation: fadeInUp 1s ease 0.2s backwards;
    }

    .btn-primary {
      background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
      color: white;
      border: none;
      padding: 18px 45px;
      font-size: 1.1em;
      font-weight: 700;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
      animation: fadeInUp 1s ease 0.4s backwards;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
    }

    .experience {
      margin-top: 25px;
      font-size: 1.1em;
      font-weight: 600;
      color: #ffd700;
      animation: fadeInUp 1s ease 0.6s backwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Why Choose Us Section */
    .why-choose {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 100px 40px;
      text-align: center;
    }

    .why-choose h1 {
      font-size: 2.8em;
      margin-bottom: 60px;
      font-weight: 700;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 35px 25px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .feature-card h3 {
      font-size: 1.3em;
      margin-bottom: 15px;
      color: #ffd700;
    }

    .feature-card p {
      font-size: 1.05em;
      line-height: 1.7;
    }

    /* Expertise Banner */
    .expertise-banner {
      background: linear-gradient(135deg, rgba(20, 30, 48, 0.95), rgba(36, 59, 85, 0.95)),
                  url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600') center/cover fixed;
      padding: 120px 40px;
      text-align: center;
      color: white;
    }

    .expertise-banner h1 {
      font-size: 3em;
      margin-bottom: 20px;
      font-weight: 700;
      letter-spacing: 2px;
    }

    .expertise-banner h2 {
      font-size: 1.5em;
      font-weight: 400;
      opacity: 0.95;
    }

    /* Services Section */
    .services-section {
      background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 100px 40px;
    }

    .services-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 70px;
    }

    .services-header h1 {
      font-size: 2.8em;
      color: #1e3c72;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .services-header p {
      font-size: 1.2em;
      color: #555;
    }

    .footer-box {
      background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
      color: white;
      padding: 40px;
      border-radius: 20px;
      text-align: center;
      margin: 50px auto;
      max-width: 900px;
      box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    }

    .footer-box h1 {
      font-size: 2.2em;
      margin-bottom: 15px;
    }

    .footer-box .tagline {
      font-size: 1.3em;
      font-style: italic;
      opacity: 0.95;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .service-card {
      background: white;
      padding: 40px 30px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
      border-top: 4px solid #4a90e2;
    }

    .service-card:nth-child(2) {
      border-top-color: #ff6b6b;
    }

    .service-card:nth-child(3) {
      border-top-color: #48bb78;
    }

    .service-card:nth-child(4) {
      border-top-color: #ed8936;
    }

    .service-card:nth-child(5) {
      border-top-color: #9f7aea;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .service-card h3 {
      font-size: 1.6em;
      color: #1e3c72;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .service-card ul {
      list-style: none;
    }

    .service-card ul li {
      padding: 12px 0;
      padding-left: 30px;
      position: relative;
      color: #555;
      font-size: 1.05em;
      border-bottom: 1px solid #f0f0f0;
    }

    .service-card ul li:last-child {
      border-bottom: none;
    }

    .service-card ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #48bb78;
      font-weight: bold;
      font-size: 1.2em;
    }

    /* Clients Section */
    .clients {
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      color: white;
      padding: 80px 40px;
      text-align: center;
    }

    .clients h2 {
      font-size: 2.5em;
      margin-bottom: 50px;
      font-weight: 700;
    }

    .clients ul {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .clients li {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 25px;
      border-radius: 12px;
      font-size: 1.2em;
      font-weight: 600;
      border: 2px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s;
    }

    .clients li:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.05);
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #1a2f5c 0%, #0f1b35 100%);
      color: white;
      padding: 60px 40px 30px;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-content h3 {
      font-size: 2em;
      margin-bottom: 30px;
      color: #ffd700;
    }

    .footer-content p {
      font-size: 1.1em;
      margin: 12px 0;
      opacity: 0.9;
    }

    .social-links {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 25px;
    }

    .social-links a img {
      width: 45px;
      height: 45px;
      transition: all 0.3s;
      filter: brightness(0) invert(1);
      opacity: 0.8;
    }

    .social-links a img:hover {
      opacity: 1;
      transform: scale(1.2) rotate(5deg);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        padding: 15px 20px;
      }

      .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
      }

      .hero-content h1 {
        font-size: 2.2em;
      }

      .hero-content p {
        font-size: 1.1em;
      }

      .why-choose h1,
      .services-header h1 {
        font-size: 2em;
      }

      .expertise-banner h1 {
        font-size: 2em;
      }
    }
    /* Translate box */
    .translate-box {
      background-color: #004080;
      border-radius: 10px;
      padding: 5px 10px;
      color: white;
    }

    .translate-box select {
      background-color: #004080;
      color: white;
      border: none;
      border-radius: 10px;
      padding: 3px 8px;
      font-size: 14px;
      cursor: pointer;
    }
    
  </style>
  <script>
    function googleTranslateElementInit() {
      new google.translate.TranslateElement({
        pageLanguage: 'en',
        includedLanguages: 'en,es,fr,de,eu,si,ar,it,hi,ta,zh-CN,ja',
        layout: google.translate.TranslateElement.InlineLayout.SIMPLE
      }, 'google_translate_element');
    }
  </script>
  
  
  <script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
