
      @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      body {
        background-color: #f4f7fc;
        padding: 40px 0;
        overflow-x: hidden;
        position: relative;
        min-height: 100vh;
      }

      /* --- 1. The Grid Pattern (Fades out at bottom) --- */
      body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.04) 1px,
            transparent 1px
          ),
          linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
        background-size: 40px 40px;
        z-index: -2;
        pointer-events: none;

        /* The Fade Effect */
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        -webkit-mask-image: linear-gradient(
          to bottom,
          black 60%,
          transparent 100%
        );
      }

      /* --- 2. The Radial Glow Blob --- */
      body::after {
        content: "";
        position: fixed;
        bottom: -10%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(0, 86, 179, 0.15) 0%,
          rgba(255, 255, 255, 0) 70%
        );
        border-radius: 50%;
        z-index: -1;
        pointer-events: none;
      }

      .navbar {
        width: 1240px;
        height: 80px;
        padding: 0px 30px;
        margin: auto;
        background: #fff;
        color: #1c222b;
        border-radius: 16px;
        /* margin-top: 20px; */
        display: flex;
        align-items: center;
        justify-content: space-between;
        opacity: 1;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
      }

      .logo {
        font-weight: 700;
        width: 162px;
      }

      .nav-links {
        list-style: none;
        display: flex;
        gap: 22px;
      }

      .nav-links li {
        position: relative;
      }

      .nav-links a {
        text-decoration: none;
        color: #111;
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
      }

      .nav-links a:hover {
        color: #0fb9e2;
      }

      .navbar button {
        background: #111;
        color: white;
        border: none;
        padding: 10px 18px;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .navbar button:hover {
        background: #0fb9e2;
        font-size: 13.5px;
      }

      .dropdown {
        position: relative;
        display: inline-block;
      }

      .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        min-width: 250px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 10px 0;
        z-index: 1000;
        list-style: none;
        text-align: left;
        transition: all 0.3s ease-in;
      }

      .dropdown-content li a {
        color: #333;
        padding: 12px 20px;
        text-decoration: none;
        display: block;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s ease-in;
        white-space: nowrap;
      }

      .dropdown-content li a:hover {
        background-color: #f0f6fa;
        color: #0da8d1;
      }

      .dropdown:hover .dropdown-content {
        display: block;
      }

      .section-header {
        width: 1240px;
        max-width: 95%;
        margin: 35px auto 30px auto;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .section-header h1 {
        color: #2c3e50;
        font-size: 34px;
        margin-bottom: 10px;
        font-weight: 800;
        text-align: center;
      }

      .section-header p {
        font-size: 16px;
        color: #555;
        max-width: 700px;
        line-height: 1.6;
        text-align: center;
      }

      .brand-name {
        color: #0056b3;
        font-weight: 800;
      }
      .divider {
        width: 60px;
        height: 4px;
        background: linear-gradient(to right, #0056b3, #00a8ff);
        margin-top: 15px;
        border-radius: 3px;
      }

      .projects-section {
        width: 1240px;
        max-width: 95%;
        margin: 50px auto;
      }

      .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
      }

      .card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
      }

      .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
        border-color: #0056b3;
      }

      .image-area {
        width: 100%;
        /* height: 220px; */
        /* overflow: hidden; */
        object-fit: contain;
      }

      .image-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }

      .card:hover .image-area img {
        transform: scale(1.05);
      }

      .card-content {
        padding: 15px;
      }

      .card-title {
        font-size: 20px;
        font-weight: 700;
        color: #1c222b;
        margin-bottom: 8px;
      }

      .card-desc {
        font-size: 14px;
        line-height: 1.5;
        color: #555;
      }

      .card-footer {
        padding: 10px 15px;
        border-top: 1px solid #f5f5f5;
        display: flex;
        justify-content: flex-end;
      }

      .arrow-icon {
        color: #0056b3;
        font-size: 20px;
        transition: transform 0.3s ease;
      }

      .card:hover .arrow-icon {
        transform: translateX(6px);
      }

      .card-link {
        text-decoration: none;
        color: inherit;
        display: block;
      }

      @media (max-width: 900px) {
        .projects-grid {
          grid-template-columns: 1fr;
        }

        .card {
          margin-bottom: 20px;
        }
      }
      #main-footer {
        background: #f9fbfd;
        /* padding: 70px 9% 30px; */
        color: #111;
        margin-bottom: -35px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
        gap: 60px;
        margin-bottom: 40px;
      }

      .footer-col h4 {
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
        margin-bottom: 16px;
      }

      .footer-col li:hover {
        color: #0fb9e2;
      }

      .footer-col p,
      .footer-col li {
        font-size: 16px;
        line-height: 26px;
        color: #000000;
      }

      .footer-col ul {
        list-style: none;
        padding: 0;
      }

      .footer-col li {
        margin-bottom: 8px;
        cursor: pointer;
      }

      .footer-logo {
        width: 160px;
        margin-bottom: 16px;
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
      }

      .contact-item p:hover {
        color: #0fb9e2;
      }

      .social-links {
        display: flex;
        gap: 10px;
        margin-top: 16px;
      }

      .social-links img {
        width: 34px;
        height: 34px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
      }

      .social-links img:hover {
        width: 36px;
        height: 36px;
      }

      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 16px;
        text-align: center;
        font-size: 13px;
        color: #252525;
      }

      @keyframes scrollRightToLeft {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      @keyframes scrollLeftToRight {
        0% {
          transform: translateX(-50%);
        }
        100% {
          transform: translateX(0);
        }
      }

      @media (max-width: 900px) {
        .navbar,
        .section-header,
        .scroll-container {
          width: 100%;
          padding: 0 20px;
        }
      }
      /*
      #start-project {
        padding: 80px 9%;
        background: var(--color-white);
      }

      .start-project-box {
        background: var(--gradient-primary);
        border-radius: var(--radius-lg);
        padding: 60px 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        box-shadow: var(--shadow-lg);
      }

      .start-project-content {
        max-width: 634px;
        color: var(--color-white);
      }

      .start-project-content h2 {
        font-size: 42px;
        line-height: 53px;
        font-weight: 600;
        margin-bottom: 20px;
      }

      .start-project-content p {
        font-size: 20px;
        line-height: 30px;
        color: #e5e7eb;
        margin-bottom: 26px;
        font-family: var(--font-heading);
      }

      .start-btn {
        background: var(--color-white);
        color: var(--color-primary-base);
        border: none;
        padding: 14px 28px;
        border-radius: var(--radius-sm);
        font-size: 18px;
        line-height: 28px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: var(--font-heading);
      }

      .start-btn:hover {
        background: #dbe6f1;
        font-size: 19px;
      }

      .start-project-video {
        background: var(--color-white);
        padding: 21px;
        border-radius: 18px;
      }

      .start-project-video video {
        width: 345px;
        height: 268px;
        border-radius: 12px;
        object-fit: cover;
        display: block;
      }
*/