/* =====================================================
/* 🔹 START: Header Styles */
/* 🌐 Header */
.site-header {
  background: #fff;
  height: 78px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.webhostiya-logo {
  height: 42px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-left: 6px;
  background: linear-gradient(90deg, #00e0ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.right-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 🔹 Currency Selector */
.currency-dropdown {
  position: relative;
  display: inline-block;
}

.currency-selected {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.currency-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 100;
  width: 100%;
}

.currency-options div {
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.3s;
}

.currency-options div:hover {
  background: #f2f2f2;
}

.currency-options.show {
  display: block;
}

/* 🔹 Menu Button */
.menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

/* 🔹 Menu Styles */
.menu {
  display: none;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 0;
}

.menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.menu ul li a:hover,
.menu ul li a.active {
  color: #0073ff;
}

/* 🔹 Desktop Menu */
@media (min-width: 768px) {
  .menu {
    display: block;
    position: static;
    box-shadow: none;
  }
  .menu ul {
    flex-direction: row;
  }
  .menu-toggle {
    display: none;
  }
}

/* 🔹 Mobile Menu Dropdown */
@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    animation: slideDown 0.3s ease;
  }

  .menu.active {
    display: flex;
  }

  .menu ul {
    flex-direction: column;
    gap: 0;
  }

  .menu ul li {
    text-align: center;
    border-bottom: 1px solid #f2f2f2;
  }

  .menu ul li a {
    display: block;
    padding: 12px 0;
  }
}

/* 🟢 Animation for mobile menu */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 🔹 END: Header Styles */
===================================================== */


/* =====================================================
   🔹 START: Header Section
===================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.webhostiya-logo {
  width: 42px;
  height: auto;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, #00e0ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 🔸 Currency Dropdown */
.currency-dropdown {
  position: relative;
}

.currency-selected {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
}

.currency-options {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: none;
  width: 100%;
}

.currency-options.show {
  display: block;
}

.currency-options div {
  padding: 8px 12px;
  transition: 0.3s;
}

.currency-options div:hover {
  background: #f5f5f5;
}

/* 🔸 Menu Styles */
.menu {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
}

.menu ul {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 12px 0;
}

.menu ul li a {
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.menu ul li a:hover,
.menu ul li a.active {
  color: #0073ff;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

/* 🔸 Responsive Header */
@media (min-width: 768px) {
  .menu {
    display: block;
    border: none;
  }

  .menu-toggle {
    display: none;
  }
}
/* =====================================================
   🔹 END: Header Section
===================================================== */


/* =====================================================
   🔹 START: Search Section
===================================================== */
.search-card {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.search-card h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 500px;
  margin: auto;
}

.search-bar input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-size: 16px;
}

.search-bar .btn {
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 50px;
  transition: 0.3s;
}

.search-bar .btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
/* =====================================================
   🔹 END: Search Section
===================================================== */


/* =====================================================
   🔹 START: Plans Section
===================================================== */
.plans-section {
  text-align: center;
  padding: 50px 20px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.plan {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px 20px;
  transition: 0.3s;
  background: #fff;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.plan h3 {
  color: #0073ff;
  margin-bottom: 10px;
}

.plan .price {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.features-list li {
  margin: 6px 0;
  color: #555;
}

.btn {
  background: #0073ff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background: #005cd1;
  transform: scale(1.05);
}
/* =====================================================
   🔹 END: Plans Section
===================================================== */


/* =====================================================
   🔹 START: Features Section
===================================================== */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 50px auto;
}

.feature {
  background: #f9fbff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 250px;
  transition: 0.3s;
}

.feature:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.feature h3 {
  color: #0073ff;
  margin-bottom: 10px;
}
/* =====================================================
   🔹 END: Features Section
===================================================== */


/* =====================================================
   🔹 START: Contact Section
===================================================== */
.contact {
  background: #f5f5f5;
  padding: 50px 20px;
  border-radius: 12px;
  margin: 60px 0;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
}

.form-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn.secondary {
  background: #ccc;
  color: #000;
}

.btn.secondary:hover {
  background: #bbb;
}
/* =====================================================
   🔹 END: Contact Section
===================================================== */


/* =====================================================
   🔹 START: Footer Section
===================================================== */
footer {
  background: #0073ff;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
/* =====================================================
   🔹 END: Footer Section
===================================================== */