/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Hind Siliguri", sans-serif;
}

body {
  background-color: #fff5f8;
  color: #333;
  line-height: 1.6;
} */

@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #0d6efd;
  --primary-light: #3d8bfd;
  --primary-dark: #0a58ca;
  --primary-gradient: linear-gradient(135deg, #0d6efd, #0a58ca);
  --secondary: #6c757d;
  --secondary-light: #adb5bd;
  --accent: #0dcaf0;
  --light: #f8f9fa;
  --dark: #212529;
}

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

body {
  font-family: "Hind Siliguri", sans-serif;
  color: var(--dark);
  background-color: #f8f9fa;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f9ff, #eaf3ff);
}

.header {
  background-color: #1c2e58;
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 60px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 64px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin: 0 15px;
  position: relative;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.dropdown i {
  font-size: 12px;
  margin-left: 5px;
}

.lang-switch {
  color: white;
  display: flex;
  align-items: center;
}

.app-button {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  margin-right: 15px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.app-button:hover {
  background-color: white;
  color: #1c2e58;
}

.language-selector {
  font-size: 14px;
}

.language-selector a {
  color: white;
  text-decoration: none;
  padding: 0 3px;
}

.language-selector a.active {
  font-weight: bold;
}

/* Main Content */
main {
  padding: 30px 0;
}

.search-container {
  padding: 30px 0;
  text-align: center;
}

.search-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.search-box {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #1c2e58;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
  gap: 10px;
}

.search-tag {
  background-color: white;
  border: 1px solid #ddd;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.search-tag:first-child {
  background-color: transparent;
  border: none;
  padding-left: 0;
}

.search-tag:hover {
  background-color: #1c2e58;
  color: white;
  border-color: #1c2e58;
}

/* Offer Sections */
.offer-section {
  margin: 50px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
  font-weight: 600;
}

/* Split Layout - Text Left, Image Right */
.split-layout {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.offer-text-side {
  flex: 1;
  padding-right: 20px;
}

.offer-image-side {
  flex: 1;
}

.offer-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
}

.banner {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.more-offers-btn {
  background-color: white;
  border: 2px solid #1c2e58;
  color: #1c2e58;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 500;
  margin-top: 10px;
}

.more-offers-btn:hover {
  background-color: #1c2e58;
  color: white;
}

.two-columns {
  display: flex;
  gap: 25px;
  margin-top: 40px;
}

.offer-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.offer-card.split-layout {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.offer-card .offer-content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-card .offer-image-wrapper {
  flex: 1;
  overflow: hidden;
}

.offer-card .offer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #222;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 30px;
}

.footer-info {
  max-width: 350px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 0;
}

.footer-description {
  margin-bottom: 25px;
  font-size: 14px;
  color: #bbb;
  line-height: 1.8;
}

.app-download {
  margin-bottom: 30px;
}

.app-title {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.app-buttons {
  display: flex;
  gap: 15px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.app-btn img {
  height: 25px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  min-width: 150px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.security-section {
  margin-top: 20px;
}

.security-logos h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}

.cert-logos {
  display: flex;
  gap: 20px;
}

.cert-logos img {
  height: 40px;
}

.copyright-container {
  border-top: 1px solid #444;
  padding-top: 20px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #999;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 30px;
  height: 30px;
  background-color: #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #1c2e58;
}

.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1c2e58;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(226, 20, 108, 0.3);
  transition: background-color 0.3s, transform 0.3s;
  z-index: 99;
}

.chat-button:hover {
  background-color: #c11258;
  transform: translateY(-3px);
}

.chat-icon {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .split-layout,
  .offer-card.split-layout {
    flex-direction: column;
  }

  .offer-text-side {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .two-columns {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-info {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .section-title {
    font-size: 24px;
  }

  .search-title {
    font-size: 26px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .copyright {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
