
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0f1218;
  color: #e0e0e0;
  line-height: 1.6;
}

.container{

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: rgba(141, 128, 72, 0.9);
  backdrop-filter: blur(10px);
  position:absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid green;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
    background-color:gold;
    border: 2px solid rgb(27, 43, 12);
    border-radius: 20px;
    rotate: -5deg;
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b00;
}

.logo span {
  color: #ffffff;
}

nav ul {
  display: flex;
  height: 100%;
  list-style:none;
  gap: 150px;
  
  
}

nav a {
  color: #d0d0d0;
  text-decoration: none;
  font-weight: 800;
  transition: color 0.3s;
}

nav a:hover {
  color: #b7e706;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(15,18,24,0.7), rgba(15,18,24,0.8)), url('https://images.unsplash.com/photo-1581092162387-4d4e4d4e4e4e?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
  background-attachment: fixed;
}

.hero-content {
  max-width: 800px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

h1 span {
  color: #ff6b00;
}

.subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #b0b0ff;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.primary {
  background: #ff6b00;
  color: white;
}

.primary:hover {
  background: #e55f00;
  transform: translateY(-4px);
}

.whatsapp {
  background: #25D366;
  color: white;
}

.whatsapp:hover {
  background: #20b858;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 60px;
  color: #ff6b00;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #ff6b00;
  box-shadow: 0 15px 35px rgba(255,107,0,0.15);
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff6b00;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.info-item {
  text-align: center;
}

.info-item .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
  color: #ff6b00;
}

.center {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

footer {
  background: #0a0d12;
  padding: 40px 0;
  text-align: center;
  font-size: 0.95rem;
  color: #777;
}

@media (max-width: 768px) {
  h1 { font-size: 2.8rem; }
  .section { padding: 70px 0; }
  nav ul { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero { min-height: 70vh; }
}
.whatsapp-float {
    position:sticky;
    width: 60px;
    height: 60px;
    bottom: 200px;         
    right: 200px;
    left: 20px;         
    background-color: #25D366; 
    color: #FFF;
    border-radius: 30%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 50%;        
    transition: all 0.2s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-float:hover {
    transform: scale(2);  
    box-shadow: 0 15px 15px rgba(141, 8, 8, 0.5);
  }

  .whatsapp-float img {
    width: 45px;
    height: 45px;
  }

  
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 20px;
    }
    .whatsapp-float img {
      width: 38px;
      height: 38px;
    }
  }




