 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      box-sizing: border-box;
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
    }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      max-width: 100%;
    }

    .page-wrapper {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    /* All sections must not exceed viewport */
.section,
section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  /*overflow-x: hidden;*/
}

    /* Header Styles */
   /* .header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      transition: all 0.3s ease;
    }

    .header-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.8rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }*/

    .logo img{
      /*font-size: 1.75rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      letter-spacing: -0.5px;*/
      max-height: 80px;
    }

    .logo i {
      font-size: 2rem;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      margin: 0;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      font-size: 0.95rem;
      letter-spacing: 0.3px;
      color: #738289;
      text-transform: uppercase;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .call-btn{    
    margin-top: -5px;
    color: #FFFFFF !important;
    background: #1a84c6;
    border: none;
    border-radius: 30px;}

    .call-btn:hover{background: #738289;
    color: #FFFFFF !important;}

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.75rem;
      cursor: pointer;
      padding: 0.5rem;
      color: #296693;
      transition: transform 0.3s ease;
    }

    .mobile-menu-toggle:hover {
      transform: scale(1.1);
    }

    .mobile-menu-toggle.active {
      transform: rotate(90deg);
    }

    /* Hero Section */
    .hero {
      width: 100%;
      padding: 8rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #296693 0%, #1a4d6d 100%);
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
      z-index: 0;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to top, rgba(255,255,255,1), transparent);
      z-index: 1;
    }

    .hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      letter-spacing: -1px;
      text-shadow: 0 4px 20px rgba(0,0,0,0.1);
      color: white;
    }

    .hero p {
      font-size: 1.35rem;
      margin-bottom: 2.5rem;
      opacity: 0.95;
      font-weight: 300;
      line-height: 1.7;
      color: white;
    }

    .service-tags {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .service-tag {
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 500;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.15);
      color: white;
    }

    .service-tag:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      background: rgba(255, 255, 255, 0.25);
    }

    .cta-button {
      display: inline-block;
      padding: 1.2rem 3rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      position: relative;
      overflow: hidden;
      background: white;
      color: #296693;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(41, 102, 147, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.25);
      color: #296693;
    }

    .cta-button i {
      margin-left: 0.5rem;
      transition: transform 0.3s ease;
    }

    .cta-button:hover i {
      transform: translateX(5px);
    }

    /* Section Styles */
    .section {
      padding: 5rem 2rem;
      width: 100%;
    }

    .section-alt {
      background: #f8f9fa;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      font-size: 2.75rem;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: -1px;
      position: relative;
      display: inline-block;
      width: 100%;
      color: #296693;
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.1rem;
      font-weight: 300;
      margin-bottom: 3.5rem;
      opacity: 0.7;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* About Section */
    .about-content {
      /*max-width: 800px;*/
      margin: 0 auto;
      text-align: center;
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .service-card {
      background: white;
      padding: 2.5rem;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      text-align: center;
      border: 1px solid rgba(0,0,0,0.05);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #296693, #1a4d6d);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(41, 102, 147, 0.2);
    }

    .service-icon {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      color: #296693;
    }

    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 600;
      letter-spacing: -0.3px;
      color: #333;
    }

    .service-card p {
      line-height: 1.7;
      opacity: 0.7;
      font-size: 0.95rem;
      color: #333;
    }

    /* Why Choose Us */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .feature-item {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .feature-icon {
      font-size: 2.5rem;
      flex-shrink: 0;
      color: #296693;
    }

    .feature-content h4 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #333;
    }

    .feature-content p {
      opacity: 0.7;
      color: #333;
      line-height: 1.6;
    }

    /* Blog Section */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .blog-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0,0,0,0.05);
    }

    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(41, 102, 147, 0.15);
    }

    .blog-image {
      width: 100%;
      /*height: 220px;
      background: linear-gradient(135deg, #296693 0%, #1a4d6d 100%);*/
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
      overflow: hidden;
    }

    .blog-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 60%);
    }

    .blog-image i {
      position: relative;
      z-index: 1;
      color: white;
    }

    .blog-content {
      padding: 2rem;
    }

    .blog-card h3 {
      font-size: 1.35rem;
      margin-bottom: 0.75rem;
      font-weight: 600;
      letter-spacing: -0.3px;
      line-height: 1.4;
      color: #333;
    }

    .blog-date {
      font-size: 0.85rem;
      opacity: 0.6;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
      color: #333;
    }

    .blog-date i {
      font-size: 0.9rem;
    }

    .blog-card p {
      opacity: 0.7;
      line-height: 1.7;
      font-size: 0.95rem;
      color: #333;
      margin-bottom: 1rem;
    }

    .blog-read-more {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: gap 0.3s ease;
      color: #296693;
    }

    .blog-read-more:hover {
      gap: 0.75rem;
      color: #1a4d6d;
    }

    /* FAQ Section */
    .faq-container {
      max-width: 850px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 1.25rem;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      background: white;
    }

    .faq-item:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

    .faq-question {
      width: 100%;
      padding: 1.75rem 2rem;
      text-align: left;
      border: none;
      font-size: 1.15rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      letter-spacing: -0.2px;
      background: white;
      color: #333;
    }

    .faq-question:hover {
      opacity: 0.85;
    }

    .faq-icon {
      font-size: 1rem;
      transition: transform 0.3s ease;
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(41, 102, 147, 0.1);
      color: #296693;
    }

    .faq-icon.active {
      transform: rotate(180deg);
      background: rgba(41, 102, 147, 0.2);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
      padding: 0 2rem;
      background: white;
    }

    .faq-answer.active {
      max-height: 500px;
      padding: 0 2rem 1.75rem 2rem;
    }

    .faq-answer p {
      line-height: 1.7;
      opacity: 0.7;
      font-size: 0.98rem;
      color: #333;
    }

    /* Contact Section */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      margin-top: 3rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .form-group label {
      font-weight: 600;
      font-size: 0.95rem;
      color: #333;
    }

    .form-group input,
    .form-group textarea {
      padding: 1rem 1.25rem;
      border: 2px solid #e8e8e8;
      border-radius: 12px;
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: #fafafa;
      color: #333;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #296693;
      background: white;
      box-shadow: 0 0 0 4px rgba(41, 102, 147, 0.08);
    }

    .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }

    .submit-button {
      padding: 1.2rem 2.5rem;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(41, 102, 147, 0.2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      background: #296693;
      color: white;
    }

    .submit-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(41, 102, 147, 0.3);
    }

    .submit-button i {
      transition: transform 0.3s ease;
    }

    .submit-button:hover i {
      transform: translateX(3px);
    }

    .map-placeholder {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem 2rem;
      text-align: center;
      min-height: 500px;
      border: 1px solid rgba(0,0,0,0.05);
      background: #bdbdbd;
    }

    .map-icon {
      font-size: 4.5rem;
      margin-bottom: 1.5rem;
      color: #296693;
    }

    .map-placeholder h3 {
      margin-bottom: 1rem;
      font-size: 1.5rem;
      font-weight: 600;
      color: #333;
    }

    .map-placeholder p {
      line-height: 1.8;
      opacity: 0.8;
      color: #333;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 1rem;
      justify-content: center;
    }

    .contact-info-item i {
      font-size: 1.1rem;
    }

    /* Footer */
    .footer {
      background: rgba(6, 25, 70, 0.92);
      color: white;
      padding: 3rem 2rem 1.5rem;
      width: 100%;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.5rem;
    }

    .footer-section a {
      color: #bdbdbd;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-section a:hover {
      color: white;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #9E9E9E;
      opacity: 0.7;
    }

    .success-message {
      padding: 1.25rem 1.5rem;
      border-radius: 12px;
      margin-bottom: 1.5rem;
      display: none;
      border-left: 4px solid white;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      animation: slideIn 0.3s ease;
      background: #296693;
      color: white;
    }

    .success-message.show {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    /* MOBILE MENU */
.mobile-menu {
  width: 100%;
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  max-height: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 500px;
}

.mobile-menu ul {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
}

.mobile-menu ul li {
  padding: 0.8rem 1.5rem;
}

.mobile-menu ul li a {
  font-size: 1rem;
  text-decoration: none;
  color: #296693;
  font-weight: 600;
  display: block;
  padding: 0.5rem 0;
}

.mobile-menu-toggle i {
  color: #296693;
  font-size: 2rem;
}

.mobile-menu-toggle.active i {
  transform: rotate(90deg);
  transition: 0.3s ease;
}


    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Design */
    @media (max-width: 968px) {
      .mobile-menu-toggle {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 280px;
        height: calc(100% - 75px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
      }

      .nav-links.active {
        right: 0;
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        display: block;
        padding: 1rem;
        border-radius: 12px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
      }

      .nav-links a:hover {
        background: rgba(41, 102, 147, 0.1);
        padding-left: 1.5rem;
      }

      .nav-links a::after {
        display: none;
      }

      .hero {
        padding: 5rem 1.5rem;
      }

      .hero h1 {
        font-size: 2.25rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .section {
        padding: 3rem 1.5rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .blog-grid {
        grid-template-columns: 1fr;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .service-tags {
        gap: 0.75rem;
      }

      .service-tag {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
      }
    }

    @media (max-width: 480px) {
      .header-content {
        padding: 1rem 1.5rem;
      }

      .logo {
        font-size: 1.4rem;
      }

      .logo i {
        font-size: 1.6rem;
      }

      .hero h1 {
        font-size: 1.85rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
      }

      .section-title {
        font-size: 1.75rem;
      }
    }

    <style>@view-transition { navigation: auto; }</style>