* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: ' AvenirLTStd-Black ', sans-serif;
}

a {
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 60px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
}

.navbar .logo img {
  max-height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  font-family: 'AvenirLTStd-Medium';
}

.nav-links a:hover {
  color: #327DFC;
}


.nav-links li a.active {
  color: #327DFC;
  font-weight: bold;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
}

.hamburger .bar {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #000000;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hamburger.open .bar:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  left: 0;
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 8px;
  left: 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    width: 100%;
    text-align: center;
    background-color: #dce9ff;
    position: absolute;
    top: 60px;
    color: white;
    left: 0;
    padding: 10px 0;
    z-index: 999;
  }

  .nav-links.active {
    display: block;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: block;
  }
}

/* -----------------------------   banner section    ---------------------- */
.banner {
  position: relative;
  width: 100%;
  height: 80vh; /* Set a height to ensure the banner fills the screen */
  background: url('../images/homepage/homebannerimg.png') no-repeat center center;
  background-size: cover; /* This makes the background image responsive */
  background-position: center; /* Ensure the image is centered */
  display: flex;
  justify-content: left;
  align-items: flex-start;
  overflow: hidden;
  padding: 80px 20px;
  border-radius: 20px;
  margin-top: 2%;
}

.banner-content {
  max-width: 600px;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.banner h1 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.banner p {
  font-size: 1.2em;
  margin-bottom: 20px;
  text-align: justify;
}

.enquiry-btn {
  padding: 10px 20px;
  font-size: 1.1em;
  background-color: white;
  color: #2162B5;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 20px;
}

.enquiry-btn:hover {
  background-color: #2162B5;
  color: white;
}

/* Tablet Specific Styles */
@media (max-width: 1024px) {
  .banner {
    padding: 60px 20px;
    height: auto; /* Adjust height for tablet */
    justify-content: left;
  }

  .banner-content {
    max-width: 85%;
  }

  .banner h1 {
    font-size: 2.2em;
  }

  .banner p {
    font-size: 1.1em;
  }
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
  .banner {
    padding: 40px 15px;
    height: auto; /* Reduce height for smaller screens */
  }

  .banner-content {
    max-width: 90%;
    text-align: justify;
    align-items: left;
  }

  .banner h1 {
    font-size: 20px;
    text-align: left;
  }

  .banner p {
    font-size: 18px;
    text-align: justify;
  }

  .enquiry-btn {
    font-size: 16px;
    text-align: left;
    margin-left: 0;
}
}

/* Extra small screens */
@media (max-width: 480px) {
  .banner {
    padding: 30px 10px;
    height: auto; /* Further reduce height for very small screens */
  }

  .banner-content {
    max-width: 95%;
    text-align: justify;
  }

  .banner h1 {
    font-size: 12px;
    text-align: left;
  }

  .banner p {
    font-size: 10px;
    text-align: left;
  }

  .enquiry-btn {
    font-size: 8px;
    text-align: left;
    margin-left: 0;
}
}




/* ------------------------     Who we are      --------------------------- */

/* General Styling for Section */
.first-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}

.wholeft-part {
  width: 50%;
}

.wholeft-part h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2F2E2E;
  font-family: 'AvenirLTStd-Heavy';
  text-align: justify;
  text-transform: uppercase;
}

.wholeft-part p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #2F2E2E;
  font-family: 'AvenirLTStd-Roman';
  text-align: justify;
  line-height: 30px;
}

.wholeft-part button {
  font-size: 20px;
  padding: 10px 20px;
  background-color: transparent;
  color: #327DFC;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-family: 'AvenirLTStd-Medium';
}

.whoright-part img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Boxes Section */
.whoboxes-section {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

.whobox {
  width: 32%;
  background-color: #F6F7F8;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.whobox img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.whobox h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2D2C2C;
  font-family: 'AvenirLTStd-Medium';
}

.whobox p {
  font-size: 18px;
  color: #2D2C2C;
  font-family: 'AvenirLTStd-Book';
}

/* Responsive Design */

@media (max-width: 1000px) {
  .first-section {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }

  .wholeft-part,
  .whoright-part {
    width: 100%;
    text-align: center;
  }

  .whoboxes-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .whobox {
    width: 90%;
    margin-bottom: 20px;
  }

  .wholeft-part h2 {
    font-size: 2rem;
    text-align: center;
  }

  .wholeft-part p {
    font-size: 1rem;
  }

  .wholeft-part button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
@media (max-width: 768px) {
  .first-section {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }

  .wholeft-part,
  .whoright-part {
    width: 100%;
    text-align: center;
  }

  .whoboxes-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .whobox {
    width: 90%;
    margin-bottom: 20px;
  }

  .wholeft-part h2 {
    font-size: 2rem;
    text-align: center;
  }

  .wholeft-part p {
    font-size: 1rem;
  }

  .wholeft-part button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .wholeft-part h2 {
    font-size: 1.2rem;
    text-align: center;
}

  .wholeft-part p {
    font-size: 0.9rem;
  }

  .wholeft-part button {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* --------------------------  why choose us ------------------------------ */

/* General Section Styling */
.why-choose-us-section {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 50px;
  padding-bottom: 0;
  background-color: #AFE1F9;
  /* Background Color */
}

/* Left Part */
.whyleft-part {
  width: 60%;
}

.whyleft-part h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: 'AvenirLTStd-Heavy';
}

.whyleft-part h2 span {
  background-image: linear-gradient(90deg, #2162B5 0%, #3D88E7 100%);
  -webkit-background-clip: text;
  color: transparent;
  /* This makes the text color transparent to show the gradient */
}

.whyleft-part p {
  font-size: 30px;
  margin-bottom: 30px;
  font-family: 'AvenirLTStd-Heavy';
  color: #2F2E2E;
}

.whypoint {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.whyimage-container img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.whytext-container h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000000;
  font-family: 'AvenirLTStd-Medium';
}

.whytext-container p {
  font-size: 16px;
  color: #000000;
  font-family: 'AvenirLTStd-Roman';
  margin: 0;
}

.whyright-part {
  width: 70%;
}

.whyright-part img {
  width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .why-choose-us-section {
    flex-direction: column;
    padding: 20px;
  }

  .whyleft-part,
  .whyright-part {
    width: 100%;
    text-align: center;
  }

  .whypoint {
    flex-direction: column;
    align-items: center;
  }

  .vimage-container img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .whytext-container h3 {
    font-size: 1.2rem;
  }

  .whytext-container p {
    font-size: 1rem;
  }
  .whyleft-part h2{
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .why-choose-us-section {
    flex-direction: column;
    padding: 20px;
    padding-bottom: 0;
  }

  .whyleft-part,
  .whyright-part {
    width: 100%;
    text-align: center;
  }

  .whypoint {
    flex-direction: column;
    align-items: center;
  }

  .vimage-container img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .whytext-container h3 {
    font-size: 1.2rem;
  }

  .whytext-container p {
    font-size: 1rem;
  }
  .whyleft-part h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .whyleft-part h2 {
    font-size: 1.2rem;
  }

  .whyleft-part p {
    font-size: 1rem;
  }

  .whypoint {
    margin-bottom: 20px;
  }

  .whytext-container h3 {
    font-size: 0.9rem;
  }

  .whytext-container p {
    font-size: 0.8rem;
  }

  .whyimage-container img {
    width: 50px;
    height: 50px;
  }
}


/* ----------------------------  Product -------------------------------- */

.products-section {
  padding: 20px;
  text-align: center;
  width: 90%;
  margin: auto;
}

.productssection-heading {
  text-align: center;
  margin-bottom: 20px;
}

.productssection-heading h2 {
  font-size: 32px;
  text-transform: uppercase;
  font-family: 'AvenirLTStd-Heavy';
  color: #2F2E2E;
}

.productssection-heading h2 span {
  color: #327DFC;
}

.product-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 items per row */
  gap: 20px;
  /* Space between the items */
}

.product-item {
  position: relative;
  width: 100%;
  height: auto;
  /* Fixed height for items */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Ensures no overflow */
  border-radius: 10px;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.productsoverlay {
  position: absolute;
  bottom: 20px;
  left: 0px;
  color: white;
  padding: 20px;
  text-align: left;
  width: calc(100% - 40px);
  top: 0;
}

.productsoverlay h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #57585A;
  font-family: 'AvenirLTStd-Heavy';
  text-transform: uppercase;
}

.productsoverlay p {
  font-size: 12px;
  margin-bottom: 15px;
  color: #2B2A2A;
  font-family: 'AvenirLTStd-Roman';
}

.productsview-details {
  color: #2162B5;
  text-decoration: underline;
  font-size: 16px;
  font-family: 'AvenirLTStd-Medium';
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .product-images {
    grid-template-columns: repeat(3, 1fr);
    /* 3 items per row */
  }
  .productsoverlay h3 {
    font-size: 12px;
}
.productsoverlay p{
  font-size: 11px;
}
.productsview-details{
  font-size: 10px;
}
}

@media (max-width: 768px) {
  .product-images {
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row */
  }

  .productssection-heading h2 {
    font-size: 28px;
  }

  .productsoverlay h3 {
    font-size: 18px;
  }

  .productsoverlay p {
    font-size: 16px;
  }

  .productsview-details {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .product-images {
    grid-template-columns: 1fr;
    /* 1 item per row */
  }

  .productssection-heading h2 {
    font-size: 1.3rem;
  }

  .productsoverlay h3 {
    font-size: 16px;
  }

  .productsoverlay p {
    font-size: 14px;
  }

  .productsview-details {
    font-size: 12px;
  }
}



/* ---------------------------- Customer Feedback        --------------------- */

.customer-feedback {
  padding: 40px 20px;
  text-align: center;
  width: 85%;
  height: auto;
  margin: auto;
}

.customer-heading h2 {
  font-size: 28px;
  font-family: 'AvenirLTStd-Heavy';
  color: #2F2E2E;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.customer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: auto;
}

.customer-left {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.quote img {
  width: 10%;
  height: auto;
  color: #FDAA57;
  font-family: 'AvenirLTStd-Heavy';
  display: flex;
}

.stars {
  color: #FDAA57;
  margin: 15px 0;
}

.star {
  font-size: 25px;
}

.customer-paragraph {
  font-size: 16px;
  color: #282828;
  font-family: 'AvenirLTStd-Medium';
  margin: 20px 0;
  text-align: justify;
}

.customer-name {
  font-size: 18px;
  font-weight: bold;
  color: #282828;
  margin-bottom: 5px;
  font-family: 'AvenirLTStd-Heavy';
}

.customer-title {
  font-size: 14px;
  color: #605E5E;
  font-family: 'AvenirLTStd-Roman';
}

.customer-right {
  flex: 1;
  position: relative;
}

.image-slider {
  position: relative;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
}

.slider-images {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-image {
  width: 100%;
  flex: 0 0 auto;
}

.slider-image img {
  width: 80%;
  height: auto;
  border-radius: 10px;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.cusprev-arrow,
.cusnext-arrow {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 30px;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
}

.cusprev-arrow:hover,
.cusnext-arrow:hover {
  background-color: #327DFC;
}

@media screen and (max-width: 768px) {
  .customer-content {
    flex-direction: column;
    align-items: center;
  }

  .customer-left {
    text-align: center;
    margin-bottom: 30px;
  }

  .customer-right {
    max-width: 100%;
  }

  .image-slider {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .customer-heading h2 {
    font-size: 24px;
  }

  .quote {
    font-size: 40px;
  }

  .stars {
    font-size: 20px;
  }

  .customer-paragraph {
    font-size: 14px;
  }

  .customer-name {
    font-size: 16px;
  }

  .customer-title {
    font-size: 12px;
  }

  .cusprev-arrow,
  .cusnext-arrow {
    font-size: 25px;
  }
}



/* -----------------------------  Footer    ------------------------------ */

.footer-section {
  background-color: #F7F7F8;
  color: #000000;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Footer Container */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Part 1: Logo, Description, and Social Media Icons */
.footer-part1 {
  text-align: left;
  margin-bottom: 20px;
  flex: 1;
  padding-left: 0px;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-description {
  font-size: 16px;
  color: #000000;
  margin: 25px 0;
  font-family: 'AvenirLTStd-Roman';
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-social a {
  font-size: 30px;
  color: #393838;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #1BBFE5;
}

/* Part 2: Quick Links */
.footer-part2 {
  text-align: left;
  margin-bottom: 20px;
  flex: 1;
  padding-left: 0px;
}

.footer-part2 h4 {
  font-size: 18px;
  color: #0497fa;
  font-family: 'AvenirLTStd-Heavy';
  margin-bottom: 10px;
}

.footer-part2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-part2 ul li {
  margin: 8px 0;
}

.footer-part2 ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-family: 'AvenirLTStd-Roman';
  transition: color 0.3s;
}

.footer-part2 ul li a:hover {
  color: #3D88E7;
}

.footer-part2 li a.active {
  color: #327DFC;
  font-weight: bold;
}

/* Part 3: Contact Info */
.footer-part3 {
  text-align: left;
  margin-bottom: 20px;
  flex: 1;
  padding-left: 0px;
}

.footer-part3 h4 {
  font-size: 18px;
  color: #0497fa;
  font-family: 'AvenirLTStd-Heavy';
  margin-bottom: 10px;
}

.footer-part3 p {
  font-size: 14px;
  margin: 15px 0;
  font-family: 'AvenirLTStd-Roman';
}

.footer-part3 a {
  color: #000000;
  text-decoration: none;
}

.footer-part3 a:hover {
  color: #3D88E7;
}

/* Part 4: Address, Back to Top Button, and Copyright */
.footer-part4 {
  text-align: left;
  margin-top: 0px;
  flex: 1;
  padding-left: 0px;
}

.footer-part4 h4 {
  font-size: 18px;
  color: #0497fa;
  font-family: 'AvenirLTStd-Heavy';
  margin-bottom: 10px;
}

.footer-part4 p {
  font-size: 14px;
  margin: 15px 0;
  font-family: 'AvenirLTStd-Roman';
}

.footer-part4 a {
  color: #000000;
  text-decoration: none;
}

.footer-part4 a:hover {
  color: #3D88E7;
}

.footer-part4 iframe {
  width: 100%;
  /* Make the iframe width 100% of its parent container */
  height: auto;
  /* Set a fixed height (you can adjust this to your preference) */
  border: 2px solid #3D88E7;
  border-radius: 10px;
}

.footer-address {
  font-size: 14px;
  margin: 5px 0;
  line-height: 20px;
}

/* Back to Top Button */
/* .back-to-top {
  background-color: #717273;
  color: white;
  font-size: 20px;
  border: none;
  width: 50px;  
  height: 50px; 
  border-radius: 50%;  
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;  
  margin-left: auto;
}

.back-to-top:hover {
  background-color: #2162B5;
} */

/* Reliable Text Section */
.reliable-text {
  background-color: white;
  padding: 5px 10px;
  margin-top: 5%;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
}

.reliable-text i {
  font-size: 20px;
  color: #327DFC;
}

/* Footer Line */
.footer-line {
  border-top: 1px solid #C8C8C8;
  margin: 20px 0;
}

/* Footer Copyright Section */
.footer-bottom {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0px 0px;
  margin: auto;
  justify-content: center;
}

/* Copyright 1 */
.footer-copyright1 {
  font-size: 14px;
  color: #393838;
  font-family: 'AvenirLTStd-Roman';
  text-align: center;
}

/* Copyright 2 */
.footer-copyright2 {
  font-size: 14px;
  color: #393838;
  font-family: 'AvenirLTStd-Roman';
  text-align: center;
}

/* .left-footer {
  flex: 1;
}

.right-footer {
  text-align: right;
  flex: 1;
} */


/* Responsive Styles */
@media (max-width: 768px) {
  .footer-section {
    padding: 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
}

  .footer-part1,
  .footer-part2,
  .footer-part3,
  .footer-part4 {
    text-align: left;
    margin-bottom: 20px;
    flex: 1;
    padding-left: 20px;
  }

  .footer-social {
    justify-content: left;
    margin-top: 10px;
  }

  .footer-part2 ul {
    padding-left: 0;
  }

  .footer-part2 ul li {
    margin: 10px 0;
  }

  .footer-part3 p,
  .footer-part3 a {
    font-size: 14px;
  }

  .footer-address {
    font-size: 14px;
  }

  .footer-line {
    margin: 15px 0;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .reliable-text {
    flex-direction: row;
    margin-top: 5%;
}

  .back-to-top {
    font-size: 16px;
    padding: 8px 16px;
  }

  /* Mobile view: Stack the copyright text in a column */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    /* Center text in mobile view */
  }

  .footer-copyright1,
  .footer-copyright2 {
    text-align: center;
    /* Center text when in column layout */
  }
}



/* --------------------------------- Popup section ------------------------------------- */

body.no-scroll {
  overflow: hidden;
  position: relative;
}

body.no-scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999;
  pointer-events: none;
}

.popup {
  display: none;
  /* Initially hidden */
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px;
  z-index: 1000;
}

.popup1 {
  padding: 20px;
}

.popup .close-btn {
  align-self: flex-end;
  width: 25px;
  height: 25px;
  background-color: #FFFFFF;
  border-radius: 50%;
  color: #1C1B1F;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 97%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: -2%;
  font-weight: 500;
}

.popup h2 {
  font-size: 20px;
  color: #636363;
  margin: 0;
  font-family: 'AvenirLTStd-Heavy';
}

.popup .subheading {
  font-size: 18px;
  color: #636363;
  text-decoration: underline;
  text-decoration-color: #75CEFA;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  margin: 10px 0;
}

.popup .input-container {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: nowrap;
  font-size: 12px;
  color: #565555;
  font-family: 'AvenirLTStd-Roman';
  gap: 30px;
}

.popup .input-container div {
  width: 30%;
  margin-bottom: 10px;
}

.popup input,
.popup select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  color: #373636;
  font-size: 12px;
  font-family: 'AvenirLTStd-Book';
}

.popup .submit-btn {
  background-color: #2F89FF;
  color: #FFFFFF;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin-bottom: 20px;
}

.popup .enqfooter {
  background-color: #2F89FF;
  color: #FFFFFF;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.popup .enqfooter span {
  font-size: 20px;
  color: #FFFFFF;
  font-family: 'AvenirLTStd-Medium';
}

.popup .enqfooter button {
  font-size: 16px;
  color: #2162B5;
  font-family: 'AvenirLTStd-Medium';
  background-color: #FFFFFF;
  border: none;
  padding: 10px;
  border-radius: 20px;
}

.popup .enqfooter img {
  height: auto;
  width: 30%;
}

/* Responsive Design */
@media (max-width: 600px) {
  .popup {
    width: 90%;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .popup .input-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .popup .input-container div {
    width: 100%;
  }

  .popup .close-btn {
    margin-left: 91%;
    margin-top: 1%;
  }

  .popup .enqfooter span {
    font-size: 10px;
  }

  .popup .enqfooter button {
    font-size: 10px;
    padding: 8px;
  }

  .popup .enqfooter img {
    height: auto;
    width: 35%;
  }

  .popup .enqfooter {
    gap: 5px;
  }
}

/* --------------------- Back to top  ----------------------- */

#back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  padding: 10px 20px;
  background-color: #717273;
  display: none;
  z-index: 1000;
  color: white;
  font-size: 20px;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

#back-to-top:hover {
  background-color: #0056b3;
}