@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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #8d8473;
  --text-dark: #907b68;
  --text-light: #f5f5f5;
  --text-color: #d5ccc3;
  --max-widht: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  max-width: var(--max-widht);
  margin: auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-color);
  padding-top: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4rem;
  font-weight: 500;
}

.menu-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  background: var(--primary-color);
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.header_container {
  padding-top: 2rem;
  position: relative;
}

.header_container img {
  display: flex;
  max-width: 1000px;
  margin-left: auto;
  border-radius: 5px;
}

.header_ribbon {
  position: absolute;
  top: 50%;
  left: calc(25rem +-100%);
  transform: translate(-50%);
  width: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: var(--primary-color);
  border-radius: 5px;
}

.header_content {
  max-width: 450px;
  padding: 2rem 5rem;
  color: var(--white);
}

.header_content p {
  color: var(--text-light);
}

.arrow_down {
  position: absolute;
  bottom: 4rem;
  right: 0;
  height: 80px;
  width: 100px;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
}

.image__box {
  position: absolute;
  bottom: 4rem;
  right: min(100%, 950px);
  height: 80px;
  width: 100px;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  z-index: -1;
}

.benefits__container .section__header {
  max-width: 400px;
  margin-bottom: 4rem;
  margin-left: 10rem;
  position: relative;
}

.benefits__container .section__header::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(-10rem, 50%);
  width: 7rem;
  height: 2px;
  background-color: var(--primary-color);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefits__card {
  padding: 1rem;
  display: flex;
  gap: 1rem;
}

.benefits__card span i {
  font-size: 2rem;
  color: var(--primary-color);
}

.benefits__content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.benefits__content p {
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--primary-color);
}

.experience__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.experience__image img {
  max-width: 600px;
  border-radius: 5px;
  margin-left: 40px;
}

.experience__description {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--primary-color);
}

.experience__features {
  margin: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}

.experience__col h3 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--primary-color);
}

.experience__col p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
}

.experience__content button {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  outline: none;
  border: 2px solid var(--primary-color);
  background-color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}

.process__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.process__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 50px auto;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  align-items: center;
}

.process__grid .number {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--primary-color);
}

.process__grid h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.process__grid p {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.process__grid span:not(.last-child) {
  height: 100%;
  width: 2px;
  margin: auto;
  background-color: var(--text-light);
}

.process__image {
  text-align: right;
}

.process__image img {
  max-width: 500px;
  border-radius: 5px;
}

.customer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.customer__nav .section__header {
  max-width: 400px;
}

.customer__nav__icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.customer__nav__icons span {
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

.customer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.customer__card {
  padding: 2rem;
  display: grid;
  place-content: baseline;
  gap: 1rem;
  color: var(--white);
  border-radius: 5px;
  background-color: var(--primary-color);
}

.customer__card span i {
  font-size: 4rem;
}

.customer__title {
  font-size: 1.5rem;
  font-weight: 500;
}

.customer__description {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-light);
}

.customer__content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.customer__content span img {
  display: flex;
  max-width: 50px;
  border-radius: 100%;
}

.customer__details h4 {
  font-size: 1rem;
  font-weight: 500;
}

.customer__details p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.subscribe__container {
  max-width: 600px;
  text-align: center;
  position: relative;
}

.subscribe__description {
  color: var(--primary-color);
}

.subscribe__container form {
  position: absolute;
  width: calc(100% - 2rem);
  bottom: -1rem;
  left: 180%;
  bottom: 13px;
  transform: translateX(-50%);
  padding: 5px;
  display: flex;
  align-items: center;
  background-color: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.subscribe__container input {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  outline: none;
  border: none;
}

.subscribe__container button {
  padding: 1rem 3rem;
  color: var(--white);
  outline: none;
  border: none;
  background-color: var(--primary-color);
  cursor: pointer;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  align-items: center;
  padding-top: 8rem;
  color: #907b68;
}

footer ul {
  display: flex;
  list-style: none;
  gap: 32px;
  color: black;
  margin-left: 20px;
}

footer .logo {
  color: (--primary-color);

}


p {
  color: black;
}



























@media only screen and (max-width: 520px) {
  nav {
    position: relative;
    z-index: 10;
  }

  nav ul {
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: column;
    background-color: #d5ccc3;
    width: 80%;
    height: 100vh;
    align-items: flex-end;
    padding-top: 80px;
    transition: all 0.3s ease;
    transform: translateX(100%);
    z-index: 10;
  }

  nav ul.active {
    transform: translateX(0);
  }

  nav li {
    border-bottom: 1px solid var(--primary-color);
    width: 100%;
    padding: 8px 16px;
    text-align: right;
  }

  .menu-btn {
    display: block;
    z-index: 11;
  }

  footer {
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
  }



}












/*keshav*/

#contact-header {

  min-height: 600px;
  background-image: url(spacejoy-9M66C_w_ToM-unsplash.jpg);
  background-position: center;
  background-size: cover;
}




.contact {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}




.contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
}

.contact-form button {
  background-color: #8d8473;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #524c43;
}










.contact_info_list {
  display: flex;
  flex-direction: column;
  color: #8d8473;
}

.contact_info_list_item {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin: 8px 0px;

}

.contact_info_list_item {
  align-items: flex-start;
  font-size: 24px;
  padding: 14px;


}
   




@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
  }

  .contact h2 {
    font-size: 24px;
  }

  .contact p {
    font-size: 16px;
    padding: 0 10px;
  }

  .contact-form {
    padding: 0 10px;
  }

  .contact_info_list {
    padding: 0 10px;
  }

  .contact_info_list_item {
    font-size: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact_info_list_item i {
    font-size: 20px;
    margin-bottom: 5px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
  }

  .footerlinks {
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .footerlinks li {
    list-style: none;
  }

  .footerlinks a {
    font-size: 16px;
  }

  .logo {
    font-size: 20px;
    margin-top: 10px;
  }
}













/*ABOUT US*/

.hero {
  background: url('spacejoy-9M66C_w_ToM-unsplash.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
}

.hero p {
  margin-top: 10px;
  font-size: 16px;
}







.about-section {
  max-width: 1200px;
  margin: auto;
}

.about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 2;
  min-width: 300px;
}

.about-text h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #8d8473;
}

.about-text h4 {
  font-size: 20px;
  margin: 15px 0 8px;
  color: #8d8473;
}

.about-text p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

.about-image {
  flex: 1;
  min-width: 300px;
  margin-left: 400px;
  margin-top: 150px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}


.about-image2 {
    flex: 1;
  
  min-width: 300px;
  margin-left: 400px;
  margin-top: 150px;

}

.about-image2 img{
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}






.stats-section {
  text-align: center;
  padding: 60px 20px;
}

.stats-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.stats-section p {
  color: #666;
  font-size: 16px;
  margin-top: 10px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}

.stat-box {
  background: #fff;
  width: 230px;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box i {
  font-size: 40px;
  color: #8d8473;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 24px;
  margin: 0;
  color: #333;
}

.stat-box p {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}


/* Responsive styles for mobile view */
@media (max-width: 768px) {
  .hero {
    height: 300px;
    padding: 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
    cursor: pointer;
  }

  .about-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
  }

  .about-image,
  .about-image2 {
    margin: 0;
    width: 100%;
  }

  .about-image img,
  .about-image2 img {
    width: 100%;
    max-height: 300px;
  }

  .about-text {
    padding: 0 15px;
    text-align: center;
  }

  .stats-container {
    flex-direction: center;
    gap: 20px;
    padding: 0 15px;
  }

  footer {
    text-align: center;
    padding: 20px;
  }

  .footerlinks {
    flex-direction: column;
    gap: 10px;
  }

  .footerlinks li {
    list-style: none;
  }

  .footerlinks a {
    text-decoration: none;
    color: #000;
  }
}


















/* whatsapp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-btn img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}
/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn img {
    width: 50px;
    height: 50px;
  }
}

/* 📱 Small devices (extra) */
@media (max-width: 480px) {
  .whatsapp-btn {
    bottom: 12px;
    right: 130px;
    position: fixed;
  }

  .whatsapp-btn img {
    width: 45px;
    height: 45px;
    
  }
}















@media screen and (max-width: 768px) {
  .section_container {
    padding: 3rem 1rem;
  }

  .section_header {
    font-size: 1.8rem;
    text-align: center;
    line-height: 2.5rem;
  }

  nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav_links {
    flex-direction: column;
    gap: 1rem;
  }

  .header_container {
    padding-top: 1rem;
    text-align: center;
  }

  .header_container img {
    max-width: 100%;
    margin: auto;
  }

  .header_ribbon {
    position: static;
    transform: none;
    width: 90%;
    margin: 1rem auto;
    text-align: center;
  }

  .header_content {
    padding: 1.5rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .experience__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .experience__image img {
    max-width: 100%;
    margin: auto;
  }

  .experience__features {
    flex-direction: column;
    gap: 1rem;
  }

  .process__container {
    grid-template-columns: 1fr;
  }

  .process__image {
    text-align: center;
  }

  .customer__grid {
    grid-template-columns: 1fr;
  }

  .customer__nav {
    flex-direction: column;
    text-align: center;
  }

  .customer__nav__icons {
    margin-top: 1rem;
  }

  .subscribe__container form {
    width: 100%;
    position: static;
    transform: none;
    margin-top: 1rem;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
  }
}














/* OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* BOX */
.popup-box {
  background: #fff;
  width: 700px;
  max-width: 90%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 25px;
  cursor: pointer;
}

/* CONTENT */
.popup-content {
  display: flex;
}

/* IMAGE */
.popup-img {
  width: 50%;
}

.popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FORM */
.popup-form {
  width: 50%;
  padding: 20px;
}

.popup-form h2 {
  margin-bottom: 15px;
  color: #8d8473;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.popup-form button {
  width: 100%;
  padding: 10px;
  background: #8d8473;
  color: white;
  border: none;
  cursor: pointer;
}


/* 🔥 MOBILE VIEW */
@media (max-width: 768px) {

  .popup-box {
    width: 95%;
  }

  .popup-content {
    flex-direction: column;
  }

  .popup-img {
    width: 100%;
    height: 180px;
  }

  .popup-form {
    width: 100%;
    padding: 15px;
  }

  .popup-form h2 {
    font-size: 18px;
    text-align: center;
  }

  .popup-form input,
  .popup-form textarea {
    padding: 8px;
    font-size: 14px;
  }

  .popup-form button {
    padding: 9px;
    font-size: 14px;
  }

  .close-btn {
    font-size: 22px;
    top: 8px;
    right: 10px;
  }
}