@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Hentaigana:wght@200..900&family=Noto+Serif+Todhri&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

*:not(.navbar-link, .navbar-link, .section-title *) {

  text-decoration: none;
  outline: none;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

::selection {
    background: rgba(255, 215, 0, 0.3);
    color: white;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  padding: 0;  /* Removed padding completely */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem 0 1rem !important;  /* Added a small left padding */
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
  margin-left: -1rem !important;  /* Reduced from -4rem to a more moderate -1rem */
  padding-left: 0 !important;
}

/* Make the logo bigger with a more specific selector */
.nav-brand img.logo {
  height: 25rem !important;
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
  object-fit: contain !important;
  margin-left: 0 !important; /* Remove this additional negative margin */
  transform: translateX(0) !important; /* Remove the transform */
}

.logo {
  height: 25rem !important;  /* Much larger with !important to override other styles */
  width: 25rem !important;   /* Also set a specific width */
  max-width: unset !important; /* Remove any max-width constraints */
  max-height: unset !important; /* Remove any max-height constraints */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
  padding-right: 4rem;  /* Keep some right padding */
}

.nav-links a {
  font-size: 1.8rem;
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

/* Remove underline effects */
.nav-links a::after {
  display: none;  /* Remove the underline effect */
}

.nav-links a:hover,
.nav-links a.active {
  color: #012863;
}

.nav-cta {
  background: #1e4d92;
  color: #fff;
  padding: 1.2rem 2.4rem;
  border-radius: 8px;
  border: none;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(42, 157, 143, 0.2);
}

.nav-cta:hover {
  background: #012863;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(38, 70, 83, 0.3);
}

.nav-links .nav-cta.secondary {
  background: transparent;
  color: #012863;
  padding: 1.2rem 2.4rem;
  border-radius: 8px;
  border: 2px solid #012863;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-links .nav-cta.secondary.login-btn {
  padding: 1rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.nav-links .nav-cta.secondary:hover {
  background: #012863;
  color: white;
}

/* Mobile menu button */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 101; /* Ensure it's clickable above other elements */
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease;
  background-color: #333; /* Add darker color to make sure it's visible */
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links.show {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 999;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 0;
    gap: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 7rem 0 2rem 0;
    padding-left: 0;  /* Remove padding on mobile */
    justify-content: flex-start;
    z-index: 1000; /* Ensure it appears above other content */
    display: flex;
    align-items: center;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1rem 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .nav-links.active li {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
  }
  
  .nav-links.active li:nth-child(2) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.5s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.6s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.7s; }
  .nav-links.active li:nth-child(7) { transition-delay: 0.8s; }
  .nav-links.active li:nth-child(8) { transition-delay: 0.9s; }

  .nav-links a {
    font-size: 2.5rem;  /* Increased mobile font size */
    padding: 1rem 0;  /* Adjusted mobile padding */
    font-weight: 500;
    display: inline-block;
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #012863;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 50%;
  }

  .nav-cta {
    font-size: 2.2rem;  /* Adjusted mobile CTA font size */
    padding: 1.2rem 2.5rem;  /* Adjusted mobile CTA padding */
    margin-top: 1.5rem;
  }

  .nav-brand {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
    margin-left: -1rem !important; /* Reduced for mobile too */
    padding-left: 0 !important;
    z-index: 1001; /* Make logo appear above the fullscreen menu */
  }
  
  .hamburger {
    z-index: 1001; /* Make hamburger appear above the fullscreen menu */
  }
  
  /* Add close button styling at the top of the menu */
  .nav-links.active::before {
    content: "×";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: #333;
    cursor: pointer;
    display: none; /* Hide as we're using hamburger instead */
  }
  
  /* Style the profile dropdown in fullscreen menu */
  #profileContainer {
    margin-top: 2rem;
  }
  
  .profile-trigger i {
    font-size: 2.5rem;
  }
  
  .dropdown-content {
    position: relative;
    box-shadow: none;
    margin-top: 1rem;
    width: 100%;
    background: #f5f5f5;
    border-radius: 10px;
  }
  
  .dropdown-content a {
    font-size: 2rem;
    padding: 1.2rem;
  }
}

/* Teacher Login Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #2d3748;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: #f7fafc;
  color: #2563EB;
}

.dropdown-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f7fafc;
    margin-top: 0.5rem;
  }

  .dropdown-item {
    padding: 1rem 2rem;
    font-size: 1.6rem;
  }
}

/* Active link styles */
.nav-links a.active {
  color: #2563EB; /* Blue color for active link */
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2563EB;
  transition: width 0.3s ease;
}

/* Hover effect for non-active links */
.nav-links a:not(.active):hover {
  color: #2563EB;
}



/* Mobile Responsive */
@media (max-width: 768px) {

  .nav-content {
    padding: 0 2rem;
  }

  /* Remove conflicting styles for nav-links */
  /* .nav-links {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 2rem;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  } */

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-cta {
    font-size: 2.8rem; /* Matching font size for CTA button */
    padding: 1.5rem 2rem; /* Adjusted padding */
  }


  .hero-subtitle {
    font-size: 2.2rem;
    width: 100%;
    padding: 0 2rem;
    margin: 2rem 0;
    white-space: normal;  /* Allow text to wrap */
    text-align: left;
  }

  /* Force line breaks after specific text */
  .hero-subtitle::after {
    content: 'Empowering students with personalized\A learning experiences and expert guidance\A for academic excellence.';
    white-space: pre;  /* Preserve line breaks */
    display: block;
    font-size: 2.6rem;
  }

  /* Hide the original text */
  .hero-subtitle br,
  .hero-subtitle span {
    display: none;
  }

  .hero-right {
    display: none !important;
  }

  
  .nav-brand {
    padding-left: 0;  
    margin-left: 0;/* Increased negative margin */
  }

  .welcome-text {
    font-size: 7rem;
    display: block;
    text-align: left;
    margin-bottom: 2rem;
  }

  .dear-text {
    font-size: 7rem;
    margin-top: 0;  /* Reset any existing margin */
  }



  .trusted-text {
    font-size: 2.8rem;
    text-align: left;
    margin: 2rem 0;
  }
}

/* Adjust main content padding to account for fixed navbar */
.container {
  padding-top: 8rem;
}



/* Hero Section Updates */
.section-1 {
  position: relative;
  min-height: 90vh; /* Just reduced height */
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}



.hero-title {
  font-size: 7.2rem;
  
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}





.welcome-text {
  font-size: 4.8rem;
  display: inline-block;
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: transparent;
  min-width: 300px;

}

.welcome-text::before {
  content: 'Welcome to';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: #252525;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-right: 4px solid #008fb2;
  animation: typing 4s steps(10) infinite;
}

@keyframes typing {
  0%, 90%, 100% {
    width: 0;
  }
  30%, 60% {
    width: 100%;
  }
}

@keyframes cursor {
  50% {
    border-color: transparent;
  }
}





.dear-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #007BFF;
  margin-bottom: 2.5rem; /* Increased from default to add more space */
  display: inline-block;
  position: relative;
  line-height: 1.2;
}

.dear-text .line1,
.dear-text .line2 {
  font-family: 'Poppins', sans-serif;  /* Added selector and !important */
  font-weight: 500;
  display: block;
}


.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #404040;
  max-width: 800px;
  margin: 0 0 3rem 0; /* Increased bottom margin to 3rem */
  line-height: 1.5;
  position: relative;
  text-align: left;
}

.trusted-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #555;
  margin: 0 0 4rem 0; /* Increased bottom margin to 4rem */
  position: relative;
}

.trusted-number {
  color: #2563EB;
  font-weight: 600;
  display: inline;  /* Ensure number stays inline */
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 2rem; /* Adjust as needed but keeping some space */
}

.primary-btn {
  padding: 1.6rem 3.2rem;
  background: #25aceb;
  color: #fff;
  border: none;
  border-radius: 50px;  /* More rounded corners */
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);  /* Subtle shadow */
  text-transform: capitalize;  /* Better text formatting */
  letter-spacing: 0.5px;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  background: #1d84d8;  /* Slightly darker on hover */
}
.secondary-btn {
  padding: 1.5rem 3rem;
  background: transparent;
  color: #2563EB;
  border: 2px solid #2563EB;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.secondary-btn:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-1 {
    min-height: 90vh; /* Just reduced height */
    padding: 2rem;
    justify-content: flex-start;
  }


  .hero-left {
    width: 100%;
    padding: 1rem 0;
    margin-top: -5rem; /* Reduced from -15rem */
  }

 
 

  .dear-text .line1,
  .dear-text .line2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    display: block;
    font-size: 8rem !important;
    white-space: nowrap;
  }



  /* Remove any conflicting styles */
  .hero-title {
    display: block;
    width: 100%;
  }

  /* Adjust typing animation for mobile */
  @keyframes typing {
    0%, 90%, 100% {
      width: 0;
    }
    30%, 60% {
      width: 9.2ch; /* Explicitly set width to match text length */
    }
  }

  /* Subtitle */
  .hero-subtitle {
    font-size: 5rem !important;
    width: 100%;
    padding: 0 1rem; /* Reduced from 2rem */
    margin: 1rem 0; /* Reduced from 2rem */
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* Reduced from 1.5rem */
  }

  .hero-subtitle br {
    display: block;  /* Force line breaks in mobile */
  }

  /* Trusted by text */
  .trusted-text {
    font-size: 2.5rem !important;
    text-align: left;
    padding-top: 1rem; /* Reduced from 2rem */
    margin-top: 0.5rem; /* Reduced from 2rem */
    white-space: nowrap;  /* Reinforce single line on mobile */
  }
  
  .trusted-line1,
  .trusted-line2 {
    display: block;
    line-height: 1.4;
  }

  /* Button */
  .hero-buttons {
    justify-content: flex-start; /* Align button to left */
    margin-top: 1.2rem; /* Reduced from 2rem */
    padding-top: 1rem; /* Reduced from 2rem */
  }

  .primary-btn {
    font-size: 3rem;
    padding: 2rem 4rem;
    width: auto; /* Remove fixed width */
    min-width: 300px;
  }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
  .welcome-text {
    font-size: 6rem;
  }

  .dear-text {
    font-size: 7rem;
  }

  .hero-subtitle {
    font-size: 2rem;
    margin: 2rem 0;
  }
}




.section-1 {
  position: relative;
  min-height: 90vh; /* Just reduced height */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-left {
  width: 45%;  /* Keep original width for desktop */
  padding-left: -1rem;
  z-index: 2;
}

.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  background: #033451;
  z-index: 1;
  clip-path: polygon(40% 0, 30% 50%, 40% 100%, 100% 100%, 100% 0);
  display: flex;
  justify-content: center;
  align-items: center;
 

}



.whiteboard-container {
  position: absolute;
  right: 8%;  /* Adjusted from 10% to move it closer to the right */
  top: 45%;   /* Adjusted from 50% to align with the model */
  transform: translateY(-50%);
  width: 400px;  /* Increased from 300px */
  z-index: 3;
}

.whiteboard-small {
  width: 100%;
  height: auto;
  opacity: 0.95;  /* Slightly increased opacity */
}

.whiteboard-text {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 85%;  /* Increased text area width */
}

.nepali-text {
  color: #033451;
  font-size: 3rem;  /* Increased from 2.4rem */
  font-weight: 600;
  margin: 0.8rem 0;  /* Increased spacing between lines */
  line-height: 1.4;
  font-family: 'Preeti', Arial, sans-serif;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .whiteboard-container {
    width: 350px;
  }
  .nepali-text {
    font-size: 2.6rem;
  }
}

@media (max-width: 1200px) {
  .whiteboard-container {
    width: 300px;
  }
  .nepali-text {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .whiteboard-container {
    width: 250px;
    right: 5%;
  }
  .nepali-text {
    font-size: 1.8rem;
  }
}

.sketchfab-embed-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.sketchfab-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.model-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #033451);
  pointer-events: none;
  z-index: 1;
}

.pointer-overlay {
  position: absolute;
  bottom: 15px; /* Adjust this value to align with the pointer */
  left: 50%;
  transform: translateX(-50%);
  width: 145px; /* Size of the pointer button area */
  height: 140px; /* Size of the pointer button area */
  background: #033451;
  border-radius: 100%; /* Makes it circular */
  pointer-events: none;
  z-index: 2;
}

/* Hide all Sketchfab UI elements */
.sketchfab-embed-wrapper iframe {
  pointer-events: none; /* This will disable all interactions */
}

/* Hide the attribution text */
.sketchfab-embed-wrapper p {
  display: none;
}



/* Stars background */
.hero-right::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(white 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  opacity: 0.1;
  animation: twinkle 1s infinite alternate;
}

/* Add some larger stars */
.hero-right::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(white 1.5px, transparent 1.5px),
    radial-gradient(white 1.5px, transparent 1.5px);
  background-size: 100px 100px;
  background-position: 0 0, 50px 50px;
  opacity: 0.05;
  animation: twinkle 3s infinite alternate;
}

/* Twinkling animation */
@keyframes twinkle {
  0% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.15;
  }
}


















/* Section 2 */

.role-heading {
  text-align: center;
  font-size: 10rem;
  color: #1F2937;
  margin-bottom: 6rem;  /* Reduced from 10rem to 6rem */
  font-weight: 700 !important;
  font-family: "Noto Serif Hentaigana", serif;

  animation: fadeUp 0.8s ease forwards;
  animation-play-state: paused;
}


/* Mobile responsive adjustment */
@media (max-width: 768px) {
  .section-2 {
    padding: 2rem;
    background: #f8f8f8;
  }

  .role-heading {
    text-align: center;
    margin-top: 2rem;
    font-size: 3.2rem;
    color: #1F2937;
    margin-bottom: 4rem;
    font-weight: 700 !important;
  }

  .role-cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 1rem;
    width: 100%;
  }

  .role-card {
    background: #fff;
    padding: 5rem 2rem !important;  /* Increased vertical padding */
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 300px;  /* Reduced width */
    min-height: auto !important;  /* Increased height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .icon-circle {
    width: 8rem;
    height: 8rem;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;  /* Increased bottom margin */
  }

  .role-card h3 {
    font-family: "Roboto", serif;
    font-size: 5rem !important;  /* Added !important */
    margin-bottom: 2.5rem;
    font-weight: 600 !important;
    color: #333;
  }

  .role-card p {
    font-size: 3rem !important;  /* Added !important */
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
    color: #666;
  }

  .role-btn {
    width: 80%;
    padding: 1.6rem;
    border-radius: 50px;
    margin: 0 auto;
    font-size: 2.8rem !important;  /* Added !important */
    font-weight: 500;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
.section-2 {
  padding: 4rem 4rem;  /* Reduced from 10rem to 4rem */
  background-color: #f8f8f8;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: relative;
}

.section-2::before {
  content: '';
  position: absolute;

  background-color: rgba(255, 255, 255, 0.97);
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}



.role-heading {
  text-align: center;
  margin-top: 2rem;
  font-size: 8rem;
  color: #1F2937;
  margin-bottom: 6rem;
  font-weight: 600;
  transform: translateY(50px);
}

.role-card {
  background: #fff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transform: translateY(50px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 1 300px;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
}


.role-cards-container {
  display: flex;  /* Change from grid to flex */
  justify-content: center;  /* Center cards horizontally */
  gap: 4rem;  /* Space between cards */
  padding: 2rem;
  max-width: 1400px;  /* Maximum width to prevent stretching on large screens */
  margin: 0 auto;  /* Center the container */
}


/* Animation class */
.visible {
  animation: fadeInUp 0.8s ease forwards;
}

/* Delay for cards */
.role-card:nth-child(1).visible {
  animation-delay: 0.2s;
}

.role-card:nth-child(2).visible {
  animation-delay: 0.4s;
}

.role-card:nth-child(3).visible {
  animation-delay: 0.6s;
}





.icon-circle {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.parent-card .icon-circle {
  background: rgba(147, 51, 234, 0.1);
}

.teacher-card .icon-circle {
  background: rgba(22, 163, 74, 0.1);
}

.school-card .icon-circle {
  background: rgba(37, 99, 235, 0.1);
}

.icon-circle i {
  font-size: 3rem;
}

.parent-card i {
  color: #9333EA;
}

.teacher-card i {
  color: #16A34A;
}

.school-card i {
  color: #2563EB;
}

.role-card h3 {
  font-size: 3.2rem;
  color: #1F2937;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.role-card p {
  font-size: 1.8rem;
  color: #6B7280;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.role-btn {
  padding: 1.2rem 3rem;
  border-radius: 50px;
  border: none;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.parent-btn {
  background: #9333EA;
  color: white;
}

.teacher-btn {
  background: #16A34A;
  color: white;
}

.school-btn {
  background: #2563EB;
  color: white;
}

.role-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .role-cards-container {
    flex-wrap: wrap;  /* Allow wrapping on smaller screens */
  }
  
  .role-card {
    flex: 0 1 300px;  /* Slightly smaller on medium screens */
  }
}


/* End of Section 2 */




/* Section 3 - Vacancies */
.section-3 {
  padding: 8rem 0;
  background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(45, 45, 45, 0.85)), url('image/background-2.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.vacancies-section {
  padding: 8rem 2rem;
  position: relative;
  overflow: visible;
  min-height: 100vh;
  width: 100%;  /* Added full width */
}

.vacancies-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  display: flex;  /* Added flex */
  flex-direction: column;  /* Stack children vertically */
  align-items: center;  /* Center horizontally */
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title span {
  font-size: 8rem !important;  /* Increased font size */
  color: #2A9D8F;  /* Added teal blue color */
  font-weight: 600;
  position: relative;
  display: inline-block;
}

/* For mobile view */
@media (max-width: 768px) {
  .section-title span {
    font-size: 3.6rem;  /* Slightly smaller for mobile but still large */
    color: #2A9D8F;
    font-weight: 600;
  }
}

/* Mobile specific fixes */
@media (max-width: 768px) {
  .vacancies-section {
    padding: 6rem 1rem;
    min-height: auto;
  }
  
  .vacancies-container {
    width: 100%;
    padding: 0 1rem;
  }
  
  .section-title {
    margin: 2rem 0 4rem 0;
    height: auto;
    min-height: 80px;
  }
  
  .section-title span {
    font-size: 8rem;
    padding: 1rem 0;
    width: 100%;  /* Full width on mobile */
    text-align: center;
  }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
  .section-title span {
    font-size: 4rem;
    padding: 0.5rem 0;
  }
  
  .vacancies-section {
    padding: 4rem 1rem;
  }
}

.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.vacancy-card {
  margin-top: 5rem;
  min-width: calc((100% - 48px) / 3);
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(33, 147, 176, 0.1);
  position: relative;
  overflow: hidden;
}

.vacancy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2193b0, #6dd5ed);
}

.vacancy-card:nth-child(3) {
  background: linear-gradient(145deg, #ffffff, #f0fff7);
}

.vacancy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(33, 147, 176, 0.15);
  background: white;
}

/* Title size */
.vacancy-title {
  font-size: 4rem;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

/* Requirements heading */
.requirements-section h4 {
  font-size: 3.4rem;
  color: #4a5568;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Requirements list items */
.requirements-section li {
  font-size: 3rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

/* Salary section */
.salary-section {
  font-size: 3.4rem;
  padding: 1.5rem;
  margin: 2.5rem 0;
}

/* Subject tag */
.subject-tag {
  font-size: 1.6rem;
  padding: 0.8rem 2rem;
}

/* Apply button */
.apply-button {
  font-size: 1.8rem;
  padding: 1.6rem;
}

/* Slider navigation buttons */
.slider-nav {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
  box-shadow: 0 4px 15px rgba(33, 147, 176, 0.3);
}

.slider-nav:hover {
  background: linear-gradient(135deg, #1c7a94, #5bc0db);
}

/* Mobile Responsive Vacancies Section */
@media (max-width: 768px) {
  .vacancies-container {
    position: relative;
    width: 100%;
    padding: 0 2rem;
    overflow: hidden;
  }
  
  .vacancies-slider {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
  }
  
  .vacancy-card {
    min-width: 100%;  /* Each card takes full container width */
    flex-shrink: 0;   /* Prevent cards from shrinking */
    margin: 0;
    padding: 4rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    background: white;
  }

  .vacancy-title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }

  .requirements-section {
    margin: 3rem 0;
  }

  .requirements-section li {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .salary-section {
    font-size: 2.4rem;
    margin: 2.5rem 0;
  }

  .apply-button {
    font-size: 2.6rem;
    padding: 1.8rem;
    border-radius: 1.2rem;
  }

  /* Navigation buttons */
  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .slider-nav.prev {
    left: 1rem;
  }

  .slider-nav.next {
    right: 1rem;
  }

  .slider-nav:active {
    transform: translateY(-50%) scale(0.95);
  }
}



/* Our Trust Section */
.our-trust {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  
  padding: 4rem 2rem;
    /* Changed to white background */
  min-height: 80vh;
}

.trust-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: 7rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(45deg, #185a9d, #43cea2);  /* Gradient text */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0;
  padding-top: 0;

}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 3rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(67, 206, 162, 0.15);
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 30px;
  border: 4px solid #43cea2;  /* Changed to gradient color */
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  margin-top: 3rem;
}

.testimonial-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 600 !important;
  font-style: normal;
  color: #555;  /* Darker text for better readability */
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 5rem;
  color: #43cea2;
  position: absolute;
  left: -1rem;
  top: -2rem;
  opacity: 0.2;
}

.testimonial-author {
  font-size: 2rem;
  background: linear-gradient(45deg, #185a9d, #43cea2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.testimonial-role {
  font-size: 1.4rem;
  color: #666;
  font-weight: 500;
}

/* Adding decorative elements */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #185a9d, #43cea2);
  border-radius: 15px 15px 0 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trust-heading {
    font-size: 8rem !important;  /* Increased heading size */
    color: #0891B2;  /* Teal blue color */
    text-align: center;
   
    font-weight: 600;

  }

  .testimonial-text {
    font-size: 2rem !important;  /* Increased testimonial text */
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 2rem;
    font-style: normal;
  }

  .testimonial-author {
    font-size: 2.4rem;  /* Increased author name */
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .testimonial-role {
    font-size: 1.8rem;  /* Increased role text */
    color: #6B7280;
  }

  .testimonial-card {
    padding: 2.5rem;  /* Added more padding */
    margin-bottom: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 6rem;
    padding: 0 1rem;
  }

  .testimonial-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .trust-heading {
    font-size: 4rem;
  }

  .testimonial-photo {
    width: 60px;
    height: 60px;
    top: -30px;
  }

  .testimonial-text {
    font-size: 1.4rem;
  }

  .testimonial-author {
    font-size: 1.8rem;
  }
}

/* Optional: Add a subtle pattern to the background */
.our-trust {
  position: relative;
}

.our-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#43cea2 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  pointer-events: none;
}



/* Our Strength Section */
.our-strength {
  padding: 8rem 2rem;
  background: #ffffff;  
  min-height: 80vh;
}

.strength-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: 8rem !important;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(45deg, #185a9d, #2fae85);  /* Gradient text */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6rem;
}

.achievement-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.achievement-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  width: 380px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(67, 206, 162, 0.15);
}

.student-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: -60px auto 20px;
  overflow: hidden;
  border: 4px solid #43cea2;  
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.student-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achievement-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.student-name {
  font-size: 2.4rem;
  color: #185a9d;  /* Changed to theme color */
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.achievement-details {
  font-size: 1.8rem;
  color: #43cea2;  /* Changed to secondary theme color */
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.achievement-quote {
  font-size: 1.8rem;
  color: #666;  /* Changed to dark gray */
  text-align: center;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.subject-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.subject-tags span {
  background: #f5f5f5;  /* Light gray background */
  padding: 0.5rem 1.5rem;
  border-radius: 15px;
  color: #185a9d;  /* Theme color */
  font-size: 1rem !important;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.subject-tags span:hover {
  background: #43cea2;
  color: #fff;
  border-color: #43cea2;
}


/* Optional: Add a subtle pattern to the background */
.our-strength {
  position: relative;
}

.our-strength::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#43cea2 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .strength-heading {
    
    margin-bottom: 8rem;
  }

  .achievement-cards {
    gap: 8rem;
    padding: 0 2rem;
  }

  .achievement-card {
    width: 100%;
    max-width: 340px;
  }

  .student-photo {
    width: 100px;
    height: 100px;
    margin: -50px auto 15px;
  }

  .achievement-badge {
    font-size: 1.4rem;
    padding: 0.6rem 1.2rem;
  }

  .student-name {
    font-size: 2rem;
  }

  .achievement-details {
    font-size: 1.6rem;
  }

  .achievement-quote {
    font-size: 2rem !important;
  }
}



.hub-container {
  position: relative;
  max-width: 1200px;
  height: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.center-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hub-content {
  text-align: center;
  color: #fff;
}

.hub-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hub-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hub-content p {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.apply-btn {
  background: #fff;
  color: #185a9d;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


















/* Mobile Responsive */
@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: 2rem;
  }

  .feature-count {
    font-size: 3rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}







@media (max-width: 1000px) {
  .section-title {
    font-size: 9rem;
    margin: 0 5rem;
  }

  .section-1-icons i {
    font-size: 25rem;
  }

  .cards-container {
    flex-wrap: wrap;
  }

  .card {
    margin: 5rem;
  }

  .section-4 {
    height: 30rem;
  }
}



@media (max-width: 700px) {
  .section-title {
    font-size: 7rem;
    margin: 0 10rem;
  }

  .section-1-icons i {
    font-size: 20rem;
  }

  .menu {
    left: 2rem;
  }

  .section-4 {
    height: 40rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .section-4-text {
    margin-bottom: 8rem;
  }
}

@media (max-width: 550px) {
  html {
    font-size: 40%;
  }

  .navbar-link {
    margin: 0 0.7rem;
  }
}
/* End of Responsive */



/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-btn i {
  font-size: 1.9rem !important;
  animation: pulse 2s infinite;
}

.contact-btn span {
  font-size: 1.6rem;
  font-weight: 600;
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(67, 206, 162, 0.3);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    left: 20px;
  }

  .contact-btn {
    font-size: 5rem;  /* Increased font size */
    padding: 1.5rem 4rem;  /* Reduced padding */
    width: auto;  /* Remove fixed width */
    max-width: fit-content;  /* Make it only as wide as content */
  }

  .contact-btn i {
    font-size: 3rem;  /* Match icon size with text */
  }

  .contact-btn span {
    font-size: 2.4rem;
    white-space: nowrap;  /* Keep text in one line */
  }

}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-container {
      flex-direction: column;
      padding: 1rem;
      gap: 2rem;
  }

  .contact-info,
  .contact-form {
      padding: 2rem;
  }

  .contact-info h2,
  .contact-form h2 {
      font-size: 2.4rem;
      margin-bottom: 2rem;
  }

  .info-item i {
      font-size: 2rem;
  }

  .info-item p {
      font-size: 1.6rem;
  }

  .social-link {
      font-size: 2rem;
  }

  .submit-btn {
      width: 100%;
      padding: 1.2rem;
  }
}

/* Vacancies Section */
.vacancies-section {
  padding: 50px 0;
  position: relative;
  background: #f8f9fa;
}

.section-title {
  color: #2d3748;
  font-size: 32px;
  margin-bottom: 40px;
  padding-left: 40px;
}

.vacancies-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  overflow: hidden;
}

.vacancies-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 24px;
}

.vacancy-card {
  min-width: calc((100% - 48px) / 3); /* Show 3 cards with gap */
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.vacancy-title {
  color: #2d3748;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
}

.subject-tag {
  float: right;
  background: #EDF2F7;
  color: #4A5568;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.requirements-section {
  margin: 30px 0;
}

.requirements-section h4 {
  color: #4A5568;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.requirements-section ul {
  list-style: none;
  padding: 0;
}

.requirements-section li {
  color: #4A5568;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.requirements-section li i {
  color: #4299E1;
  margin-right: 10px;
}

.salary-section {
  margin: 20px 0;
  color: #4A5568;
  font-size: 14px;
}

.apply-button {
  width: 100%;
  background: #4299E1;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-button:hover {
  background: #3182CE;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #4299E1;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: #3182CE;
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

.slider-nav.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}




.what-we-have {

  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  
  padding: 8rem 2rem;
  
  position: relative;
}

.what-we-have-heading {
  
  font-size: 8rem !important;
  font-weight: 700;
  text-align: center;
  color: #2A9D8F;
  margin-bottom: 8rem;
  letter-spacing: 0.02em;
}

.qualifications-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
}

.qualification-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.qualification-circle {
  width: 100px;
  height: 100px;
  border-radius: 60%;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.qualification-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #43cea2, #185a9d);
}

.qualification-content {
  background: white;
  padding: 3rem !important;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 320px;
}

.qualification-title {
  color: #185a9d;
  font-size: 3rem !important;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.qualification-desc {
  color: #666;
  font-size: 2rem !important;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.subject-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.subject-tags span {
  background: rgba(67, 206, 162, 0.1);
  color: #185a9d;
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  font-size: 2rem !important;
  font-family: 'Poppins', sans-serif;
}

.subject-tags span:hover {
  background: #43cea2;
  color: #fff;
  border-color: #43cea2;
}

.center-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(67, 206, 162, 0.2);
  font-family: 'Poppins', sans-serif;
}

.center-circle i {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.center-circle h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.tutor-count {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.experience-rate {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.6rem;
  border-radius: 20px;
  font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .qualifications-container {
    flex-direction: column;
    gap: 6rem;
  }

  .qualification-item {
    width: 100%;
    justify-content: center;
  }

  .qualification-line {
    width: 60px;
  }
}

@media (max-width: 768px) {
  .what-we-have-heading {
    font-size: 5rem;
  }

  .qualification-item {
    flex-direction: column;
    text-align: center;
  }

  .qualification-line {
    display: none;
  }

  .qualification-content {
    width: 100%;
  }

  .center-circle {
    width: 220px;
    height: 220px;
  }

  .tutor-count {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .what-we-have-heading {
    font-size: 4rem;
  }

  .qualification-content {
    padding: 2rem;
  }

  .subject-tags {
    justify-content: center;
  }
}




.footer {
  background-color: #2C3E50;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 4rem;
}

.footer-section {
  flex: 1;
}

.footer-section h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 600;
}

.contact-info p {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ECF0F1;
}

.contact-info a {
  color: #ECF0F1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #3498DB;
}
.contact-info i {
  color: #3498DB;
  font-size: 1.8rem;
}

.social-links {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.social-link {
  color: #fff;
  font-size: 2.4rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #3498DB;
}

.quick-links {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 1.5rem;
}

.quick-links a {
  color: #ECF0F1;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.quick-links a:hover {
  color: #3498DB;
}

.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 1.4rem;
  color: #ECF0F1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 4rem;
  }

  .footer-section {
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-section h2 {
    font-size: 4rem;
  }

  .contact-info p,
  .quick-links a {
    font-size: 2rem;
  }
}



/* Animation for Section 4 */
.what-we-have {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
  will-change: transform, opacity;  /* Optimize performance */
}

.what-we-have.visible {
  opacity: 1;
  transform: translateY(0);
}

.qualification-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  will-change: transform, opacity;  /* Optimize performance */
}

.qualification-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add delay for each item */
.qualification-item:nth-child(1) { transition-delay: 0.2s; }
.qualification-item:nth-child(2) { transition-delay: 0.4s; }
.qualification-item:nth-child(3) { transition-delay: 0.6s; }

/* Animation for Our Trust Section */
.trust-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
  will-change: transform, opacity;
}

.trust-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  will-change: transform, opacity;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add delay for each testimonial */
.testimonial-card:nth-child(1) { transition-delay: 0.2s; }
.testimonial-card:nth-child(2) { transition-delay: 0.4s; }
.testimonial-card:nth-child(3) { transition-delay: 0.6s; }




















.privacy-policy-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
}

.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.logo-container {
  margin-bottom: 1rem;
}

.privacy-logo {
  max-width: 150px;
  height: auto;
}

.privacy-content {
  line-height: 1.6;
}

.contact-section {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-details {
  margin-top: 1rem;
}

.contact-details p {
  margin: 0.5rem 0;
}

.contact-details i {
  margin-right: 10px;
  color: #033451;
}

/* Notes Section Styles */
.notes-section {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 8rem 2rem;
  position: relative;
}

.notes-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.notes-heading {
  font-size: 6rem !important;
  font-weight: 700;
  text-align: center;
  color: #2A9D8F;
  margin-bottom: 6rem;
  letter-spacing: 0.02em;
}

.notes-description {
  font-size: 2rem !important;
  color: #666;
  max-width: 800px;
  margin: 0 auto 5rem;
  line-height: 1.6;
}

.notes-categories {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 6rem;
  flex-wrap: wrap;
}

.note-category {
  background: white;
  border-radius: 12px;
  padding: 3rem !important;
  width: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.note-category:hover {
  transform: translateY(-10px);
}

.note-category i {
  font-size: 3rem;
  color: #185a9d;
  margin-bottom: 2rem;
}

.note-category h3 {
  font-size: 2.4rem !important;
  margin-bottom: 1.5rem;
  color: #185a9d;
  font-weight: 500;
}

.note-category p {
  color: #666;
  font-size: 1.8rem !important;
  line-height: 1.6;
}

.notes-btn {
  background: linear-gradient(135deg, #43cea2, #185a9d);
  color: white;
  border: none;
  padding: 1.4rem 3.5rem;
  font-size: 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-top: 4rem;
  box-shadow: 0 4px 15px rgba(67, 206, 162, 0.2);
}

.notes-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(67, 206, 162, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .notes-heading {
    font-size: 7rem !important;
    margin-bottom: 4rem;
  }

  .notes-description {
    font-size: 2.6rem !important;
    padding: 0 2rem;
    margin-bottom: 4rem;
  }

  .notes-categories {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  
  .note-category {
    width: 100%;
    max-width: 340px;
  }

  .note-category h3 {
    font-size: 3.2rem !important;
  }

  .note-category p {
    font-size: 2.4rem !important;
  }

  .notes-btn {
    font-size: 2.8rem;
    padding: 1.8rem 4rem;
    width: 80%;
    max-width: 300px;
  }
}

.nav-links .profile-icon {
  font-size: 2.4rem;
  color: #2d3748;
  transition: all 0.3s ease;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f3f4f6;
}

.nav-links .profile-icon:hover {
  color: #2563EB;
  background: #e5e7eb;
  transform: scale(1.1);
}

.nav-links .profile-icon i {
  vertical-align: middle;
}

/* Logged in state */
.nav-links .profile-icon.logged-in {
  background: #2563EB;
  color: white;
}

.nav-links .profile-icon.logged-in:hover {
  background: #1d4ed8;
  color: white;
}

/* Mobile responsive adjustments for profile icon */
@media (max-width: 768px) {
  .nav-links .profile-icon {
    font-size: 3rem;
    padding: 1rem;
    width: 5rem;
    height: 5rem;
  }
}

.nav-links .nav-cta.secondary {
  background: transparent;
  color: #2563EB;
  padding: 1.2rem 2.4rem;
  border-radius: 8px;
  border: 2px solid #2563EB;
}

/* Profile Dropdown Styles */
.profile-dropdown {
  position: relative !important;
  display: inline-block !important;
}

.profile-trigger {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  color: #333;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  transition: all 0.3s ease !important;
}

.profile-trigger:hover {
  background-color: rgba(42, 157, 143, 0.1) !important;
}

.profile-trigger i {
  font-size: 2rem !important;
  color: #1e4d92;
}

.profile-trigger span {
  font-size: 1.6rem !important;
  font-weight: 500 !important;
}

#profileContainer {
  display: none;  /* Hidden by default */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .profile-trigger {
    padding: 12px 20px !important;
  }

  .profile-trigger i {
    font-size: 2.4rem !important;
  }

  .profile-trigger span {
    font-size: 2rem !important;
  }
}

.dropdown-content {
  display: none !important;
  position: absolute !important;
  right: 0 !important;
  min-width: 200px !important;
  background-color: #fff !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
  border-radius: 8px !important;
  padding: 10px 0 !important;
  z-index: 1100 !important;
}

.dropdown-content a {
  color: #333 !important;
  padding: 12px 16px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.dropdown-content a:hover {
  background-color: #f5f5f5 !important;
  color: #1e4d92 !important;
}

.profile-dropdown:hover .dropdown-content {
  display: block !important;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
  .dropdown-content {
    position: static !important;
    box-shadow: none !important;
    min-width: 100% !important;
    background-color: #f8f9fa !important;
    border-radius: 0 !important;
    margin-top: 10px !important;
  }
  
  .profile-trigger {
    justify-content: center !important;
  }
}

.profile-icon {
  font-size: 2.4rem;
  color: #2d3748;
  transition: all 0.3s ease;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f3f4f6;
}

.profile-icon.logged-in {
  background: #1e4d92;
  color: white;
}

.profile-icon:hover {
  transform: scale(1.1);
  background: #1e4d92;
  color: white;
}

.profile-icon.logged-in:hover {
  background: #264653;
  color: white;
}

/* Get Started Button */
.get-started-btn {
  background-color: #2563EB;
  color: #ffffff;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
  box-shadow: 0 2px 3px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
  border: none;
  font-family: 'Segoe UI', system-ui, sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.get-started-btn:hover {
  background-color: #1d4ed8;
  box-shadow: 0 3px 5px rgba(37, 99, 235, 0.35);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .get-started-wrapper {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .get-started-btn {
    padding: 0.7rem 1.6rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}

.get-started-wrapper {
  margin-left: 1rem;
  display: flex;
  align-items: center;
}

/* Profile Container Styles */
#profileContainer {
  display: none;
}

#profileContainer.visible {
  display: block;
}

#loginButton.hidden {
  display: none;
}

@media (max-width: 768px) {
  .section-1 {
    padding-top: 1rem; /* Further reduced top padding */
  }

  .hero-left {
    margin-top: -18rem; /* Significantly increase negative margin to move content higher */
  }
}

/* Add extra specific selector for the brand container */
a.nav-brand {
  position: relative;
  left: 0 !important; /* Reset this extreme left positioning */
}

/* Add specific styles for laptops and desktops only */
@media (min-width: 992px) {
  .navbar {
    padding: 0; /* Remove padding for larger screens */
  }

  .nav-brand {
    margin-top: -3.5rem !important; /* Reduced negative margin for laptops/desktops */
    margin-bottom: -3.5rem !important;
  }

  .nav-brand img.logo {
    height: 17rem !important; /* Smaller logo for laptops/desktops */
  }
}

@media (max-width: 768px) {
  /* ... existing styles ... */
  
  .dear-text {
    margin-bottom: 2rem; /* Still maintaining good spacing on mobile */
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem; /* Slightly reduced from desktop but still good spacing */
  }
  
  .trusted-text {
    margin-bottom: 3rem; /* Slightly reduced from desktop but still good spacing */
  }
  
  .hero-buttons {
    margin-top: 1.5rem;
  }
}

.hero-left .dear-text {
  margin-bottom: 3rem !important; /* Even larger space with !important */
}

.hero-left .hero-subtitle {
  margin-bottom: 4rem !important; /* Increased with !important */
}

.hero-left .trusted-text {
  margin-bottom: 5rem !important; /* Increased with !important */
}

.hero-left .hero-buttons {
  margin-top: 3rem !important; /* Increased with !important */
}