*{
    margin: 0;
    padding: 0;
    font-family: "JetBrains Mono", monospace;
}

body{
    background-color: #F9E9D5;
    /* overflow-x: hidden; */
}

/*WHATSAPP FLOAT ICON*/
.whatsapp-float {
  position: fixed;
  width: 80px;
  height: 80px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float img {
  width: 52px;
  height: 52px;
}

@media(max-width: 768px){
  .whatsapp-float{
    width: 60px;
    height: 60px;
  }

  .whatsapp-float img {
    width: 40px;
    height: 40px;
}
}

/*TOP BAR*/
.top-bar {
  background-color: #FF9900;
  padding: 0.3% 4%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#small-logo {
  max-width: 12px;
}

@media(max-width: 940px){
  .top-bar{
    display: none;
  }
}
/*END OF TOP BAR*/

.header{
    background-position: left;
    background-size: cover;
    position: relative;
    /* overflow: hidden; */
    height: auto;
    min-width: 100%;
    display: block;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-img-mobile{
  display: none;
}

@media(max-width: 768px)
{
    .hero-img {
      display: none;
    }

    .hero-img-mobile{
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
}
nav{
    background-color: #000;
    display: flex;
    padding: 1% 4%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 80%;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 4px 12px;
    position: relative;
}
.nav-links ul li a{
    font-family: "Inter Tight", sans-serif;;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    
}

#contact-us{
    color: #F95F12;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #F95F12;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#contact-us:hover {
  background-color: #F95F12;
  color: white;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #F95F12;
    display: block;
    margin: auto;
    transition: .2s;    
}
.nav-links ul li:hover::after{
    width: 100%;
}

li:has(#contact-us)::after {
  content: none !important;
}

@media (max-width: 1389px) {
  #contact-us {
    border: none;
    padding: 0px;
  }
}

nav .fa{
    display: none;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 20px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
}

.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
}
@media(max-width: 1240px)
{
    .header{
        width:100%;
        display: block;
    } 
}

@media(max-width: 1389px)
{
   .nav {
    padding: 15%;
   }
   .nav-links ul li
    {
        display: block;
    }
    .nav-links
    {
        position: fixed;
        background: #000000;
        height: 100vh;
        width: 300px;
        top: 0;
        right: -300px;
        text-align: left;
        z-index: 2;
        transition: 0.2s;
    }
    .nav-links ul{
        padding: 30px;
        margin-top: 50px;
    }
    
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer; 
    }
  
    .text-box h1{
        font-size: 20px;
    }

    .nav-links ul li a{
        font-size: 30px;
    }
}

@media (max-width: 1389px) {
  .nav-links li {
    border-bottom: 1px solid #444;
    padding: 10px 0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }
}

/* --- DROPDOWN DESKTOP --- */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #000;
  padding: 10px 0;
  top: 100%;
  left: 0;
  min-width: 200px;
  border-top: 4px solid #F95F12;
  z-index: 10;
}

.dropdown-menu li {
  display: block;
  width: 88%;
  padding: 8px 26px;
}

.dropdown-menu li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li::after {
  content: none !important;
}

.dropdown-menu, 
.dropdown-menu li, 
.dropdown-menu li a {
  text-align: left !important;
}

.dropdown-menu li {
  border-bottom: 2px solid #3F3A38;
  padding: 10px 26px;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}


@media (max-width: 1389px) {
  .dropdown-menu {
    position: static;
    display: none;
    border-top: none;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .dropdown-menu li a {
    font-size: 26px !important;
    font-weight: 600 !important;
  }

  .dropdown-menu li:first-child {
    padding-top: 8px !important;
  }

  .dropdown-menu li {
    width: 100%;
    padding: 8px 0px !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown > a::after {
    content: " +";
    font-size: 30px;
    color: #fff;
    margin-left: 0px;
  }

  .nav-links {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links ul li a {
    white-space: normal;
    word-wrap: break-word;
  }
}

nav {
  position: relative;
  z-index: 1000;
}

.dropdown-menu {
  z-index: 2000;
}

.nav-links ul li.dropdown::after {
  display: none !important;
}

.no-link {
  cursor: pointer;
  pointer-events: auto;
}

.no-link:active {
  pointer-events: auto;
}

.no-link {
  text-decoration: none;
}


/*HERO SLIDESHOW*/
.hero-slideshow {
  position: relative;
  min-width: 100%;
  min-height: auto;
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 12 / 5;
}

.hero-img,
.hero-img-mobile {
  position: absolute;
  min-width: 100%;
  min-height: auto;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  object-fit: cover;
}

.hero-img.active,
.hero-img-mobile.active {
  opacity: 1;
  z-index: 1;
}

.desktop-hero {
  display: block;
}

.mobile-hero {
  display: none;
}

@media (max-width: 768px) {

  .hero-slideshow {
    aspect-ratio: 2 / 3;
  }

  .desktop-hero {
    display: none;
  }
  .mobile-hero {
    display: block;
  }
}
/*END OF HERO SLIDESHOW*/

/*INDEX: OUR SERVICES AND OUR PRODUCTS*/
.services-container h1{
    font-size: 28px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 800;
    text-align: center;
    color: #FFF;
    min-width: 100%;
    background-color: #FF9900;
    padding: 1rem;
    margin-top: 50px;
    margin-bottom: 50px;
}

.services-container h3{
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
    margin: 30px 0;
}

/*OUR SERVICES AND OUR PRODUCTS*/

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 0 7rem; 
}

.course{
  margin-top: 50px;
}

.course-col {
  flex: 1 1 calc(25% - 12px); 
}

.course-col img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;  
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.course-col img:hover {
  transform: translateY(-5px);
}

.services-container{
    background-color: #F9E9D5;
    position: relative;
    overflow: hidden;
    align-items: center;
} 

@media (max-width: 768px) {
  .services-container h1{
    font-size: 20px;
  }

  .course-col {
    flex: 1 1 40%;
  }

  .course-col h3{
    font-size: 1.5rem;
  }

  .row {
    padding: 0 1rem;
  }
}

@media (max-width: 460px) {
  .services-container h1{
    font-size: 18px;
  }

  .course-col {
    flex: 1 1 40%;
    box-sizing: border-box;
  }

  .course-col h3{
    font-size: 16px;
  }

  .row {
    padding: 0 1rem;
  }
}


.carousel-container {
  overflow: hidden;
  width: 100%;
  background-color: #000;
  margin-top: 20px;
  padding: 20px 0;
}

@media (max-width: 460px) {
  .carousel-container {
    padding: 10px 0;
  }
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  align-items: center;
}

.carousel-track img {
  width: 150px;
  height: auto;
  margin: 0 30px;
  object-fit: contain;
  filter: brightness(1.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*WHY-CHOOSE-US*/
.why-choose-us {
  background-color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Inter Tight', sans-serif;
}

.why-choose-us h2 {
  font-family: "Source Serif 4", serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-box {
  background: #fff;
  border: 2px solid #000000;
  border-radius: 16px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  margin-bottom: 3rem;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 80px;
  height: 80px;
}

.feature-box h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.feature-box p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .why-choose-us h2{
    font-size: 40px;
  }

  .feature-box{
    margin-bottom: 2rem;
  }
}

@media (max-width: 400px) {
  .why-choose-us h2{
    font-size: 35px;
  }

  .feature-box{
    margin-bottom: 1rem;
  }
}

/*--FOOTER--*/
footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem;
  font-family: 'Courier New', monospace;
  overflow-x: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.logo-container {
  flex: 1;
  min-width: 280px;
}

.logo-container img {
  height: 60px;
}

.logo-container h2 {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.since {
  font-size: 0.9rem;
  color: #bbb;
}

.subscribe-container {
  flex: 1;
  min-width: 280px;
  text-align: right;
}

.subscribe-container h3 {
  margin-bottom: 0.5rem;
}

.subscribe-container p {
  margin-bottom: 0.5rem;
}

.subscribe-container form {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0;
}

.subscribe-container input {
  padding: 0.5rem;
  width: 60%;
  max-width: 250px;
  border: none;
}

.subscribe-container button {
  padding: 0.5rem 1rem;
  background-color: orange;
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: 900;
}

.footer-links {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.socialmedia{
    margin-left: 60px;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  display: flex;
  justify-content: space-between;
}

.payment-icons img {
  height: 28px;
}

.social-links li {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}

.social-links li img {
  padding-right: 5px;
  border-radius: 4px;
  margin-right: 10px;
}

.social-links li a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.social-links li a:hover {
  color: #fff;
}

.mobile-social-links{
    display: none;
}

@media (max-width: 1000px) {
  .top-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    text-align: center;
  }

  .socialmedia{
    display: none;
  }

  .mobile-social-links{
    margin: 0;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .mobile-social-links img{
    padding-right: 10px;
    padding-left: 10px;
  }

  .subscribe-container {
    text-align: center;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
    text-align: center;
  }

  .subscribe-container{
    font-size: 12px;
  }

  .logo-container img{
    height: auto;
    max-width: 350px;
  }

  .subscribe-container form {
    justify-content: center;
  }

  .subscribe-container {
    text-align: center;
    margin-top: 1rem;
  }

  .footer-links {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 0rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .payment-icons img{
    padding-top: 10px;
  }

  .socialmedia{
    display: none;
  }

  .mobile-social-links{
    margin: 0;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .mobile-social-links img{
    padding-right: 10px;
    padding-left: 10px;
  }

}

@media (max-width: 400px) {
  .logo-container img{
    height: auto;
    max-width: 18rem;
  }
}

@media (max-width: 330px) {
  .subscribe-container{
    display: none;
  }
}


/*PRODUCTS PAGE*/
.products-hero-section {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.3)),url('images/HERO/PRODUCTS HERO.png');
  background-size: cover;
  background-position: center;
  min-height: 70%;
  min-width: 100%;
  color: white;
  display: flex;
  align-items: center;
}

.overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 5%;
  gap: 0rem;
}

.left-content {
  flex: 1;
}

.left-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Inter Tight", sans-serif;
}

.left-content h2 span {
  border-bottom: 3px solid #FF9900;
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-right: 0.3rem;
  font-family: "Inter Tight", sans-serif;
}

.right-content {
  flex: 2;
  padding-left: 10rem; 
}

.right-content p {
  text-align: justify;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.btn {
  background-color: #FF9900;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-family: "Inter Tight", sans-serif;;
  font-weight: bold;
}

@media (max-width: 768px) {
  .overlay {
    flex-direction: column;
    text-align: left;
    padding: 5rem 1rem;
  }

  .left-content,
  .right-content {
    width: 100%;
    padding-left: 0;
  }

  .left-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .right-content p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

}

/* Layout base */
.product-block {
  padding: 3rem 1rem;
}

.product-block__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.product-block--image-right {
  flex-direction: row;
}

.product-block--image-left {
  flex-direction: row;
}

.product-white {
  background-color: white;
}

.product-cream {
  background-color: #F9E9D5;
}

.product-block__text {
  flex: 1;
  min-width: 280px;
}

.warranty{
  font-family: "Inter Tight", sans-serif;
}
.product-block__title {
  font-size: 2rem;
  font-family: "Inter Tight", sans-serif;
  margin-bottom: 1rem;
}

.product-block__desc {
  font-size: 1.2rem;
  text-align: justify;
  font-family: "Inter Tight", sans-serif;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-block__warranty {
  font-size: 1.2rem;
  font-family: "Inter Tight", sans-serif;
  margin-bottom: 1rem;
}

.product-block__logos img {
  height: 35px;
  margin-right: 1rem;
}

.product-block__image {
  flex: 1;
  text-align: center;
}

.product-block__image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .product-block__content {
    flex-direction: column;
    text-align: left;
  }

  .product-block--image-right {
    flex-direction: column;
  }

  .product-block--image-left {
    flex-direction: column-reverse;
  }

  .product-block__image {
    margin-top: 1rem;
  }

  .product-block__desc, 
  .product-block__warranty, 
  .warranty {
    font-size: 1rem;
  }

  .product-block__title {
    font-size: 1.5rem;
  }

}

/* ABOUT US */
.about-us-hero-section {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.3)),url('images/HERO/ABOUT US HERO.png');
  background-size: cover;
  background-position: center;
  min-height: 70%;
  min-width: 100%;
  color: white;
  display: flex;
  align-items: center;
}

.text-content {
  max-width: 1000px;
  margin-left: 5%;
  margin-right: auto;
}

.text-content h2 {
  font-size: 2.5rem;
  font-family: 'Inter Tight', sans-serif;
  font-weight: bold;
  margin-bottom: 2rem;
  border-bottom: 3px solid orange;
  display: inline-block;
}

.text-content p {
  font-size: 1.5rem;
  font-family: 'Inter Tight', sans-serif;
  text-align: justify;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.legacy-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.legacy-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.legacy-text {
  flex: 1 1 500px;
}

.legacy-title {
  font-size: 2.2rem;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000;
}

.legacy-para {
  font-size: 1rem;
  text-align: justify;
  font-family: 'Inter Tight', sans-serif;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legacy-image {
  flex: 1 1 400px;
}

.legacy-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.founder-quote-section {
  background-color: #f9f1e7;
  padding: 3rem 2rem;
}

.founder-quote-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.founder-image {
  flex: 1 1 250px;
  display: flex;
  justify-content: center;
}

.founder-image img {
  width: 250px;
  height: auto;
  border-radius: 44px;
  object-fit: cover;
  padding: 1rem;
}

.founder-text {
  flex: 2 1 400px;
}

.founder-quote {
  font-size: 1.4rem;
  text-align: justify;
  font-family: "Playfair Display", sans-serif;
  font-weight: 500;
  color: #191919;
  margin-bottom: 1.8rem;
}

.founder-name {
  font-size: 1rem;
  font-family: 'Inter Tight', sans-serif;
  color: #111;
}

.founder-title {
  font-size: 0.95rem;
  font-family: 'Inter Tight', sans-serif;
  color: #3e3e3e;
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 2rem 1rem;
  }

  .text-content {
    margin: 0 auto;
  }

  .text-content h2 {
    font-size: 2rem;
  }

    .text-content p {
    font-size: 0.95rem;
  }
}

/* CONTACT US */
.contact-section {
  background-color: #F9E9D5;
  padding: 4rem 2rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  flex: 1 1 300px;
}

.contact-label {
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
  border-left: 4px solid #FF9900;
  padding-left: 0.5rem;
  letter-spacing: 2px;
}

.contact-heading {
  font-size: 3.5rem;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-underline {
  border: 2px solid #FF9900;
  width: 50%;
  margin-top: 1rem;
}

.contact-right {
  flex: 2 1 500px;
}

.contact-divider {
  border-top: 3px solid #FF9900;
  margin-bottom: 1rem;
}

.contact-form-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-row input {
  flex: 1 1 48%;
  padding: 0.75rem;
  border: none;
  border-bottom: 2px solid #333;
  background: transparent;
}

.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-bottom: 2px solid #333;
  resize: vertical;
  min-height: 100px;
  background: transparent;
}

.contact-form button {
  align-self: flex-start;
  padding: 0.6rem 2rem;
  background-color: #FF9900;
  color: #fff;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-heading {
    font-size: 2rem;
    letter-spacing: -2px;
  }
}

.map-section {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #fff;
}

.map-heading {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.map-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: orange;
  margin: 0.5rem auto 0;
}

#map {
  height: 500px;
  width: 100%;
  margin-top: 2rem;
}

/* OUR PROJECTS */
.our-projects-hero-section {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)),url('images/HERO/OUR PROJECTS HERO.png');
  background-size: cover;
  background-position: center;
  min-height: 70%;
  min-width: 100%;
  color: white;
  display: flex;
  align-items: center;
}

  .trusted-section {
    background-color: #F9E9D5; 
    padding: 60px 20px;
  }

  .trusted-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .trusted-heading {
    font-size: 2.5rem;
    font-family: 'Inter Tight', sans-serif;
    letter-spacing: 0px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
  }

  .trusted-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .trusted-list {
    flex: 1 1 300px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.7;
  }

  

  @media (max-width: 768px) {
    .trusted-columns {
      flex-direction: column;
      gap: 0;
    }
    .trusted-heading {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 980px) {
    .trusted-list span{
      display: none;
    }
  }

.services-container h1{
    font-size: 28px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 800;
    text-align: center;
    color: #FFF;
    min-width: 100%;
    background-color: #FF9900;
    padding: 1rem;
    margin-top: 50px;
    margin-bottom: 0px;
}

.service-slides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px;
  margin-bottom: 4rem;
}

.service-box {
  text-align: center;
}

.service-box h3{
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  margin-top: 2rem;
  display: inline-block;
  padding-bottom: 5px;
}

.service-box .slideshow{
  max-width: 600px; 
  margin: 0 auto;
}

.slideshow {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #ddd;
  /*border-radius: 20px;*/
  overflow: hidden;
  position: relative;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .service-slides {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1242px) {
  .span-next-line {
    display: block;
  }
}


/*GALLERY PAGE*/
.gallery-hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 70%;
  min-width: 100%;
  color: white;
  align-items: center;
}

#boat-and-yacht-gallery {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.4)),url('images/HERO/BOAT AND YACHT GALLERY HERO.jpg');
}
#canopies-and-awnings-gallery {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.4)),url('images/HERO/CANOPIES AND AWNINGS HERO.png');
}
#car-parking-shades-and-tensile-structures-gallery {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.6)),url('images/HERO/CAR PARKING SHADES AND TENSILE STRUCTURES GALLERY HERO.png');
}
#car-upholstery-gallery {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.5)),url('images/HERO/CAR UPHOLSTERY GALLERY HERO.png');
}

.gallery-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  gap: 0rem;
}

.gallery-left-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Inter Tight", sans-serif;
}

.gallery-left-content h2 span {
  border-bottom: 3px solid #FF9900;
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-right: 0.3rem;
  font-family: "Inter Tight", sans-serif;
}

.gallery-btn {
  background-color: #FF9900;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-family: "Inter Tight", sans-serif;;
  font-weight: bold;
}

@media (max-width: 768px) {
  .gallery-overlay {
    padding: 5rem 0;
  }

  .gallery-left-content {
    padding-left: 0;
  }

  .gallery-left-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .gallery-right-content p {
    font-size: 1rem;
  }

  .gallery-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
  
}

@media (max-width: 393px) {

  .gallery-left-content h2 span {
    border-bottom: none;
  }

  .gallery-hero-section .gallery-overlay .gallery-left-content {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .gallery-hero-section .gallery-left-content h2 {
    text-align: center;
    margin: 0 auto;
  }
}

/* PART OF TESTIMONIAL CARD ANIMATION */

.testimonial-card {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 5s ease-out, transform 5s ease-out;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* PART OF TESTIMONIAL CARD ANIMATION END */
