* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Albert Sans", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-family: "Albert Sans", sans-serif;
  color: black;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .logo {
  height: 50px;
  width: 100px;
}

.header .logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #2196f3;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #2196f3;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.header .button {
  border: 2px solid #c5baff;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header .button:hover {
  background-color: #c5baff;
  color: white;
  transform: translateY(-2px);
}

.header .bars {
  display: none;
  font-size: 1.6rem;
}

/* Dropdown Styles */
.nav-menu .dropdown .link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown-content a {
  color: #333;
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #2196f3;
  border-left: 3px solid #2196f3;
}

.dropdown i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: #333;
}

.dropdown:hover .dropdown-content {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.dropdown:hover i {
  transform: rotate(180deg);
  color: #2196f3;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: white;
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 1001;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  font-family: "Albert Sans", sans-serif;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  z-index: 1002;
  transition: color 0.3s ease;
}

.mobile-menu .close-btn:hover {
  color: #2196f3;
}

.mobile-menu nav {
  width: 100%;
}

.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
  width: 100%;
  gap: 1.5rem;
}

.mobile-menu .nav-menu li {
  width: 100%;
}

.mobile-menu .nav-menu a {
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  width: 100%;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu .nav-menu a:hover {
  color: #2196f3;
}

.mobile-menu .dropdown {
  padding: 0;
  width: 100%;
}

.mobile-menu .dropdown .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 0rem 0;
}

.mobile-menu .dropdown .link span {
  font-weight: 500;
  color: #333;
  font-size: 1.2rem;
  font-family: "Albert Sans", sans-serif;
  margin-right: 0.5rem;
  padding: 0.5rem 0;
}

.mobile-menu .dropdown-content {
  position: static;
  box-shadow: none;
  display: none;
  width: 100%;
  padding-left: 1rem;
  margin-top: 0.5rem;
  background-color: transparent;
}

.mobile-menu .dropdown.active .dropdown-content {
  display: block;
}

.mobile-menu .dropdown-content a {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: #555;
  display: block;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-menu .dropdown-content a:hover {
  color: #2196f3;
  border-left: 2px solid #2196f3;
  padding-left: 0.5rem;
}

.mobile-menu .dropdown i {
  transition: transform 0.3s ease;
  color: #333;
}

.mobile-menu .dropdown.active i {
  transform: rotate(180deg);
  color: #2196f3;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  backdrop-filter: blur(3px);
}

.overlay.active {
  display: block;
}


/* Main Content */
main {
  position: relative;
  background-color: white;
  margin-top: 80px;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.header-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.policy-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.policy-section {
  padding: 2.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
}

.policy-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.policy-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.policy-section ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.policy-section ul li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  color: #555;
  position: relative;
}

.policy-section ul li::before {
  content: "•";
  color: #667eea;
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}

.policy-section strong {
  color: #2c3e50;
  font-weight: 600;
}

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.last-updated {
  text-align: center;
  font-style: italic;
  color: #888;
  margin-top: 2rem;
}

/* Modern Footer Styles */
.modern-footer {
  background-color: #c5baff;
  color: #000;
  padding: 4rem 0 2rem;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Company Section */
.footer-company h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.footer-company p {
  color: #323232;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #3a3a3a;
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modern-footer .footer-container .footer-grid .footer-company .img {
  height: 50px;
  width: 90px;
  /* background-color: white; */
  background-image: url("./public/images/logo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  color: #000;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #1f1f1f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Floating Action Buttons */
.floating-button {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #fff; */
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.floating-button:hover {
  transform: scale(1.1);
  /* color: #fff; */
}

.whatsapp-button {
  background-color: #25d366;
  bottom: 20px;
  color: white;
  right: 20px;
}

.call-button {
  /* background-color: #007bff; */
  bottom: 20px;
  left: 20px;
}

.ph {
  z-index: 2000;
  color: black;
}

.unread-message {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: #fff;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}



/* Responsive Design */
@media (max-width: 1280px) {
  .header {
    padding: 1rem 3rem;
  }

  .header-content h1 {
    font-size: 3rem;
  }

  .policy-section {
    padding: 2rem;
  }

  .policy-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 1050px) {
  .header {
    padding: 1rem 2rem;
  }

  .nav-menu a {
    font-size: 1rem;
  }

  .header .button {
    padding: 0.6rem 1.5rem;
  }

  .header-content h1 {
    font-size: 2.5rem;
  }

  .header-content p {
    font-size: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 860px) {
  .header .logo {
    height: 45px;
    width: 90px;
  }

  .header {
    padding: 1rem 1.5rem;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .header .button {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

  .header-content h1 {
    font-size: 2.2rem;
  }

  .policy-section {
    padding: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.4rem;
  }

  .policy-section p,
  .policy-section ul li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .header .logo {
    height: 40px;
    width: 80px;
  }

  .header {
    padding: 1rem;
  }

  .nav-menu {
    display: none;
  }

  .header .button {
    display: none;
  }

  .header .bars {
    display: block;
  }

  .header .bars:hover {
    color: #667eea;
  }

  .page-header {
    padding: 3rem 1rem;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .content-section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .policy-section {
    padding: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    margin-top: 1rem;
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .header {
    padding: 0.8rem;
  }

  .page-header {
    padding: 2rem 1rem;
  }

  .header-content h1 {
    font-size: 1.8rem;
  }

  .header-content p {
    font-size: 0.9rem;
  }

  .policy-section {
    padding: 1rem;
  }

  .policy-section h2 {
    font-size: 1.2rem;
  }

  .policy-section p,
  .policy-section ul li {
    font-size: 0.9rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .floating-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  /* .whatsapp-button {
    bottom: 6rem;
  } */
}

@media (max-width: 460px) {
  .header-content h1 {
    font-size: 1.6rem;
  }

  .header-content p {
    font-size: 0.85rem;
  }

  .policy-section {
    padding: 0.8rem;
  }

  .policy-section h2 {
    font-size: 1.1rem;
  }

  .policy-section p,
  .policy-section ul li {
    font-size: 0.85rem;
  }

  .policy-section ul {
    padding-left: 1.5rem;
  }

  .contact-info {
    padding: 1rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }
}
