/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #f8fbff;
  color: #1b1e32;
}

.navbar {
  position: fixed; /* Fix it at the top */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 60px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000; /* Keeps it on top of other elements */
  display: flex;
}
.logo-nev {
  font-size: 42px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  line-height: 1.2;
}

.logo-nev,
.logo-nev span,
.logo-nev small {
  background: linear-gradient(90deg, green, red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.logo-nev small {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin-top: 5px;
}

/* .logo-nev {
  font-size: 20px;
  font-weight: bold;
}

.logo-nev span {
  color: #0073e6;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
} */

/* Toggle button (mobile only) */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  margin-left: -10px;
}

/* To prevent content from going under the fixed navbar */
body {
  padding-top: 80px; /* Adjust based on navbar height */
}

.logo-nev {
  font-size: 20px;
  font-weight: bold;
  /* color: #0c0e6a; */
}

.logo-nev span {
  margin-left: 3px;
}
.logo-nev small {
  font-size: 15px;
  color: #f44242;
  font-weight: bold;
  margin-left: 10px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
  margin-left: 400px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-outline,
.btn-primary {
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid #1e90ff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline {
  background: white;
  color: #1e90ff;
}

.btn-outline:hover {
  background: #e6f2ff;
}

.btn-primary {
  background: #1e90ff;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #1479cc;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 320px;
}

.hero-text h1 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
  max-width: 500px;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  
}
.cta-buttons a {
  text-decoration: none;
}

.hero-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.features-section {
  text-align: center;
  padding: 30px 30px;
  background-color: #fff;
}

.features-section h2 {
  font-size: 32px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.features-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 40px;
  background-color: #e6f2ff;
  color: #1e90ff;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  color: #1e3a8a;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #444;
}
/* PROGRAMS SECTION */
/* .programs-section {
  background-color: #f9fafb;
  padding: 40px 20px;
  text-align: center;
}

.programs-section h2 {
  font-size: 32px;
  color: #1e3a8a;
  margin-bottom: 10px;
  font-weight: 700;
}

.programs-section p {
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  background-color: #ffffff;
  border-top: 4px solid #3b82f6;
  border-radius: 10px;
  padding: 24px;
  text-align: left;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.program-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.program-icon {
  background-color: #eff6ff;
  color: #3b82f6;
  width: 40px;
  height: 40px;
  display: flex;
  font-size: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 16px;
}

.program-title {
  font-size: 20px;
  color: #1e3a8a;
  margin-bottom: 8px;
  font-weight: 600;
}

.program-desc {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.programs-link {
  margin-top: 40px;
  display: inline-block;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.programs-link:hover {
  text-decoration: underline;
} */


/* ✅ All Programs Tag Hover */
/* .program-card:hover .program-tag {
  background: #1e3a8a;
} */


.university-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.university-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.university-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-card-home {
  flex: 0 0 auto;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 15px;
  margin: 0 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.logo-card-home:hover {
  transform: translateY(-5px);
}

.logo-card-home img {
  width: 150px; /* fixed width */
  height: 80px; /* fixed height */
  object-fit: contain;
  display: block;
  margin: auto;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trust-section {
  background-color: #f8fbff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.trust-section h2 {
  font-size: 28px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.trust-section .subtitle {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1rem;
  line-height: 1.6;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-5px);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px; /* icon aur text ke beech ka gap */
  margin-bottom: 10px;
}

.card-header img {
  width: 40px;
  height: 40px;
  background: #e7f2ff;
  padding: 10px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.card-header h3 {
  margin: 0;
  color: #1e3a8a;
  font-size: 1.1rem;
}
.card img {
  width: 60px;
  height: 56px;
  background: #e7f2ff;
  padding: 0px;
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 30px;
}

.card h3 {
  color: #1e3a8a;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
.testimonial-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 28px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.testimonial-section .icon {
  font-size: 1.5rem;
  margin-right: 8px;
}

.testimonial-section .subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #f8fbff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h3 {
  color: #1e3a8a;
  font-size: 1.1rem;
  margin: 0;
}

.profile p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.quote {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin: 15px 0;
}

.stars {
  color: #fabb05;
  font-size: 1.1rem;
}
.how-it-works {
  background-color: #f8fbff;
  padding: 60px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 28px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.how-it-works .subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-card .step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #0a1e57;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  line-height: 32px;
  text-align: center;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.step-header img {
  width: 56px;
  height: 55px;
  background: #e7f2ff;
  border-radius: 50%;
  /* object-fit: contain; */
  flex-shrink: 0;
}

.step-header h3 {
  font-size: 1.1rem;
  color: #1e3a8a;
  margin: 0;
}

.step-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.contact-section {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #0c1e57;
  margin-bottom: 10px;
}

.contact-info p {
  color: #4b4b4b;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item .icon {
  width: 40px;
  height: 40px;
  background: #e7f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.info-item .icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.info-item h4 {
  margin: 0;
  font-weight: 600;
  color: #0c1e57;
}

.info-item p {
  margin: 5px 0 0 0;
  color: #333;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1976d2; /* Facebook default */
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.social-icons a img {
  width: 28px;
  height: 40px;
  object-fit: contain;
}

/* Instagram */
.social-icons a:nth-child(2) {
  background-color: #e1306c;
}

/* LinkedIn */
.social-icons a:nth-child(3) {
  background-color: #0a66c2;
}

/* Hover Effect */
.social-icons a:hover {
  transform: scale(1.1);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact-form h2 {
  color: #0c1e57;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
  margin-bottom: 20px;
}

.contact-form textarea {
  min-height: 100px;
  margin-bottom: 20px;
}

.contact-form button {
  padding: 14px;
  background-color: #0c1e57;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0a194a;
}

@media (max-width: 768px) {
  .form-group-row {
    flex-direction: column;
  }
}
.nav-logo {
  width: 55px; /* apne according size adjust karein */
  height: 70%;
  border-radius: 30%;
  margin-right: 5px;
  margin-left: -40px;
}
.footer {
  background-color: #0d1e52;
  color: white;
  padding: 50px 20px 20px;
  font-family: "Arial", sans-serif;
}

.footer-container {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 120px;
  margin: 20px;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: white;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cdd5f7;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}
.logo-with-name {
  display: flex;
  align-items: center;
  gap: 10px; /* logo aur text ke beech gap */
}
.company-name {
  font-size: 18px;
  font-weight: bold;
  color: #fff; /* ya apka theme color */
}
.footer-logo {
  width: 55px; /* apne according size adjust karein */
  height: 70%;
  border-radius: 30%;
  margin-right: 5px;
   margin-left: -40px; 
}

.logo-col p {
  color: #cdd5f7;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
}
.logo {
  font-size: 20px;
  line-height: 1;
  color: white;

  font-weight: bold;
  font-family: Arial, sans-serif;
  line-height: 1.2;
}

.logo,
.logo-span,
.logo-small {
  background: linear-gradient(90deg, green, red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* .logo-nev small {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin-top: 5px;
} */
.logo span {
margin-left: 3px;}

.logo small {
  font-size: 16px;
  color: #f44242;
  font-weight: bold;
  margin-left: 10px;
}

.contact-col p {
  font-size: 15px;
  color: #cdd5f7;
  margin-bottom: 10px;
}

.contact-col i {
  margin-right: 10px;
  color: #5ba4ff;
}

.footer-bottom {
  border-top: 1px solid #2a3c7c;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #cdd5f7;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links a {
  margin-left: 20px;
  color: #cdd5f7;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.contact-col {
  color: #fff;
  font-family: Arial, sans-serif;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px; /* har item ke beech gap */
}

.contact-icon {
  width: 30px;
  height: 28px;
  margin-right: 12px; /* icon aur text ke beech gap */
  border-radius: 50%;
}

.contact-item span {
  font-size: 16px;
  color: #ccc;
  line-height: 1.4;
}
.university-section {
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

.university-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 20px;
}

.logo-card {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.logo-card img {
  max-width: 85%;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.university-name {
  position: absolute;
  bottom: 15px;
  background: rgba(22, 5, 154, 0.6);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Hover Effects */
.logo-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.logo-card:hover img {
  transform: translateY(-20px) scale(1.1);
}

.logo-card:hover .university-name {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.about-section {
  padding: 60px 10%;
  background: #f9fbff; /* light background */
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 28px;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.about-text p,
.about-text ul {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.about-text .quote {
  font-style: italic;
  color: #444;
  margin-top: 15px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  margin-bottom: 10px;
}

.about-img {
  flex: 1;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  border-radius: 12px; /* rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
    text-align: center;
  }
  .about-row.reverse {
    flex-direction: column;
  }
}

/* =================== Responsive Design =================== */

/* Tablet Breakpoint */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links li {
    margin: 10px 0;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    width: 200px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
     margin-left: 100px; 
    font-size: 35px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding: 0;
  }

  .testimonials-container {
    flex-direction: column;
  }

  .contact-container {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .btn {
    padding: 6px 12px;
    font-size: 14px;
  }

  .hero {
    padding: 40px 10px;
  }

  .features-container,
  .programs-container {
    grid-template-columns: 1fr;
  }

  .testimonial {
    flex: 1 1 100%;
  }

  .university img {
    max-width: 100px;
  }
}
