/* Reset and font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html, body {
  overflow-x: hidden;
}


body {
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
/* Top Bar */
.topbar {
  background: #000;
  height:50px;
  color: white;
  font-size: 14px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 30px;
  z-index: 2;
}

.contact-info {
  display: flex;
  gap: 25px;
  align-items: center;
}
.mail1{
    padding-right: 50px;
}
.social-icons a{
  margin-left: 10px;
  
}
.fa {
  padding: 9px;
  font-size: 30px;
  width: 32px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

/* Header and Navbar */
.hero-bg {
  background-image: url('images/111.jpg'); /* use your full-page background image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* optional overlay for contrast */
  z-index: 0;
}
header {
    height: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 30px;
    padding-top: 20px;
    position: relative;
    color: white;
}

.logo-img {
  height: 90px;       
  vertical-align: middle;
}

.logo{
    display: flex;
    align-items: center;
     max-width: 500px;
    max-height: 400px;
    gap: 10px;
}
.logo,
.nav{
  position: relative;
  z-index: 1;
}
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 20px;
  color: white;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  color: white;
  text-align: center;
  padding: 100px 20px;
  min-height: calc(100vh - 100px); /* fill the rest of the viewport */
  min-height: 100vh;
  display: block;
  margin-left:6%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-text {
  z-index: 1;
  
}
.hero-text h1,
.hero-text p{
  margin: 0;
  padding: 0.5rem 0; /* consistent spacing */
}
.hero-text h1 {
    font-size:750%;
  margin-bottom: 10px;  
}

.hero-text p {
  font-size: 2.5rem;
  margin-bottom: 20px;
  
}

.quoted-text {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.6;
  display: inline-block;
}

.quoted-text::before {
  content: "“";
  font-size: 2rem;
  color: #999;
  margin-right: 4px;
}

.quoted-text::after {
  content: "”";
  font-size: 2rem;
  color: #999;
  margin-left: 4px;
}

.finxmain{
    font-family: 'yeseva one', sans-serif;
    font-weight: bold;
}
.btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 10px 20px;
  margin: 5px;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
  align-items: center;
}

.btn:hover {
  background: #e6b800;
}

.btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn.secondary:hover {
  background: white;
  color: #1a1a1a;
}
.foundersmessage{
    font-family: 'Poppins', sans-serif;
}
.highlight {
    background-color: #ffd54f; /* Light amber */
    padding: 0.2em 0.1em;
    border-radius: 5px;
  }
#about {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-image {
  width: 400px;
  max-width: 100%;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}


.events-section {
  padding: 30px;
  background-color: #f7f7f7;
  font-family: 'Segoe UI', sans-serif;
}

.events-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #111;
}

.event-card {
  border: 1px solid #ddd;
  background-color: #fff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #007bff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.event-info {
  color: #333;
}

.event-info strong {
  font-weight: bold;
}

.event-date {
  color: #888;
  font-size: 0.9rem;
  margin: 5px 0 10px 0;
}

.registration-links a {
  margin-right: 15px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.registration-links a:hover {
  text-decoration: underline;
}
.info-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 50px 20px;
  background-color: #f7f7f7;
  flex-wrap: wrap;
}

.card {
  background-color: #ffffff;
  border: 3px solid #ddd;
  border-radius: 16px;
  padding: 30px;
  max-width: 500px;
  flex: 1;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card .icon img {
  height: 48px;
  margin-bottom: 15px;
  filter: hue-rotate(40deg) brightness(1.2);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  font-weight: bold;
  color: #555;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.95rem;
}


.footer {
  background-color: #311919;
  color: #fff;
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  font-size: 15px;
}

.signup-btn {
  margin-top: 15px;
  padding: 10px 18px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #ffc107;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.signup-btn:hover {
  background-color: #ffc107;
  color: #000;
}

.work-link {
  color: #ffc107;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: #ffc107;
  padding: 6px 12px;
  border-radius: 6px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links li {
  margin-bottom: 8px;
}

.legal-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 15px;
}

.legal-links a:hover {
  color: #fff;
}


/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section.gray {
  background: #f5f5f5;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Team Section */
.team-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.member {
  text-align: center;
}

.member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffcc00;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 20px 15px;
    text-align: center;
  }
  .topbar {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  padding: 10px 15px;
  gap: 10px;
  text-align: center;
}

.contact-info {
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}


  .logo-img {
    height: 60px;
  }

  .logo {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    display: block;
    margin: 10px 0;
    font-size: 16px;
  }

  .hero {
    padding: 60px 15px;
    margin-left: 0;
    min-height: 100vh;
  }
  .hero-bg {
  background-size: cover;
  background-position: center top;
  background-attachment: scroll;
  }
  .hero-text {
    padding: 0 10px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }


  .hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 768px) {
  header, .topbar {
    flex-direction: column;
    text-align: center;
    padding: 10px 15px;
  }

  .logo-img {
    height: 60px !important;
    width: auto;
    margin-bottom: 10px;
  }

  .main-img {
    width: 100% !important;
    height: auto !important;
  }

  .founder-message {
    padding: 15px;
    font-size: 16px;
    text-align: justify;
  }

  h1, h2, h3 {
    font-size: 1.4em;
  }

  .topbar span {
    display: block;
    margin: 5px 0;
  }
}

