* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #0f172a, #1e293b);
    color: #fff;
    overflow-x: hidden;
  }
  header {
    background-color: rgba(35, 75, 102, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .logo img {
    height: 40px;
  }
  nav a {
    color: #ffffffdd;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  nav a:hover {
    color: #ffffff;
  }
  .hero {
    padding: 6rem 1.5rem 4rem;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 0 1rem;
  }
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .hero .cta {
    padding: 0.9rem 1.8rem;
    background: #234b66;
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    text-decoration: none;
    display: inline-block;
  }
  .hero .cta:hover {
    background: #2f6c91;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  @media (max-width: 480px) {
    .hero {
      padding: 5rem 1rem 3rem;
    }
    .hero h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1rem;
      margin-bottom: 2rem;
      padding: 0;
    }
    .hero-buttons {
      flex-direction: column;
      width: 100%;
      gap: 0.8rem;
    }
    .hero .cta {
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
      padding: 0.8rem 1.5rem;
    }
  }
  .section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
  }
  .section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  .card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  .card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .cta-section {
    padding: 5rem 2rem;
    background: #0f172a; /* Main background color */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f9d423);
    opacity: 0.8;
  }
  
  .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .cta-content {
    text-align: left;
    position: relative;
    z-index: 2;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #f9d423, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .cta-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    opacity: 0;
  }
  
  .cta-features {
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
  }
  
  .feature:nth-child(2) { animation-delay: 0.5s; }
  .feature:nth-child(3) { animation-delay: 0.6s; }
  
  .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    border-radius: 50%;
    font-size: 0.9rem;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #d4af37;
    color: #0f172a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.7s forwards;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
  }
  
  .cta-button:hover {
    background: #f9d423;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  }
  
  .cta-button .arrow {
    transition: transform 0.3s ease;
    stroke: #0f172a; /* Dark color for the arrow to match text */
  }
  
  .cta-button:hover .arrow {
    transform: translateX(5px);
  }
  
  .cta-image {
    position: relative;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cta-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0.9;
  }
  
  .cta-image:hover .cta-real-image {
    transform: scale(1.03);
    opacity: 1;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
  }

  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Partners Section */
  .partners-section {
    padding: 5rem 2rem;
    background-color: #0f172a;
    overflow: hidden;
  }
  
  .partners-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.8s ease-out;
  }
  
  .partners-section h2.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  
  .partners-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease-out 0.3s;
  }
  
  .partners-section h2.visible::after {
    transform: scaleX(1);
  }
  
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem;
  }
  
  .partner {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out var(--delay, 0s), 
                transform 0.6s ease-out var(--delay, 0s);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 280px;
    position: relative;
  }
  
  .partner.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .partner:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .partner-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    margin: 0;
    height: calc(100% - 40px); /* Account for caption */
  }
  
  .partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    border-radius: 10px;
  }
  
  .partner:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
  }
  
  .partner-caption {
    color: #cbd5e1;
    font-size: 0.95rem;
    text-align: center;
    padding: 0.5rem 0;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.3s ease;
  }
  
  .partner:hover .partner-caption {
    color: #ffffff;
  }
  
  @media (max-width: 1200px) {
    .cta-container {
      gap: 2rem;
    }
    
    .cta-content h2 {
      font-size: 2.2rem;
    }
    
    .cta-text {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 1024px) {
    .cta-container {
      grid-template-columns: 1fr;
      text-align: center;
      max-width: 700px;
    }
    
    .cta-content {
      text-align: center;
    }
    
    .cta-features {
      justify-content: center;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-button {
      margin: 1rem auto 0;
    }
    
    .cta-image {
      max-width: 500px;
      margin: 0 auto;
      min-height: 250px;
    }
    
    .partners-grid {
      gap: 1.25rem;
      padding: 0.5rem;
    }
    
    .partner {
      height: 260px;
      padding: 5px;
    }
    
    .partner-image {
      height: calc(100% - 40px);
    }
  }
  
  @media (max-width: 768px) {
    .cta-section {
      padding: 3rem 1.5rem;
    }
    
    .cta-content h2 {
      font-size: 1.8rem;
      margin-bottom: 1.25rem;
    }
    
    .cta-text {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .cta-features {
      grid-template-columns: 1fr;
      gap: 0.75rem;
      margin: 1.5rem 0;
    }
    
    .cta-button {
      padding: 0.875rem 1.75rem;
      font-size: 1rem;
    }
    
    .cta-image {
      min-height: 200px;
      border-radius: 8px;
    }
    
    .partners-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      padding: 0.5rem;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .partner {
      height: 200px;
      padding: 4px;
      border-radius: 12px;
    }
    
    .partner-image {
      height: calc(100% - 36px);
      padding: 3px;
      border-radius: 8px;
    }
    
    .partner img {
      border-radius: 6px;
    }
    
    .partner-caption {
      font-size: 0.85rem;
      height: 36px;
      padding: 0.25rem 0;
    }
  }
  
  @media (max-width: 480px) {
    .partners-section {
      padding: 3rem 1rem;
    }
    
    .partners-grid {
      grid-template-columns: repeat(2, 1fr);
      max-width: 400px;
      gap: 0.75rem;
      padding: 0.25rem;
    }
    
    .partner {
      height: 160px;
      padding: 3px;
      border-radius: 10px;
    }
    
    .partner-image {
      height: calc(100% - 32px);
      padding: 2px;
      border-radius: 7px;
    }
    
    .partner img {
      border-radius: 5px;
    }
    
    .partner-caption {
      font-size: 0.8rem;
      height: 32px;
      padding: 0.25rem 0;
    }
  }

 
  
  /* Services Section */
  .services-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
  }
  
  .services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .section-subtitle {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
  }
  
  .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f9d423);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
  }
  
  .section-description {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  .service-card.featured .service-icon {
    background: linear-gradient(135deg, #d4af37, #f9d423);
    color: #0f172a;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
  }
  
  .service-card p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
  }
  
  .service-link {
    display: inline-flex;
    align-items: center;
    color: #d4af37;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .service-link:hover {
    color: #f9d423;
  }
  
  .service-link:hover i {
    transform: translateX(5px);
  }
  
  .cta-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #d4af37;
    color: #d4af37;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
  }
  
  .cta-outline:hover {
    background: #d4af37;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
  }
  
  .text-center {
    text-align: center;
  }
  
  /* Responsive adjustments for services */
  @media (max-width: 992px) {
    .services-grid {
      grid-template-columns: 1fr;
      max-width: 600px;
      margin: 0 auto 3rem;
    }
    
    .service-card {
      margin-bottom: 1.5rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .services-section {
      padding: 4rem 1.5rem;
    }
    
    .section-header {
      margin-bottom: 3rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .section-description {
      font-size: 1rem;
    }
  }

/* Core Services Row Custom Styles */
.core-services-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.service-card.core {
  flex: 1 1 280px;
  max-width: 350px;
  background: rgba(35, 75, 102, 0.85);
  border: 1.5px solid #234b66;
  border-radius: 1.2rem;
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  box-shadow: 0 4px 18px rgba(35, 75, 102, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card.core:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(35, 75, 102, 0.18);
}
.service-card.core .service-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1.2rem;
}
.service-card.core h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.service-card.core p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.core-link {
  display: inline-block;
  background: linear-gradient(90deg, #234b66, #2f6c91);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(35, 75, 102, 0.08);
}
.core-link:hover {
  background: linear-gradient(90deg, #d4af37, #f9d423);
  color: #234b66;
}
.core-view-all {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1 1 280px;
  min-width: 280px;
  max-width: 350px;
}
.core-view-all-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(35, 75, 102, 0.85);
  border: 1.5px solid #234b66;
  border-radius: 1.2rem;
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  box-shadow: 0 4px 18px rgba(35, 75, 102, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  flex: 1 1 280px;
  min-width: 280px;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  justify-content: center;
  height: 100%;
}
.core-view-all-card:hover {
  box-shadow: 0 12px 32px 0 rgba(212, 175, 55, 0.18), 0 2px 8px rgba(35, 75, 102, 0.12);
  transform: translateY(-6px) scale(1.04);
}
.core-view-all-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 4px 12px #d4af3740);
  transition: filter 0.3s, transform 0.3s;
  will-change: filter, transform;
}
.core-view-all-card:hover .core-view-all-img {
  filter: drop-shadow(0 8px 24px #d4af37cc) brightness(1.1);
  transform: scale(1.08) rotate(-2deg);
}
.core-view-all-btn {
  margin-top: 0.5rem;
  min-width: 160px;
}
.core-view-all-btn {
  background: none;
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 180px;
  text-align: center;
}
.core-view-all-btn:hover {
  background: #d4af37;
  color: #234b66;
  border-color: #234b66;
}
@media (max-width: 900px) {
  .core-services-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .core-view-all-card, .core-view-all {
    min-width: 180px;
    max-width: 100%;
    padding: 1.5rem 0.8rem 1.2rem 0.8rem;
    height: auto;
  }
}