* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    color: #333;
  }

  
 

  /* Hero */

  
  /* Services */
  .services {
    background: #fff;
    padding: 60px 0;
  }
  .service-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .card {
    flex: 1 1 30%;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
  }
  .card h3 {
    margin-bottom: 10px;
    color: #3f51b5;
  }
  .card ul {
    margin: 10px 0;
  }
  .card button {
    background: #00bcd4;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
  }
  


  
 
  /* Form */
  .form-section {
    padding: 60px 0;
    background: #f4f6ff;
  }
  form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  form input {
    flex: 1 1 30%;
    padding: 10px;
  }
  form button {
    padding: 10px 20px;
    background: #3f51b5;
    color: white;
    border: none;
  }
  






  /* Hero Section */
  .hero-section {
    display:flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
    background: linear-gradient(to right, #e3f2fd, #fce4ec);
  }
  .hero-text {
    flex: 1 1 50%;
    max-width: 600px;
    gap: 40%;
  }
  .hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
  }
  .hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
  }
  .hero-text button {
    background: linear-gradient(90deg, #ff4081, #3f51b5);
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }
  .hero-img {
    flex: 1 1 45%;
    text-align: center;
  }
  .hero-img img {
    width: 100%;
    max-width: 420px;
    animation: floatImage 4s ease-in-out infinite;
  }
  @keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
  }

  /* Fullscreen Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: linear-gradient(to right, #ffffff, #e3f2fd);
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 20px;
  position: relative;
  animation: popIn 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form Box */
.popup-box {
  width: 90%;
  max-width: 550px;
  background: linear-gradient(to right, #ffffff, #e3f2fd);
  padding: 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: fadeIn 0.4s ease;
  overflow-y: auto;
  max-height: 95vh;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.popup-box h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #3f51b5;
}

.popup-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.popup-box label {
  font-weight: 600;
  display: block;
}

.checkbox-group label {
  font-weight: normal;
}

.popup-box button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #3f51b5, #00bcd4);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 30px;
  margin-top: 15px;
  cursor: pointer;
}

.popup-box .terms,
.popup-box .login-link {
  font-size: 13px;
  text-align: center;
  color: #555;
  margin-top: 10px;
}

.popup-box .login-link a {
  color: #3f51b5;
  font-weight: 600;
  text-decoration: none;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 22px;
  font-weight: bold;
  color: #3f51b5;
  cursor: pointer;
}



  body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    background-color: #f5faff;
    color: #333;
  }
  header, footer, section {
    padding: 20px;
  }
  .hero {
    background: linear-gradient(to right, #c2e9fb, #a1c4fd);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  .hero h1 span {
    color: #002c58;
  }
  .services-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 5%;
    flex-wrap: wrap;
  }
  .service-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 35px 30px;
    flex: 1 1 30%;
    max-width: 30%;
    text-align: center;
    transition: transform 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-8px);
  }
  .service-card img {
    height: 90px;
    width: 90px;
    object-fit: contain;
    margin-bottom: 25px;
  }
  .service-card h3 {
    font-size: 26px;
    margin-bottom: 25px;
  }
 
  .apply-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    border-radius: 25px;
    background: linear-gradient(to right, #2869a1, #00f2fe);
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  @media (max-width: 992px) {
    .service-card {
      max-width: 100%;
    }
  }

  
/* Section background with flowing animation */
.form-section {
  background: linear-gradient(-45deg, #ffecd2, #fcb69f, #ff9a9e, #fad0c4);
  background-size: 400% 400%;
  animation: gradientWave 12s ease infinite;
  padding: 100px 20px;
  text-align: center;
}

@keyframes gradientWave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}




.success-section {
  background: linear-gradient(135deg, #e9f4fb, #ffffff);
  padding: 90px 20px;
  text-align: center;
}

.success-heading {
  font-size: 36px;
  font-weight: 700;
  color: #122f52;
  margin-bottom: 60px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-card {
  background: #ffffff;
  border: 2px solid #d0e8f4;
  border-radius: 15px;
  padding: 40px 30px;
  width: 250px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card h3 {
  font-size: 30px;
  color: #164e80;
  margin-bottom: 15px;
  font-weight: 700;
}

.stat-card p {
  font-size: 16px;
  color: #3d3d3d;
  line-height: 1.4;
  font-weight: 500;
}


.testimonials-section {
  padding: 60px 30px;
  background-color: #e6f0ff;
  max-width: 1300px;
  margin: auto;
}

.left-heading {
  text-align: center;
  margin-bottom: 40px;
}

.left-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #004aad;
  margin-bottom: 10px;
}

.left-heading h2 span {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  color: #ff6b3d;
}

.review-count {
  font-weight: bold;
  color: #fff;
  background: #004aad;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
}

.testimonial-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  width: 300px;
  background: #ffffff;
  border-left: 5px solid #004aad;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.testimonial:nth-child(2) {
  margin-top: 40px;
}

.testimonial p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.read-more {
  color: #ff6b3d;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-top: 5px;
}

.read-more:hover {
  color: #004aad;
}

.user-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  bottom: 15px;
  right: 15px;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 1000px) {
  .testimonial-boxes {
    flex-direction: column;
    align-items: center;
  }

  .testimonial:nth-child(2) {
    margin-top: 0;
  }
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #e6f0ff;
  color: #2b2b2b;
}

.testimonials-section {
  padding: 60px 30px;
  background-color: #e6f0ff;
  max-width: 1300px;
  margin: auto;
}

.left-heading {
  text-align: center;
  margin-bottom: 40px;
}

.left-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #004aad;
  margin-bottom: 10px;
}

.left-heading h2 span {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  color: #ff6b3d;
}

.review-count {
  font-weight: bold;
  color: #fff;
  background: #004aad;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
}

.testimonial-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  width: 320px;
  min-height: 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.extra {
  display: none;
  font-size: 14px;
  color: #444;
  margin-top: 8px;
}

.read-more {
  color: #ff6b3d;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
}

.read-more:hover {
  color: #004aad;
}

.user-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  bottom: 15px;
  right: 15px;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1000px) {
  .testimonial-boxes {
    flex-direction: column;
    align-items: center;
  }
}



.register-btn:hover {
  background: #333;
  color: #fff;
}


body {
  font-family: 'Open Sans', sans-serif;
  background: #f5f9ff;
  padding: 30px;
}

h2 {
  text-align: center;
  font-size: 32px;
  color: #2b2b2b;
  margin-bottom: 30px;
}

.highlight {
  color: #ff6b3d;
}

.events-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.event-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.event-box:hover {
  transform: translateY(-4px);
}

.event-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.event-content {
  background: linear-gradient(135deg, #003f8e, #004aad);
  color: white;
  padding: 20px;
  position: relative;
  min-height: 200px;
}

.event-content h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.event-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.orange-tag {
  background: #ff6b3d;
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.date-box {
  background: #ffffff;
  color: #004aad;
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.register-btn {
  background: #ffffff;
  color: #004aad;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
}

.register-btn:hover {
  background: #ff6b3d;
  color: #fff;
  border-color: #ff6b3d;
}

.event-bottom {
  text-align: center;
  padding: 15px;
  background: #f9fcff;
}

.event-date {
  color: #004aad;
  font-weight: bold;
  font-size: 14px;
}

.event-university {
  font-size: 15px;
  font-weight: bold;
  margin: 6px 0;
  color: #2b2b2b;
}

.event-bottom a {
  color: #004aad;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.view-all {
  margin-top: 30px;
  text-align: center;
}

.view-all a {
  font-size: 16px;
  color: #004aad;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.view-all a:hover {
  color: #7266ff;
}

@media (max-width: 500px) {
  .event-content h3 {
    font-size: 16px;
  }
  .event-content {
    padding: 16px;
  }
}





ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 6px 0;
  font-size: 14px;
  color: #1a237e;
}

.signup input {
  padding: 8px;
  border: 1px solid #1e88e5;
  width: 80%;
  border-radius: 4px;
  margin-top: 10px;
}

.signup button {
  padding: 9px 15px;
  background: #1e88e5;
  border: none;
  color: white;
  margin-left: 5px;
  cursor: pointer;
  border-radius: 4px;
}

.policy p {
  font-size: 13px;
  margin: 6px 0;
  color: #0d47a1;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

@media screen and (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .signup input {
    width: 100%;
    margin-bottom: 8px;
  }
}



body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: var(--grad1);
}

.success-section {
  position: relative;
  margin: 100px auto;
  max-width: 1200px;
  background: linear-gradient(135deg, var(--grad1), var(--grad2));
  border-radius: 24px;
  padding: 80px 20px;
  overflow: hidden;
}

.overlay-shape {
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--accent);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}




body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  margin: 0;
  padding: 0;
  color: var(--text-dark);
}

.success-section {
  background: var(--bg-section);
  padding: 80px 20px;
}

.success-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  text-align: center;
  color: var(--accent);
  margin-bottom: 10px;
}

.success-subtext {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-card);
  padding: 25px 20px;
  border-radius: 12px;
  border-top: 4px solid var(--primary);
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--label-color);
}

@media (max-width: 768px) {
  .success-section h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}


:root {
  --primary: #004aad;
  --accent: #ff6b3d;
  --highlight: #725fff;
  --secondary: #7ecbf8;
  --bg-gradient: linear-gradient(135deg, #f9fbff 0%, #ddeafc 100%);
  --text-dark: #2b2b2b;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--text-dark);
}

.why-choose-section {
  background: var(--bg-gradient);
  padding: 100px 20px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.why-content {
  flex: 1 1 550px;
  padding: 20px;
}

.why-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.why-point i {
  font-size: 1.4rem;
  color: var(--accent);
}

.why-point p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--highlight);
}


.why-img {
  flex: 1 1 500px;
  text-align: center;
  padding: 20px;
}

.why-img img {
  max-width: 100%;
  border-radius: 16px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
  }
  .why-content h2 {
    text-align: center;
  }
}

:root {
  --light-bg: #f5f7fa;
  --card-bg: #ffffff;
  --accent: #004aad;
  --font-dark: #2b2b2b;
  --font-muted: #616161;
  --shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: var(--font-dark);
}

.testimonial-section {
  padding: 100px 20px;
  background: var(--light-bg);
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonial-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
  background: linear-gradient(to right, var(--accent), #7d4b94);
  
  -webkit-text-fill-color: transparent;
}

.testimonial-header p {
  font-size: 1rem;
  color: var(--font-muted);
  margin-bottom: 60px;
}



@media (max-width: 600px) {
  .testimonial-header h2 {
    font-size: 2rem;
  }
}

:root {
  --accent: #258043;
  --blue:var(--highlight)
  --gray-bg: #f9f9fb;
  --white: #ffffff;
  --text-dark: #2b2b2b;
  --text-muted: #666;
  --shadow: 0 8px 20px rgba(0,0,0,0.08);
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
}

.testimonial-section {
  padding: 100px 20px;
  background: var(--gray-bg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.testimonial-left {
  flex: 1 1 300px;
}

.testimonial-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
color: var(--text-light);
  margin-bottom: 20px;
}

.testimonial-left p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.testimonial-right {
  flex: 2 1 600px;
  overflow-x: auto;
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.review-card {
  flex: 0 0 350px;
  background: var(--white);
  border-radius: 14px;
  padding: 25px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-top img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.review-info {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.review-stars {
  color: gold;
  font-size: 1rem;
  margin: 5px 0;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  height: 105px;
  overflow: hidden;
  position: relative;
}

.read-more {
  margin-top: auto;
  text-align: right;
}

.read-more a {
  text-decoration: none;
  color: var(--orange);
  font-weight: 500;
}

.testimonial-section::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
  }

  .testimonial-left {
    text-align: center;
  }

  .testimonial-left h2 {
    font-size: 2.2rem;
  }

  .testimonial-right {
    flex-direction: row;
  }
}















.testimonial-section {
  display: flex;
  padding: 60px 8%;
  background: #f8f9fb;
  flex-wrap: wrap;
  gap: 40px;
}

.testimonial-left {
  flex: 1;
  min-width: 280px;
}

.testimonial-left h2 {
  font-size: 34px;
  font-family: 'Playfair Display', serif;
  color: #2b2b2b;
}

.testimonial-left h2 span {
  color: #ff6b3d;
  font-weight: bold;
}

.google-review-box {
  margin-top: 20px;
  background-color: #004aad;
  padding: 14px 20px;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  width: fit-content;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
}

.testimonial-cards {
  flex: 2;
  overflow-x: auto;
  display: flex;
  gap: 24px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.testimonial-cards::-webkit-scrollbar {
  height: 8px;
}

.testimonial-cards::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.testimonial-card {
  flex: 0 0 300px;
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 15px;
  color: #2b2b2b;
  line-height: 1.6;
}

.testimonial-card .read-more {
  color: #ff6b3d;
  font-weight: bold;
  margin-top: 12px;
  cursor: pointer;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px; /* Increased vertical space */
}

.profile-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info div {
  font-size: 14px;
  color: #2b2b2b;
}

.google-review-box {
  margin-top: 20px;
  background-color: #004aad;
  padding: 14px 20px;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  width: fit-content;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
}


.stars {
  color: #ffa500;
  font-size: 14px;
}

.events-section {
  padding: 60px 8%;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.events-section h2 {
  font-size: 32px;
  text-align: center;
  color: #004aad;
  margin-bottom: 40px;
  font-weight: bold;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.event-card {
  width: 300px;
  background: #f3f7ff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  object-fit: cover;
}

.event-card h4 {
  font-size: 18px;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.event-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.event-card .register-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #004aad;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

.event-card .register-btn:hover {
  background: #003a93;
}



.super-footer {
  background: linear-gradient(to right, #f0f6ff, #fdfdff);
  padding: 60px 8% 20px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

.super-footer .top-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo-area {
  flex: 1;
  min-width: 240px;
}

.footer-logo-area h2 {
  font-size: 22px;
  color: #004aad;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.footer-logo-area p {
  color: #ff6b3d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h4 {
  color: #7266ff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.footer-column a {
  display: block;
  color: #004aad;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #ff6b3d;
}

.signup-box input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background: #dceeff;
  color: #004aad;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  margin-top: 10px;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #d6e6ff;
  padding-top: 20px;
  font-size: 13px;
  text-align: center;
  color: #555;
  font-weight: 500;
}

@media (max-width: 768px) {
  .top-footer {
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo-area, .footer-column {
    text-align: center;
  }

  .signup-box input {
    text-align: center;
  }
}



:root {
  --primary: #07f097;
  --primary-light: #16e67b;
  --hover: #25e9ae;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --card-bg: #f9f9f9;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
}

a {
  color: var(--text-light);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--hover);
}

/* 🌟 FOOTER STYLE */
.footer {
  background: var(--primary-light);
  padding: 60px 20px 30px;
  color: var(--text-dark);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo-sec {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-logo-sec img {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-logo-sec p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
}

.footer h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin: 8px 0;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer ul li i {
  margin-right: 10px;
  color: var(--primary);
  min-width: 18px;
}

.email-box {
  display: flex;
  margin-top: 15px;
}

.email-box input {
  padding: 10px;
  border: none;
  border-radius: 6px 0 0 6px;
  width: 70%;
  max-width: 200px;
  outline: none;
}

.email-box button {
  padding: 10px 16px;
  border: none;
  background: var(--primary);
  color: var(--white);
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: 0.3s;
}

.email-box button:hover {
  background: var(--hover);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer ul li {
    justify-content: center;
  }

  .email-box {
    justify-content: center;
  }
}

:root {
  --primary: #0ca678;
  --primary-light: #d1fae5;
  --hover: #08966b;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --card-bg: #f9f9f9;
}/* Header Container */
header {
  background-color: #005c45; /* Dark Green */
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

/* Navigation Bar */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

nav ul li {
  position: relative;
  color: #f0f8f5;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: color 0.3s ease;
}

nav ul li:hover {
  color: #7ed957; /* Accent green on hover */
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #e6fff2; /* Soft greenish background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  border-radius: 6px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  padding: 10px 15px;
  color: #005c45;
  border-bottom: 1px solid #cdebdc;
}

.dropdown-content li:last-child {
  border-bottom: none;
}

.dropdown-content li:hover {
  background-color: #ccf5e1; /* light greenish hover */
  color: #003c30;
}

/* Login Button */
.login-btn {
  background-color: #7ed957;
  color: #00402c;
  padding: 8px 20px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 20px;
}

.login-btn:hover {
  background-color: #66c04d;
  color: #ffffff;
}




.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  background-color: #004aad;
  padding: 20px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
.navbar li {
  position: relative;
}
.navbar a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 25px;
  padding: 8px 12px;
  display: block;
  transition: 0.3s;
}
.navbar a:hover {
  background-color: #003a85;
  border-radius: 6px;
}

/* Header Style */
.main-header {
  background-color: #00408f; /* slightly darker blue */
  color: #ffffff;
  padding: 16px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.logo-container img  .login-link{
  width: 200px;
  height: auto;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.main-nav .nav-list li {
  position: relative;
}

.main-nav .nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.main-nav .nav-list a:hover {
  color: #ffcc00;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  background-color: rgb(97, 228, 85);
  top: 100%;
  left: 0;
  min-width: 200px;
  display: none;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.dropdown-menu li a {
  color: rgb(201 35 35);
  padding: 12px 16px;
  display: block;
  font-weight: 500;
}

.dropdown-menu li {
  background-color: rgb(14 194 218);
  color: rgb(22 69 131);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Fix disappearing issue */
.dropdown-menu {
  pointer-events: auto;
}

/* Login Button */
.login-btn {
  background-color: #8cc63f;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.login-btn:hover {
  background-color: #76ab33;
}



.start-app-btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #004aad, #7266ff);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 74, 173, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.start-app-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  z-index: 0;
}

.start-app-btn:hover::before {
  left: 0;
}

.start-app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 74, 173, 0.4);
}



.testimonial-card {
  width: 100%;
  max-width: 350px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 20px;
  margin: 15px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #2b2b2b;
}

.more-text {
  display: none;
}

.testimonial-card.open .more-text {
  display: inline;
}

.read-more-btn {
  background-color: #004aad; /* Dark blue */
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background-color: #6fa7ff; /* Light blue on hover */
  color: #000;
}


.student-profile-info {
  margin-top: 12px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.student-name {
  font-weight: 600;
  font-size: 16px;
  color: #2b2b2b;
  margin-bottom: 4px;
}

.student-university {
  font-size: 14px;
  color: #555;
  font-style: italic;
}
.student-profile-info {
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.logo-container img {
   width: 130px;
   height: auto;
  display: block;

}

.logo-container {
  font-weight: 1000; /* bold text if text inside logo */
   font-size: 100px;  /* if any text like 'CareerOutlook' is there  */
  margin-bottom: 4px;
}
*{
  font-size: inherit;
}

.footer-logo img {
  height: 240px;     /* 🔸 Adjust size as needed */
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}



.whatsapp-chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.whatsapp-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #1ebea5, #075e54);
}

.whatsapp-chat-btn img {
  width: 28px;
  height: 28px;
}

  /* Button Style */
  .openPopupBtn {
    background: #004aad;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  /* Popup Overlay */
  .popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* Popup Box */
  .popup-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    position: relative;
  }

  .popup-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
  }
  

  footer {
    background: #f4f4f4;   /* light grey background */
    padding: 20px;
    text-align: center;
    margin-top: 40px;
  }
  footer p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
  }
  .social-links {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 10px;
  }
  .social-links a {
    color: #333;
    font-size: 24px;
    transition: 0.3s;
  }
  .social-links a:hover {
    color: #0077b5;
    transform: scale(1.2);
  }

 
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", Arial, sans-serif;
  background: #f7f9fc;
  color: #333;
  line-height: 1.7;
}

.container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Page Title */
.container h1 {
  font-size: 30px;
  color: #0d47a1;
  border-bottom: 3px solid #0d47a1;
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Section Headings */
.container h2 {
  font-size: 22px;
  color: #1565c0;
  margin-top: 30px;
  margin-bottom: 12px;
}

/* Paragraph */
.container p {
  margin: 12px 0;
  text-align: justify;
}

/* Lists */
.container ul {
  margin: 12px 0 12px 20px;
}
.container ul li {
  margin: 6px 0;
}

/* Highlight Boxes (Optional) */
.notice-box {
  background: #f0f4ff;
  padding: 15px;
  border-left: 4px solid #0d47a1;
  border-radius: 8px;
  margin: 20px 0;
}

/* Contact / Footer Section */
.contact-info {
  margin-top: 30px;
  padding: 20px;
  background: #eef4ff;
  border-radius: 10px;
}
.contact-info p {
  margin: 8px 0;
}