/*#d4d2d2*/




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: 'Arial', sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
} */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.navbarabout {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #A7A9ac;
  z-index: 10;
}

.hamburger {
  position: absolute;
  left: 30px;
  font-size: 28px;
  cursor: pointer;
  color: #000;
}

.logo img {
  height: 90px;
}

/* Responsive logo size */
@media (max-width: 768px) {
  .logo img {
    height: 60px;
    /* smaller logo for tablets/mobile */
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 45px;
    /* even smaller logo for phones */
  }
}

.nav-links {
  position: absolute;
  right: 30px;
  color: #fff;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5%;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}


.hero-text {
  position: absolute;
  top: 400px;
  right: 5%;
  z-index: 10;
  text-align: right;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  margin-top: 190px;
  color: white;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: white;

}


footer {
  background: #0f172a;
  /* Dark navy background */
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-left img {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-left p {
  margin: 6px 0;
  line-height: 1.6;
  font-size: 14px;
  margin-right: 40px;
}

.footer-middle a,
.footer-right a {
  display: block;
  margin: 4px 0;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-middle {
  margin-top: 127px;
  margin-left: 190px;
}

.footer-right {
  margin-top: 127px;
  margin-right: 5px;
}

.footer-middle a:hover,
.footer-right a:hover {
  color: #38bdf8;
  /* Light blue on hover */
}

.footer-right .linkedin-link {
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom a {
  color: #94a3b8;
  margin: 0 8px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #38bdf8;
}


/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .footer-left img {
    max-width: 140px;
    margin-bottom: 15px;
  }

  .footer-left p {
    margin-right: 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-middle a,
  .footer-right a {
    font-size: 13px;
    margin: 2px 0;
  }

  .footer-right .linkedin-link {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-left img {
    max-width: 120px;
  }

  .footer-left p {
    font-size: 12px;
  }

  .footer-middle a,
  .footer-right a {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 10px;
  }
}









/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background-color: #dcd9d9;
  color: rgb(0, 0, 0);
  z-index: 999;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.side-menu.open {
  left: 0;
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-logo {
  height: 50px;
}

.close-btn {
  font-size: 30px;
  cursor: pointer;
}

.side-menu-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.side-menu-links a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.2s;
}

.side-menu-links a:hover {
  color: #f0c040;
}

/* Dropdown Container */
.dropdown {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

/* Toggle Button */
.dropdown-toggle {
  background: none;
  border: none;
  color: #cfa34d;
  /* Goldish color like your screenshot */
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

/* Dropdown Links */
.dropdown-content {
  display: none;
  flex-direction: column;
  margin-left: 15px;
  font-weight: bold;
  margin-top: 10px;
}

.dropdown-content a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Show dropdown when parent is hovered */
.dropdown:hover .dropdown-content {
  display: flex;
}

/* Dropdown wrapper */
.dropdown {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

/* Toggle button */
.dropdown-toggle {
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  /* White color */
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

/* Dropdown links (hidden by default) */
.dropdown-content {
  display: none;
  flex-direction: column;
  margin-left: 15px;
  margin-top: 10px;
}

/* Dropdown links style */
.dropdown-content a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 10px;
}

.custom-hamburger {
  position: absolute;
  top: 50px;
  left: 30px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.custom-hamburger span {
  display: block;
  height: 4px;
  background-color: rgb(255, 255, 255);
  border-radius: 2px;
}

/* Line lengths to create the staggered effect */
.custom-hamburger span:nth-child(1) {
  width: 16px;
}

.custom-hamburger span:nth-child(2) {
  width: 22px;
}

.custom-hamburger span:nth-child(3) {
  width: 28px;
}



/*about us */
.about-section {
  margin-top: 130px;
  padding: 40px 20px;
  background-color: #ffffff;
  color: #1f2b46;
  /* ✅ base text color */
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-text {
  margin-top: 80px;
  flex: 2;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.about-text h2 {
  font-size: 30px;
  color: #1f2b46;
  margin-bottom: 10px;
  text-align: center;
}


.about-text h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  text-align: justify;
  font-weight: 100;
}

/* Image */
.about-image {
  margin-top: 250px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

/* responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    text-align: center;
  }
}

/*value section*/
.values-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  color: #1f2b46;
  /* ✅ base text color */
}

.values-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.values-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.value-card {
  flex: 1 1 300px;
  max-width: 400px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #1f2b46;
  /* ✅ ensure card text is consistent */
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-card img {
  width: 120px;
  margin-bottom: 20px;
  filter: sepia(100%) saturate(500%) hue-rotate(10deg);
  /* gold effect */
}

.value-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.value-card p {
  line-height: 1.6;
  text-align: justify;
}


/*leader*/

.leadership-section {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 40px;
  text-align: center;
  width: 100%;
}

.leadership-section h2 {
  color: #1f2b46;
  font-size: 2rem;
  margin-bottom: 40px;
}

.leader-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.leader-photo {
  position: relative;
  width: 300px;
  height: 400px;
}

.leader-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.leader-info {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.leader-info h3 {
  color: #1f2b46;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.leader-info h3 span {
  font-size: 1.2rem;
  color: #1f2b46;
  font-weight: 600;
}

.leader-info p {
  color: #1f2b46;
  line-height: 1.6;
  font-size: 1rem;
  text-align: justify;
}

.leadership-container {
  max-width: 1300px;
  color: #1f2b46;
  margin: 0 auto;
  padding: 0 20px;
}

.leader-card-wrapper {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 20px;
}



/*vault - pdf*/
.pdf-section {
  background: linear-gradient(to bottom right, #f2f6ff, #ffffff);
  padding: 100px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 120px;
}

.pdf-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2b46;
  margin-bottom: 60px;
  position: relative;
}

.pdf-section h2::after {
  
  width: 80px;
  height: 4px;
  background: #1f2b46;
  margin: 16px auto 0;
  display: block;
  border-radius: 2px;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.pdf-card {
  position: relative;
  padding: 30px 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(12px);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  overflow: hidden;
}

.pdf-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #bfd7ff;
}

.pdf-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #c8e1ff 0%, transparent 70%);
  z-index: 0;
}

.pdf-card .ribbon {
  position: absolute;
  top: 20px;
  left: -40px;
  transform: rotate(-45deg);
  background-color: #31456a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 50px;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pdf-card img {
  width: 70px;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
  transition: transform 0.4s ease;
}

.pdf-card:hover img {
  transform: scale(1.15) rotate(6deg);
}

.pdf-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1f2b46;
  font-weight: 600;
  z-index: 1;
  position: relative;
}

.pdf-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
  min-height: 50px;
}

.pdf-card a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1f2b46;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  z-index: 1;
  position: relative;
  transition: background 0.3s;
}

.pdf-card a:hover {
  background-color: #445c8a;
}


/*Disclamier*/

.disclaimer-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  margin-top: 100px;
}

.disclaimer-container {
  max-width: 1600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.disclaimer-container h1 {
  font-size: 2.5rem;
  color: #1f2b46;
  margin-bottom: 20px;
  text-align: center;
}

.disclaimer-container h2 {
  font-size: 1.5rem;
  color: #31456a;
  margin-bottom: 20px;
}

.disclaimer-container p {
  font-size: 1rem;
  line-height: 1.6;
  color: #31456a;
  margin-bottom: 15px;
  text-align: justify;
}

.disclaimer-container li {
  font-size: 1rem;
  line-height: 1.6;
  color: #31456a;
  margin-bottom: 15px;
  text-align: justify;
}




/*investmentoptions*/

.investment-section {
  margin-top: 200px;
  
  background-color: #ffffff;
  padding: 60px 40px;
  font-family: "Segoe UI", sans-serif;
}

.investment-section1 {
  margin-top: 20px;
  margin-left: 90px;
  background-color: #ffffff;
  padding: 60px 40px;
  font-family: "Segoe UI", sans-serif;
}

/* .investment-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
} */

.investment-header img {
  width: 160px;
  height: auto;
}

.investment-header h2 {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 1px;
    color: #1f2b46;
    text-transform: none !important; /* ensures normal capitalization */
    margin: 0;
  }

.investment-content h2 {
   font-size: 26px;
  font-weight: 700;
  color: #1f2b46;
  margin: 0;
}

.investment-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2b46;
}

.investment-content p {
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  color: #1f2b46;
  line-height: 1.6;
  margin: 0;
}


/* Responsive for smaller screens */
@media (max-width: 768px) {
  .investment-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .investment-header img {
    width: 50px;
  }

  .investment-header h2 {
    font-size: 22px;
  }
}



/*contact us*/
/* ===========================
   Contact Section Styles
   =========================== */

.contact-section {
  background: #f8f8f8;
  padding: 180px 20px 40px;
}

/* Contact container layout */
.contact-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  gap: 20px;
}

/* ===========================
   Contact Info (Left Side)
   =========================== */
.contact-info {
  flex: 1;
  background: #f0f0f0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #1f2b46;
}

.info-box p {
  font-size: 14px;
  color: #555;
}

/* ===========================
   Contact Form (Right Side)
   =========================== */
.contact-form {
  flex: 2;
  padding: 20px;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #1f2b46;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 14px;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #888;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  outline: none;
}

.contact-form button {
  background: #6c757d;
  /* grey button */
  color: #fff;
  border: none;
  padding: 8px 14px;
  /* smaller button */
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
  width: fit-content;
}

.contact-form button:hover {
  background: #5a6268;
}

/* Success/error message style */
#formResult {
  font-size: 14px;
  margin-top: 10px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}




.pdf-section {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, #f4f6f9, #e9eef5);
  padding: 60px 20px;
}

.pdf-container {
  max-width: 1200px;
  margin: auto;
}

.pdf-container h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #1f2b46;
  margin-bottom: 30px;
}

.year-selector {
  text-align: center;
  margin-bottom: 40px;
}

.year-selector select {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: white;
  color: #1f2b46;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.year-selector select:hover {
  border-color: #000000;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
}

.pdf-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pdf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.pdf-card img {
  width: 60px;
  margin-bottom: 15px;
}

.pdf-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #31456a;
}

.pdf-card a {
  display: inline-block;
  padding: 8px 16px;
  background: #000000;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.pdf-card a:hover {
  background: #202c43;
}

.hidden {
  display: none;
}

/* .value-card {
  width: 100%;
  max-width: 00px;
  margin: auto;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  position: relative;
} */

.more-text {
  display: none;
}

.read-more-btn {
  background-color: transparent;
  color: #000000;
  border: none;
  cursor: pointer;
  padding: 0;
  font-weight: bold;
  margin-top: 10px;
}


.investment-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 200px;
}

.investment-header {
  text-align: center;
  margin-bottom: 50px;
}

.investment-header img {
  max-width: 80px;
  margin-bottom: 10px;
}

.investment-header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #31456a;
  position: relative;
}

.investment-header h2::after {
 
  display: block;
  width: 60px;
  height: 3px;
  background: #31456a;
  margin: 10px auto 0;
  border-radius: 5px;
}

.investment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.investment-card {
  flex: 1 1 220px;
  max-width: 260px;
  background: linear-gradient(to bottom right, #e0f2ff, #ffffff);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.investment-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: #d0e8ff;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.2;
}

.investment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.investment-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f3b70;
  font-weight: 600;
  z-index: 1;
  position: relative;
}

.investment-card p {
  font-size: 14px;
  color: #1f2b46;
  z-index: 1;
  position: relative;
  line-height: 1.5;
  min-height: 60px;
}

.investment-card i {
  font-size: 30px;
  color: #1f3b70;
  margin-bottom: 12px;
  display: block;
  z-index: 1;
  position: relative;
}

.career-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
  margin-top: 120px;
}

.career-header {
  text-align: center;
  margin-bottom: 40px;
}

.career-header h2 {
  font-size: 30px;
  color: #1f2b46;
  margin-bottom: 10px;
}

.career-header p {
  font-size: 16px;
  color: #1f2b46;
}

.job-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.job-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card h3 {
  font-size: 20px;
  color: #1f2b46;
  margin-bottom: 10px;
}

.job-card p {
  font-size: 14px;
  margin: 6px 0;
  color: #1f2b46;
}

.apply-btn {
  margin-top: 10px;
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  background-color: #1f2b46;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.apply-btn:hover {
  background-color: #0056b3;
}




.linkedin-link i {
  margin-left: 300px;
  color: #0077b5;
  font-size: 1rem;
}



.investment-card {
  text-align: left;
}

.investment-card ul {
  padding-left: 20px;
  margin: 10px 0 0;
  list-style-type: disc;
  /* Optional: ensures bullet points are shown */
}

.investment-card li {
  margin-bottom: 5px;
  color: #1f3b70;
  line-height: 1.5;
}










/* Section styling */
.investment-section {
  padding: 60px 20px;
  background: #fff;
}

.investment-header {
  text-align: center;
  margin-bottom: 50px;
}

.investment-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  text-transform: uppercase;
}

/* Timeline container */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
  position: relative;
  padding: 20px 0;
}

/* Vertical center line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #ccc;
  transform: translateX(-50%);
}

/* Each item */
.timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

/* Icon aligned on the line */
.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.timeline-icon img {
  max-width: 60px;
  height: auto;
}

/* Content box */
.timeline-content {
  max-width: 40%;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  text-align: right;
}

.timeline-content h3,
  .timeline-content p,
  .timeline-content .more-text,
  .timeline-content button.read-more {
    color: #1f2b46;
  }

  /* Optional: make Read More button styled but still same color theme */
  .timeline-content .read-more {
    background: transparent;
    border: 1px solid #1f2b46;
    color: #1f2b46;
    padding: 6px 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .timeline-content .read-more:hover {
    background: #1f2b46;
    color: #fff;
  }

/* Zigzag effect */
.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  text-align: right;
}

/* Read More / Read Less */
.more-text {
  display: none;
  text-align: justify;
}

.timeline-content.expanded .more-text {
  display: inline;
  text-align: justify;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  background: #f9f9f9;
  color: #000000;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.read-more:hover {
  background: #f9f9f9;
}

/* Responsive (stack items vertically on mobile) */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-icon {
    left: 20px;
    transform: none;
  }

  .timeline-content p {
    text-align: justify;
    /* normal paragraph alignment */
  }

  .timeline-content {
    max-width: 100%;
    margin-left: 60px !important;
    margin-right: 0 !important;
    text-align: left !important;
    text-align: justify;
  }
}



.site-footer {
    background-color: #1f2b46;
    color: #ffffff;
    padding: 10px 20px 15px;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  }

  /* Use grid for perfect vertical alignment */
  .site-footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* equal width columns */
    align-items: start; /* align all at top */
    max-width: 1200px;
    margin: 0 auto;
    column-gap: 60px; /* equal space between columns */
  }

  .site-footer-column {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-logo {
    width: 160px;
    margin-bottom: 10px;
    display: block;
  }

  .footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-link:hover {
    color: #a7b2cc;
  }

  .site-footer i {
    margin-right: 6px;
  }

  .site-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    margin-top: 20px;
    font-size: 13px;
  }

  /* Tighter footer height */
  .site-footer p {
    margin: 5px 0;
  }

  .site-footer-middle {
    padding-left: 130px; 
  }

   .site-footer-right {
    padding-left: 140px; 
  }

   .site-footer-middle,
  .site-footer-right {
    padding-top: 100px; 
  }

  /* Responsive behavior */
  @media (max-width: 768px) {
    .site-footer-container {
      grid-template-columns: 1fr;
      text-align: center;
      row-gap: 20px;
    }

    .footer-logo {
      margin: 0 auto 10px;
    }
  }