/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fa;
  color: #222;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

header.scrolled {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}



.logo {
  display: flex;
  flex-direction: column; /* stacks image and text vertically */
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #f1f507; /* or any color you prefer */
}

.logo img {
  width: 50px;   /* or try 80px, 90px */
  height: 50px;
  object-fit: cover; /* 'cover' fills the circle better */
  border-radius: 50%;
  margin-bottom: 8px;
}


.logo-text {
  text-align: center;
  line-height: 1.2;
}

.logo-text span {
  font-size: 14px;
  font-weight: normal;
  display: block;
  color: #ffffff; /* adjust as needed */
}


.logo span {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
}
.logo span {
  color: #f5e50f;
}

nav a {
  color: #fff;
}


.logo small {
  font-weight: normal;
  font-size: 12px;
  color: #777;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
nav .btn {
  background: #e8eb25;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
}

/* Hero Section */
.hero {
  background: url('images/video.mp4') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero-content h1 span {
  color: #ffc107;
}
.hero-content p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}
.hero-buttons .btn {
  margin: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn.blue {
  background: #e8eb25;
  color: #fff;
}
.btn.light {
  background: #ffffffcc;
  color: #333;
}
.btn.small {
  padding: 6px 12px;
  font-size: 14px;
}

/* Sections */
.section {
  padding: 60px 40px;
  text-align: center;
}
.section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.section p {
  color: #555;
  margin-bottom: 40px;
}

/* Cards */
.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: left;
}
.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.card h3 {
  font-size: 20px;
  margin: 10px 0;
}
.card p {
  color: #666;
  margin-bottom: 10px;
}
.card ul {
  padding-left: 20px;
  text-align: left;
}
.card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #e8eb25;
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
}
.card .label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #e8eb25;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}
.highlight {
  border: 2px solid #e8eb25;
}

/* Packages Section */
.packages {
  text-align: center;
  padding: 4rem 2rem;
}
.package-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

/* Why Kendiel */
.section {
  background: #f0f6ff;
  padding: 4rem 2rem;
  text-align: center;
}
.section .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.feature {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .why-kendiel .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-kendiel .features {
    grid-template-columns: 1fr;
  }
}

.feature i {
  font-size: 2rem;
  color: #ebe825;
  margin-bottom: 1rem;
}
.stats {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 1.25rem;
}
.stat strong {
  font-size: 2rem;
  color: #ebe825;
}
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #000000;
}

/* Hide menu by default on small screens */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 30px;
    top: 25px;
    z-index: 1001;
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background: rgba(163, 161, 161, 0.9);
    width: 100%;
    display: none;
    padding: 20px;
    z-index: 1000;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 15px 0;
    text-align: center;
  }
}

.contact-us {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-container {
  max-width: 900px;
  margin: auto;
}

.contact-us h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #0a1d3c;
}

.contact-us p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.contact-form .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  flex: 1;
  min-width: 45%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #f7c000;
  border: none;
  color: #0a1d3c;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e0a800;
}

.contact-details {
  text-align: left;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}
.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: #f7c000;
  transition: color 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: #fff;
}
/* BUTTONS */
.btn, .btn.small, .btn-yellow, .btn.blue, .btn.light {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn:hover, .btn.small:hover, .btn-yellow:hover, .btn.blue:hover, .btn.light:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* SOCIAL ICONS */
.social-icons a {
  font-size: 28px;
  color: #333;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Specific colors on hover */
.social-icons a[aria-label="Instagram"]:hover {
  color: #e4405f;
}

.social-icons a[aria-label="Facebook"]:hover {
  color: #3b5998;
}

.social-icons a[aria-label="WhatsApp"]:hover {
  color: #25d366;
}

.social-icons a[aria-label="X"]:hover {
  color: #000;
}

/* CARDS */
.card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* Header navigation links */
header nav ul li a {
  color: #333;
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 5px;
}

header nav ul li a:hover {
  color: #eff311;          /* Blue text on hover */
   /* Light blue background */
}

/* Optional: Active link style (if you want to highlight current page) */
header nav ul li a.active {
  color: #0056b3;
  font-weight: 700;
}

/* Header background change on scroll (you already have JS for class "scrolled") */
header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  color: #333;
  text-decoration: none;
}

.social-icons a:hover {
  color: #0077cc;
}

p.copyright {
  font-size: 14px;
  color: #777;
  margin: 0;
}


