* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: radial-gradient(circle at 10% 20%, #0a0f1e, #020617);
      color: #f0f3fa;
      line-height: 1.5;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
    }
    ::-webkit-scrollbar-track {
      background: #0f172a;
    }
    ::-webkit-scrollbar-thumb {
      background: #38bdf8;
      border-radius: 8px;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 24px;
    }

    /* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 40px;
      position: fixed;
      width: 100%;
      background: rgba(2, 6, 23, 0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(56, 189, 248, 0.2);
      z-index: 1100;
      transition: all 0.3s;
    }
    .logo {
      font-size: 26px;
      font-weight: 800;
      background: linear-gradient(135deg, #38bdf8, #818cf8);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.5px;
    }
    .nav-links {
      display: flex;
      gap: 32px;
    }
    .nav-links a {
      text-decoration: none;
      color: #e2e8f0;
      font-weight: 500;
      transition: 0.2s;
      font-size: 1rem;
      cursor: pointer;
    }
    .nav-links a:hover, .nav-links a.active-page {
      color: #38bdf8;
      border-bottom: 2px solid #38bdf8;
      padding-bottom: 4px;
    }
    .nav-btn {
      background: linear-gradient(95deg, #2563eb, #38bdf8);
      border: none;
      padding: 10px 24px;
      border-radius: 40px;
      font-weight: 600;
      cursor: pointer;
      color: white;
      transition: 0.2s;
    }
    .nav-btn:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 18px rgba(56,189,248,0.3);
    }
    .menu-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
      color: white;
    }

    /* Buttons */
    button, .btn-like {
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      border: none;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      color: white;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 20px -8px #2563eb70;
    }

    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      gap: 50px;
      min-height: 90vh;
      padding-top: 120px;
      position: relative;
    }
    .hero-text h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.2;
      background: linear-gradient(to right, #ffffff, #94a3f8);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 20px;
    }
    .hero-text p {
      color: #cbd5e1;
      font-size: 1.2rem;
      margin-bottom: 30px;
    }
    .hero-badges {
      display: flex;
      gap: 24px;
      margin-top: 28px;
      flex-wrap: wrap;
    }
    .hero-badges span {
      background: rgba(56,189,248,0.12);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 0.9rem;
      font-weight: 500;
      backdrop-filter: blur(4px);
    }
    .hero-img img {
      width: 100%;
      border-radius: 28px;
      box-shadow: 0 25px 40px -12px rgba(0,0,0,0.5);
      border: 1px solid rgba(56,189,248,0.3);
      max-width: 480px;
    }
    
    /* Stats */
    .stats {
      display: flex;
      justify-content: space-around;
      text-align: center;
      gap: 20px;
      background: rgba(15, 23, 42, 0.6);
      border-radius: 60px;
      margin: 0 24px 40px;
      padding: 36px 20px;
      backdrop-filter: blur(8px);
      flex-wrap: wrap;
    }
    .stats h2 {
      font-size: 2.5rem;
      color: #38bdf8;
    }
    
    /* Section Titles */
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 48px;
      letter-spacing: -0.02em;
    }
    
    /* Service Grid */
    .service-grid, .portfolio-grid, .pricing-flex {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
    }
    .card {
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(56,189,248,0.2);
      border-radius: 28px;
      padding: 32px 24px;
      transition: all 0.25s ease;
      text-align: center;
    }
    .card i {
      font-size: 40px;
      color: #38bdf8;
      margin-bottom: 20px;
    }
    .card h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
    }
    .card p {
      color: #b9c7dd;
    }
    .card:hover {
      transform: translateY(-8px);
      border-color: #38bdf8;
      box-shadow: 0 25px 35px -12px rgba(0,0,0,0.4);
      background: rgba(56,189,248,0.05);
    }
    
    /* Portfolio Items - Clickable Links */
    .portfolio-item {
      background: rgba(0,0,0,0.3);
      border-radius: 28px;
      overflow: hidden;
      transition: 0.25s;
      cursor: pointer;
      text-decoration: none;
      display: block;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .portfolio-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform 0.4s ease;
      display: block;
    }
    .portfolio-item:hover img {
      transform: scale(1.05);
    }
    .portfolio-item:hover {
      border-color: #38bdf8;
    }
    .portfolio-info {
      padding: 20px;
      background: rgba(2,6,23,0.7);
      text-align: center;
    }
    .portfolio-info h4 {
      font-size: 1.3rem;
      color: #f1f5f9;
    }
    .portfolio-info p {
      color: #94a3b8;
      margin-top: 6px;
    }
    
    /* Pricing Cards */
    .price-card {
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(10px);
      border-radius: 32px;
      padding: 36px 24px;
      text-align: center;
      transition: 0.2s;
      border: 1px solid rgba(56,189,248,0.2);
    }
    .price-card.featured {
      border: 2px solid #38bdf8;
      background: linear-gradient(145deg, rgba(56,189,248,0.1), rgba(37,99,235,0.05));
    }
    .price-card h3 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #38bdf8;
    }
    .price-card ul {
      list-style: none;
      margin: 24px 0;
    }
    .price-card li {
      margin: 12px 0;
      color: #cbd5e6;
    }
    .price-card button {
      margin-top: 12px;
    }
    
    /* Testimonial */
    .testimonial {
  text-align: center;
  background: rgba(0,0,0,0.4);
  margin: 40px 24px;
  padding: 80px 20px;
  border-radius: 60px;
}

.testimonial h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.testimonial p {
  font-size: 1.3rem;
  opacity: 0.9;
}
    
    /* Contact Form */
    form {
      max-width: 540px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    input, textarea {
      background: #0f172a;
      border: 1px solid #334155;
      padding: 14px 18px;
      border-radius: 40px;
      color: white;
      font-size: 1rem;
      outline: none;
      transition: 0.2s;
    }
    input:focus, textarea:focus {
      border-color: #38bdf8;
    }
    textarea {
      border-radius: 24px;
      resize: vertical;
    }
    
    /* Footer */
    footer {
  background: #010409;
  padding: 48px 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  border-top: 1px solid #1e293b;
}
    .footer-col h3, .footer-col h4 {
      margin-bottom: 14px;
    }
    .footer-col p, .footer-col i {
      color: #94a3b8;
      margin: 8px 0;
      cursor: pointer;
      transition: 0.2s;
    }
    .footer-col p:hover {
      color: #38bdf8;
    }
    .social-icons i {
      font-size: 24px;
      margin-right: 18px;
      transition: 0.2s;
      cursor: pointer;
    }
    .social-icons i:hover {
      color: #38bdf8;
      transform: translateY(-3px);
    }
    .footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  font-size: 14px;
}

    /* WhatsApp Float */
    .whatsapp {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: #25D366;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.4);
      transition: 0.2s;
      z-index: 999;
      color: white;
      text-decoration: none;
    }
    .whatsapp:hover {
      transform: scale(1.08);
    }
    
    /* Page Management */
    .hidden-page {
      display: none !important;
    }
    .active-page-content {
      display: block !important;
      animation: fadeIn 0.4s ease;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Leadership Team Styles */
    .leadership-section {
      margin-top: 60px;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-top: 30px;
    }
    .team-card {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      border-radius: 32px;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid rgba(56,189,248,0.2);
      text-align: center;
    }
    .team-card:hover {
      transform: translateY(-8px);
      border-color: #38bdf8;
      box-shadow: 0 20px 35px -12px rgba(56,189,248,0.2);
    }
    .team-img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      object-position: top center;
      display: block;
      border-bottom: 2px solid rgba(56,189,248,0.3);
    }
    .team-info {
      padding: 24px 20px 30px;
    }
    .team-info h3 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: #38bdf8;
    }
    .team-title {
      font-size: 1rem;
      font-weight: 600;
      color: #a0aec0;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }
    .team-bio {
      color: #cbd5e6;
      font-size: 0.9rem;
      line-height: 1.5;
      margin-top: 12px;
    }
    .team-social {
      margin-top: 18px;
      display: flex;
      justify-content: center;
      gap: 18px;
    }
    .team-social i {
      font-size: 1.4rem;
      color: #94a3b8;
      transition: 0.2s;
      cursor: pointer;
    }
    .team-social i:hover {
      color: #38bdf8;
      transform: translateY(-2px);
    }
    
    /* About detail styling */
    .about-detail {
      background: rgba(255,255,255,0.03);
      border-radius: 32px;
      padding: 40px;
      margin-top: 20px;
    }
    .mission-vision {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 40px;
    }
    .mission-card {
      background: rgba(255,255,255,0.05);
      padding: 30px;
      border-radius: 32px;
      flex: 1;
      min-width: 220px;
      text-align: center;
    }
    .mission-card i {
      font-size: 42px;
      color: #38bdf8;
      margin-bottom: 16px;
    }
    
    /* Responsive */
    @media (max-width: 850px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
     .hero-text{
      margin-top: 10px;
     }
      .navbar {
    padding: 14px 20px;
  }
      .nav-links {
        display: none;
        flex-direction: column;
        background: #0f172ae6;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: 28px;
        border-radius: 28px;
        gap: 20px;
        backdrop-filter: blur(16px);
        width: 200px;
        text-align: center;
        border: 1px solid #2d3a5e;
      }
       .nav-btn {
    display: none; /* hide on mobile */
  }
      .nav-links.active {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
      .stats {
        flex-direction: column;
        border-radius: 40px;
      }
      .section-title {
        font-size: 2rem;
      }
      .hero-text h1 {
        font-size: 2.5rem;
      }
      .container {
        padding: 60px 20px;
      }
      .team-img {
        height: 280px;
      }
       footer {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .footer-col {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
    }