@font-face {
    font-family: 'Bebas Neue';
    src: url('fonts/Bebas_Neue/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poetsen One';
    src: url('fonts/Poetsen_One/PoetsenOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* === Branding === */
body {
    font-family: 'Bebas Neue', sans-serif;
    background-color:white !important;
    color: #410445;
}

h1, h2, h5 {
    font-family: 'Poetsen One', sans-serif;
}

.about-text {
    font-family: 'Bebas Neue', sans-serif;
}

/* === Navbar === */
.navbar {
    background-color: #410445 !important;
}
.navbar-brand span {
    color: #f6dc43;
    font-weight: bold;
}
.nav-link {
    color: #f6dc43 !important;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: #ff2df1 !important;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, #A5158C, #ff2df1);
    color: white;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.hero .btn {
    background-color: #f6dc43;
    color: #410445;
    font-weight: bold;
    border: none;
}
.hero .btn:hover {
    background-color: #ff2df1;
    color: white;
}
.hero-heading {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeSlideUp 1.5s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Section Headers === */
section h2 {
    color: #A5158C;
}

/* === Card Icons === */
.card i {
    color: #A5158C;
}

/* === Footer === */
footer {
    background-color: #410445;
    color: #f6dc43;
}

/* === Animations === */
.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-in-left {
    transform: translateX(100%);
    animation: slideInLeft 2s ease-in-out forwards 0.5s;
}
@keyframes slideInLeft {
    to {
        transform: translateX(0);
    }
}

.truck-animate {
    width: 200px;
    height: auto;
    position: absolute;
    top: -200px;
    left: 20%;
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
    animation: truckDropZoom 2s ease-out forwards 1.2s;
}
@keyframes truckDropZoom {
    0% {
        top: -200px;
        transform: translateX(-50%) scale(0.5);
        opacity: 0;
    }
    30% {
        top: 20%;
        opacity: 0;
    }
    100% {
        top: 55%;
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}

/* === Blink Icon === */
.blink-icon {
    animation: blink 1s infinite;
    color: #A5158C;
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    text-decoration: none;
    outline: none;
    border: none;
}
.whatsapp-float:hover {
    background-color: #1ebea5;
    color: white;
    text-decoration: none;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .hero {
    height: auto !important;
    
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
  }

  .hero img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    position: absolute !important;
    top: 0;
    left: 0;
  }

  /* Maintain image layering with z-index */
  .hero img:nth-child(1) { z-index: 1; } /* one.png */
  .hero img:nth-child(2) { z-index: 2; } /* babn.png */
  .hero img:nth-child(3) { z-index: 3; } /* 8141007.png */
  .hero img:nth-child(4) { z-index: 4; width: 50%; left: 0; } /* 17870.png */
  .truck-animate {
    display: none !important;
  }

  .hero-heading {
    font-size: 2rem !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    text-align: center;
  }

  .hero .lead {
    font-size: 1rem;
    text-align: center;
  }

  .hero .btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    
  }

  .hero-heading {
    font-size: 1.6rem !important;
  }

  .hero .lead {
    font-size: 0.9rem;
  }

  .hero .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .hero img:nth-child(4){
      width:60% !important;
  }  /* 17870.png */
  .hero img:nth-child(2) { /* babn.png */
    display: none !important; /* Optional: remove excess clutter */
  }
}


