@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  font-family: 'Roboto', sans-serif;
}

/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  scroll-behavior: smooth;
}

/* Basic Styling */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  padding-top: 130px;
}



/* Basic Navbar Styling */
.navbar {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo img {
  height: 70px;   /* 👈 increase size here (try 60px or 70px if needed) */
  width: auto;    /* keeps proportion */
  object-fit: contain;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .logo img {
    height: 60px; /* smaller for mobile view */
  }
}



/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color:#154f8e;
  transition: 0.3s;
  font-size: 18px;
}

.nav-links li a:hover {
  color: #4281ff;
  font-size: 20px;
  text-decoration: underline;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  border: 2px solid #00aaff;
  border-radius: 50px;
  padding: 6px 10px;
  background: #76b9f0;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 6px;
}

.search-box button {
  background: #00aaff;
  border: none;
  color: rgb(22, 90, 112);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box img {
  width: 18px;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: rgb(26, 3, 159);
}

/* Add body top padding so content isn’t hidden */
body {
  padding-top: 90px;
}

/* RESPONSIVE PART */

/* Tablets */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 20px;
  }

  .search-box {
    width: 220px;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #f5f5f6;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .search-box {
    width: 100%;
    margin-top: 10px;
  }
}



.enroll-btn {
  padding: 8px 18px;
  background: #fff;
  color: #3a8dde;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.enroll-btn:hover {
  background: #12467e;
  color: #fff;
}

/* Section */
.section {
  padding: 100px 50px;
  text-align: center;
}

.section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e1e1e1;
}
.hero-section {
  background-color: #050505;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h2 {
  font-size: 200px;
  color: #1d4ed8;
  margin-bottom: 10px;
}

.highlight {
  color: #059669;
}

.subheading {
  font-style: italic;
  margin-bottom: 20px;
}

.description {
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-btn {
  padding: 12px 24px;
  background-color: rgb(24, 105, 218);
  color: rgb(240, 240, 245);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
.hero-btn:hover{
  background-color: rgb(10, 10, 10);
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

#about{
   background: linear-gradient(90deg, #010101, #110e39);
}
/* Section container and background */
.invest-career-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Centered container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Section heading */
.section-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Flex row for 3 features */
.features-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Feature column */
.feature {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

/* Icon style */
.feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
}

/* Feature title */
.feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Description */
.feature-desc {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #38b2ac;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #2c7a7b;
}


/* Programs */
#programs{
  background-color: #000000;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  color: #161616;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  background-color: #d7edf2;
}

.card h3 {
  margin-bottom: 10px;
  color: #2b6cb0;
}

.fee {
  margin-top: 10px;
  font-weight: bold;
  color: #0b756f;
}


/* Partners */
.partner-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}
/* Contact */
#contact-section {
  display: flex;
  gap: 50px;
  padding: 50px;
  background-color: #c1effb;
  flex-wrap: wrap;
}

.contact-left, .contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-left h2, .contact-right h2 {
  margin-bottom: 20px;
  color:  rgb(70, 125, 220);
}

.contact-left p {
  color:white;
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
}

.contact-right input,
.contact-right select {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-right button {
  padding: 12px;
  font-size: 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-right button:hover {
  background-color: #0056b3;
}
.quick-link{
  color: #ffffff;
}
.quick-link:hover{
  color: brown;
}


/* Footer */
footer {
  background: #3a8dde;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}
.how-it-works {
  background-color: #f5f8fc;
  padding: 70px 10%;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.2em;
  color: #f4f2f2;
  margin-bottom: 70px;
}

.how-it-works h2 span {
  color: #0077ff;
  border-bottom: 3px solid #0077ff;
}

/* Timeline Line */
.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #0077ff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

/* Timeline Items */
.timeline-item {
  padding: 20px 30px;
  position: relative;
  width: 50%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Circles */
.timeline-item::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  right: -9px;
  background-color: #0077ff;
  border: 3px solid #fff;
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left::before {
  left: -9px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* Headings and Text */
.timeline-item h3 {
  font-size: 1.2em;
  color: #001f3f;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}


