 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        background: #000;
        color: #fff;
        font-family: "Segoe UI", sans-serif;
      }

      header {
        position: sticky;
        top: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        z-index: 999;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
      }

      .logo {
        display: flex;
        align-items: center;
      }

      .logo img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
      }

      nav {
        display: flex;
        align-items: center;
        gap: 25px;
      }

      nav a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        transition: color 0.3s;
      }

      nav a:hover {
        color: #1976b4;
      }

      .separator {
        height: 20px;
        width: 1px;
        background: #888;
      }

      .icons {
        display: flex;
        align-items: center;
        gap: 15px;
        color: white;
      }

      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
      }

      .hamburger span {
        height: 1.5px;
        width: 18px;
        background: white;
        border-radius: 2px;
      }
      .close {
        display: none;
        /* flex-direction: column;
  gap: 5px; */
        cursor: pointer;
      }
      .close span {
        height: 1px;
        width: 10px;
        background: white;
        border-radius: 2px;
      }
      .close-icon {
        font-size: 25px;
        color: white;
        cursor: pointer;
      }
      .close .active {
        display: flex;
      }

      .nav-item {
        position: relative;
      }

      .has-submenu .submenu {
        position: absolute;
        top: 100%;
        left: 50px;
        border-radius: 5px;
        display: none;
        flex-direction: column;
        min-width: 180px;
        z-index: 999;
      }
      .submenu a {
        font-weight: 300;
      }

      .has-submenu:hover .submenu {
        display: flex;
      }

      .submenu a {
        padding: 0px 20px;
        white-space: nowrap;
        color: white;
        text-decoration: none;
        transition: background 0.3s ease;
      }

      .submenu a:hover {
        /* background: #222; */
      }

      .advertise-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
        overflow: hidden;
        background-color: #000;
      }

      .advertise-section .blur-bg {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-size: cover;
        background-position: center;
        filter: blur(30px);
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: 0;
      }

      .advertise-section .card-container {
        width: 100%;
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        z-index: 1;
      }

      .advertise-section .card {
        width: 250px;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        position: relative;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
        transition: transform 0.3s ease;
        cursor: pointer;
      }

      .card:hover {
        transform: scale(1.15);
      }

      .card-title {
        position: absolute;
        bottom: 30px;
        width: 100%;
        text-align: center;
        color: white;
        font-weight: bold;
        font-size: 1.8rem;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
      }

      /* Tablet: 768px and below */
      @media (max-width: 768px) {
        .advertise-section {
          padding: 40px;
          flex-direction: column;
        }

        .advertise-section .card {
          width: 45%;
          height: 320px;
        }

        .advertise-section .card-title {
          font-size: 1.5rem;
        }
      }

      /* Mobile: 480px and below */
      @media (max-width: 480px) {
        .advertise-section {
          padding: 40px;
        }

        .advertise-section .card {
          width: 100%;
          height: 260px;
        }

        .card-title {
          font-size: 1.3rem;
        }
        
      }

      /* Responsive */
      @media (max-width: 768px) {
        nav {
          position: absolute;
          top: 80px;
          right: 0;
          background: rgba(0, 0, 0, 0.8);
          flex-direction: column;
          align-items: flex-start;
          padding: 20px 10px;
          gap: 15px;
          width: 100%;
          height: 90vh;
          display: none;
        }
        nav a {
          margin: 10px 0;
          padding: 0 20px;
        }

        nav.active {
          display: flex;
        }

        .hamburger {
          display: flex;
        }

        .close {
          display: none;
        }

        nav.active ~ .icons .close {
          display: flex;
        }

        nav.active ~ .icons .hamburger {
          display: none;
        }
        .separator {
          margin: 20px;
        }
        .logo img{
            width:60px;
            height:60px;
        }
      }
      .video-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 400px;
        overflow: hidden;
      }

      .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }

      .awards-section {
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 20px;
        text-align: center;
      }
      .awards-section h1 {
        font-size: 2rem;
        margin-bottom: 20px;
      }
      .awards-section p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 20px;
      }

      .awards-container {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 70px;
        flex-wrap: wrap;
      }

      .awards-container img {
        width: 250px;
        /*height: auto;*/
      }

      .section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 60px 40px;
        gap: 40px;
        max-width: 1200px;
        margin: auto;
        flex-wrap: wrap;
      }

      .text-content {
        flex: 1 1 40%;
      }

      .text-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
      }

      .text-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
      }

      .video-box {
        flex: 1 1 50%;
        position: relative;
      }

      .video-box video {
        width: 100%;
        border-radius: 10px;
        display: block;
      }

      @media (max-width: 768px) {
        .section {
          flex-direction: column;
          padding: 40px 20px;
        }

        .text-content h1 {
          font-size: 2rem;
        }
      }

      .achievements-section {
          width:100%;
        background-color: #1b1b1d;
        color: #e0e0e0;
        font-family: Arial, sans-serif;
        display: flex;
        padding: 40px;
        /* justify-content: space-between; */
        /* align-items: center; */
        flex-wrap: wrap;
      }

      .news-label {
        position: absolute;
        top: 10px;
        left: 10px;
        color: red;
        font-size: 18px;
        display: block;
        margin-bottom: 10px;
      }

      .section-header {
        position: relative;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
      }

      .section-header h2 {
        color: #74f0ff;
        font-size: 28px;
        margin-bottom: 10px;
      }

      .section-intro {
        color: #cfcfcf;
        max-width: 800px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.5;
      }
      /* Slider container */
.logo-slider {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 25px;
    animation: scroll 10s linear infinite;
    flex-shrink: 0;
}

.logo-row img {
    height: 80px;
    padding: 10px;
    border-radius: 4px;
}

.etc-text {
    font-size: 28px;
    color: white;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}




      .etc-text {
        font-size: 28px;
        color: white;
      }

      .achievements-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
      }

      .achievement-item {
        background-color: black;
        padding: 20px;
        border-radius: 8px;
        display: flex;
        gap: 15px;
        align-items: flex-start;
      }

      .achievement-item .icon {
        font-size: 22px;
      }

      .bottom-text {
        margin-top: 30px;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
      }
      @media (max-width: 768px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .achievement-item {
    flex-direction: column; /* icon on top, text below */
    align-items: flex-start;
  }
  .logo-row {
    animation: scroll 5s linear infinite;
}
}

/* Small mobile screens (max 480px) → smaller padding & font */
@media (max-width: 480px) {
  .achievement-item {
    padding: 15px;
  }

  .achievement-item .icon {
    font-size: 18px;
  }

  .bottom-text {
    font-size: 14px;
  }
}

      .news-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
      }

      .news-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
      }

      .news-header h1 {
        font-size: 2.5rem;
        font-weight: bold;
      }

      .news-header a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
      }

      .news-grid {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
      }

      .news-card {
        background-color: #111;
        border-radius: 8px;
        overflow: hidden;
        flex: 1 1 calc(33.333% - 20px);
        position: relative;
        transition: transform 0.3s;
        cursor: pointer;
      }

      .news-card:hover {
        transform: translateY(-5px);
      }

      .news-card .bg-blur {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        filter: blur(20px);
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 0;
      }

      .news-card:hover .bg-blur {
        opacity: 0.3;
      }

      .news-card img {
        width: 100%;
        display: block;
        position: relative;
        z-index: 1;
      }

      .news-content {
        padding: 20px;
        position: relative;
        z-index: 2;
      }

      .news-date {
        font-size: 0.8rem;
        color: #bbb;
        margin-bottom: 10px;
        text-transform: uppercase;
      }

      .news-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 10px;
      }

      .news-description {
        font-size: 0.95rem;
        color: #ccc;
      }

      @media (max-width: 900px) {
        .news-card {
          flex: 1 1 100%;
        }
      }

      .case-studies {
        position: relative;
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
      }

      .case-studies::before {
        content: "";
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        filter: blur(20px);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 0;
      }

      .case-studies.hovered::before {
        opacity: 1;
      }

      .case-studies h2 {
        font-size: 32px;
        margin-bottom: 40px;
        z-index: 1;
        position: relative;
      }

      .case-cards {
        display: flex;
        gap: 20px;
        z-index: 1;
        position: relative;
      }

      .case-cards .card {
        background: #111;
        padding: 20px;
        width: 30%;
        cursor: pointer;
        transition: transform 0.3s;
        border-radius: 10px;
      }

      .case-cards .card:hover {
        transform: translateY(-10px);
      }

      .case-cards .card img {
        width: 100%;
        height: auto;
        border-radius: 10px;
      }

      .case-cards .card h3 {
        margin: 10px 0 5px;
        font-size: 18px;
      }

      .card p {
        font-size: 14px;
        color: #ccc;
      }

      /* Tablet: 768px and below */
      @media (max-width: 768px) {
        .case-cards {
          flex-direction: column;
        }

        .case-cards .card {
          width: 100%;
        }

        .case-studies h2 {
          font-size: 26px;
          text-align: center;
        }

        .case-cards .card h3 {
          font-size: 16px;
        }

        .card p {
          font-size: 13px;
        }
      }

      /* Mobile: 480px and below */
      @media (max-width: 480px) {
        .case-studies {
          padding: 0 10px;
        }

        .case-studies h2 {
          font-size: 22px;
        }

        .case-cards .card {
          padding: 15px;
        }

        .case-cards .card h3 {
          font-size: 15px;
        }

        .card p {
          font-size: 12px;
        }
      }

      .footer {
        background-color: #0f1112;
        padding: 40px 20px;
        text-align: center;
        position: relative;
      }

      .footer .logo {
        margin-bottom: 20px;
      }

      .footer .cities {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 30px;
      }

      .footer .cities a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
      }

      .footer .cities a:hover {
        color: #4e9eff;
      }

      .footer .socials {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
      }

      .footer .socials i {
        font-size: 20px;
        color: white;
        filter: grayscale(100%);
        transition: filter 0.3s;
      }

      .footer .socials img:hover {
        filter: none;
      }

      .footer .links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
        font-size: 14px;
        color: #ccc;
        margin-bottom: 20px;
      }

      .footer .links a {
        color: #ccc;
        text-decoration: none;
      }

      .footer .site-by {
        position: absolute;
        right: 20px;
        bottom: 20px;
        font-size: 14px;
        color: #ccc;
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .footer .site-by .circle {
        background-color: #e5e5e5;
        color: black;
        padding: 4px 8px;
        border-radius: 50%;
        font-size: 12px;
        font-weight: bold;
      }

      @media (max-width: 768px) {
        .footer .site-by {
          position: static;
          margin-top: 20px;
          justify-content: center;
        }
      }