body{
    background-color: rgb(216, 216, 216);
}

.nav-links .active {
  color: #f39c12; /* or any color that fits your theme */
  font-weight: bold;
  border-bottom: 2px solid #f39c12;
}


.mobile-alert {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.alert-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.alert-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.alert-buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#use-mobile {
  background: #f0f0f0;
}

#learn-how {
  background: #2c3e50;
  color: white;
}



/* NAVBAR SECTION */
/* NAVBAR SECTION */
.navbar {
  border: 4px solid black;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 5px;
  background-color: #ffffff; /* important for sticky */
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  transition: all 0.3s ease;
  flex-wrap: wrap;
}

.navbar.scrolled {
  height: 90px;
  padding-top: 10px;
  background-color: #ffffff;
}

.logo-navbar {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 100%;
  width: auto;
  object-fit: contain;
  padding-right: 20px;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #000;
  margin-left: auto;
  padding: 10px;
  z-index: 1001;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

/* Nav link styling */
.nav-links a {
  text-decoration: underline;
  color: black;
  font-weight: bolder;
  font-size: 24px;
  transition: all ease;
}

.nav-links a:hover {
  color: #0000FF;
  text-decoration-color: #0000FF;
}

  
  /* NAVBAR SECTION END */
  



/* Main Contact Container */
.contact-container {
    display: flex;
    max-width: 1400px;
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  }
  
  /* Left Column - Form */
  .contact-form {
    flex: 1;
    padding: 40px;
    background: #f9f9f9;
  }
  
  .contact-form h2 {
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
  }
  
  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .contact-form button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: #1a252f;
  }
  
  /* Right Column - Info */
  .contact-info {
    flex: 1;
    padding: 40px;
    background: #fff;
  }
  
  .contact-info h2 {
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
  }
  
  .contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .contact-method i {
    margin-right: 15px;
    color: #2c3e50;
    width: 20px;
    text-align: center;
  }
  /* Social Links Styling */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f5f5f5;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
  }
  
  .social-links i {
    font-size: 18px;
  }
  
  /* Specific Platform Colors */
  .social-links a:nth-child(1) i { color: #1877f2; } /* Facebook */
  .social-links a:nth-child(2) i { color: #d44638; } /* Email */
  .social-links a:nth-child(3) i { color: #25d366; } /* WhatsApp */
  .social-links a:nth-child(4) i { color: #f57d00; } /* Blog */

/* Add these to your existing CSS */
.contact-form {
    position: relative;
    overflow: hidden;
  }
  
  .form-embed {
    width: 100%;
    height: 900px; /* Adjust based on your form height */
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
    .form-embed {
      height: 700px;
    }
  }

  

/* footer section */

.footer {
  background-color: #000000;
  color: white;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  font-family: sans-serif;
  border-radius: 7px;
  position: relative;
  margin-top: 5rem;
}

.footer-container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 10px;
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  
}

.icon-row a {
  color: rgb(185, 168, 255);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.footer a:hover {
  color: #ffffff;
}

.utkarsh {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 0.85rem;
  color: rgb(185, 168, 255);
}

.footer-details p {
  margin: 0.5rem 0 0 0;
}




/* responsivness */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .navbar {
    align-items: flex-start;
  }

  .logo-navbar {
    height: 50px;
    margin-bottom: 10px;
  }

  .nav-links a {
    font-size: 16px;
    padding: 10px 0;
  }

  html.translated-ltr .menu-toggle {
    margin-top: 35px !important;
  }

  html.translated-ltr .logo-navbar {
    margin-top: 32px !important;
  }
}
