﻿body /* 🌐 Base Body Styling */
{
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* 🔵 TOP NAVIGATION BAR */
.top-bar {
    background: #2d2d9b;
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 🔵 TOP MENU INSIDE NAVBAR (Links/Icons) */
.top-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.top-menu div {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
}

.top-menu div:hover {
    transform: translateY(-3px);
    color: #ffcc00;
}

/* 🔔 NOTIFICATION BADGE */
.top-menu i {
    margin-right: 5px;
    font-size: 16px;
}

.notification {
    background: red;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    padding: 2px 6px;
    margin-left: 3px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* search bar  */
/* ✅ MODERN SEARCH SECTION WITH ANIMATION */
.search-section {
    background: url('../bn.png') no-repeat center center/cover;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:16px ;
}

/* 🔲 MODERN SEARCH WRAPPER */
.search-box {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    padding: 25px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 70%;
    max-width: 1000px;
    animation: slideIn 1s ease;
}

/* 🔄 Entrance Animation */
@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 🧩 INPUT + DROPDOWN STYLES */
.search-box select,
.search-box input {
    padding: 16px 20px;
    font-size: 18px;
    border-radius: 14px;
    border: 1.5px solid #ccc;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    min-width: 200px;
    max-width: 260px;
    flex: 1;
}

.search-box input:focus,
.search-box select:focus {
    border-color: #0073e6;
    box-shadow: 0 0 10px rgba(0, 115, 230, 0.4);
    background-color: #fff;
}

/* 🔘 SEARCH BUTTON */
.search-box button {
    background: linear-gradient(to right, #0073e6, #00b3b3);
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-size: 18px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-box button:hover {
    background: linear-gradient(to right, #005bb5, #008080);
    transform: scale(1.05);
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
    }

    .search-box select,
    .search-box input,
    .search-box button {
        width: 100%;
        max-width: none;
    }
}


/* 🔠 MAIN HEADING STYLE */
h2 {
    font-size: 24px;
    margin: 20px 0;
    color: #0073e6;
    text-align: center;
}

/* 📦 MAIN CONTENT CONTAINER */
/*.container {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}*/

/* 📦 CONTAINER HEADER (title + badge) */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

/* 🆕 NEW ITEM BADGE */
.new-badge {
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
}

/* 📝 SUBTEXT UNDER TITLES */
.subtext {
    color: #555;
    margin-bottom: 20px;
}

/* 📜 HORIZONTAL CARD SCROLLER */
.card-slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

/* 📦 INDIVIDUAL CARD */
.card {
    flex: 0 0 220px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    scroll-snap-align: start;
}

.card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* 📝 CONTENT INSIDE CARD */
.card-content {
    padding: 10px;
    text-align: center;
}

.card-content h3 {
    font-size: 16px;
    margin: 0 0 8px;
}

/* 🔗 LINK / BUTTON INSIDE CARD */
.card-content a, .card-content button {
    color: #0073e6;
    text-decoration: none;
    font-size: 14px;
    background: #fff;
    border: 1px solid #0073e6;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
}

.card-content button:hover, .card-content a:hover {
    background: #0073e6;
    color: #fff;
}

/* 🔄 AUTO-SLIDING POPULAR SECTION */
.popular-slider {
    display: flex;
    gap: 15px;
    overflow: hidden;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 🌟 POPULAR ITEM CARD */
.popular-card {
    min-width: 240px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.popular-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* 📝 CONTENT INSIDE POPULAR CARD */
.popular-card .card-content {
    padding: 10px;
    text-align: center;
    background: #fff;
}

.popular-card .card-content h3 {
    margin: 0 0 8px;
}

.popular-card .card-content button {
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}


/* Servies  */
 .service-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 5px;
      border: 2px solid #ddd;
	  padding : 1rem;
    }

    .service-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
    }

    .service-card img {
      width: 60px;
      height: 60px;
      margin-bottom: 12px;
    }

    .service-card h3 {
      font-size: 16px;
      margin-bottom: 6px;
    }

    .service-card p {
      font-size: 13px;
      color: #555;
    }

    @media (max-width: 768px) {
      body {
        padding: 10px;
      }

      .service-card {
        padding: 16px;
      }

      .service-card h3 {
        font-size: 15px;
      }

      .service-card p {
        font-size: 12px;
      }

      .service-card img {
        width: 50px;
        height: 50px;
      }
    }

    @media (max-width: 480px) {
      .service-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 360px) {
      .service-container {
        grid-template-columns: 1fr;
      }
    }

 @keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial state */
.service-card {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
}

/* When scroll hits */
.service-card.animate {
  animation: slideInLeft 0.6s ease forwards;
}

/* Stagger */
.service-card.animate:nth-child(1) { animation-delay: 0.1s; }
.service-card.animate:nth-child(2) { animation-delay: 0.2s; }
.service-card.animate:nth-child(3) { animation-delay: 0.3s; }
.service-card.animate:nth-child(4) { animation-delay: 0.4s; }
.service-card.animate:nth-child(5) { animation-delay: 0.5s; }
.service-card.animate:nth-child(6) { animation-delay: 0.6s; }
.service-card.animate:nth-child(7) { animation-delay: 0.7s; }
.service-card.animate:nth-child(8) { animation-delay: 0.8s; }
.service-card.animate:nth-child(9) { animation-delay: 0.9s; }
.service-card.animate:nth-child(10) { animation-delay: 1.0s; }
.service-card.animate:nth-child(11) { animation-delay: 1.1s; }
.service-card.animate:nth-child(12) { animation-delay: 1.2s; }
.service-card.animate:nth-child(13) { animation-delay: 1.3s; }
.service-card.animate:nth-child(14) { animation-delay: 1.4s; }
.service-card.animate:nth-child(15) { animation-delay: 1.5s; }
.service-card.animate:nth-child(16) { animation-delay: 1.6s; }
.service-card.animate:nth-child(17) { animation-delay: 1.7s; }
.service-card.animate:nth-child(18) { animation-delay: 1.8s; }



.service-card img {
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.15);
}



/* hero servies */
    .scroll-container {
      display: flex;
      overflow-x: auto;
      gap: 16px;
      padding-bottom: 10px;
      scrollbar-width: none;
    }

    .scroll-container::-webkit-scrollbar {
      display: none;
    }

    .card {
      flex: 0 0 auto;
      width: 130px;
      background-color: #fff;
      border-radius: 16px;
      padding: 16px;
      position: relative;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      margin-top: 22px;
      left: 10px;
    }

    .card:hover {
      transform: scale(1.05);
    }

    .card img.person {
      width: 110%;
      height: 160px;
      border-radius: 12px;
      object-fit: cover;
      margin-bottom: -px;
    }

    .card h3 {
      font-size: 18px;
      margin-bottom: 6px;
    }

    .card p {
      font-size: 14px;
      margin-bottom: 8px;
    }

    .arrow {
      position: absolute;
      bottom: 16px;
      right: 16px;
      font-size: 24px;
      color: #fff;
      opacity: 0.7;
    }

    /* imge fix size */
    .card img.person {
  width: 100%;                /* Stretches to card width */
  height: 160px;              /* Fixed height crop ke liye */
  object-fit: cover;          /* Crop the image */
  border-radius: 12px;
  margin-bottom: 12px;
  object-position: center;    /* Center crop (optional but good) */
}

@keyframes slideZoomFadeIn {
  0% {
    transform: translateY(30px) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Scroll container */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}

/* Card styles */
.card {
  flex: 0 0 auto;
  width: 115px;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 22px;
  left: 22px;
  cursor: pointer;
  opacity: 0;
  animation: slideZoomFadeIn 0.8s ease forwards;
}

/* Hover effect */
.card:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Click effect (no blink) */
.card.clicked {
  transform: scale(1.15);
}

/* /* Entry animation */
/* Entry animation */
/* @keyframes slideZoomFadeIn {
  0% {
    transform: translateY(30px) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}  */

/* Image inside card */
.card img.person {
  width: 111%;
  height: 148px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: -12px;
  object-position: center;
  margin-left: 19px;
}

/* Card text */
.card h3,
.card p,
.card .arrow {
  color: #fff;
}

.card h3 {
  font-size: 14px;
  margin-bottom: -9px;
  margin-top: -7px;
  font-family:Calibri;
}

.card p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* Arrow icon */
.arrow {
  position: absolute;
  bottom: 4px;
  right: 5px;
  font-size: 24px;
  opacity: 0.7;
}

/* Hover effect on card */
.card:hover {
  transform: scale(1.05);
}

/* Hover effect on image only */
.card:hover img.person {
  transform: scale(1.2);
}

/* person __________________________________________________________*/
.person1 {
  transition: transform 0.3s ease-in-out;
}

.card:hover .person1 {
  transform: scale(1.13);
}





    /* ads slider Top */
 /* Slider Container */
.slider-wrapper {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: auto;
}

/* Slider Track */
.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%; /* If only 1 image */
}

/* Each Slide */
.slide {
  flex: 0 0 100%;
  height: 220px;
  position: relative;
}

/* Slide Image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dot Navigation */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.3s;
}

.dot.active {
  background: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .slide {
    height: 130px;
  }
}

/* fix imge */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Zoom In Animation */
@keyframes zoomInFade {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.slider-wrapper {
  animation: zoomInFade 0.8s ease-out forwards;
  transform-origin: center;
}

/* customer reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.review-card .image-container {
  position: relative;
}
.review-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.whatsapp-top {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #25D366;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}
.review-card .card-content {
  padding: 15px;
}
.review-card .card-content h3 {
  margin: 0;
  font-size: 20px;
}
.review-card .location {
  color: gray;
  margin: 5px 0;
}
.review-card .review {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.review-card .review img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.review-card .stars {
  color: orange;
  margin: 5px 0;
}
.review-card .desc {
  font-size: 15px;
  color: #555;
}

/* city */

.tourist-wrapper {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.tourist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.tourist-header h2 {
  font-size: 24px;
  margin: 0;
}

.new-tag {
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
}

.arrow-buttons button {
  background: #eee;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.3s;
}

.arrow-buttons button:hover {
  background: #ddd;
}

.tourist-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding-bottom: 10px;
}

.tourist-scroll::-webkit-scrollbar {
  display: none;
}

.tourist-card {
  display: flex;
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.tourist-card:hover {
  transform: translateY(-4px);
}

.tourist-card img {
  width: 120px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.card-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-info h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card-info a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .tourist-card {
    width: 250px;
  }

  .tourist-card img {
    width: 100px;
  }

  .card-info h3 {
    font-size: 16px;
  }

  .card-info a {
    font-size: 14px;
  }

  .tourist-header h2 {
    font-size: 20px;
  }

  .arrow-buttons button {
    font-size: 20px;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  .tourist-wrapper {
    padding: 12px;
  }

  .tourist-scroll {
    gap: 12px;
  }

  .tourist-card {
    width: 220px;
  }

  .tourist-card img {
    width: 90px;
  }

  .card-info h3 {
    font-size: 15px;
  }

  .card-info a {
    font-size: 13px;
  }

  .tourist-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Wedding & All */
.wedding-area {
      padding: 30px 20px;
      background-color: #ffcce0;
    }

    .wedding-heading {
      font-size: 28px;
      font-weight: bold;
      text-align: center;
      color: #c2185b;
      margin-bottom: 30px;
    }

    .wedding-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .wedding-box {
      width: 220px;
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
      animation: fadeInUp 0.6s ease forwards;
      opacity: 0;
    }

    .wedding-box:nth-child(1) { animation-delay: 0.1s; }
    .wedding-box:nth-child(2) { animation-delay: 0.2s; }
    .wedding-box:nth-child(3) { animation-delay: 0.3s; }
    .wedding-box:nth-child(4) { animation-delay: 0.4s; }
    .wedding-box:nth-child(5) { animation-delay: 0.5s; }
    .wedding-box:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeInUp {
      0% {
        transform: translateY(30px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .wedding-box:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .wedding-box img {
      width: 100%;
      height: 120px;
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
      object-fit: cover;
    }

    .wedding-title {
      padding: 10px;
      font-size: 16px;
      font-weight: 600;
      color: #c2185b;
    }

    @media (max-width: 768px) {
      .wedding-box {
        width: 45%;
      }
    }

    @media (max-width: 480px) {
      .wedding-box {
        width: 100%;
      }
    }
    /* real Esate */

    .estate-section {
      padding: 40px 10px;
      background-color: #d9efff;
      overflow-x: hidden;
    }

    .estate-title {
      text-align: center;
      font-size: 2em;
      font-weight: bold;
      margin-bottom: 30px;
      color: #003366;
    }

    .estate-slider-container {
      overflow: hidden;
      position: relative;
    }

    .estate-slider {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .estate-card {
      flex: 0 0 25%;
      padding: 10px;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-right: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .estate-card:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .estate-img {
      width: 100%;
      height: 200px;
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
      object-fit: cover;
    }

    .estate-name {
      padding: 15px;
      text-align: center;
      font-size: 1.1em;
      font-weight: 600;
      color: #005b99;
    }

    @media (max-width: 1024px) {
      .estate-card {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 600px) {
      .estate-card {
        flex: 0 0 100%;
      }
    }

/* Trending  */
/* Trend Container */
/* Container */
.ts-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
}

/* Header */
.ts-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.ts-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.ts-new-badge {
    background: #ff4b5c;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 8px;
    animation: ts-pulse 1.5s infinite;
}

/* Subtext */
.ts-subtext {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

/* Card Slider */
.ts-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.ts-slider::-webkit-scrollbar {
    height: 8px;
}

.ts-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.ts-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    min-width: 270px;
    flex: 0 0 auto;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.ts-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Card Image */
.ts-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Zoom-in on hover */
.ts-card:hover img {
    transform: scale(1.05);
}

/* Card Content */
.ts-card-content {
    padding: 12px;
    text-align: center;
}

.ts-card-content h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 10px 0;
}

.ts-card-content a {
    text-decoration: none;
    color: #ff4b5c;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ts-card-content a:hover {
    color: #d93644;
}

/* Badge Pulse Animation */
@keyframes ts-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* consultant  */
.pro-header {
      text-align: center;
      padding: 1px 10px;
      background: linear-gradient(135deg, #1976d2, #42a5f5);
      color: #fff;
      border-bottom-left-radius: 60px 20px;
      border-bottom-right-radius: 60px 20px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.2);
      animation: pro-fadeDown 1s ease-out;
}
.pro-header h1 {
      font-size: 2.8rem;
      margin-bottom: 10px;
}
.pro-header p {
      font-size: 1.1rem;
      opacity: 0.95;
}
@keyframes pro-fadeDown {
      from {
        transform: translateY(-40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
}

.pro-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 30px 20px;
}
.pro-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      animation: pro-slideUp 1s ease;
}
.pro-card img {
      width: 100%;
      height: 200px;
     /* object-fit: cover;*/
      transition: transform 0.4s ease;
}
.pro-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.pro-card:hover img {
      transform: scale(1.08);
}
.pro-card-content {
      padding: 18px;
      text-align: center;
}
.pro-card-content h3 {
      font-size: 1.4rem;
      color: #1976d2;
      margin-bottom: 8px;
}
.pro-card-content p {
      font-size: 0.95rem;
      color: #444;
}
@keyframes pro-slideUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
}
/* Business Talks */
h2.heading-main {
      text-align: center;
      font-size: 42px;
      color: #c10109;
      /*margin-bottom: 30px;
      position: relative;*/
      transition: all 0.3s ease;
}

h2.heading-main::after {
      position: absolute;
      width: 80px;
      height: 4px;
      background: #ff9800;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 4px;
      transition: all 0.3s ease;
}

h2.heading-main:hover {
      color: #e65100;
}

h2.heading-main:hover::after {
      width: 120px;
      background: #e65100;
}

.slider-box {
      overflow: hidden;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      background: #fff3e0;
      padding: 20px;
      border-radius: 16px;
}

.slider-row {
      display: flex;
      gap: 20px;
      /*animation: slideMove 20s linear infinite;*/
}

.slider-box:hover .slider-row {
      animation-play-state: paused;
}

@keyframes slideMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
}

.card-news {
      flex: 0 0 25%;
      min-width: 280px;
      background: #ffffff;
      border-radius: 14px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
}

.card-news:hover {
      background: #fff8e1;
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(255, 167, 38, 0.4);
}

.card-title {
      padding: 10px 14px 6px;
      font-size: 20px;
      font-weight: 700;
      color: #5d4037;
      text-align: center;
      transition: color 0.3s ease;
}

.card-news:hover .card-title {
      color: #ff6f00;
}

.video-box {
      width: 100%;
      height: 200px;
      overflow: hidden;
}

.video-box video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}

.card-desc {
      padding: 10px 14px;
      font-size: 15px;
      color: #4e342e;
      text-align: center;
}

.card-actions {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 12px 0 16px;
      font-size: 16px;
      color: #795548;
}

.card-actions i {
      font-size: 26px;
      color: #795548;
      cursor: pointer;
      transition: color 0.3s ease, transform 0.3s ease;
      margin-right: 6px;
}

.card-actions i:hover {
      color: #ff5722;
      transform: scale(1.2);
}

.action-wrap {
      display: flex;
      align-items: center;
      gap: 4px;
}

@media (max-width: 768px) {
      .card-news {
        flex: 0 0 80%;
      }
}
 /* 4 Main Categories */
.category-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 10px;
  padding: 0 15px; /* Add side padding for small screens */
  margin-top: 30px;
  margin-bottom: 30px;
}
/* Category Box */
.category-box {
  background: #ffffffee;
  border-radius: 20px;
  padding: 24px 32px 36px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: fadeIn 0.7s ease both;
}

.category-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
}

.category-box h3 {
  font-family: 'Merriweather', serif;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #0c143d;
  position: relative;
}

.category-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 4px;
  background: #e60073;
  border-radius: 2px;
  transition: width 0.35s ease;
}

.category-box:hover h3 {
  color: #e60073;
}

.category-box:hover h3::after {
  width: 45%;
}
/* Items Row */
.items-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.item {
  width: 30%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  background: #fff;
  cursor: pointer;
}

.item:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  transform: scale(1.06);
}

.item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  display: block;
  transition: transform 0.4s ease;
}

.item:hover img {
  transform: scale(1.12);
}

.item p {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 14px 0;
  background: linear-gradient(180deg, transparent, rgba(12, 20, 61, 0.85));
  color: #f0f4ff;
  font-weight: 700;
  font-size: 17px;
  font-family: 'Merriweather', serif;
  text-align: center;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .category-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .item {
    width: 48%;
  }
}

@media (max-width: 720px) {
  .items-row {
    justify-content: center;
  }
  .item {
    width: 48%;
  }
}

@media (max-width: 440px) {
  .item {
    width: 100%;
  }
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}