/* ============================================
   MODERN STARTUP WEBSITE THEME
   ============================================ */

/* Design Tokens */
:root {
  --primary-gradient: linear-gradient(135deg, #2D1B5E 0%, #E91E63 100%);
  --dark-bg: #1A0033;
  --navy-bg: #2D1B5E;
  --white-bg: #FFFFFF;
  --light-gray: #F5F5F5;
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --accent-pink: #E91E63;
  --accent-red: #FF1744;
  --button-dark: #2D1B5E;
  --border-color: #E0E0E0;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white-bg);
  line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  background: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span {
  width: 16px;
  height: 16px;
  background: var(--button-dark);
  border-radius: 3px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  color: var(--accent-pink);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  padding: 0.5rem 0;
  margin-top: 1rem;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--accent-pink);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--primary-gradient);
  color: white;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: var(--accent-pink);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* ============================================
   SECTION DIVIDER
   ============================================ */
.divider {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -30px auto;
  position: relative;
  z-index: 10;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-header {
  width: 100%;
  background: white;
  padding: 3rem 2rem;
  text-align: center;
}

.features-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color:#ff0a2b;
;
}

.features-grid {
  width: 100%;
  background: var(--navy-bg);
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 100%;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  color:white;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  background: var(--white-bg);
  padding: 4rem 2rem;
}

.content-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.content-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  transition: var(--transition);
}

.content-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.content-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.content-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-item p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================
   ICON CARDS
   ============================================ */
.icon-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.icon-card {
  background: var(--navy-bg);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(45, 27, 94, 0.2);
}

.icon-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.icon-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.icon-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-bg);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1rem 0;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    padding: 1rem 1.5rem;
    display: block;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav-item.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    transform: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .icon-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .content-section {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .features-header h2 {
    font-size: 1.8rem;
  }

  .nav-menu {
    padding: 0.5rem 0;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .icon-cards {
    grid-template-columns: 1fr;
  }
}
nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
}

.nav-logo img {
    height: 50px;           /* perfect navbar height */
    width: 180px;            /* keep aspect ratio */
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.clients-info-section {
    background: linear-gradient(135deg, #2b1b5a 0%, #c61d5c 100%);
    padding: 4.5rem 2rem;
    color: #ffffff;
}

.clients-info-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.clients-info-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.clients-info-intro {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.clients-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.clients-info-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(6px);
}

.clients-info-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.clients-info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}
































.checks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.check-card {
    background: #fff;
    padding: 2.5rem 1.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.check-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

/* 🔵 ICON CIRCLE */
.check-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #007acc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 1rem; /* pulls icon upward */
    background: #fff;
}

.check-icon i {
    font-size: 32px;
    color: #007acc;
}

.check-card h4 {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.check-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0.75rem 0 1.5rem;
}

.select-pay-btn {
    background: #007acc;
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.select-pay-btn:hover {
    background: #005fa3;
}




.check-icon {
    background: #007acc;
}

.check-icon i {
    color: #fff;
}













/* Social Icons Container */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

/* Individual Icon */
.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effect */
.social-icons a:hover {
    background: #ffffff;
    color: #0a3d62;
    transform: translateY(-3px);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }
}
