/* Resetting all margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

header {
  background-color: #ffffff;
  padding: 10px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.guvi-logo {
  height: 40px;
  aspect-ratio: auto 1200 / 249;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-grow: 1;
  justify-content: flex-end;
  color: #6b7280;
  position: relative;
}


.dropdown-header {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}


.dropdown-header.active {
  border-bottom: 2px solid #0dba4b;
}


.chevron-icon {
  stroke: #6b7280;
  transition: transform 0.5s ease-in-out;
}

.dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}


.dropdown-content {
  position: absolute;
  background-color: #ffffff;
  color: #6b7280;
  width: 250px;
  border-radius: 8px; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
  transform: translateY(-10px);
  z-index: 99;
  padding: 15px; 
}

.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}


.dropdown-content a {
  display: block;
  padding: 12px 10px; 
  text-decoration: none;
  color: #6b7280;
  border-radius: 5px;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}


.login-btn {
  color: #0dba4b;
  text-decoration: none;
  font-weight: 500;
}


.signup-btn {
  background-color: #22c55e;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}


.signup-btn:hover {
  background-color: #388e3c;
}

.container {
  width: 85%;
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
  padding: 60px 80px;
  gap: 50px; /* Adjusted gap for spacing between sections */
  position: relative;
  min-height: 100vh;
  margin: 0 auto; /* Centers the container horizontally */
}
.boldd {
  font-weight: bold;
}
 .light-text {
  color: blue;
  font-size: 1rem;
 }
/* Contact Info Section */
.contact-info {
  margin-left: 2rem;
  padding-right:1.75 rem;
  width: 40%; /* Adjusted width for better alignment */
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #222;
}

.contact-info p {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #555;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  
}

.info-item .icon {
  width: 28px;
  margin-right: 50px;
}

.info-item span {
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
}

/* Divider Lines */
.divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

/* Contact Form Section */
.contact-form {
  height: 10%;
  width: 42%; /* Adjusted width to balance layout */
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  /* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5); */
}

.contact-form h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-form .highlight {
  color: #099f4e;
  font-weight: bold;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-size: 14px;
  color: #666;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  background-color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form button {
  padding: 14px;
  border: none;
  background-color: #00b894;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #019874;
}

.title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75rem;
  color:#2b2b2b;
}

.subtitle {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #707070;
}


/* Media Query for Smaller Screens */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      align-items: center;
      padding: 20px;
      gap: 30px;
  }

  .contact-info, .contact-form {
      width: 100%;
  }

  
}

.footer {
  background-color: #2d2d2d;
  padding: 50px 10%;
  color:#ffffff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  color: #bbb;
  transition: color 0.3s;
}

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

.new-badge {
  background-color: red;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  margin-left: 5px;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
}

.footer-links {
  margin: 20px 0;
}

.footer-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.footer-button:hover {
  background-color: #0056b3;
}

.playstore {
  height: 40px;
  cursor: pointer;
}

.social-icons a {
  color: #bbb;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: white;
}

.footer-bottom-links a {
  color: #bbb;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-bottom-links p {
  margin-top: 10px;
  color: #666;
}
