/* ✅ General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins';

}

/* ✅ Hero Section */
.hero-section {
  background-image: url("image/Track\ 2\ -\ Copy.jpeg");
  height: 100vh;
  width: 100%;
  background-size: contain;   /* fits the full image inside */
  background-repeat: no-repeat;  /* stops repeating */
  /* background-position: center;  */
  background-size: cover;
  /* background-position: center; */
  /* display: flex;
  justify-content: flex-end; */
  /* align-items: flex-end; */
  /* padding: 400px 80px; */
}

.hero-description2 {
  background-color: #E2E7E6;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  text-align: center;
  padding: 25px 10px;
}

/* ✅ Form Container */
.form-container {
  width: 100%;
  max-width: 750px;
  padding: 30px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border: 0.5px solid gainsboro;
  margin-top: 15px;
  gap: 5px;
  align-items: center;
  justify-content: center;
}


.form-container h2 {
  text-align: center;
  color: #002b5b;
  font-weight: 600;
  margin-bottom: 25px;
}

/* ✅ Form Grid Layout */
form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

input,
select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus {
  border-color: #007bff;
  outline: none;
}

/* ✅ Submit Button */
button {
  grid-column: span 3;
  background: #007bff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0056b3;
}

/* ✅ Shop Section (Service Boxes) */
.shop-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #e2e7e6;
  padding: 30px 0;
  gap:110px;
  border-bottom: 2px solid black;
}

.box {
  background-color: #E2E7E6;
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 2px 2px 8px black;
}

.box_image {
  height: 250px;
  background-size: cover;
  background-position: center;
  margin: 1rem 0;
  border-radius: 10px;
}

/* ✅ How it Works Section */
.work_foot {
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-color: #e2e7e6;
  border-bottom: 1px solid gray;
  text-align: center;
  gap: 25px;
}

.footer-step {
  width: 30%;
  min-width: 250px;
}

.footer-step i {
  font-size: 35px;
  margin-bottom: 10px;
  color: #004aad;
}

/* ✅ Footer */
footer {
  background: linear-gradient(to right, #002f6c, #004aad);
  color: white;
  padding: 40px 10%;
  font-family: "Poppins", Arial, sans-serif;
}

footer .footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

footer .footer-sections > div {
  flex: 1;
  min-width: 220px;
}

footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffffff33;
  padding-bottom: 5px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin: 8px 0;
  font-size: 15px;
}

footer ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: #ffcc00;
}

footer hr {
  border: 0;
  border-top: 1px solid #ffffff33;
  margin: 20px 0;
}

footer p {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

/* ✅ Responsive Adjustments */

/* Large Laptops / Desktops */
@media (max-width: 1200px) {
  .hero-section {
    height: 90vh;
    padding: 30px 60px;
  }

  form {
    grid-template-columns: repeat(2, 1fr);
  }

  button {
    grid-column: span 2;
  }

}

/* Tablets */
@media (max-width: 768px) {
  .hero-section {
   
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 40px 20px;
  }

  .form-container {
    width: 100%;
    max-width: 500px;
    padding: 25px;
    margin-top: 20px;
  }

  form {
    grid-template-columns: repeat(2, 1fr);
  }

  button {
    grid-column: span 2;
  }

  .hero-description2 {
    font-size: 20px;
  }

  .box {
    flex: 1 1 80%;
  }

  .work_foot {
    flex-direction: column;
    align-items: center;
  }

  .footer-step {
    width: 80%;
  }

  footer {
    padding: 30px 5%;
  }

  footer .footer-sections {
    flex-direction: column;
    align-items: flex-start;
  }
    
}

/* Large Phones */
@media (max-width: 600px) {
  .hero-section {
    height: auto;
    padding: 60px 20px;
    background-position: top;
  }

  .form-container {
    margin: 0;
    padding: 20px;
  }

  form {
    grid-template-columns: 1fr;
  }

  button {
    grid-column: span 1;
  }

  .hero-description2 {
    font-size: 18px;
  }

  .box {
    flex: 1 1 95%;
  }

  .box_image {
    height: 200px;
  }

  .footer-step {
    width: 100%;
  }

  footer {
    text-align: center;
  }

  footer .footer-sections > div {
    min-width: 100%;
  }
}

/* Small Phones */
@media (max-width: 400px) {
  .form-container {
    margin: 20px 10px;
    padding: 15px;
  }

  .form-container h2 {
    font-size: 1rem;
  }

  input,
  select {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  button {
    font-size: 0.9rem;
    padding: 10px;
  }
  .navdiv{
    font-size: 10px;
  }
}

/* ✅ Optional Heading (if you use it later) */
.heading p {
  align-items: center;
  justify-content: center;
  background-color: #e2e7e6;
  font-size: 35px;
  border-top: 1px solid gray;
}

/* --- Base Styling --- */


.navbar {
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navdiv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 25px;
}

/* Logo styling */
.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
}

/* Menu links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #3498db;
}

/* Book button */
.book-btn {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.book-btn:hover {
  background-color: #2980b9;
}

/* Hide Book Now button on small screens */
@media (max-width: 768px) {
  .book-btn {
    display: none;
    font-size: small;
  }
  .logo{
    font-size: small;
  }

 .nav-links {
  list-style: none;
  font-size: 15px;
  display: flex;
  gap: 10px; 
  padding-left: 25px;
  text-align: left;
}
.contact-section{
  font-size: 20px;
}
.cantact-num{
  height: 50px;
  width: 150px;
}

  /* .navdiv {
    flex-direction: column;
    align-items: flex-start;
  }



  .nav-links li a {
    display: block;
    padding: 8px 0;
  } */
}


.about-section{
  padding: 60px 10%;
  text-align: center;
}

    /* Styling for contact tab */
.contact-section {
  padding: 60px 10%;
  font-size: 30px;
}

.contact-section h1 {
  text-align: left;   /* aligns heading to left */
  color: #004aad;
  margin-bottom: 20px;
}

.contact-section p {
  text-align: left;   /* aligns paragraph to left */
}


.about-section h1, .contact-section h1 {
  color: #3498DB;
  margin-bottom: 20px;

}

.contact-form {
  max-width: 600px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  background: #004aad;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.contact-info p{
margin-left: 25px;
line-height: 35px;
/* align-items: center; */
text-align: center;

}
.contact-Call{
  font-size: 35px;
  font-weight: 600;
text-align: center;
padding: 25px 0px 20px 0px;
border-top: 1px solid black;

}

.cantact-num  {
  height: 70px;
  width: 250px;
  background-color: #FBBF24;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid gray;
  margin: 0 auto;
  font-size: 20px;
}

.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
 
}

.faq-section details {
  font-size: 19px;
  background: #f9fafb;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 15px;
  border: 2px solid #ddd;
  transition: 0.3s;
}

.faq-section summary {
  font-weight: 600;
  cursor: pointer;
  color: #004aad;
}

.faq-section details[open] {
  background: #eef3ff;
  border-color: #004aad;
}

.about-pic{
  background-image: url("image/Track\ 2\ -\ Copy.jpeg");
  background-size: contain;   /* fits the full image inside */
  background-repeat: no-repeat;  /* stops repeating */
  background-position: center;   /* centers the image */
  height: 300px;
  width: 100%;
}
/* Default layout (for PC/laptops) */
.shop-section_p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

/* Each box takes around 30% of width */
.box_p {
  width: 30%;
  margin-bottom: 1rem;
}

/* Image fits nicely inside */
.box_image_p {
  height: 190px;
  background-size: contain;       /* fits the full image */
  background-position: center;    /* centers the image */
  background-repeat: no-repeat;   /* prevents repeating */
  border-radius: 8px;
  background-color: #e2e7e6;      /* fills empty space around image */
  padding: 150px;
  padding-right: 50px;
}


/* Tablet view (up to 1024px) */
@media (max-width: 1024px) {
  .box_p {
    width: 45%; /* 2 per row */
  }
  .box_image_p {
    height: 180px;

  }
    enquire-btn{
    display: none;
  }
}

/* Mobile view (up to 600px) */
@media (max-width: 600px) {
  .box_p {
    width: 90%; 
  }
  .box_image_p {
    height: 150px; /* smaller image height */
  }
  p {
    font-size: 25px; /* reduce heading size */
  }

}

/* Very small devices (up to 400px) */
@media (max-width: 400px) {
  .box_p {
    width: 70%;
    padding: 5px;
  }
  .box_image_p {
    height: 120px;
  }

}

.enquire-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e83e8c; /* pinkish color */
  color: white;
  padding: 10px 10px;
  text-decoration: none;
  font-weight: bold;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 1px;
  z-index: 1000;
  transition: background 0.3s;
}

.enquire-btn:hover {
  background-color: #c82368;
}

.social-links{
  font-size: 25px;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 10px;
}