/* ========== Global Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #333333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}
html {
  scroll-behavior: smooth;
}

/* ========== Header ========== */
/* Fix the navigation to the top of the page */
header {
  position: relative; /* Change header to relative so the nav can be fixed */
 /* backdrop-filter: blur(10px); /* Optional: adds a blur effect behind the nav */
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

nav {
  background: rgba(255, 255, 255, 0); /* Fully transparent */
  z-index: 1000; /* Ensure nav stays above the rest of the content */
  padding: 10px 20px;
  box-shadow: none; /* Optional: add shadow if you want it */
}

nav .nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav .nav-list li {
  font-size: 22px;
}

nav .nav-list li a {
  text-decoration: none;
  color: #002B5B;
  font-weight: 600;
}

nav .contact-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

nav .contact-btn:hover {
  background-color: #0056b3;
}
.nav a,
.contact-btn {
  color: white;
  /*-webkit-text-stroke: 0.4px white;*/
  font-weight: bold;
}


/* Adjust the rest of the page to avoid overlapping */
body {
  padding-top: 80px; /* Adjust based on header/nav height */
}

.logo-img {
  max-width: 20%;
  height: auto;
  image-rendering: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo-img {
    max-width: 50%;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full height on desktop */
  display: flex;
  align-items: center; 
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 26px;
  top: -1%;
 
}
.hero-buttons {
  margin-top: 20px;
}

.hero-buttons .btn {
  margin: 10px;
  padding: 15px 30px;
  font-size: 16px;
  background-color: #002B5B;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.hero-buttons .btn.secondary-btn {
  background-color: #002B5B;
  color: #fff;
  border-radius: 25px;
}

.hero-buttons .btn:hover {
  background-color: #002B5B;
}

/* Responsive height for smaller screens */
@media (max-width: 768px) {
  .hero {
    height: 70vh; /* Reduce height on mobile */
  }

  .video-wrapper video {
    object-fit: cover;
    height: 100%;
  }
}


   /*    header Mobile      */


   
/* Reset hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

/* Responsive nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 1rem 2rem;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }

  .nav a {
    color: #000;
    font-size: 1.2rem;
    text-decoration: none;
  }

  .nav a:hover {
    text-decoration: underline;
  }

  .desktop-only {
    display: none;
  }

  .nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}




   /*    header Mobile      */

/* ========== Preview Sections (Founders, Strategy) ========== */
/* ========== Founders Section ========== */
.founders-section {
  background-color: #F3F7FF;
  padding: 80px 20px;
}

.founders-card {
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.founders-text {
  flex: 1 1 500px;
}

.founders-text h2 {
  font-size: 2rem;
  color: #002B5B;
  margin-bottom: 20px;
}

.founders-text p {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.7;
}

.founders-btn {
  background-color: #002B5B;
  border-radius: 9999px;
  padding: 12px 30px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.founders-btn:hover {
  background-color: #001f40;
}

.founders-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.founders-image img {
  max-width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .founders-card {
    flex-direction: column;
    text-align: center;
  }
}
/* ========== Journey Section ========== */
.journey-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.journey-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.journey-left {
  flex: 0 0 200px;
  text-align: center;
}

.journey-left h1 {
  font-size: 5rem;
  color: #2E3361;
  margin-bottom: 10px;
  font-weight: 700;
}

.journey-left p {
  font-size: 1.2rem;
  color: #2E3361;
  font-weight: 500;
}

.journey-right {
  flex: 1;
}

.journey-right h2 {
  font-size: 2rem;
  color: #002B5B;
  margin-bottom: 20px;
}

.journey-right p {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.journey-btn {
  background-color: #002B5B;
  border-radius: 9999px;
  padding: 12px 30px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.journey-btn:hover {
  background-color: #001f40;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== Strategy Section ========== */
.strategy-section {
  background-color: #002B5B;
  padding: 80px 20px;
}

.strategy-container {
  background-color: #ffffff;
  padding: 60px 30px;
  border-radius: 12px;
  text-align: center;
}

.strategy-container h2 {
  font-size: 2rem;
  color: #002B5B;
  margin-bottom: 20px;
}

.strategy-container p {
  color: #555555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.strategy-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.strategy-item {
  flex: 1;
  padding: 20px;
  text-align: center;
  position: relative;
}

.strategy-item i {
  font-size: 3rem;
  color: #002B5B;
  margin-bottom: 20px;
}

.strategy-item h3 {
  color: #002B5B;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.strategy-item p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Divider lines between cards */
.strategy-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: #dddddd;
}

/* Button */
.strategy-btn {
  background-color: #002B5B;
  border-radius: 9999px;
  padding: 12px 30px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 40px;
  transition: background-color 0.3s;
}

.strategy-btn:hover {
  background-color: #001f40;
}

/* Responsive */
@media (max-width: 768px) {
  .strategy-grid {
    flex-direction: column;
    gap: 40px;
  }
  .strategy-item::after {
    display: none;
  }
}

/* ========== Portfolio Section ========== */
/* ========== Projects Section ========== */
.projects-section {
  background-color: #F7FAF9;
  padding: 80px 20px;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.projects-title h2 {
  font-size: 2.5rem;
  color: #2E3361;
  max-width: 600px;
}

.projects-cta {
  text-align: right;
}

.projects-cta p {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 15px;
}

.projects-btn {
  background-color: #002B5B;
  border-radius: 9999px;
  padding: 12px 30px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.projects-btn:hover {
  background-color: #001f40;
}

/* Project Cards */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.project-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 30px;
  text-align: left;
}

.project-card h3 {
  color: #2E3361;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.project-card p {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-outline {
  border: 2px solid #002B5B;
  padding: 10px 20px;
  border-radius: 9999px;
  color: #002B5B;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background-color: #002B5B;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }
  .projects-cta {
    text-align: left;
  }
}

/* ========== Insights Section ========== */
/* ========== Insights Section ========== */
.insights-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.insights-title h2 {
  font-size: 2.5rem;
  color: #2E3361;
  max-width: 600px;
}

.insights-cta {
  text-align: right;
}

.insights-cta p {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 15px;
}

.insights-btn {
  background-color: #002B5B;
  border-radius: 9999px;
  padding: 12px 30px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.insights-btn:hover {
  background-color: #001f40;
}

/* Blog Cards */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.insight-card {
  background: #ffffff;
  text-align: left;
}

.insight-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  object-fit: cover;
}

.insight-text .meta {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 10px;
}

.insight-text h3 {
  font-size: 1.25rem;
  color: #2E3361;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .insights-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }
  .insights-cta {
    text-align: left;
  }
}

/* ========== Contact Section ========== */
/* ========== Contact Section ========== */
.contact-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: auto;
}

.contact-container h2 {
  font-size: 2.5rem;
  color: #2E3361;
  margin-bottom: 20px;
}

.contact-container p {
  color: #666666;
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact-container p a {
  color: #002B5B;
  text-decoration: underline;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-btn {
  background-color: #002B5B;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: #001f40;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}


/* ========== Footer ========== */
/* ========== Footer ========== */
.footer {
  background-color: #ffffff;
  padding: 60px 20px 20px 20px;
  border-top: 1px solid #eeeeee;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

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




.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-right {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 120px;
}

.footer-column h4 {
  font-size: 1rem;
  color: #2E3361;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #2E3361;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #002B5B;
}

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

.social-icons a {
  color: #2E3361;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #002B5B;
}

/* Copyright */
.copyright {
  font-size: 0.85rem;
  color: #888888;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}


/* ========== Responsive ========== */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    align-items: center;
  }

  .preview-cards, .portfolio-items, .insight-items {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
                                     /* ========== Founders Page ========== */

                                     /* ========== Founders Page ========== */
.founders-hero {
  background-color: #ffffff;
  text-align: center;
  padding: 160px 20px 80px 20px;
}

.founders-hero h1 {
  font-size: 2.5rem;
  color: #2E3361;
}

.founders-section {
  background-color: #F7FAF9;
  padding: 80px 20px;
}

.founders-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.founder-card {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 20px;
  padding: 40px;
  gap: 40px;
}

.founder-info {
  flex: 1;
  min-width: 300px;
}

.founder-info h4 {
  color: #666666;
  margin-bottom: 10px;
}

.founder-info h2 {
  color: #2E3361;
  font-size: 2rem;
  margin-bottom: 20px;
}

.founder-info p {
  color: #555555;
  margin-bottom: 20px;
}

.founder-info ul {
  list-style: none;
  padding-left: 0;
}

.founder-info ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.founder-info ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #002B5B;
}

.founder-photo img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
  }
}


                                     /* ========== Strategy & Portfolio ========== */
                    

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #F7FAF9;
  color: #2E3361;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f7faf9;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list li a {
  text-decoration: none;
  color: #2E3361;
  font-weight: 500;
  transition: 0.3s;
}

.nav-list li a:hover {
  color: #002B5B;
}

.nav-list li .btn {
  background: #002B5B;
  padding: 10px 20px;
  border-radius: 9999px;
  color: white;
  font-weight: 600;
}

/* Strategy Main Section */
.strategy-main-section {
  padding: 160px 20px 80px 20px;
}

.strategy-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.strategy-left {
  flex: 1;
  min-width: 300px;
}

.strategy-tag {
  font-size: 0.9rem;
  background: #E1E9F3;
  color: #002B5B;
  padding: 5px 15px;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 20px;
}

.strategy-left h1 {
  font-size: 2.5rem;
  color: #002B5B;
}

.strategy-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strategy-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
}

.strategy-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* Impact Section */
.impact-section {
  padding: 80px 20px;
}

.impact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.impact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.impact-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
}

.impact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.impact-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.impact-right h2 {
  font-size: 2rem;
  color: #002B5B;
}

/* Projects Section */
.projects-section {
  background-color: #F7FAF9;
  padding: 80px 20px;
}

.projects-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.projects-title h2 {
  font-size: 2.5rem;
  color: #2E3361;
  max-width: 600px;
}

.projects-description {
  max-width: 400px;
  text-align: right;
}

.projects-description p {
  font-size: 1rem;
  color: #666666;
}

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

.project-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.project-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2E3361;
}

.project-card p {
  font-size: 1rem;
  color: #555555;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* always 3 columns */
  gap: 30px;
}

@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

/* Footer */
.footer {
  background: #ffffff;
  padding: 60px 20px 20px 20px;
  border-top: 1px solid #eeeeee;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

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

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-right {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 1rem;
  color: #2E3361;
  margin-bottom: 15px;
}

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

.footer-column ul li a {
  text-decoration: none;
  color: #2E3361;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #002B5B;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #2E3361;
  font-size: 1.2rem;
}

.social-icons a:hover {
  color: #002B5B;
}

.copyright {
  font-size: 0.85rem;
  color: #888888;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .strategy-content,
  .impact-content,
  .projects-header-flex,
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-description {
    text-align: left;
  }

  .footer-container {
    align-items: center;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
  }
}
             /*        tesm page      */

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #F7FAF9;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list li a {
  text-decoration: none;
  color: #2E3361;
  font-weight: 500;
}

.nav-list li .btn {
  background: #002B5B;
  padding: 10px 20px;
  border-radius: 9999px;
  color: #ffffff;
  font-weight: 600;
}

/* Team Intro */
.team-intro {
  padding: 80px 20px 0px 20px;
  text-align: center;
}

.team-intro .tag {
  background: #E1E9F3;
  color: #002B5B;
  padding: 5px 15px;
  border-radius: 9999px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 20px;
}

.team-intro h1 {
  font-size: 2.5rem;
  color: #2E3361;
}

/* Team Members */
.team-members {
  padding: 40px 20px 80px 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Team Card */
.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.team-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-image { position: relative; }
.team-image {
  width: 100%;
  height: 420px; /* consistent image area height */
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill and crop uniformly */
  object-position: center; /* keep subject centered */
  display: block;
}
.team-info {
  background: #ffffff;
  padding: 20px;
}
.team-bio-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; /* cover only image container */
  background: rgba(0, 43, 91, 0.9);
  color: #fff;
  display: none; /* keep hidden so scroll resets when shown */
  align-items: flex-start; /* start from top */
  justify-content: flex-start; /* start from left */
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  text-align: left;
  pointer-events: auto; /* allow scrolling and interaction */
  overflow: hidden; /* remove scrolling; clip long bios */
}
.team-bio-overlay p {
  line-height: 1.6;
  font-size: 1.15rem;
  margin: 0;
  width: 100%;
  white-space: normal;            /* allow wrapping */
  word-break: break-word;         /* break long words */
  overflow-wrap: anywhere;        /* handle continuous strings */
}
/* Show overlay only when hovering the image */
.team-image img:hover { cursor: pointer; }
.team-image:hover .team-bio-overlay,
.team-image .team-bio-overlay:hover {
  display: flex;
  opacity: 1;
}

.team-info .role {
  font-size: 0.85rem;
  color: #666666;
}

.team-info h3 {
  margin-top: 5px;
  font-size: 1.2rem;
  color: #2E3361;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 60px 20px 20px 20px;
    border-top: 1px solid #eeeeee;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-left {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    height: 60px;
    margin-bottom: 20px;
  }
  
  .footer-right {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .footer-column h4 {
    font-size: 1rem;
    color: #2E3361;
    margin-bottom: 15px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: #2E3361;
    font-size: 0.9rem;
    transition: 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #002B5B;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons a {
    color: #2E3361;
    font-size: 1.2rem;
  }
  
  .social-icons a:hover {
    color: #002B5B;
  }
  
  .copyright {
    font-size: 0.85rem;
    color: #888888;
    margin-top: 20px;
  }

/* Responsive */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}



                                     /* ========== Insights Page ========== */


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

body {
  font-family: 'Poppins', sans-serif;
  background: #f7faf9;
  color: #2e3361;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-list li a {
  text-decoration: none;
  color: #2e3361;
  font-weight: 500;
}

.nav-list .btn {
  background: #002b5b;
  color: white;
  padding: 10px 20px;
  border-radius: 9999px;
}

/* Intro */
.intro {
  padding: 160px 20px 60px;
  text-align: center;
}

.intro .tag {
  background: #e1e9f3;
  color: #002b5b;
  padding: 5px 15px;
  border-radius: 9999px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 20px;
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.intro p {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

/* Featured Blogs */
.featured-blogs {
  padding: 40px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.meta {
  font-size: 0.85rem;
  color: #777;
}

/* All Blogs */
.all-blogs {
  padding: 60px 0;
}

.all-blogs h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  align-items: center;
}

.blog-item img {
  width: 200px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}

.item-content {
  flex: 1;
}

.labels {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  margin-bottom: 5px;
  color: #666;
}

.label {
  background: #e1e9f3;
  padding: 3px 10px;
  border-radius: 9999px;
}

.date {
  color: #999;
}

.item-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.item-content p {
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  color: #002b5b;
  font-weight: bold;
  text-decoration: none;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  background: #f7faf9;
  color: #555;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-right {
  display: flex;
  gap: 50px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li a {
  color: #555;
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-item {
    flex-direction: column;
    text-align: center;
  }
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #2e3361;
}

.card-content p {
  font-size: 0.9rem;
  color: #555;
}

/* Footer with author */
.card-footer {
  margin-top: auto;
  padding: 15px;
  border-top: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.read-time {
  background: #e1e9f3;
  color: #2e3361;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.8rem;
}


                                                     /*=========   Contant Page    ==========*/


/* Reset 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*/
/* Container 
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
*/
/* Header
header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.contact-btn {
  background-color: #002B5B;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.contact-btn:hover {
  background-color: #001f40;
} 
  */

/* Contact Section */
/* Contact Section 
.contact-section {
  padding: 80px 0;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-text {
  flex: 1;
  max-width: 500px;
}

.contact-text h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.contact-form-container {
  flex: 1;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
}

.contact-form .form-group {
  flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-size: 1rem;
}

.contact-form button {
  background-color: #002B5B;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  background-color: #001f40;
}
*/
/* Responsive 
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-text h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .contact-form-container {
    width: 100%;
  }
}
*/
/* Map Section */
/* Map Section
.map-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.map {
  position: relative;
  width: 100%;
  height: auto;
}
*//*
.map-img {
  width: 100%;
  height: auto; /* Maintain aspect ratio /
  object-fit: cover;  Ensures the map doesn't stretch or get distorted 
}
 
.location-marker {
  position: absolute;
  background-color: #002B5B;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
*/
/* Responsive Design 
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-text h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .contact-form-container {
    width: 100%;
  }
*//*
  .map {
    margin-left: 0;  Remove extra space on small screens 
    margin-right: 0;
  }
*//*
  .map-img {
    width: 100%;
    height: auto;   
  }*/

/* Footer 
footer {
  background-color: #f7f7f7;
  padding: 60px 20px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-column h4 {
  font-size: 1rem;
  color: #333;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
}

.footer-column ul li a:hover {
  color: #002B5B;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a img {
  width: 30px;
  height: 30px;
}

}
*/
/* Responsive 
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-container {
    margin-bottom: 30px;
  }

  .map img {
    max-width: 100%;
  }
}
   

.contact-map-container{
  width: 100%;
}

.contact-map-container > h2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.map {
  display: flex;
}

.map > img {
  width: 90%;
    margin-left: auto;
    margin-right: auto;
}

*/

@media (max-width: 768px) {
  /* General text scaling */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  /* Optional: fine-tune spacing */
  h1, h2, h3 {
    line-height: 1.3;
    margin-bottom: 16px;
  }

  /* Specific section headers */
  .strategy-section h2,
  .founders-text h2,
  .journey-right h2,
  .contact-container h2 {
    font-size: 1.4rem;
  }

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

@media (max-width: 768px) {
  .strategy-main-section h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .strategy-card h3,
  .impact-card h3 {
    font-size: 1.1rem;
  }

  .impact-right h2 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .strategy-tag {
    font-size: 0.85rem;
    padding: 4px 12px;
  }

  .strategy-main-section p,
  .impact-content p {
    font-size: 0.95rem;
  }
}

/* Show desktop logo by default, hide mobile one */
.logo-desktop {
  display: block;
}

.logo-mobile {
  display: none;
}

/* On mobile: hide desktop logo, show mobile */
@media (max-width: 768px) {
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
    height: 35px; /* Adjust size as needed */
    width: auto;
  }
}

/* === Consistent Button Styling === */
a.btn,
button.btn,
.contact-btn,
.strategy-btn,
.projects-btn,
.insights-btn,
.journey-btn,
.founders-btn,
.btn-outline {
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* Optional: remove underline on hover too */
a.btn:hover,
.contact-btn:hover,
.strategy-btn:hover,
.projects-btn:hover,
.insights-btn:hover,
.journey-btn:hover,
.founders-btn:hover,
.btn-outline:hover {
  text-decoration: none !important;
}
