    *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #f8fafc;
      color: #1e293b;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: 92%;
      max-width: 1280px;
      margin: auto;
    }

    @keyframes floaty {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .floaty {
      animation: floaty 5s ease-in-out infinite;
    }

    .fade-up {
      animation: fadeUp 0.9s ease-out both;
    }

    .btn {
      display: inline-block;
      padding: 12px 18px;
      border-radius: 14px;
      font-weight: 700;
      transition: 0.3s;
    }

    .btn-primary {
      background: #fbbf24;
      color: #0f172a;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: #fcd34d;
    }

    .btn-outline {
      background: rgba(255,255,255,0.08);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.18);
    }

    .btn-outline:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.14);
    }

    header {
      position: sticky;
      top: 0;
      z-index: 999;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      background: rgba(2, 6, 23, 0.85);
      backdrop-filter: blur(12px);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      gap: 20px;
    }

   .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-text h3 {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
}

.logo-text p {
  font-size: 12px;
  color: #cbd5e1;
  margin: 0;
}
    .logo-text h3 {
      font-size: 14px;
      color: #fff;
      letter-spacing: 0.5px;
    }

    .logo-text p {
      font-size: 12px;
      color: #cbd5e1;
    }

    nav {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    nav a {
      color: #e2e8f0;
      font-size: 14px;
      font-weight: 600;
      transition: 0.3s;
    }

    nav a:hover {
      color: #fbbf24;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #020617, #172554, #1d4ed8);
      color: white;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      top: -80px;
      right: -80px;
      background: rgba(251,191,36,0.18);
      filter: blur(20px);
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      bottom: -70px;
      left: -70px;
      background: rgba(96,165,250,0.18);
      filter: blur(20px);
    }

    .hero-content {
      min-height: 88vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      padding: 80px 0;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-block;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      color: #fcd34d;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .hero-text h1 {
      margin-top: 24px;
      font-size: 60px;
      line-height: 1.1;
      font-weight: 900;
    }

    .hero-text h1 span {
      color: #fbbf24;
      display: block;
    }

    .hero-text p {
      margin-top: 24px;
      max-width: 600px;
      color: #e2e8f0;
      font-size: 18px;
      line-height: 1.8;
    }

    .hero-buttons {
      margin-top: 30px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-card {
      position: relative;
      border-radius: 32px;
      padding: 16px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
      backdrop-filter: blur(12px);
    }

    .hero-slider {
      position: relative;
      width: 100%;
      height: 480px;
      overflow: hidden;
      border-radius: 24px;
    }

    .hero-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.7s ease-in-out;
      will-change: transform;
    }

    .hero-slide {
      min-width: 100%;
      height: 100%;
      flex-shrink: 0;
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,23,42,0.28), rgba(15,23,42,0.06));
      pointer-events: none;
    }

    .hero-dots {
      position: absolute;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 5;
    }

    .hero-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: none;
      background: rgba(255,255,255,0.45);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .hero-dot.active {
      width: 28px;
      background: #fbbf24;
    }

    .since-box {
      position: absolute;
      left: 24px;
      bottom: 24px;
      background: #fff;
      color: #0f172a;
      padding: 18px 22px;
      border-radius: 18px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    }

    .since-box h3 {
      font-size: 34px;
      color: #172554;
      font-weight: 900;
    }

    .since-box p {
      font-size: 14px;
      color: #64748b;
    }

    section {
      padding: 96px 0;
    }

    .about-grid,
    .contact-grid,
    .info-cards,
    .services-grid,
    .projects-grid,
    .stats-grid,
    .footer-grid {
      display: grid;
      gap: 24px;
    }

    .about-grid,
    .contact-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .about-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 32px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.14);
    }

    .about-badge {
      position: absolute;
      right: 24px;
      bottom: -20px;
      background: #fff;
      padding: 24px;
      border-radius: 24px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .about-badge h3 {
      color: #172554;
      font-size: 28px;
      font-weight: 900;
    }

    .about-badge p,
    .about-text p {
      color: #64748b;
    }

    .about-text .mini-title,
    .section-head .mini-title,
    .projects-intro .mini-title,
    .contact-box .mini-title {
      color: #f59e0b;
      font-weight: 800;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 3px;
    }

    .about-text h2,
    .section-head h2,
    .projects-intro h2,
    .contact-box h2 {
      margin-top: 12px;
      font-size: 46px;
      font-weight: 900;
      color: #0f172a;
    }
    .logo-container { display: flex; align-items: center; gap: 10px; }

    .about-text p,
    .section-head p,
    .projects-intro p,
    .contact-box p,
    .card p,
    .service-card p,
    .project-card p,
    .footer-grid p,
    .footer-grid a {
      color: #64748b;
      line-height: 1.9;
    }

    .about-text p {
      margin-top: 18px;
    }

    .section-head {
      max-width: 760px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .info-cards {
      margin-top: 28px;
      grid-template-columns: repeat(3, 1fr);
    }

    .services-section {
      background: #f1f5f9;
    }

    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .projects-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
      padding: 56px 0;
    }

    .card,
    .service-card,
    .project-card,
    .stat-card,
    .contact-box,
    .form-box {
      background: #fff;
      border-radius: 28px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }

    .card,
    .service-card,
    .contact-box,
    .form-box {
      padding: 28px;
    }

    .card h4,
    .service-card h3,
    .project-card h3,
    .contact-box h2 {
      color: #0f172a;
      font-weight: 800;
    }

    .service-number {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      font-weight: 900;
      font-size: 22px;
      color: #0f172a;
      background: linear-gradient(135deg, #fcd34d, #fbbf24);
    }

    .projects-top {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 20px;
      margin-bottom: 52px;
    }

    .projects-intro {
      max-width: 650px;
    }

    .project-card {
      overflow: hidden;
      transition: 0.35s;
    }

    .project-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 22px 40px rgba(0,0,0,0.12);
    }

    .project-card img {
      width: 100%;
      height: 290px;
      object-fit: cover;
      transition: 0.5s;
    }

    .project-card:hover img {
      transform: scale(1.08);
    }

    .project-content {
      padding: 28px;
    }

    .project-label {
      color: #f59e0b;
      font-size: 12px;
      letter-spacing: 2px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .stats-section {
      background: linear-gradient(90deg, #172554, #020617);
      color: white;
    }

    .stat-card {
      padding: 30px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(6px);
      text-align: center;
      color: white;
    }

    .stat-card h3 {
      color: #fbbf24;
      font-size: 42px;
      font-weight: 900;
    }

    .stat-card p {
      margin-top: 10px;
      color: #e2e8f0;
    }

    .contact-info {
      margin-top: 24px;
      display: grid;
      gap: 14px;
    }

    .contact-info span {
      color: #0f172a;
      font-weight: 800;
    }

    .form-box {
      background: #0f172a;
      color: white;
      box-shadow: 0 18px 35px rgba(0,0,0,0.18);
    }

    .form-box input,
    .form-box textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.08);
      color: white;
      padding: 16px 18px;
      border-radius: 18px;
      outline: none;
      margin-bottom: 16px;
      font-size: 15px;
    }

    .form-box input::placeholder,
    .form-box textarea::placeholder {
      color: #cbd5e1;
    }

    .form-box textarea {
      min-height: 150px;
      resize: vertical;
    }

    footer {
      background: #020617;
      color: #cbd5e1;
    }

    .footer-grid h3,
    .footer-grid h4 {
      color: white;
      margin-bottom: 16px;
    }

    .footer-links a {
      display: block;
      margin-bottom: 10px;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #fbbf24;
    }

    .copyright {
      border-top: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      padding: 20px 0;
      color: #94a3b8;
      font-size: 14px;
    }

    @media (max-width: 1100px) {
      .hero-content,
      .about-grid,
      .contact-grid,
      .services-grid,
      .projects-grid,
      .stats-grid,
      .footer-grid,
      .info-cards {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 860px) {
      nav {
        display: none;
      }

      .hero-content,
      .about-grid,
      .contact-grid,
      .services-grid,
      .projects-grid,
      .stats-grid,
      .footer-grid,
      .info-cards {
        grid-template-columns: 1fr;
      }

      .projects-top {
        flex-direction: column;
        align-items: start;
      }

      .hero-text h1,
      .about-text h2,
      .section-head h2,
      .projects-intro h2,
      .contact-box h2 {
        font-size: 36px;
      }

      .hero-slider {
        height: 360px;
      }

      .about-image img {
        height: 380px;
      }
    }

    @media (max-width: 560px) {
      .hero-text h1,
      .about-text h2,
      .section-head h2,
      .projects-intro h2,
      .contact-box h2 {
        font-size: 30px;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        text-align: center;
      }
    }