@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --deep-navy: #061B35;
  --primary-blue: #4C85C5;
  --vibrant-green: #57A546;
  --soft-green: #CCE5C6;
  --light-blue: #B0D0ED;
  --headline-black: rgba(0, 0, 0, 0.95);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: var(--headline-black);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep-navy);
  margin-bottom: 0.6rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

.subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}


p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--headline-black);
  margin-bottom: 1rem;
}

/* Links */
a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--vibrant-green);
}

/* HEADER STYLES */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.8rem;   background-color: var(--deep-navy);
  color: white;
  position: sticky;
  top: 0;
  z-index: 999;
  animation: fadeInDown 0.6s ease-in-out;
}


.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn.demo {
  background-color: var(--vibrant-green);
  color: white;
}

.btn.launch {
  background-color: var(--primary-blue);
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Fade-in Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    margin-top: 0.8rem;
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4, h5, h6, .subtitle { font-size: 1.1rem; }
  p { font-size: 0.95rem; }
}


.back-widget {
  position: fixed;
  top: 90px; /* adjust based on header height */
  left: 1rem;
  z-index: 1100;
  background-color: var(--primary-blue);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-widget:hover {
  background-color: var(--light-blue);
  transform: scale(1.1);
}

/* Hamburger (visible on mobile only, right-aligned) */
.hamburger {
  font-size: 2rem;
  cursor: pointer;
  display: none;
  color: white;
  margin-left: auto;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-actions {
    display: none !important;
  }
}

/* Dropdown tile */
.dropdown-tile {
  display: none;
  position: absolute;
  top: 4rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem;
  border-radius: 12px;
  z-index: 999;
  flex-direction: column;
  animation: slideDown 0.3s ease;
  width: 180px;
}

.dropdown-tile.active {
  display: flex;
}

/* Close icon */
.dropdown-tile .close {
  font-size: 1.4rem;
  color: white;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

/* Menu links */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.menu-items a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.menu-items a:hover {
  color: var(--vibrant-green);
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern Animated Buttons */

.modern-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #f9fafb;
  color: var(--deep-navy);
  border: 2px solid transparent;
  border-radius: 9999px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  isolation: isolate;
}

.modern-btn::before {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  z-index: -1;
  transition: all 0.5s ease;
}

.modern-btn:hover::before {
  left: 0;
}

.modern-btn:hover .icon {
  transform: rotate(90deg);
  background-color: white;
  color: var(--deep-navy);
}

.modern-btn .icon {
  width: 32px;
  height: 32px;
  padding: 0.4rem;
  border-radius: 50%;
  border: 1px solid var(--deep-navy);
  transition: all 0.3s ease;
}

/* Color variants */
.modern-btn.green::before {
  background-color: var(--vibrant-green);
}

.modern-btn.blue::before {
  background-color: var(--primary-blue);
}

.modern-btn.green:hover {
  color: white;
}

.modern-btn.blue:hover {
  color: white;
}
.logo img.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-left: 4rem; 
}


.higher-education-section {
  background: #f8f9fb;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.he-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.he-text {
  flex: 1 1 600px;
}

.he-text h2 {
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.intro {
  font-size: 1.2em;
  color: #34495e;
  margin-bottom: 15px;
}

.description {
  color: #555;
  margin-bottom: 25px;
}

.he-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.he-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #2c3e50;
}

.he-features .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  fill: #2980b9;
  flex-shrink: 0;
  margin-top: 2px;
}

.he-why {
  padding: 50px 5%;
  background: #f9f9f9;
  text-align: center;
}

.he-subheading {
  font-size: 24px;
  margin-bottom: 40px;
  color: #333;
}

.he-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
  border-left: 4px solid #3498db;
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.benefit p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive layout for tablets and below */
@media (max-width: 1024px) {
  .he-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .he-benefits {
    grid-template-columns: 1fr;
  }
}

.call-to-action {
  text-align: left;
  margin-top: 30px;
}

.call-to-action p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #2c3e50;
}

.cta-button {
  display: inline-block;
  background: #3498db;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #217dbb;
}

.he-image {
  flex: 1 1 400px;
  text-align: center;
}

.he-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}




.site-footer {
  background-color: var(--deep-navy);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 3rem 1.5rem 1rem;
  animation: fadeInUp 1s ease-in;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h3 {
  font-size: 1.1rem;
  color: var(--vibrant-green);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--vibrant-green);
}

.contact-info p {
  margin: 0.3rem 0;
  color: var(--light-blue);
}

.social-icons {
  margin-top: 0.8rem;
}

.social-icons a {
  color: #ffffff;
  margin-right: 0.8rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: var(--vibrant-green);
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  font-size: 0.85rem;
  color: var(--light-blue);
}
.footer-bottom p {
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    width: 100%;
  }

  .social-icons a {
    margin-bottom: 0.5rem;
  }
}
.he-why {
  padding: 50px 5%;
  background: #f9f9f9;
  text-align: center;
}

.he-subheading {
  font-size: 24px;
  margin-bottom: 40px;
  color: #333;
}

.he-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
  border-left: 4px solid #3498db;
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.benefit p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive layout for tablets and below */
@media (max-width: 1024px) {
  .he-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .he-benefits {
    grid-template-columns: 1fr;
  }
}
