/* Font Awesome for social icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --sunset-yellow: #fec260;
  --rosy-pink: #f8afa6;
  --sunset-plum: #944e63;
  --peach-coral: #ff6f61;
  --buttercream: #fff6e5;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  /* background-color: var(--buttercream); */
  background-image: url('/Images/body.png');
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.floata{
	position:fixed;
	width:60px;
	height:60px;
	bottom:120px;
	left:40px;
	background-color:red;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--sunset-plum);
  width: 100%;
  padding: 5px;
}

header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

div.logo {
  float: left;
  width: max-content;
}

div.logo img {
  width: 4em;
  height: 4em;
}

/* Keep toggle-btn on small screens */
.toggle-btn {
  width: 35px;
  display: none;
}

.toggle-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fec260;
  margin-bottom: 8px;
}

nav {
  float: right;
}

nav ul li {
  display: inline-block;
  padding: 15px 25px;
}

nav ul li a {
  display: inline-block;
  color: var(--sunset-yellow);
  text-decoration: none;
  font-weight: 600;
}

/* nav ul li:hover {
  background: var(--buttercream);
  border-radius: 20px;
  box-shadow: 1px 1px 2px 2px black;
  transition: all 0.3s ease;
} */

nav ul li a.active{
    color: var(--buttercream);
  font-weight: 700;
  border-bottom: 2px solid var(--buttercream);
  padding-bottom: 5px;
}

@media (max-width: 991px) {
  .toggle-btn {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    border-top: 1px solid #fff;
    margin-top: 10px;
    padding-top: 10px;
  }

  nav ul li {
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }

  nav.show {
    display: block;
  }
}

.btn.btn1 {
  float: right;
  margin: 0px 2em;
  padding: 0.2em 1em 0.2em 1em;
  border-radius: 25px;
  border: 2px solid rgb(255, 255, 255);
  background-color: #25d366;
  color: white;
  font-size: 20px;
  font-family: auto;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s;
}

.btn.btn1:hover {
  background-color: #1eae53;
  color: white;
  border: 2px SOLID rgb(0, 0, 0);
}

#nav.links {
  margin-right: 15em;
}

/* banner */
.about-banner .row {
    margin-left: 0;
    margin-right: 0;
}

.about-banner .col-12 {
    padding-left: 0;
    padding-right: 0;
}

div.about-banner {
  /* background-image: url('/Images/aboutbanner.png'); */
  background-color: #000;
  height: 410px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.banner-txt {
  padding-left: 93px;
  padding-top: 50px;
}

.banner-txt h2 {
  color: var(--buttercream);
  font-size: 50px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
}

.banner-txt p {
  color: var(--buttercream);
  font-size: 20px;
  font-family: 'Courier New', Courier, monospace;
}

.btn2 {
  margin-right: 20px;
}

button.btn {
  font-family: "UoqMunThenKhung", serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--peach-coral);
  color: #ffffff;
  padding: 6px 30px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-right: 3em;
}

button.btn:hover {
  background-color: #e85b50;
  color: var(--white);
  border: 2px solid var(--white);
  transform: translateY(-2px);
  box-shadow: 3px 3px rgb(0, 0, 0);
}

@media (max-width: 780px) {
  div.about-banner {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    /* fallback if image doesn’t fill */
    height: auto;
    /* let content define height */
    padding: 20px 0;
    /* space around content */
  }

  .banner-txt {
    padding-left: 30px;
    padding-top: 30px;
    text-align: left;
  }

  .banner-txt h2 {
    font-size: 32px;
  }

  .banner-txt p {
    font-size: 16px;
  }

  button.btn {
    padding: 8px 30px;
    font-size: 15px;
  }
}

/* Welcome text */
.w-txt h2 {
  margin-top: 1rem;
  font-size: 28px;
  color: var(--sunset-yellow)
}

.w-txt p {
  /* margin-top: 3rem;
    margin-bottom: 1rem;
    width: 350px;
    margin-left: 2em;
    color: #4A4A4A; */
  margin-top: 1.5rem;
  color: #4A4A4A;
  padding: 0 1rem 0rem 0rem;
  text-align: justify;
}

img.img1,
img.img2 {
  max-width: 100%;
  height: auto;
  border-radius: 150px;
  border: 2px solid black;
  box-shadow: 0px 0px 10px black;
  display: block;
  margin: 3.5rem auto;
}

img.img1 {
  box-shadow: 0px 0px 15px black;
}

/* Adjust layout for mobile */
@media (max-width: 768px) {
  .w-txt h2 {
    font-size: 24px;
  }

  .w-txt p {
    font-size: 16px;
    margin-right: 0;
  }

  img.img2 {
    display: none;
  }

  img.img1 {
    width: auto;
    height: 300px;
    margin-bottom: 0;
  }
}

/* quality section */
div.q-row {
  margin-top: 0;
}

div.q-col1 {
  background-color: var(--rosy-pink);
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
  border: 2px solid var(--rosy-pink);
  height: 100%;
  padding: 2em 1.5em;
  margin-top: 7em;
}

div.q-col1 h3 {
  color: var(--white);
  font-size: 28px;
}

/* left side*/
div.q-col2 {
  margin-top: 5em;
}

div.q-col2 h6 {
  color: var(--sunset-yellow);
  font-size: 2em;
  margin-left: 0.6em;
}

div.q-col2 ul {
  list-style-type: none;
  padding-left: 1.2em;
}

.q-col2 ul li {
  margin-bottom: 0.6em;
}

.q-col2 ul li i {
  margin-right: 8px;
}

button.btn3 {
  font-family: "Poppins", sans-serif;
  background-color: var(--sunset-yellow);
  color: var(--sunset-plum);
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  text-transform: capitalize;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-left: 2em;
  margin-top: 1em;
}

button.btn3:hover {
  background-color: var(--peach-coral);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 3px 3px rgb(0, 0, 0);
}

img.img3 {
  max-width: 100%;
  height: auto;
  border-radius: 220px;
  border: 2px solid black;
  box-shadow: 0px 0px 10px black;
  display: block;
  margin: 3.5rem auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {

  div.q-col1,
  div.q-col2 {
    text-align: center;
    border-radius: 30px;
  }

  div.q-col1 {
    border-radius: 30px;
  }

  div.q-col2 {
    margin-top: 0;
  }

  div.q-col2 h6 {
    font-size: 1.5em;
  }

  button.btn3 {
    margin-left: 0;
  }

  .img3 {
    max-width: 80%;
    height: auto;
  }
}

/* footer */
footer {
  background-color: #1f1f1f;
  color: #fff;
  margin-top: 7em;
  position: relative;
  padding-top: 3rem;
}
/* 
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 40px;
  background-color: #1f1f1f;
  border-radius: 50%;
  z-index: 1;
} */

footer h5,
footer h6 {
  color: #ffd166;
  /* sunset yellow for headings */
  font-weight: 600;
  margin-bottom: 1rem;
}

footer a {
  color: #ffffffb3;
  /* soft white for links */
  transition: color 0.3s ease;
}

footer a:hover {
  color: #f88379;
  /* peach coral on hover */
}

footer ul {
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer i {
  color: #ffd166;
  /* icons in sunset yellow */
  transition: color 0.3s ease;
}

footer i:hover {
  color: #f88379;
  /* peach coral on icon hover */
}

footer input[type="email"] {
  border-radius: 8px;
  border: none;
  padding: 10px;
  font-size: 0.9rem;
}

footer .btn-primary {
  background-color: var(--sunset-yellow);
  color: var(--sunset-plum);
  border: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px;
  margin: 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

footer .btn-primary:hover {
  background-color: #fcb94c;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  footer .row > div {
    text-align: center;
  }

  footer ul {
    margin: 0 auto;
    display: inline-block;
    text-align: left;
  }

  footer form {
    max-width: 280px;
    margin: 0 auto;
  }
}

.footer-bottom {
  border-top: 1px solid #333;
  font-size: 0.9rem;
  background-color: #1f1f1f;
  color: #ffffff99;
}

a.scroll-to-top {
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  background-color: var(--sunset-yellow);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0.1em 0.2em;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

a.scroll-to-top i {
  color: var(--sunset-plum);
}

a.scroll-to-top:hover {
  background-color: var(--rosy-pink);
  transform: translate(-50%, -60%);
}

footer ul li a {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

footer ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--peach-coral);
  transition: width 0.4s ease;
}

footer ul li a:hover {
  color: var(--peach-coral);
}

footer ul li a:hover::after {
  width: 100%;
}

@media (max-width: 576px) {
  .subscribe,
  .footer-logo {
    padding: 0 10px;
    text-align: center;
  }

  .subscribe input,
  .subscribe button {
    width: 100%;
    margin-bottom: 10px;
  }
}
