/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 11 May 2025, 9:53:47 pm
    Author     : raghvendrapratapsingh
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 25px;
  color: #333;
  background: #f9f9f9;
  letter-spacing: 0.5px;
}


.container {
  /*max-width: 1100px;*/
  margin: auto;
  padding: 20px;
}

/* HEADER STYLES */
.main-header {
  background-color: #070722;
  color: white;
  /*font-family: 'Poppins', sans-serif;*/
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.logo img {
  height: 60px;
  width: auto;
}
.site-title-link {
  color: white;
  text-decoration: none;
/*  font-weight: 600;
  font-size: 18px;*/
}
.site-title-link:hover {
  color: white;
}


.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  font-size: 1rem;
}

.btn-outline {
  padding: 10px 20px;
  border: 1px solid #e65085;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #e65085;
  color: white;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: 10px;
}

/* NAVIGATION BAR */
.navbar {
  background-color: #0b0b2a;
  position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 0; 
     padding-bottom: 0;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar li {
  margin: 0 25px;
}

.navbar a {
  display: block;
  padding: 14px 0;
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.navbar a.active,
.navbar a:hover {
  color: #e65085;
  border-bottom: 2px solid #e65085;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 35px;
    
  }

  .navbar {
    display: none;
    flex-direction: column;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
  }

  .navbar li {
    margin: 10px 0;
  }

  .navbar.show {
    display: flex;
  }

  .header-right {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
  }
}



/*footer*/


.footer {
  background-color: #0c0d1a;
  padding: 80px 0px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
 padding: 40px 0px 80px 0px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%; /* Only if the logo should be circular */
}

.logo-text {
 font-size: 1.8rem;
    font-weight: bold;
  color: white;
  
}


.footer-section {
  min-width: 200px;
  letter-spacing: 1px;
    /* line-height: inherit; */
    line-height: 1.6rem;

}

.footer-section h3 {
  font-size: 20px;
  color: #2196f3;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}
ol, ul {
    padding-left: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #dcdcdc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
}

.contact p {
  line-height: 1.6;
  color: white;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #dcdcdc;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom a {
  color: #2196f3;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


.footer-minimal {
  text-align: center;
  font-size: 14px;
  color: #aaa;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0px 80px 60px;
  }
}

.auth-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.auth-modal {
  position: relative;
  width: 90%;
  max-width: 540px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
  z-index: 10000;
}

.auth-topbar {
  background: #fcd535;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.auth-close {
  font-size: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #111;
}

.auth-content {
  padding: 32px 30px 34px;
  text-align: center;
}

.auth-content h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #222;
}

.auth-content .subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 26px;
  line-height: 1.6;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 26px;
}

.google-btn img {
  height: 22px;
  width: 22px;
}

.google-btn:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}

.benefits {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin: 0 auto 28px;
  max-width: 400px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.benefits li {
  margin-bottom: 10px;
}

.auth-footer {
  font-size: 13px;
  color: #666;
}

.auth-footer a {
  color: #0056b3;
  text-decoration: underline;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

