  body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }


      nav {
        background-color: var(--white);
        padding: 15px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 10;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      }

      .logo {
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--primary);
      }

      .nav-links {
        display: flex;
        gap: 25px;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--primary);
        font-weight: 700; /* Bold */
        transition: 0.3s;
        font-size: 16px;
      }

      .nav-links a:hover {
        color: #005999;
      }

      .menu-icon {
        display: none;
        font-size: 24px;
        color: var(--primary);
        cursor: pointer;
      }

      @media (max-width: 768px) {
        .nav-links {
          position: absolute;
          top: 100%;
          left: 0;
          background: var(--white);
          width: 100%;
          flex-direction: column;
          align-items: center;
          max-height: 0;
          overflow: hidden;
          transition: 0.3s ease-in-out;
        }

        .nav-links.active {
          max-height: 300px;
          padding: 10px 0;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .menu-icon {
          display: block;
        }
      }

      .carousel-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
      }

      @media (max-width: 576px) {
        .carousel-item img {
          height: 220px;
        }
      }

      @media (min-width: 577px) and (max-width: 991px) {
        .carousel-item img {
          height: 350px;
        }
      }

      @media (min-width: 992px) {
        .carousel-item img {
          height: 500px;
        }
      }

      /* about start */

      .about-section {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 100px 5%;
        background: linear-gradient(to right, var(--light), var(--white));
        overflow: hidden;
      }

      .about-img {
        flex: 1 1 420px;
        padding: 20px;
        animation: fadeInUp 1s ease forwards;
        opacity: 0;
        position: relative;
      }

      .about-img::before {
        content: "";
        position: absolute;
        top: 30px;
        left: 30px;
        width: 100%;
        height: 100%;
        background: #cce6ff;
        border-radius: 15px;
        z-index: 0;
      }

      .about-img img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1;
        transition: 0.4s ease;
      }

      .about-img img:hover {
        transform: scale(1.04);
        box-shadow: 0 0 35px rgba(0, 102, 204, 0.4);
      }

      .about-content {
        flex: 1 1 520px;
        padding: 20px 40px;
        animation: slideInRight 1s ease forwards;
        opacity: 0;
      }

      .about-content h2 {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 20px;
      }

      .about-content p {
        font-size: 1.15rem;
        color: var(--text-dark);
        line-height: 1.8;
        margin-bottom: 30px;
      }

      .about-content a {
        display: inline-block;
        padding: 14px 32px;
        background-color: var(--primary);
        color: var(--white);
        font-weight: 600;
        font-size: 1rem;
        border-radius: 8px;
        text-decoration: none;
        transition: 0.3s;
      }

      .about-content a:hover {
        background-color: var(--accent);
        transform: translateY(-3px);
      }

      /* Animations */
      @keyframes slideInRight {
        0% {
          transform: translateX(100px);
          opacity: 0;
        }
        100% {
          transform: translateX(0);
          opacity: 1;
        }
      }

      @keyframes fadeInUp {
        0% {
          transform: translateY(40px);
          opacity: 0;
        }
        100% {
          transform: translateY(0);
          opacity: 1;
        }
      }

      @media (max-width: 768px) {
        .about-section {
          flex-direction: column;
          padding: 60px 6%;
          text-align: center;
        }

        .about-img {
          order: 1;
          padding: 10px 0;
          /* flex: 1 1 520px; */
        }

        .about-img::before {
          top: 15px;
          left: 15px;
          width: 100%;
          height: 60%;
        }

        .about-img img {
          border-radius: 12px;
        }

        .about-content {
          order: 2;
          padding: 10px 5px;
        }

        .about-content h2 {
          font-size: 2rem;
          margin-bottom: 16px;
          margin-top: -144px;
        }

        .about-content p {
          font-size: 1rem;
          margin-bottom: 20px;
          line-height: 1.6;
        }

        .about-content a {
          padding: 12px 24px;
          font-size: 0.95rem;
        }
      }

      
      /* about end */

      /* services start */


    .services-heading {
      text-align: center;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 10px;
      position: relative;
      color: #003366;
    }

    .services-heading::after {
      content: '';
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, #003366, #005580);
      display: block;
      margin: 12px auto 0;
      border-radius: 3px;
    }

    .highlight-orange {
      color: #005580;
    }

    .services-subtitle {
      text-align: center;
      color: #555;
      font-size: 16px;
      margin-bottom: 50px;
      max-width: 700px;
      margin-inline: auto;
    }

    .service-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
      max-width: 1200px;
      margin: auto;
    }

    .card-box {
      background-color: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
    }

    .card-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    }

    .card-image {
      position: relative;
    }

    .card-image img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 16px 16px 0 0;
      transition: transform 0.4s ease;
    }

    .card-box:hover .card-image img {
      transform: scale(1.05);
    }

    .card-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: linear-gradient(to right, #003366, #005580);
      color: #fff;
      padding: 7px 16px;
      font-size: 13px;
      font-weight: 600;
      border-radius: 20px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      text-transform: uppercase;
    }

    .card-info {
      padding: 22px;
      animation: fadeInUp 0.6s ease forwards;
    }

    .desc-text {
      margin-bottom: 18px;
      font-size: 15.5px;
      color: #444;
      line-height: 1.7;
    }

    .learn-more {
      color: #003366;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      position: relative;
      display: inline-block;
      transition: color 0.3s ease;
    }

    .learn-more::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0%;
      height: 2px;
      background-color: #003366;
      transition: width 0.3s ease;
    }

    .learn-more:hover {
      color: #005580;
    }

    .learn-more:hover::after {
      width: 100%;
    }

    .cta-button {
      display: block;
      background: linear-gradient(to right, #003366, #005580);
      color: #fff;
      padding: 15px 36px;
      margin: 60px auto 0;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 51, 102, 0.35);
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: linear-gradient(to right, #002244, #004466);
      transform: translateY(-2px) scale(1.03);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

      /* services end */

      /* stp process start */
.section {
        background-color: #e8f9fc;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 60px 8%;
        flex-wrap: wrap;
      }

      .section .text {
        flex: 1;
        min-width: 300px;
      }

      .section .text h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #003366;
      }

      .section .text h3 span {
        color: #003366;
      }

      .section .text p {
        line-height: 1.7;
        /* font-size: 15px; */
        margin-bottom: 10px;
      }

      .section .text p strong {
        color: #003366;
      }

      .section .image {
        flex: 1;
        text-align: center;
        min-width: 280px;
      }

      .section .image img {
        width: 300px;
        height: 300px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      }

      .cta-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 70px 8%;
        flex-wrap: wrap;
      }

      .cta-text {
        flex: 1;
        min-width: 300px;
      }

      .cta-text h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #003366;
      }

      .cta-text p {
        /* font-size: 14px; */
        color: #444;
        margin-bottom: 15px;
        line-height: 1.6;
      }

      .cta-text ul {
        padding-left: 18px;
        margin-bottom: 25px;
        color: #003366;
      }

      .cta-text ul li {
        margin-bottom: 8px;
        /* font-size: 14.5px; */
      }

      .cta-btn {
        background-color: #ff6600;
        color: white;
        border: none;
        padding: 12px 26px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
        transition: background 0.3s ease;
      }

      .cta-btn:hover {
        background-color: #e05600;
      }

      .cta-image {
        flex: 1;
        text-align: center;
        min-width: 280px;
      }

      .cta-image img {
        width: 100%;
        max-width: 400px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      }

      @media (max-width: 768px) {
        .section,
        .cta-section {
          flex-direction: column;
          text-align: center;
          padding: 40px 20px;
        }

        .section .image img,
        .cta-image img {
          margin-top: 30px;
        }

        .cta-text {
        flex: 1;
        min-width: 300px;
        margin-top: 20px;
      }
      }


        .main-heading {
        text-align: center;
        padding: 40px 15px 20px;
      }

      .main-heading h3 {
        font-size: 32px;
        color: #003366;
        font-weight: 700;
        position: relative;
        display: inline-block;
        margin-bottom: 10px;
        text-transform: uppercase;
      }

      .main-heading h3 span {
        display: block;
        font-size: 18px;
        font-weight: 500;
        color: #005580;
        margin-top: 5px;
      }

      .main-heading h3::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        border-radius: 2px;
        background: linear-gradient(to right, #003366, #0077b6);
      }
      /* step process end */


      /* contact start */
 .contact-section {
      padding: 80px 20px;
    }

    .contact-container {
      max-width: 650px;
      background: #fff;
      margin: auto;
      padding: 50px 35px;
      border-radius: 18px;
      box-shadow: 0 12px 45px rgba(0, 51, 102, 0.12);
      position: relative;
      z-index: 2;
    }

    .contact-heading {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      color: #003366;
      margin-bottom: 12px;
    }

    .contact-subtitle {
      text-align: center;
      font-size: 15px;
      color: #666;
      margin-bottom: 35px;
    }

    .contact-form .form-group {
      position: relative;
      margin-bottom: 30px;
    }

    .contact-form .form-group i {
      position: absolute;
      top: 50%;
      left: 14px;
      transform: translateY(-50%);
      color: #888;
      font-size: 15px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 16px 16px 16px 40px;
      font-size: 15px;
      border: 1px solid #ccc;
      border-radius: 10px;
      background: #fdfdfd;
      color: #003366;
      outline: none;
      transition: all 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #003366;
      background: #fff;
    }

    .contact-form label {
      position: absolute;
      left: 40px;
      top: 14px;
      font-size: 14px;
      color: #888;
      background: #fff;
      padding: 0 6px;
      transition: 0.3s;
      pointer-events: none;
    }

    .contact-form input:focus + label,
    .contact-form input:not(:placeholder-shown) + label,
    .contact-form textarea:focus + label,
    .contact-form textarea:not(:placeholder-shown) + label {
      top: -10px;
      font-size: 12px;
      color: #003366;
    }

    .contact-btn {
      width: 100%;
      padding: 15px;
      font-size: 16px;
      background: linear-gradient(to right, #003366, #005580);
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(0, 51, 102, 0.25);
      transition: all 0.3s ease;
    }

    .contact-btn:hover {
      background: linear-gradient(to right, #002244, #004466);
      transform: translateY(-2px);
    }

    @media (max-width: 600px) {
      .contact-container {
        padding: 35px 20px;
      }
    }
      /* contact end */

      /* footer start */
    footer {
      background: linear-gradient(135deg, #003366, #005599);
      color: #fff;
      padding: 60px 20px 20px;
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .footer-column {
      flex: 1 1 250px;
      margin: 20px 10px;
    }

    .footer-column h3 {
      margin-bottom: 20px;
      font-size: 22px;
      position: relative;
    }

    .footer-column h3::after {
      content: '';
      width: 40px;
      height: 3px;
      background: #fff;
      position: absolute;
      left: 0;
      bottom: -8px;
    }

    .footer-column p,
    .footer-column a {
      color: #f0f0f0;
      font-size: 15px;
      text-decoration: none;
      margin: 10px 0;
      display: block;
      transition: 0.3s;
    }

    .footer-column a:hover {
      color: #00c6ff;
      transform: translateX(5px);
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .social-icons a {
      color: white;
      font-size: 20px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      color: #00c6ff;
      transform: scale(1.2);
    }

    .scroll-top-btn {
      position: absolute;
      bottom: 30px;
      right: 30px;
      background: #00c6ff;
      color: white;
      border: none;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      font-size: 20px;
      cursor: pointer;
      transition: 0.3s;
    }

    .scroll-top-btn:hover {
      background: #0099cc;
      transform: scale(1.1);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: #ddd;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .scroll-top-btn {
        right: 50%;
        transform: translateX(50%);
      }
    }

    .no-underline {
  text-decoration: none;
  color: inherit; /* optional: keeps the text color consistent */
}


 .icon-3d {
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
      inset -3px -3px 7px rgba(255, 255, 255, 0.1),
      inset 3px 3px 5px rgba(0, 0, 0, 0.3),
      0 4px 15px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    text-decoration: none;
    perspective: 800px;
  }

  .icon-3d:hover {
    transform: rotateY(25deg) rotateX(10deg) scale(1.1);
    box-shadow:
      0 0 20px rgba(0, 0, 0, 0.4),
      0 10px 20px rgba(0, 0, 0, 0.2),
      inset 0 0 10px rgba(255, 255, 255, 0.2);
  }

  .icon-3d.fb {
    background: linear-gradient(145deg, #3b5998, #1d2d50);
  }

  .icon-3d.ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  }

  .icon-3d.wa {
    background: linear-gradient(145deg, #25D366, #128C7E);
  }

  .icon-3d.yt {
    background: linear-gradient(145deg, #FF0000, #9b0000);
  }
      /* footer end */

/* fixed buttons */
  .fixed-icon-wrap {
    position: fixed;
    top: 50%;
    left: -11px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    z-index: 999;
  }

  .fixed-icon-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    color: white;
    border-radius: 12px 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    box-shadow:
      inset -3px -3px 7px rgba(255, 255, 255, 0.1),
      inset 3px 3px 5px rgba(0, 0, 0, 0.3),
      0 4px 15px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
  }

  .fixed-icon-btn:hover {
    transform: rotateY(20deg) scale(1.1);
    box-shadow:
      0 0 20px rgba(0, 0, 0, 0.4),
      0 10px 20px rgba(0, 0, 0, 0.2),
      inset 0 0 10px rgba(255, 255, 255, 0.2);
  }

  .fixed-icon-btn.fb {
    background: linear-gradient(145deg, #3b5998, #1d2d50);
  }

  .fixed-icon-btn.ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  }

  .fixed-icon-btn.wa {
    background: linear-gradient(145deg, #25D366, #128C7E);
  }

  .fixed-icon-btn.yt {
    background: linear-gradient(145deg, #FF0000, #9b0000);
  }
/* fixed button */
