@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

.nav-head{
    background-color: aliceblue;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo-section {
    display: flex;
    align-items: center;
    color: blue;
}
.logo-section img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}
.logo-section h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
ul.nav-links1 {
    list-style: none;
    padding-left: 0;
    display: flex;
    margin: 0;
}
ul.nav-links1 li {
    margin: 0 10px;
}
ul.nav-links1 li a {
    color: navy;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: background-color 0.3s ease;
    padding: 8px 12px; 
    border-radius: 4px;
}
ul.nav-links1 li a i {
    margin-right: 6px;
}
ul.nav-links1 li a:hover{
    background-color: darkcyan;
    color: white;
}
.login {
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.login i {
    margin-right: 6px;
}

.logo-link {
    text-decoration: none;   /* removes underline */
    color: inherit;          /* keeps text color same */
}

.logo-link:hover,
.logo-link:focus {
    text-decoration: none;   /* ensures no underline on hover */
}



.login-btn:hover {
  background-color: darkcyan; 
  color: white; 
}
.login-btn{
    color: navy;
    cursor: pointer;
    display: inline-block;
    align-items: center;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.login-mobile{
    display: none;
}
.login-desktop{
    display: block;
}
.hamburger{
    color: black;
    font-size: 28px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 8px;
}
.nav-links1{
    display: flex;
    gap: 20px;
    list-style: none;
}
#navLinks.open{
    left: 0;
}

@media(max-width:900px){
    .hamburger{
        display: block;
    }
    .login-desktop{
        display: none;
    }
    .login-mobile{
        display: block;
    }
    .nav-links1{
        position: fixed;
        top: 90px;
        left: -100%;
        width:100%;
        background: blue;
        color: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        transition: 0.3s ease;
    }
    .nav-links1.open{
        left: 0;
    }
    .nav-links1 a{
        font-size: 18px;
        color: white !important;
    }
    .login-btn{
        display: block;
        width: 120px;
        text-align: center;
    }
    
}

@media (max-width:428px){
    .logo-section h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}
}

@media (max-width:323px){
    .logo-section h2 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}
}




/* ==========================
   Contact Form Section
========================== */
.contact-form-section {
  padding: 70px 8%;
  background: #ffffff;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

/* ==========================
   Form Styling
========================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  background: #fdfdfd;
  padding: 35px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
}

input, select, textarea {
  padding: 12px;
  border: 1px solid #aaa;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
}

input:focus, textarea:focus, select:focus {
  border-color: #1463ff;
  box-shadow: 0 0 6px rgba(20, 99, 255, 0.3);
}

.full-width {
  grid-column: span 2;
}

.submit-btn {
  padding: 13px;
  background: #1463ff;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #003bbf;
}

/* ==========================
   Contact Info Box
========================== */
.contact-info-box {
  background: #f4f6ff;
  padding: 35px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #d0d7ff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
}

.contact-info-box h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.contact-info-box p {
  margin-bottom: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.contact-info-box i {
  color: #1463ff;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.3rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #003bbf;
}

/* ==========================
   Success Popup
========================== */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-content {
  background: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  width: 350px;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content i {
  font-size: 3rem;
  color: #11b44b;
  margin-bottom: 15px;
}

.popup-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.popup-content button {
  margin-top: 15px;
  padding: 10px 22px;
  border: none;
  background: #1463ff;
  color: white;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.popup-content button:hover {
  background: #003bbf;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
/* ==========================
   FULLY RESPONSIVE FIX
========================== */


/* Mobile Fix — Remove extra spacing */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 40px 15px;
  }

  .contact-container {
    display: block;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .contact-form,
  .contact-info-box {
    padding: 22px;
    margin: 0;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .contact-form-section {
    padding: 35px 10px;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}




