* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
   background-image: url('../images/blueGrid.png'  );
  background-color: #f8fafc;
}

/* ===== ENHANCED NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: linear-gradient(135deg, #1d2b91 0%, #2a3bc2 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  animation: navbarEntrance 0.8s ease-out;
}



.navbar.scrolled {
  padding: 8px 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #edaa00;
  background: linear-gradient(135deg, #1d2b91 0%, #1a2580 100%);
}

@keyframes navbarEntrance {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo with animation */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
  position: relative;
  padding: 5px 10px;
  border-radius: 8px;
  overflow: hidden;
}

.nav-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.nav-logo:hover::before {
  left: 100%;
}

.nav-logo:hover {
  transform: translateY(-2px);
}

.nav-logo img {
  width: 201px;
  height: 95px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.nav-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 10px rgba(237, 170, 0, 0.3));
}

/* Enhanced Center links with indicators */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  position: relative;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.nav-links::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(45deg, #edaa00, #1d4ed8, #edaa00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-links:hover::before {
  opacity: 1;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #edaa00, #ffc107);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.nav-links a:hover::before {
  width: 80%;
}

.nav-links a:hover::after {
  left: 100%;
}

.nav-links a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(237, 170, 0, 0.15), rgba(29, 78, 216, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.2);
}

.nav-links a i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nav-links a:hover i {
  transform: translateX(3px);
}

/* Active link indicator */
.nav-links a.active {
  color: #edaa00;
  background: rgba(237, 170, 0, 0.1);
}

.nav-links a.active::before {
  width: 80%;
  background: linear-gradient(90deg, #ffc107, #ff9800);
}

/* Enhanced Login button */
.nav-login {
  position: relative;
}

.nav-login .login-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #edaa00 0%, #ffc107 100%);
  color: #1d2b91;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 15px rgba(237, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.nav-login .login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.nav-login .login-btn:hover::before {
  left: 100%;
}

.nav-login .login-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(29, 78, 216, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-login .login-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.nav-login .login-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.nav-login .login-btn:hover i {
  transform: translateX(4px) rotate(10deg);
}

/* ===== END ENHANCED NAVBAR ===== */

/*Index.html additions*/

/* Additional styles for the hero section */
.hero-container {
  width: 1588px;
  height: 764px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Section (1124 x 764) - positioned inside container */
.hero-section {
  width: 1124px;
  height: 764px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 60px;
}

.text-column {
  flex: 0 1 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-column {
  flex: 0 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
  color: white;
  margin-bottom: 30px;
  text-align: left;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background-color: #edaa00;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  background-color: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image placeholder */
.image-placeholder {
  width: 100%;
  max-width: 378.56px;
  height: 656.74px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Add just the shimmer animation */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Add just the shimmer effect to image placeholder */
.image-placeholder {
  position: relative; /* Ensure this is set for absolute positioning */
  overflow: hidden; /* Keep overflow hidden */
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
  z-index: 1; /* Make sure it's above background but below image */
}

/* Ensure the image stays above the shimmer */
.image-placeholder img {
  position: relative;
  z-index: 2;
}


/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
  .navbar {
    padding: 12px 30px;
  }
  
  .hero-container {
    width: 100%;
  }
  
  .hero-section {
    width: 90%;
    padding: 60px 20px;
  }
  
  .hero-text {
    font-size: 3rem;
  }
  
  .about-content {
    padding: 0 20px;
  }
  
  .footer-content {
    padding: 0 30px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .navbar {
    padding: 10px 25px;
    flex-wrap: wrap;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
    padding: 8px;
  }
  
  .hero-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .hero-text {
    font-size: 2.8rem;
    text-align: center;
  }
  
  .text-column {
    flex: 1;
    max-width: 100%;
  }
  
  .image-placeholder {
    max-width: 320px;
    height: 555px;
  }
  
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-image-column,
  .about-text-column {
    max-width: 100%;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-links-section {
    justify-content: center;
  }
}

/* Large Mobile Phones */
@media (max-width: 768px) {
  .navbar {
    padding: 8px 20px;
  }
  
  .nav-logo img {
    width: 150px;
    height: auto;
  }
  
  .nav-links {
    gap: 10px;
    padding: 6px;
  }
  
  .nav-links a {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .nav-login .login-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-container {
    height: auto;
    padding: 40px 0;
  }
  
  .hero-section {
    padding: 40px 20px;
    height: auto;
  }
  
  .hero-text {
    font-size: 2.5rem;
  }
  
  .cta-button {
    padding: 12px 28px;
    font-size: 1rem;
  }
  
  .about-container {
    padding: 60px 20px;
  }
  
  .main-title {
    font-size: 2.2rem;
  }
  
  .description {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stats-section {
    gap: 30px;
  }
  
  .footer-content {
    gap: 40px;
  }
  
  .footer-links-section {
    gap: 40px;
  }
}

/* Medium Mobile Phones */
@media (max-width: 576px) {
  .navbar {
    padding: 6px 15px;
  }
  
  .nav-logo {
    font-size: 18px;
  }
  
  .nav-logo img {
    width: 120px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .nav-links a {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .hero-text {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .cta-button {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
  
  .image-placeholder {
    max-width: 280px;
    height: 485px;
  }
  
  .main-title {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .description {
    font-size: 0.95rem;
  }
  
  .stats-section {
    flex-direction: column;
    gap: 25px;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .footer-links-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .footer-links-column {
    min-width: 100%;
  }
  
  .links-title {
    text-align: center;
  }
  
  .footer-links-list {
    text-align: center;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .hero-text {
    font-size: 1.8rem;
  }
  
  .image-placeholder {
    max-width: 250px;
    height: 433px;
  }
  
  .main-title {
    font-size: 1.6rem;
  }
  
  .nav-links {
    justify-content: space-between;
  }
  
  .nav-links li {
    flex: 1;
    text-align: center;
  }
  
  .nav-links a {
    justify-content: center;
    width: 100%;
  }
  
  .footer-content {
    padding: 0 15px;
  }
  
  .footer-logo img {
    width: 50px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
}

/* Very Small Mobile Phones */
@media (max-width: 375px) {
  .navbar {
    padding: 5px 10px;
  }
  
  .nav-logo img {
    width: 100px;
  }
  
  .nav-links {
    gap: 5px;
  }
  
  .nav-links a {
    padding: 6px 8px;
    font-size: 12px;
  }
  
  .nav-login .login-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .hero-text {
    font-size: 1.6rem;
  }
  
  .cta-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .main-title {
    font-size: 1.4rem;
  }
  
  .footer-tagline {
    font-size: 0.9rem;
  }
}

/* Landscape Mode for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-container {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 40px 20px;
  }
  
  .hero-text {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    margin-top: 20px;
  }
  
  .image-placeholder {
    max-height: 400px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .cta-button,
  .footer {
    display: none;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero-container,
  .about-container {
    break-inside: avoid;
  }
  
  .hero-text,
  .main-title {
    color: black !important;
  }
}

/* Animation for text */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-column > * {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.hero-text {
  animation-delay: 0.2s;
}

.cta-button {
  animation-delay: 0.6s;
}

.image-column {
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
}

/*about.html additions*/

/* About Section Styles */
.about-container {
  padding: 80px 40px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  gap: 60px;
}

/* Image Column */
.about-image-column {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Text Column */
.about-text-column {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Title Section */
.title-section {
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1d2b91;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.main-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  margin: 0;
}

/* Description Section */
.description-section {
  margin-bottom: 40px;
  width: 100%;
}

.description {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
  text-align: center;
}

.description strong {
  color: #1d2b91;
  font-weight: 700;
}

/* Stats Section */
.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  width: 100%;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #edaa00;
  line-height: 1;
  margin-bottom: 10px;
  text-align: center;
}

.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1d2b91;
  line-height: 1.4;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-image-column,
  .about-text-column {
    max-width: 100%;
  }
  
  .stats-section {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 60px 20px;
  }
  
  .main-title {
    font-size: 2.2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stats-section {
    gap: 30px;
  }
}

/*Footer*/ 

/* ===== SIMPLE FOOTER ===== */

.simple-footer {
  background-color: #1d2b91;
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

/* Logo Section */
.footer-logo-section {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 60px;
  height: auto;
  
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
}

.footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 350px;
  opacity: 0.9;
}

/* Links Section */
.footer-links-section {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-links-column {
  min-width: 150px;
}

.links-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #edaa00;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 4px 0;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.copyright p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-logo-section {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-tagline {
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-links-section {
    justify-content: center;
    gap: 40px;
  }
  
  .links-title {
    text-align: center;
  }
  
  .footer-links-list {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-links-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  
  .footer-links-column {
    min-width: 100%;
  }
}