/* header start */
.logo img {
  height: 200px;
  width: auto;
 
}
.toggle-icon {
    display: none;
    font-size: 25px;
    cursor: pointer;
  padding: 0;
   margin-left: 60px;
    color: pink;
}


.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    height: 90px;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar {
  background: #fff;
  padding: 15px 40px;
}

.navbar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  list-style: none;
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: black;
  font-family: Arial, sans-serif;
  font-weight: bold;
  padding: 8px 12px;
  display: block;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: #f67280;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  font-weight: normal;
  padding: 10px 15px;
  color: #333;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
  color: #f67280;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-icons {
    display: flex;
    justify-content: right;
    float: right;
    gap: 30px;
}

.social-icons li {
    list-style: none;
}

.social-icons i {
    color: black;
    font-size: 20px;
}

.social-icons i:hover {
    color: #f67280;
    transition: 0.3 ease-in-out;
}

.search {
    background-color: #f67280;
    border: 1px solid #f67280;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.search i {
    margin-top: 10px;
    margin-left: 10px;
    color: white;
}

.search:hover {
    background-color: white;
    
}

.search i:hover {
    color: #f67280;
    transition: 0.3 ease-in-out;
}
/* header end  */

/* banner start */
.banner-grid {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-container {
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  transition: opacity 0.5s;
  position: relative;
}

.banner-text {
  position: absolute;
  color: white;
  font-size: 45px;
  bottom: 40%;
  left: 20%;
}

.slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
  border-radius: 30%;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* banner end  */


/* blog start */

.blog-grid {
    padding: 40px;
}
.blog-products {
    height: 450px;
    width: 350px;
    background-color: white;
    border-radius: 20px;
}

.blog-products img {
    padding: 0px;
    height: 250px;
    width: 300px;
    border-radius: 20px;
    margin-left: 20px;
   margin-bottom: 40%;
}
/* blog end  */
/* body start  */
body {
    background-color: #F9F9FF;
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0;
    color: #94979e;
    position: relative;
    font-size: 16px;
    font-weight: 400;
}
/* body end  */

.card-section {
    margin-top: 50px;
}

.card-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 50px;
}

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 320px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 15px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.tag {
  display: inline-block;
  background-color: #ff4d6d;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin: 15px 0 5px;
}

.tag.travel {
  background-color: #3b82f6;
}

.tag.lifestyle {
  background-color: #22c55e;
}

.card h3 {
  font-size: 18px;
  color: #333;
  margin-top: 8px;
  padding: 0 10px;
}

/* about start  */
.blog-section {
  padding: 60px 20px;
}

.blog-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-image {
  text-align: center;
  margin-bottom: 30px;
}

.blog-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.quote-box {
  background: #F9F9FF;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quote-box .quote-icon {
  font-size: 32px;
  color: #ef6464;
  margin-bottom: 10px;
}

.quote-box h2 {
    color: black;
}

.quote-box p {
  font-size: 17px;
  color: #555;
  margin-bottom: 10px;
  font-style: italic;
}

.quote-box h4 {
  color: #888;
  font-weight: 500;
}

@media (max-width: 768px) {
  .blog-container {
    padding: 20px;
  }

  .blog-content p {
    font-size: 15px;
  }

  .quote-box {
    padding: 20px;
  }
}
/* about end  */


.footer {
  text-align: center;
  padding: 50px 20px;
  background: #2a2a2a;
  position: relative;
}

.footer h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer p {
  color: #ccc;
  margin-bottom: 25px;
}

.subscribe-box {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto 30px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.subscribe-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  border-radius: 30px 0 0 30px;
}

.subscribe-box button {
  background: #ef6464;
  color: #fff;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 0 30px 30px 0;
  transition: 0.3s;
}

.subscribe-box button:hover {
  background: #ff7979;
}

.footer-social-icons {
  margin-bottom: 20px;
}

.footer-social-icons a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
  font-size: 15px;
  transition: 0.3s;
}

.footer-social-icons a i {
  margin-right: 6px;
}

.footer-social-icons a:hover {
  color: #ef6464;
}

.footer hr {
  border: 0;
  height: 1px;
  background: #444;
  margin: 30px auto;
  width: 90%;
}

.footer span {
  color: #ef6464;
  font-weight: 600;
}

.scroll-top {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background: #ef6464;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.scroll-top:hover {
  background: #ff7979;
}

@media (max-width: 600px) {
  .subscribe-box {
    flex-direction: column;
    border-radius: 10px;
  }

  .subscribe-box input,
  .subscribe-box button {
    width: 100%;
    border-radius: 0;
  }

  .subscribe-box button {
    border-radius: 0 0 10px 10px;
  }
}

.category-section {
  max-width: 900px;
  margin: 40px auto;
}

.breadcrumb {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.breadcrumb a {
  text-decoration: none;
  color: #666;
}

.breadcrumb span {
  margin: 0 5px;
  color: #bbb;
}

.category-title {
  font-size: 26px;
  font-weight: 700;
  color: #111;
}

.category-title span {
  color: #ff6b81; /* pinkish/red accent */
}

.category-description {
  font-size: 15px;
  color: #777;
  margin-top: 10px;
  line-height: 1.6;
}


.contact-section {
  max-width: 900px;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 16px 16px 0 0;
}

.form-container {
  padding: 30px;
}

.form-container h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #111;
}

.form-container p {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 25px;
  background: #f9f9f9;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: #ff6b81;
  background: #fff;
}

textarea {
  resize: none;
  height: 120px;
}

button {
  align-self: flex-start;
  background: #ff6b81;
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #ff4e6b;
}

@media (max-width: 600px) {
  .contact-section {
    margin: 20px;
  }

  .form-container {
    padding: 20px;
  }
}