/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #111;
}

/* Header */
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

header nav ul li a:hover {
  color: #e63946;
}

.logo-img {
  height: 50px;
  width: auto;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 5% 5%;
  background: linear-gradient(135deg, #e63946, #000);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
}

.cta-btn {
  padding: 1rem 2rem;
  background: #e63946;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #e63946;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff4d5a;
}

/* Floating Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}

.shape.glow-red {
  width: 12vw;
  height: 12vw;
  background: #e63946;
  top: 10%;
  left: 5%;
  filter: blur(20px);
}

.shape.glow-blue {
  width: 8vw;
  height: 8vw;
  background: #1ca9c9;
  top: 50%;
  right: 5%;
  filter: blur(15px);
}

.shape.small {
  width: 5vw;
  height: 5vw;
  bottom: 10%;
  left: 70%;
}

@keyframes float {
  0%,100%{ transform: translateY(0);}
  50%{ transform: translateY(-20px);}
}

/* Sections */
section {
  padding: 4rem 5%;
  text-align: center;
}

h2 {
  margin-bottom: 2rem;
  color: #e63946;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  border-radius: 20px;
  background: #f5f5f5;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #e63946;
}

/* Packages */
.packages-slider {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.package-card {
  flex: 0 0 80%;
  max-width: 350px;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  scroll-snap-align: start;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #e63946;
}

/* Testimonials */
.testimonial-card {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 15px;
  padding: 2rem;
  background: #f5f5f5;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.testimonial-logo {
  width: 25vw;
  max-width: 100px;
  margin-bottom: 1rem;
}

/* CEO Section */
#ceo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.ceo-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.ceo-img {
  width: 40vw;
  max-width: 200px;
  height: auto;
  border-radius: 50%;
  border: 5px solid #e63946;
  box-shadow: 0 0 30px #e63946;
}

.ceo-text {
  max-width: 500px;
  text-align: center;
}

.ceo-text blockquote {
  font-style: italic;
  margin-top: 1rem;
  color: #1ca9c9;
}

/* Contact */
.social-media a img {
  width: 12vw;
  max-width: 40px;
  margin: 0 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-media a img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px #e63946;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 1rem;
  text-align: center;
}



