:root {
  --header-h: 72px; /* header height used for offsets */
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
span{color: black;}
/* Header */
.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgb(23, 170, 151);
  color: black;
  height: var(--header-h);
  position: sticky;
  top: 0; /* keep it flush to top */
  z-index: 100;
  gap: 100px;
}
.header > * { min-width: 0; }

/* Brand & right */
.right { display: flex; align-items: center; gap: 80px; flex: 0 0 auto; min-width: 0; }
.brand { display:flex; align-items:center; gap:1px; text-decoration:none; color:inherit; flex: 0 0 auto; }
.brand img { width:40px; height:40px; border-radius:6px; object-fit:contain; }
.brand-title { display:flex; flex-direction:column; line-height:1; }
.brand-title .title { font-weight:700; font-size:16px; }

/* Hamburger (hidden on larger screens) */
.hamburger {
  display: none;
  background: transparent;
  color: black;
  border: 1px solid rgba(255,255,255,0.04);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  z-index: 140;
}

/* Left (nav + CTA) */
.left { display:flex; align-items:center; gap: 12px; flex: 1 1 auto; min-width:0; }
.navBar { display:flex; align-items:center; flex:1 1 auto; min-width:0; }
.navLinks { display:flex; align-items:center; justify-content:center; min-width:0; }
.linkRight { list-style:none; display:flex; gap:24px; align-items:center; white-space:nowrap; margin:0; padding:0; min-width:0; }

.linkRight a { color:black; text-decoration:none; padding:8px 10px; border-radius:8px; font-weight:600; display:inline-block; }
.linkRight a:hover { background: rgba(255,255,255,0.03); transform: translateY(-2px); transition: transform .12s ease; }

/* Dropdown */
.dropdown { position:relative; }
.dropdown-menu {
  position:absolute;
  top: calc(50% + 10px);
  left: 0;
  min-width:100px;
  background:rgb(23, 170, 151);
  border-radius:8px;
  padding:8px 6px;
  display:none;
  /* width: 100px; */
  box-shadow:0 8px 20px rgba(0,0,0,0.4);
  z-index: 40;
}
.dropdown-menu li{
  list-style: none;
}
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu { display:block; }
.dropdown-menu a { 
  display:block; 
  padding:8px 10px; 
  color:black; 
  text-decoration:none; 
}

/* CTA */
.btn-cta { background: black; color:rgb(23, 170, 151); border:none; padding:10px 14px; border-radius:8px; font-weight:800; cursor:pointer; flex:0 0 auto; }

/* MAIN offset (push content below sticky header) */
main {
  padding-top: calc(var(--header-h) + 16px); /* header height + breathing space */
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

/* Responsive / mobile */
@media (max-width: 1024px) {
  .hamburger { display:inline-flex; align-items:center; justify-content:center; }

  .navBar { display: none; }

  .navBar.active {
    display: flex !important;
    position: fixed;
    left: 8px;
    right: 8px;
    top: calc(var(--header-h) + 12px);
    background: rgb(23, 170, 151);
    border-radius: 10px;
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    max-height: calc(100vh - (var(--header-h) + 40px));
    overflow-y: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }

  .navBar.active .navLinks { display:flex; flex-direction:column; gap:8px; }
  .navBar.active .linkRight { flex-direction:column; gap:8px; align-items:stretch; white-space:normal; }

  .dropdown-menu {
    position: static;
    display: none;
    padding-left: 12px;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
  }
  .dropdown.expanded > .dropdown-menu { display:block; }

  /* smaller header on very small screens */
  @media (max-width: 420px) {
    :root { --header-h: 64px; }
    .brand-title .title { font-size: 15px; }
    .brand img { width:34px; height:34px; }
    .header{gap: 16px;}
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .header { padding-top: 14px; padding-bottom: 14px;}
}









/*== multiple type animation css code ==*/

/* Fade-in */
.fade {
  opacity: 0;
  transition: opacity 6s;
}
.fade.show {
  opacity: 1;
}

/* Jump */
.jump {
  transform: translateY(50px);
  opacity: 0;
  transition: all 6s;
}
.jump.show {
  transform: translateY(0);
  opacity: 1;
}

/* Slide from left */
.slide {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 6s;
}
.slide.show {
  transform: translateX(0);
  opacity: 1;
}











/* Hero / Account Opening Section */
.hero-account {
  background-color: #fff;
  padding: 80px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text h1 {
  font-size: 3rem;
  color: rgb(23, 170, 151);
  margin-bottom: 20px;
  width: 500px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 30px;
  width: 500px;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 12px 30px;
  margin-right: 15px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero-buttons .open-account {
  background-color: rgb(23, 170, 151);
  color: #fff;
}

.hero-buttons .open-account:hover {
  background-color: rgb(20, 150, 130);
}

.hero-buttons .learn-more {
  background-color: #f5f5f5;
  color: rgb(23, 170, 151);
}

.hero-buttons .learn-more:hover {
  background-color: rgba(23,170,151,0.1);
}

.hero-image img {
  max-width: 500px;
  width: 80%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive 768px */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
    width: 400px;
  }

  .hero-text p {
    font-size: 1rem;
    width: 400px;
  }

  .hero-buttons .btn {
    margin-bottom: 15px;
  }

  .hero-image img {
    max-width: 300px;
  }
}











/* Account Opening Steps Section */
.account-steps {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: rgb(23, 170, 151);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 50px;
}

/* Steps layout */
.steps-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 30px;
}

/* Horizontal connecting line */
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 5%;
  width: 90%;
  height: 4px;
  background-color: rgba(23, 170, 151, 0.2);
  z-index: 0;
}

.step {
  flex: 1 1 calc(25% - 30px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto 10px;
  background-color: rgb(23, 170, 151);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: rgb(23, 170, 151);
}

.step h3 {
  font-size: 1.2rem;
  color: rgb(23, 170, 151);
  margin-bottom: 8px;
}

.step p {
  font-size: 1rem;
  color: #000;
  line-height: 1.5;
}

/* Optional: small circle connectors */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 65px;
  right: -50%;
  width: 100%;
  height: 4px;
  background-color: rgba(23,170,151,0.2);
  z-index: -1;
}

/* Responsive 768px */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .steps-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .step {
    flex: 1 1 100%;
    margin-bottom: 40px;
  }

  .steps-wrapper::before,
  .step:not(:last-child)::after {
    display: none;
  }
}











/* Required Documents / Eligibility Section */
.documents-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
}

.documents-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: rgb(23, 170, 151);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 50px;
}

/* Documents list layout */
.documents-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.document-item {
  flex: 1 1 calc(25% - 30px);
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.document-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.doc-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgb(23, 170, 151);
}

.document-item h3 {
  font-size: 1.3rem;
  color: rgb(23, 170, 151);
  margin-bottom: 8px;
}

.document-item p {
  font-size: 1rem;
  color: #000;
  line-height: 1.5;
}

/* Note text */
.documents-note {
  font-size: 0.95rem;
  color: #666;
  margin-top: 40px;
}

/* Responsive 768px */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .documents-list {
    flex-direction: column;
    align-items: center;
  }

  .document-item {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .documents-note {
    font-size: 0.9rem;
  }
}











/* Benefits / Why Open an Account Section */
.benefits-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: rgb(23, 170, 151);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 50px;
}

/* Benefits list layout */
.benefits-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.benefit-item {
  flex: 1 1 calc(25% - 30px);
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgb(23, 170, 151);
}

.benefit-item h3 {
  font-size: 1.3rem;
  color: rgb(23, 170, 151);
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 1rem;
  color: #000;
  line-height: 1.5;
}

/* Responsive 768px */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .benefits-list {
    flex-direction: column;
    align-items: center;
  }

  .benefit-item {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
}












/* FAQ Section */
.faq-section {
  background-color: #fff;
  padding: 80px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
  text-align: center;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: rgb(23, 170, 151);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 50px;
}

/* FAQ items */
.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: rgb(23, 170, 151);
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: rgba(23,170,151,0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 10px 0;
  color: #000;
}

/* Responsive 768px */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}










.footer {
  background:rgb(23, 170, 151);
  color: black;
}

.footer-container {
  /* max-width: 1100px; */
  margin-left: 80px;
  margin-right: auto;
  padding: 40px 16px;
  display: flex;
  flex-wrap: wrap;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-contact {
  flex: 1 1 250px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 20px;
}

.footer-text {
  font-size: 14px;
  width: 200px;
}

/* .footer-contact .mail{
  color: white;
} */

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  color: #fff;
  text-decoration: none;
}

.footer-list li a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 16px;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
}

.social-icon img{
  height: 40px;
  width: 40px;
  background-color: white;
  overflow: hidden;

}

.social-icon:hover {
  text-decoration: underline;
}

.footer-newsletter {
  margin-top: 16px;
}

.newsletter-input {
  padding: 8px;
  border: none;
}

.newsletter-btn {
  padding: 8px 16px;
  background-color: #fff;
  color: #222;
  border: none;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding: 16px;
  border-top: 1px solid #444;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
    margin-bottom: 24px;
  }
}
