/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

/* Hero */
.hero {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 10px 10px;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 0px;
}
.hero p {
  font-size: 1.5rem;
  max-width: 100%;
  margin: auto;
}

/* Founder Section */
.founder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 10%;
  background-color: #f9f9f9;
}
.founder-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 40px;
  margin-bottom: 20px;
}
.founder-details {
  flex: 1;
  min-width: 250px;
}
.founder-details h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.founder-details p {
  margin-bottom: 10px;
}
.social-links a {
  margin-right: 15px;
  text-decoration: none;
  color: #0077cc;
}
.social-links a:hover {
  text-decoration: underline;
}

/* Quote Section */
.founder-quote {
  background: #f1f1f1;
  padding: 20px 10%;
  text-align: center;
  position: relative;
}
.quote-box {
  max-width: 800px;
  margin: auto;
  position: relative;
}
.quote-bg {
  width: 60px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.2;
}
.founder-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #333;
  padding: 20px 20px;
  background-color: #fff;
  border-bottom: 5px solid #000;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.founder-quote blockquote span {
  display: block;
  margin-top: 7px;
  font-size: 1rem;
  font-weight: bold;
  color: #555;
}

/* More Info */
.more-about {
  padding: 7px 10%;
}
.more-about h2 {
  font-size: 1.6rem;
  margin-bottom: 7px;
  margin-top: 6px;
  color: #111;
}
.more-about p {
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 10%;
  background: #eee;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .founder {
    flex-direction: column;
    text-align: center;
  }
  .founder-img {
    margin: 0 auto 20px;
  }
.hero p {
  font-size: 1.2rem;
  max-width: 100%;
  margin: auto;
}
}

/* footer css */


.site-footer {
  background-color: #111;
  color: #eee;
  padding: 40px 20px 10px;
  font-size: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-left p {
  color: #ccc;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex: 2;
  gap: 50px;
  justify-content: space-around;
  min-width: 300px;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #888;
  font-size: 14px;
}


.content-wrapper {
  margin-left: 240px; /* equal to sidebar width */
  transition: margin 0.3s ease;
}

@media (max-width: 768px) {
  .content-wrapper {
    margin-left: 0; /* remove margin on small screens */
  }
}