 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #1a2c3e;
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* BRAND COLORS */
    :root {
      --navy: #0B3C6D;
      --navy-dark: #062A4A;
      --navy-light: #1a5a8a;
      --gold: #C69214;
      --gold-dark: #a87a0f;
      --gold-light: #e6bc5c;
      --gray: #666666;
      --gray-light: #f8f9fc;
      --gray-border: #eef2f6;
      --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
      --shadow-md: 0 8px 24px rgba(0,0,0,0.05);
      --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
      --shadow-xl: 0 30px 60px rgba(0,0,0,0.12);
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 3rem;
    }

    h1, h2, h3 {
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      color: var(--navy);
      position: relative;
      display: inline-block;
    }

    h2:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 3px;
    }

    .section-subhead {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 700px;
      margin-bottom: 3rem;
      line-height: 1.6;
    }

    /* Premium Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      text-decoration: none;
      font-size: 0.9rem;
      cursor: pointer;
      border: none;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: white;
      box-shadow: 0 8px 20px rgba(198,146,20,0.25);
    }

    .btn-primary:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s ease;
    }

    .btn-primary:hover:before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(198,146,20,0.35);
    }

    .btn-outline {
      border: 2px solid var(--navy);
      color: var(--navy);
      background: transparent;
    }

    .btn-outline:hover {
      background: var(--navy);
      color: white;
      transform: translateY(-3px);
    }

    /* Header with Logo */
    header {
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(12px);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 1px 0 rgba(0,0,0,0.03);
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 2rem;
      max-width: 1450px;
      margin: 0 auto;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .logo-img {
      height: 100px;
      width: auto;
      object-fit: contain;
    }

    .logo-text h1 {
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
    }
    .logo-text span {
      color: var(--gold);
    }
    .tagline-small {
      font-size: 0.65rem;
      color: var(--gray);
      letter-spacing: 0.5px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: #2c3e50;
      font-weight: 500;
      transition: color 0.2s;
      font-size: 0.9rem;
    }

    .nav-links a:hover, .nav-links a.active {
      color: var(--gold);
    }

    .mobile-menu {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--navy);
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 90vh;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #3A8FD0 0%, #1E6BA0 100%);
      z-index: 0;
    }
    
    .hero-bg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&h=900&fit=crop') center/cover;
      opacity: 0.5;
      mix-blend-mode: normal; /* Removed overlay blend mode */
      filter: brightness(1.1); /* Makes image itself brighter */
    }

    .floating-shape {
      position: absolute;
      background: rgba(198,146,20,0.1);
      border-radius: 50%;
      filter: blur(60px);
      z-index: 1;
    }
    .shape1 { width: 300px; height: 300px; top: 20%; right: 10%; animation: float 8s ease-in-out infinite; }
    .shape2 { width: 200px; height: 200px; bottom: 20%; left: 5%; animation: float 6s ease-in-out infinite reverse; }
    @keyframes float {
      0%, 100% { transform: translateY(0) translateX(0); }
      50% { transform: translateY(-30px) translateX(20px); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      height: 90vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 3rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .hero-content h1 {
      font-size: 4.5rem;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      color: white;
      opacity: 0;
      transform: translateY(40px);
    }
    .hero-content p {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.9);
      max-width: 550px;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(30px);
    }
    .hero-content .btn-group {
      opacity: 0;
      transform: translateY(20px);
    }

    /* Stats Cards */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1100px;
      margin: -50px auto 0;
      position: relative;
      z-index: 10;
      padding: 0 2rem;
    }
    .stat-card {
      background: white;
      padding: 2rem;
      border-radius: 1.5rem;
      box-shadow: var(--shadow-xl);
      text-align: center;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      opacity: 0;
      transform: translateY(30px);
    }
    .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 50px rgba(0,0,0,0.15);
    }
    .stat-card i { font-size: 2.2rem; color: var(--gold); margin-bottom: 0.8rem; }
    .stat-card h3 { font-size: 2rem; color: var(--navy); margin: 0.5rem 0; }

    /* Page Sections */
    .page-section {
      padding: 6rem 0;
      position: relative;
    }
    .bg-light { background-color: var(--gray-light); }

    /* Service Cards */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin: 2rem 0;
    }
    .service-card {
      background: white;
      padding: 2rem 1.5rem;
      border-radius: 1.25rem;
      transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      border: 1px solid var(--gray-border);
      position: relative;
      overflow: hidden;
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }
    .service-card:hover::after {
      transform: scaleX(1);
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }
    .service-card i { font-size: 2.2rem; color: var(--gold); margin-bottom: 1rem; display: inline-block; }
    .service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--navy); }
    .service-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

    /* Value Section */
    .value-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: 2rem;
      padding: 4rem;
      color: white;
      text-align: center;
      margin: 3rem 0;
      position: relative;
      overflow: hidden;
    }
    .value-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(198,146,20,0.2), transparent);
      border-radius: 50%;
    }
    .value-section h3 { font-size: 2rem; margin-bottom: 1rem; }
    .value-section p { max-width: 700px; margin: 0 auto 1.5rem; opacity: 0.9; }

    /* Industries Chips */
    .industries-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin: 2rem 0;
    }
    .industry-chip {
      padding: 0.8rem 1.8rem;
      background: white;
      border-radius: 50px;
      border: 1px solid var(--gray-border);
      font-weight: 500;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .industry-chip:hover {
      background: var(--gold);
      color: white;
      transform: translateY(-3px);
      border-color: var(--gold);
    }

    /* Reasons Grid */
    .reasons-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin: 2rem 0;
    }
    .reason-card {
      background: white;
      padding: 2rem;
      border-radius: 1.25rem;
      text-align: center;
      transition: all 0.4s ease;
      border: 1px solid var(--gray-border);
    }
    .reason-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--gold-light);
    }
    .reason-card i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }

    /* Pillars Grid */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin: 2rem 0;
    }
    .pillar-card {
      background: white;
      padding: 2rem;
      border-radius: 1.25rem;
      text-align: center;
      box-shadow: var(--shadow-md);
      transition: all 0.4s ease;
    }
    .pillar-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    /* Contact Section */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
    .contact-form {
      background: white;
      padding: 2.5rem;
      border-radius: 1.5rem;
      box-shadow: var(--shadow-lg);
    }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 1rem;
      border: 1px solid var(--gray-border);
      border-radius: 0.8rem;
      margin-bottom: 1rem;
      transition: all 0.3s;
    }
    .contact-form input:focus, .contact-form textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(198,146,20,0.1);
    }
    .office-card {
      background: linear-gradient(135deg, var(--navy), var(--navy-dark));
      padding: 2.5rem;
      border-radius: 1.5rem;
      color: white;
    }

    footer {
      background: var(--navy-dark);
      color: white;
      padding: 3rem 0 2rem;
    }
     /* Footer hover effects */
  .social-icons a:hover {
    background: var(--gold) !important;
    transform: translateY(-3px);
  }
  
  .social-icons a {
      text-decoration: none;
  }
  
  footer ul li a:hover {
    opacity: 1 !important;
    color: var(--gold) !important;
  }

    @media (max-width: 1024px) {
      .services-grid, .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .services-grid, .reasons-grid, .pillars-grid, .contact-grid, .stats-row { grid-template-columns: 1fr; }
      .hero-content h1 { font-size: 2.5rem; }
      h2 { font-size: 2rem; }
      .container { padding: 0 1.5rem; }
      .nav-links { display: none; flex-direction: column; background: white; position: absolute; top: 70px; left: 0; width: 100%; padding: 1.5rem; box-shadow: var(--shadow-md); }
      .nav-links.show { display: flex; }
      .mobile-menu { display: block; }
      .logo-img { height: 40px; }
      .logo-text h1 { font-size: 1rem; }
    }