/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
section {
  width: 100%;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 15px;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
}

/* Header */
.site-header {
  width: 100%;
  background-color: #3c3c3c;
  padding: 12px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.logo {
  height: 40px;
}

.company-name {
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  color: white;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ddd;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* responsiv toggle */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #333;
  color: white;
  
}

.logo {
  font-size: 1.5rem;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #444;
    padding: 10px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }
}

/* Media Queries */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 15px;
  }

  .company-name {
    font-size: 0.8rem;
  }
}

/* Hide nav by default on mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #3c3c3c;
    position: absolute;
    right: 20px;
    top: 60px;
    padding: 10px;
    width: 200px;
    border: 1px solid #555;
    z-index: 1000;
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 28px;
  }
}


@media (max-width: 480px) {
  .company-name {
    font-size: 0.75rem;
  }

  .logo {
    height: 35px;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }
}
.alfa-slab-one-regular {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-style: normal;
}
.luckiest-guy-regular {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-style: normal;
}
.gravitas-one-regular {
  font-family: "Gravitas One", serif;
  font-weight: 400;
  font-style: normal;
}
.paprika-regular {
  font-family: "Paprika", system-ui;
  font-weight: 400;
  font-style: normal;
}


/* Hero Section */
.hero-banner {
  background-color: #062d64;
  color: white;
  width: 100%;
  min-height: 70vh;
  padding: 90px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 0 !important;
}


.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero-banner h1 {
  font-size: 4.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #e2e2e2;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner p {
    font-size: 1rem;
  }
}
.why-join {
  background-color: #f8f9fb;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 50px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.card {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 350px;
  min-height: 250px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 32px;
  background-color: #ffa726;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card p {
  font-size: 18px;
  font-weight: 600;
  color: #0a1f44;
  margin: 0;
  line-height: 1.5;
}

.card p span {
  color: #0a1f44;
  font-weight: bold;
  margin-right: 5px;
}
.founders-section {
  background: linear-gradient(to right, #eef2f3, #8e9eab);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.founders {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.founder-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 20px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.founder-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.founder-card h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
}

.founder-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}
.footer {
  background-color: #f5f5f5;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-top: 50px;
}

/* Top row links */
.footer-top-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  padding: 20px 10px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}

.footer-top-links a {
  text-decoration: none;
  color: blue;
}

/* Main footer layout */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 40px 60px;
  gap: 30px;
}

.footer-block h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-block a {
  display: block;
  text-decoration: none;
  color: blue;
  margin-bottom: 8px;
  font-size: 14px;
}

.logo-block img {
  width: 180px;
  margin-bottom: 10px;
}

.logo-block p {
  font-size: 14px;
  line-height: 1.6;
}

/* Contact button */
.contact-btn {
  display: inline-block;
  background-color: rgb(211, 203, 203);
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #eac097;
}

/* Bottom footer */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  padding: 15px 0;
  border-top: 1px solid #ddd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-block {
    margin-bottom: 20px;
  }
}
/* Services */
/* Banner Section */
.services-banner {
  background: url('../css-n/img/service.png') no-repeat bottom center/cover;
  padding: 160px 0;
  text-align: center;
  color: white;
  
}

.services-heading {
  font-size: 45px;
  font-weight: 700;
}
.grievance-banner {
  background: url('../css-n/img/Grievance.png') no-repeat bottom center/cover;
  padding: 160px 0;
  text-align: center;
  color: white;
}

.grievance-heading {
  font-size: 45px;
  font-weight: 700;
}
.contact-banner {
  background: url('../css-n/img/contact.png') no-repeat bottom center/cover;
  padding: 160px 0;
  text-align: center;
  color: white;
}

.contact-heading {
  font-size: 45px;
  font-weight: 700;
}
.price-banner {
  background: url('../css-n/img/price.png') no-repeat bottom center/cover;
  padding: 160px 0;
  text-align: center;
  color: white;
}

.price-heading {
  font-size: 50px;
  font-weight: 500;
}
.invester-banner {
  background: url('../css-n/img/price.png') no-repeat bottom center/cover;
  padding: 160px 0;
  text-align: center;
  color: white;
}

.invester-heading {
  font-size: 70px;
  font-weight: 500;
}
.subscription-section {
  max-width: 900px;
  margin: auto;
  background-color: white;
  margin: 40px auto;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.subscription-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0a66c2;
  margin-bottom: 25px;
}

.subscription-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #000;
}

.subscription-section strong {
  font-weight: 700;
}

.checkout-btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #0a66c2;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.checkout-btn:hover {
  background-color: #004c9c;
}

@media (max-width: 768px) {
  .subscription-section {
    padding: 30px 20px;
  }

  .subscription-section h2 {
    font-size: 20px;
  }

  .subscription-section p {
    font-size: 15px;
  }

  .checkout-btn {
    width: 100%;
    text-align: center;
  }
}
.info-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px 30px;
  max-width: 900px;
  margin: 30px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.info-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0057a4;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.info-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.info-box ul {
  list-style-type: disc;
  padding-left: 20px;
}

.info-box ul li {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .info-box {
    padding: 20px;
  }

  .info-box h3 {
    font-size: 18px;
  }

  .info-box p,
  .info-box ul li {
    font-size: 15px;
  }
}
.info-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px 30px;
  max-width: 900px;
  margin: 30px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.info-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0057a4;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.info-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.info-box ul {
  list-style-type: disc;
  padding-left: 20px;
}

.info-box ul li {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .info-box {
    padding: 20px;
  }

  .info-box h3 {
    font-size: 18px;
  }

  .info-box p,
  .info-box ul li {
    font-size: 15px;
  }
}
.info-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin: 40px auto;  /* this adds space above and below */
  max-width: 1000px;
  font-family: 'Segoe UI', sans-serif;
}

.info-box h3 {
  color: #005aa7;
  margin-bottom: 12px;
}

.info-box ul {
  padding-left: 20px;
}

.info-box li {
  margin-bottom: 8px;
}

.contact-box {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px 30px;
  margin: 60px auto;
  max-width: 800px;
  font-family: 'Segoe UI', sans-serif;
  color: #000;
}

.contact-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #005aa7;
  margin-bottom: 20px;
}

.contact-box p {
  font-size: 16px;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  section {
    margin-top: 120px !important;
    padding: 0 15px !important;
  }
}


