body{
  padding: 0;
  margin: 0;
}
/* Top Bar Styling */
@font-face {
  font-family: glacial-r;
  src: url(./Fonts/glacial-indifference/GlacialIndifference-Regular.otf);
}

@font-face {
  font-family: league-r;
  src: url(./Fonts/league-spartan/league-spartan-master/LeagueSpartan-Bold.otf);
}

/* Top Contact Info */
.contact-info {
  font-family: glacial-r;
  font-size: 16px;
  color: #4d4d4d;
  gap: 30px;
  padding: 10px;
}

/* Highlighted Line (Separator) between Contact and Navbar */
.separator-line {
  border-top: 1px solid #000000;
  margin: 0;
  opacity: 0.15;
}

/* Nav bar starts here */

/* Logo */
.logo {
  margin-left: 50px;
  width: 100px;
  height: auto;
}

/* Brand Name */
.brand-name {
  font-family: glacial-r;
  font-size: 22px;
  color: black;
  padding-left: 10px;
}

/* Navbar Links */

.navbar-nav .nav-link {
  font-family: glacial-r;
  font-size: 18px;
  color: #4d4d4d;
}

.navbar-nav .nav-link:hover {
  color: teal;
}

.navbar-nav {
  gap: 10px; /* Adds spacing between nav links */
}

/* Get Quote Button */
.btn-teal {
  font-family: glacial-r;
  background-color: #08989e !important;
  color: white !important;
  border-radius: 50px!important;
  padding: 4px 24px !important;
  font-size: 18px !important;
  text-decoration: none;
  margin-left: 120px;
}

.btn-teal:hover {
  background-color: #00796b !important;
  color: white;
}

@media (max-width: 992px) {
  .logo {
    margin-left: 0px;
    width: 100px;
    height: auto;
  }
  .navbar-nav {
      text-align: center;
  }
  .contact-info {
      justify-content: center;
      font-size: 12px;
  }
  .btn-teal {
      margin-top: 0px;
  }
}

.btn-teal:hover {
  background-color: #00796b !important;
  color: white;
}

@media (max-width: 768px) {
  .logo {
    margin-left: 0px;
    width: 100px;
    height: auto;
  }
  .btn-teal {
    display: flex;
    justify-content: center;
    margin-left: 0px;
    margin-top: 10px;
  }
}

/* Navebar ends here */

/* Hero Container */
.hero-container {
  font-family: glacial-r;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  max-width: 1200px;
  margin: 40px auto;         /* center and add vertical spacing */
}

/* Full-width background image */
.hero-container .home-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

/* Headline & subtitle */
.hero-title {
  padding: 50px 160px 0px  160px;
  font-family: league-r;
  font-size: 36px;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  text-shadow: #000 1px 1px 2px;
}
.hero-subtitle {
  font-family: glacial-r;
  font-size: 28px;
  color: #f5f5f5;
  margin-bottom: 1.5rem;
  text-shadow: #000 .5px .5px 2px;
}

/* View More button */
.hero-button {
  font-family: glacial-r;
  background-color: #ffda2d;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}
.hero-button:hover {
  background-color: #e6c628;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .hero-container .home-img {
    display: block;
    width: 100% !important;
    height: auto;
    padding: 0px 4px 0px 4px;
  }

  .hero-title {
    padding: 5px 16px 0px 16px;
    font-size: 10px;
  }
  .hero-subtitle {
    font-size: 2px;
  }
}
@media (max-width: 576px) {
  .hero-container {
    margin: 20px 0;
  }
  .hero-title {
    padding: 8px 60px 0px 60px;
    font-size: 12px;
    line-height: 1.7;
  }
  .hero-subtitle {
    font-size: 10px;
  }

  .hero-button {
    font-family: glacial-r;
    background-color: #ffda2d;
    color: #333;
    font-size: 10px;
    font-weight: 600;
    padding: 5px 14px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
  }
}
/* Hero Container ends here */


/* Project count starts here */
.features-container {
  font-family: glacial-r;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 40px 10px;
}

.feature-item {
  font-size: 22px;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  color: #4d4d4d;
}

.feature-item strong {
  font-weight: bold;
  color: black;
}

.divider {
  width: 1px;
  height: 20px;
  background-color: black;
}

/* Mobile Responsiveness */

@media (max-width: 768px) {
  .features-container {
      flex-direction: column;
      gap: 20px;
      padding: 10px 2px;
  }
  .feature-item{
    font-size: 16px;
  }

  .divider {
      width: 50px;
      height: 1px;
  }
}

/* Project count ends here*/

/* About Starts here  */
.about-section {
  padding: 60px 0;
}

.about-title {
  font-family: league-r;
  font-size: 34px;
  font-weight: 700;
  color: #4d4d4d;
  text-align: center;
  margin-bottom: 20px;
}

.about-subtitle {
  font-family: glacial-r;
  font-size: 22px;
  color: #000000;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.about-text {
  font-family: glacial-r;
  font-size: 20px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 20px;
  margin-left: 100px;
  margin-top: 40px;
}

.about-button {
  font-family: glacial-r;
  display: inline-block;
  background-color: #ffc107 !important;
  color: black;
  font-size: 16px !important;
  padding: 08px 34px !important;
  border-radius: 25px !important;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  margin-left: 120px;
}

.about-button:hover {
  background-color: #e0a800 !important;
}

.about-image {
  width: 80%;
  max-width: 450px;
  border-radius: 20px;
  margin-top: 30px;
  margin-right: 120px;
}

@media (max-width: 768px) {
  .about-subtitle {
    font-family: glacial-r;
    font-size: 18px;
    color: #000000;
    text-align: center;
    margin: 0px 0px;
  }
  .about-text {
    font-size: 16px;
    text-align: justify;
    margin: 0px 0px;
  }

  .about-button {
    margin-top: 20px;
    margin-left: 0px;
  }

  .about-image {
    width: 80%;
    max-width: 450px;
    border-radius: 20px;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    margin-right: 0px;
    margin-bottom: 0px;
  }
}

/* About ends here  */

/* Our products starts here */
/* SECTION STYLING */
.products-section {
  padding: 150px 0; /* Top and bottom space for the whole section */
}

.products-title {
  font-family: league-r;
  font-size: 34px;
  color: #4d4d4d;
}

.products-subtitle {
  font-family: glacial-r;
  font-size: 26px;
  color: #000000;
  margin-bottom: 30px;
  padding: 20px 200px;
}

/* PRODUCT CARD */
.product-card {
  text-align: center;
  margin-bottom: 30px;
}

/* PRODUCT IMAGE */
.product-image {
  width: 80%;
  max-width: 300px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 0; /* Removed large gap */
  margin-bottom: 20px;
}

.product-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* PRODUCT NAME */
.product-name {
  font-family: league-r;
  color: #4d4d4d;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 8px;
  padding: 0 40px;
}

/* BUTTON UNDER EACH PRODUCT */
.product-sub-button {
  display: inline-block !important;
  background-color: #ffc107 !important;
  color: white;
  font-family: glacial-r !important;
  font-size: 14px !important;
  padding: 8px 24px !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  margin-top: 10px !important;
  margin-bottom: 0 !important; /* Removed huge gap */
  transition: background-color 0.3s ease !important;
}

.product-sub-button:hover {
  background-color: #e0a800 !important;
}

/* VIEW ALL PRODUCTS BUTTON */
.product-button {
  font-family: glacial-r;
  display: inline-block;
  background-color: #ffc107 !important;
  color: black;
  font-size: 16px !important;
  font-weight: 500;
  padding: 10px 40px !important;
  border-radius: 25px !important;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  margin-top: 20px;
}

.product-button:hover {
  background-color: #e0a800;
}

/* MOBILE VIEW ADJUSTMENTS */
@media (max-width: 768px) {
  .products-section {
    padding: 40px 0; /* Reduced top/bottom space for mobile */
  }

  .products-subtitle {
    font-size: 14px;
    padding: 8px 16px !important;
  }

  .product-card {
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
  }

  .product-card img {
    margin-bottom: 10px !important;
  }

  .product-name {
    margin-bottom: 8px;
  }

  .product-sub-button {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }

  .row {
    margin-bottom: 0 !important;
  }

  .col-md-4 {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}


/* Our products Ends here */

/* Why choose us starts here */

.why-choose-us {
  background-color: rgb(74, 72, 72, 0.2);
  padding: 40px 0 30px 0;
}

.section-title {
  font-family: league-r;
  font-size: 34px;
  font-weight: 700;
  color: #4a4848;
  margin-top: 30px;
}

.section-subtitle {
  font-family: glacial-r;
  font-size: 20px;
  color: #000000;
  margin: 40px 180px;
}

.feature-box {
  font-family: glacial-r;
  background: #fff;
  padding: 50px 5px;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 30px 20px;
}

.feature-icon {
  width: 50px;
  margin-bottom: 40px;
}

.feature-box h4 {
  font-family: league-r;
  font-size: 18px;
  font-weight: 600;
  color: #4a4848;
  margin-bottom: 10px;
}

.feature-box p {
  padding: 0px 30px;
  font-size: 18px;
  color: #000000;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .feature-box {
   margin: 10px 10px;
  }

  .section-title {
    font-family: league-r;
    font-size: 26px;
    color: #4a4848;
    margin-top: 30px;
  }

  .section-subtitle {
    font-family: glacial-r;
    font-size: 10px;
    color: #000000;
    margin: 10px;
  } 

}

/* Why choose us ends here */


/* our gallery starts here */

.gallery-section {
  padding: 200px 0;
  gap: 20px;
}

.gallery-images img {
  gap: 50px !important;
  width: 30%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-images img:hover {
  transform: scale(1.05); /* Optional Hover Effect */
}

.gallery-title {
  font-family: league-r;
  font-size: 34px;
  color: #4d4d4d;
  margin-bottom: 20px;
  line-height: 1.2;
  margin-left: 60px;
}

.gallery-button {
  font-family: glacial-r;
  display: inline-block;
  background-color: #ffc107 !important;
  color: black !important;
  font-size: 16px !important;
  padding: 8px 40px !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  transition: 0.3s ease-in-out;
  margin-left: 50px;
}

.gallery-button:hover {
  background-color: #e0a800 !important;
}

@media (max-width: 768px) {

  .gallery-section {
    margin-top: 60px;
    padding: 50px 0;
    gap: 20px;
  }


  .gallery-title {
    margin-top: 40px;
    font-size: 24px;
    text-align: center;
    margin-left: 0px;
  }

  .gallery-button {
    padding: 8px 20px !important;
    font-size: 16px !important;
    margin-left: 0px;
    justify-content: center;
  }
}

/* our gallery ends here */

/* our Strength starts here */
.strength-section {
  padding: 60px 0;
}

.strength-title {
  font-family: league-r;
  font-size: 36px;
  font-weight: 600;
  color: #4d4d4d;
  margin-bottom: 15px;
}

.strength-text {
  font-family: glacial-r;
  font-size: 20px;
  color: #000000;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.strength-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  padding: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.strength-card img {
  width: 100%;
  border-radius: 40px;
  transition: transform 0.3s ease-in-out;
}

.strength-card img:hover {
  transform: scale(1.05);
}

.strength-desc {
  font-family: glacial-r;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin-top: 20px;
}

@media (max-width: 768px) {

  .strength-card {
    margin-top: 10px;
  }
  .strength-title {
    font-size: 20px;
  }

  .strength-text {
    font-size: 14px;
    margin: 20px 10px;
  }

  .strength-desc {
    font-size: 14px;
  }
}

/* our Strength ends here */

/* Testimonials starts here */

.testimonial-section {
  background-color: #f98d81;
  padding: 80px 0;
  text-align: center;
}

.testimonial-title {
  font-family: league-r;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.testimonial-swiper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.swiper-slide.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-stars {
  font-size: 28px;
  color: #ffcc00;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: glacial-r;
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

@media (max-width: 768px) {
  .testimonial-title {
    font-size: 24px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .testimonial-stars {
    font-size: 20px;
  }

  .swiper-slide.testimonial-card {
    padding: 20px;
  }
}


/* Testimonials ends here */

/* Sustainibilites starts here */

.sustainability-section {
  background-color: #fff; /* White background */
  padding: 60px 0;
  text-align: center;
}

.sustainability-title {
  font-family: league-r;
  font-size: 36px;
  font-weight: 700;
  color: #4d4d4d;
  margin-bottom: 30px;
}

.sustainability-text {
  font-family: glacial-r;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 30px;
}

.sustainability-btn {
  font-family: glacial-r;
  background-color: #ffcc33; /* Button color as per reference */
  color: #000;
  font-size: 16px;
  padding: 8px 24px;
  border: none;
  border-radius: 25px;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sustainability-btn:hover {
  background-color: #ffbb00;
}

@media (max-width: 768px) {
  .sustainability-title {
    font-size: 28px;
  }

  .sustainability-text {
    font-size: 16px;
    padding: 0 15px;
  }

  .sustainability-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Sustainibilites ends here*/

/* Get in touch starts here */

.contact-section {
  background-color: #59BEC9; /* Light blue background */
  padding: 60px 0;
  position: relative;
}

.contact-image {
  max-width: 100%;
  position: absolute;
  top: -55px; /* Moves the image UPWARDS to overlay previous section */;
  width: 59vh;
}

.contact-title {
  font-family: league-r;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  margin-left: -20px !important;
}

.contact-text {
  font-family: glacial-r;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 20px;
}

.contact-btn {
  font-family: glacial-r;
  background-color: #ffcc33; /* Button color */
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 24px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: #ffbb00;
}


@media (max-width: 768px) {
  .contact-section .row {
    flex-direction: column;
    text-align: center;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-text {
    font-size: 16px;
    padding: 0 15px;
  }

  .contact-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .contact-image {
    position: relative;
    top: -20px; /* Moves up less on smaller screens */
    margin-bottom: 20px;
    border-radius: 50%;
  }

}

/* Get in touch ends here */

/* Footer starts here */

.perfection-section {
  background-color: #857F6D; /* Background color matching the image */
  padding: 80px 0;
  color: white;
}

.section1-title, .contact-title1 {
  font-family: league-r;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.contact-title1 {
  margin-top: 15px;
  margin-left: 100px;
}

.section1-text {
  font-family: glacial-r;
  font-size: 18px;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.6;
}

.contact-info {
  border-left: 2px solid rgba(255, 255, 255, 0.4);
  padding-left: 40px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-left: 100px;
  text-align: left; /* Aligns text to the left */
}

.contact-details li {
  font-family: glacial-r;
  display: flex;
  align-items: center;
  gap: 10px; /* Space between icon and text */
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-details i {
  font-size: 18px;
  color: #ffffff;
  width: 24px; /* Ensures consistent spacing */
  text-align: left;
}


/* Responsive Design */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    text-align: center;
  }

  .contact-title {
    text-align: center;
    margin: 0PX;
  }

  .text-content {
    margin-bottom: 30px;
  }


  .contact-details li {
    text-align: center;
    margin: 10px 0PX;
  }

  .contact-info {
    border-left: none;
    padding-left: 0;
    margin-top: 20px;
  }

  .contact-details{
    margin-left: 0PX;
  }

  .contact-details li {
    text-align: left;
    margin-left: 30PX;
  }
}
/* Footer ends here */

/* END CARD STARTS HERE */

.footer {
  font-family: glacial-r;
  padding: 20px 0;
  background-color: white; /* Ensuring a clean background */
  font-size: 14px;
}

.footer p {
  margin: 0;
  color: black;
}


/* END CARD ENDS HERE */