* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "jost";
  }

/* 🔹 Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  padding-left: 50px;
   background-color: #0a0a0a;
  color: white;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  background-color: #eb5519;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: 'PT Sans', sans-serif;
}

.nav-links li a:hover {
  background-color: #ff9900;
  color: #1a0033;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.5);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: #1a0033;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    max-height: 500px; /* Enough to fit all links */
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }
}
  /* 🔹 Sections */
section {
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("front_img.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
  
  .section-2 {
    background-repeat: no-repeat;
    background-size: 100% 50%;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3)
      ),
      url("contact-us.PNG");
  }
  
  .section-3{
    margin-top: 20%;
  }

  #title-1{
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    color : #ABABAB;
  }
  
  #contact {
    margin-top: 13px;
  }
  
  .section-1 h2 , .section-2 h2{
    font-size: 64px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
  }

  #para-1 {
    background: linear-gradient(to right, #f8f9fa, #e9ecef); /* Soft gradient */
    color: #2c3e50; /* Deep text color for good contrast */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease-in-out;
  }
  
  #para-1:hover {
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
  }  
  
  h3 {
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
    padding: 20px;
    background: linear-gradient(90deg, #ff7300, #f3f705);
    border-radius: 12px;
    display: inline-block;
    margin: 20px auto;
    padding: 15px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  h3:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  }

  .contact-card {
    max-width: 600px;
    margin: 130px 0 30px 40px;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }
  
  .contact-item {
    display: flex;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }
  
  .contact-item:last-child {
    border-bottom: none;
  }
  
  .icon {
    font-size: 28px;
    color: #7e22ce; /* purple shade */
    margin-right: 20px;
    min-width: 30px;
    text-align: center;
  }
  
  .contact-info h4 {
    color: #7e22ce;
    margin: 0;
    font-size: 30px;
    font-weight: bold;
  }
  
  .contact-info p {
    margin: 4px 0 0;
    font-size: 25px;
    color: #333;
  }

  .flex-form {
    display: flex;
    flex-direction: row; /* this is key */
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 60px;
    background: linear-gradient(to bottom right, #e0d8f6, #fdfbff);
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 20%;
  }
  
  .contact-card {
    width: 500px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }

    /* 🧠 This triggers when screen is 768px or smaller */
  @media screen and (max-width: 768px) {
    .flex-form {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      margin-top: 10%;
    }

    .contact-card,
    .form-container {
      width: 100%;
      max-width: 90%;
    }
  }
  
  .contact-item {
    display: flex;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }
  
  .contact-item:last-child {
    border-bottom: none;
  }
  
  .icon {
    font-size: 28px;
    color: #7e22ce;
    margin-right: 20px;
    min-width: 30px;
    text-align: center;
  }
  
  .contact-info h4 {
    color: #7e22ce;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
  }
  
  .contact-info p {
    margin: 4px 0 0;
    font-size: 16px;
    color: #333;
  }
  
  .form-container {
    width: 450px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .form-container:hover {
    transform: scale(1.01);
  }
  
  .flex-form h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: bold;
    border-left: 5px solid #7300ff;
    padding-left: 10px;
  }
  
  label {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
    transition: border 0.3s, box-shadow 0.3s;
  }
  
  input:focus,
  textarea:focus {
    border-color: #7300ff;
    box-shadow: 0 0 0 3px rgba(115, 0, 255, 0.1);
  }
  
  textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .row {
    display: flex;
    gap: 12px;
  }
  
  .row input {
    flex: 1;
  }
  
  button {
    margin-top: 25px;
    padding: 12px 24px;
    background: linear-gradient(to right, #7300ff, #a64dff);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(115, 0, 255, 0.3);
  }
  
  button:hover {
    background: linear-gradient(to right, #5a00cc, #8c3df5);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(115, 0, 255, 0.4);
  }
  
  span {
    color: red;
    font-weight: bold;
  }

  
  .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    padding: 60px 20px;
    gap: 40px;
    flex-wrap: nowrap;
  }

  .card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    width: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-10px);
  }

  h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
  }

  ul {
    list-style: none;
    margin-top: 20px;
  }

  ul li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
  }

  ul li::before {
    content: "✔️";
    margin-right: 10px;
    color: #00ffba;
  }

  .cta-button {
    margin-top: 30px;
    padding: 14px 28px;
    background-color: #fff;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    background-color: #00ffba;
    color: #000;
    transform: scale(1.05);
  }

  @media (max-width: 991px) {
    .container {
      flex-direction: column;
      flex-wrap: wrap;
    }

    .card {
      width: 100%;
    }
  }
  
  .location{
    padding-top: 10vh;
    padding-left: 5%;
  }
  
  .map-container {
    width: 90%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  #map {
    height: 100%;
    width: 100%;
  }

  /* Responsive Design */
@media (max-width: 1024px) {
    .footer-section {
      flex: 1 1 calc(50% - 40px); /* Ensures 2 items per row */
    }
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column; /* Stacks vertically */
      text-align: center;
    }
    
    .footer-section {
      margin-bottom: 20px; /* Adds spacing */
    }
  
    .social-links a {
      margin: 10px;
    }
  }

  
footer {
    background-color: #12002b;
    padding: 40px 0;
    padding-top: 0;
    padding-left: 100px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
  }
  
  .footer-section {
    flex: 1;
    padding: 20px;
    position: relative; /* Prevents overlapping */
    clear: both;
    width: 100%;
    min-width: 250px;
  }
  
  .footer-section h2 {
    color: #ff7300;
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section p, .footer-section a {
    color: #ccc;
    font-size: 18px;
  }
  
  .footer-section a {
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #ff7300;
  }

  footer{
    margin-top: 10vh;
  }

  .social-links a {
    display: inline-block;
    margin: 0 10px;
    color: white;
    font-size: 24px;
  }
  
  .social-links a:hover {
    color: #ff7300;
  }
  
  
  