body{
    background-color: white;
}


.home-main {
    padding: 50px 0;
}

.hero {
    padding: 20px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    animation: fadeInLeft 0.8s ease;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--color-primary);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--color-gray);
    max-width: 90%;
}

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: fadeInRight 0.8s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.03);
}
.hero-content h1 {
    font-weight: 800; 
    font-size: 3.5rem;
    
}

.highlight {
    color: #ff5c5c; 
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.logo i {
    font-size: 2rem;
    color: #ff5c5c; 
}


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        width: 100%;
        max-width: 600px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .home-main {
        padding: 40px 0;
    }
}
.btn.btn-primary {
  text-decoration: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #fff; 
  border-radius: 8px;
  background-color: #000; 
  color: #fff; 
  position: relative;
  transition: all 0.3s ease-in-out;
  animation: slideBounce 0.8s ease-out;
  cursor: pointer;
}

.btn.btn-primary:hover {
  background-color: #fff;
  color: #000;
}

@keyframes slideBounce {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  60% {
    transform: translateY(10px);
    opacity: 1;
  }
  80% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.whatsapp-contact {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 15px 0;
  font-size: 1.1em;
  color: #25D366;
  font-weight: 500;
  
  animation: fadeInUp 0.8s ease-out;
}

.whatsapp-contact i {
  font-size: 1.5em;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.whatsapp-contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6em;
  margin: 15px 0;
  font-size: 1.1em;
  color: #25D366;
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out;
}

.whatsapp-contact i {
  font-size: 1.5em;
}

@media (max-width: 600px) {
  .whatsapp-contact {
    justify-content: center;
    text-align: center;
  }
}
