

/* Navbar */
/* Navbar container */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 25px 40px;
    font-family: "Manrope", sans-serif;
}

.logo {
    margin-right: auto;
    /* pushes nav-links to right */
}

.logo img {
    /* height: 75px; */
    /* adjust as needed */
    width: auto;
    max-width: none;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    /* remove underline */
    color: #000;
    /* default color */
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

/* Active + hover effect */
.nav-links a.active,
.nav-links a:hover {
    color: rgb(222, 31, 38);
}

/* ---------- STYLE ---------- */
/* Hero Section */
/* reset so padding doesn't add to width */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* HERO container */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    /* fallback */
}

/* Slides container */
.slides {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
    /* smooth */
    will-change: transform;
}

/* Each slide exactly one viewport width */
.slide {
    flex: 0 0 100vw;
    /* exact width */
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 6%;
}

/* Slide-specific backgrounds */
.slide1 {
    background-image: url("./hero2.jpg");
}

.slide2 {
    background-image: url("./assets/images/hero1.png");
}

.slide3 {
    background-image: url("./hero3-1.png");
}

/* Content area */
.content {
    max-width: 680px;
    color: #fff;
}

.content h2 {
    font-family: "Poppins", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 .6rem;
    opacity: 0;
    color: rgb(222, 31, 38);
}

.content p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
}

.readmore-btn {
    margin-top: 1.5rem;
    display: inline-block;
    padding: 12px 28px;
    background-color: rgb(222, 31, 38);
    color: #fff;
    border: 2px solid rgb(222, 31, 38);
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    /* start hidden, animate in */
}

.readmore-btn:hover {
    background-color: transparent;
    color: #000;
}

/* Animate from bottom */
.animate-btn {
    animation: fadeUp 1.2s ease-out forwards 0.5s;
}

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Slide3 text always visible */
.slide3 .content h2,
.slide3 .content p {
    opacity: 1 !important;
    transform: none !important;
}

/* Animations */
.animate-h-pop-left {
    animation: popFromLeft 1.9s ease forwards;
}

.animate-h-zoom {
    animation: zoomIn 1.9s ease forwards;
}

.animate-p-zoom {
    animation: zoomIn 2s ease forwards 0.2s;
}

.animate-p-pop-bottom {
    animation: popFromBottom 1.5s ease forwards 0.2s;
}

@keyframes popFromLeft {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.75);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popFromBottom {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Indicators */
.indicators {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
}

/* Responsive */
@media (max-width: 720px) {
    .content h2 {
        font-size: 1.6rem;
    }

    .content p {
        font-size: .95rem;
    }

    .slide {
        padding-left: 4%;
    }
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    padding: 10px 40px;
    gap: 40px;
    text-align: center;
}

/* Text style */
.about-text h2 {
    font-family: "Manrope", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    padding-left: 0px;
    text-align: left;
}

.about-text p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Image style */
.about-image img {
    /* max-width: 600px; */
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Animation (hidden by default) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Section background */
.lifts-section {
    background-color: #f7f7f7;
    padding: 60px 40px;
    text-align: center;
}

/* Heading */
.lifts-section h2 {
    font-family: "Manrope", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease-out;
}

/* Images container */
.lifts-gallery {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lifts-gallery img {
    width: 350px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease-out;
}

/* Animate in */
.lifts-section h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.lifts-gallery img.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Section styling */
.products-section {
    background: #fff;
    text-align: center;
    padding-left: 55px;
    padding-right: 55px;
    /* padding: 60px 40px; */
    /* text-align: center; centers only direct child blocks like h2 */
}

.products-section h2 {
    font-family: "Manrope", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    text-align: center;
    /* ✅ heading centered */
}

.products-section p {
    font-family: "Open Sans", sans-serif;
    font-size: 25px;
    line-height: 1.6;
    color: #555;
    /* max-width: 800px; */
    /* keeps text readable */
    /* margin: 0 auto 1rem auto; */
    text-align: center;
   
    padding-left: 55px;
}


/* Heading + Paragraphs animation */
.products-section h2,
.products-section p {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease-out;
}


/* Images */
.products-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 80px;
}

.products-gallery img {
    width: 250px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 1s ease-out;
}

/* Animate classes */
.products-section h2.animate,
.products-section p.animate {
    opacity: 1;
    padding-left: 25px;
    transform: translateY(0);
}

.products-gallery img.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-section {
    background: #f2f2f2;
    /* light gray background */
    padding: 60px 0;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    background: #f2f2f2;
}

.contact-info {
    flex: 1;
    padding: 40px;
    background: #f2f2f2;
}

.contact-info h3 {
    font-family: "Manrope", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;

    text-transform: uppercase;
    /* color: #777; */
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}
 .contact-info h4 {
     font-size: 12px;
     text-transform: uppercase;
     color: #7a7a7a;
     margin-bottom: 5px;
     font-weight: 700;
     font-family: 'Manrope', sans-serif;
     line-height: 22px;
 }

.contact-info h2 {
    font-size: 48px;
    font-family: 'Titillium Web', sans-serif;
    line-height: 48px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    margin-top: 0px;

}
/* 
.contact-info .info-block {
    margin-bottom: 20px;
}

.contact-info h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info p {
    font-size: 18PX;
    line-height: 25px;
    font-family: "Manrope", sans-serif;
    color: #000;
    font-weight: 500;
    margin-top: 5px;
} */

/* Right side form */
.contact-form {
    flex: 0 0 40%;
    /* form will take 40% of the row */
    padding: 40px;
    background: rgb(222, 31, 38);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 10px;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}
@media (max-width: 720px) {
    .products-section p{
        text-align: left !important;
        align-items: start;
    }
}
/* logos styles */

/* Floating Action Buttons */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fab-main {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #4a90e2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.fab-main:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.fab-main.active {
  background: #e74c3c;
}

.fab-main svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  transition: opacity 0.3s ease;
  position: absolute;
}

.fab-main .chat-icon {
  opacity: 1;
}

.fab-main .close-icon {
  opacity: 0;
}

.fab-main.active .chat-icon {
  opacity: 0;
}

.fab-main.active .close-icon {
  opacity: 1;
}

.fab-item {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #4a90e2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px) scale(0);
  pointer-events: none;
  text-decoration: none;
}

.fab-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.fab-item:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.fab-item svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.fab-item.whatsapp {
  background: #25d366;
}

.fab-item.phone {
  background: #4a90e2;
}

.fab-item.email {
  background: #e74c3c;
}

.fab-item.chat {
  background: #9b59b6;
}

/* Responsive */
@media (max-width: 768px) {
  .fab-container {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .fab-main {
    width: 45px;
    height: 45px;
  }
  
  .fab-main svg {
    width: 20px;
    height: 20px;
  }
  
  .fab-item {
    width: 40px;
    height: 40px;
  }
  
  .fab-item svg {
    width: 18px;
    height: 18px;
  }
}

