* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Oswald", sans-serif;
  background-color: #f7f7f7;
  color: #222;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

:root {
  --bg-pink: #f9eae5;
  --text-green: #1b4d3e;
  --card-red: #d32f2f;

  --bg-pink: #f9eae5;
  --card-red: #d32f2f;
  --text-white: #ffffff;

  --bg-pink: #f9eae5;
  --text-green: #1b4d3e;
  --button-red: #d32f2f;
  --bg-pink: #f9eae5;
  --text-green: #1b4d3e;
  --icon-red: #d32f2f;

  --bg-pink: #f9eae5;
  --text-green: #1b4d3e;
  --card-bg: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.08);

  --footer-bg-red: #d32f2f;
  --text-white: #ffffff;
  --bottom-bg-white: #ffffff;
  --hover-color: #ffeb3b;

  --bg-pink: #f9eae5;
  --card-red: #d32f2f;
  --text-white: #ffffff;
  --text-green: #1b4d3e;
}

/* header top section css */

/* --- Top Scrolling Bar --- */
.top-bar {
  background-color: #d11e27;
  color: white;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}

.scrolling-text span {
  display: inline-block;
  padding: 0 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Marquee Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.header {
  background-color: #f1dcd3;
  padding: 1.5rem 0;
}

.header-logo a {
  font-family: "Oswald", sans-serif;
  font-size: 2.25rem;
  color: #d11e27;
  text-decoration: none;
}

@media (max-width: 576px) {
  .header-logo a {
    font-size: 1.75rem;
  }
}

.header-icons a {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
  margin: 0 0.5rem; /* Spacing for icons */
}

.header-icons a:hover {
  color: #d11e27;
}

.headbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0px 100px;
}

/* --- Navigation Bar --- */
.main-nav {
  background-color: #f1dcd3;
 
}

.main-nav .nav-link {
  color: #333;
  font-weight: 0;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-nav .nav-link:hover {
  color: #d11e27;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---------------- Mobile Offcanvas (slide from left) ---------------- */
.mobile-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 300px;
  max-width: 85%;
  background: #ffffff;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.12);
  transform: translateX(-110%);
  transition: transform 0.35s ease;
  z-index: 1200;
  display: flex;
  flex-direction: column;
}

.mobile-offcanvas.open {
  transform: translateX(0);
}

.mobile-offcanvas .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.offcanvas-close {
  background: #d11e27; /* red background for close button */
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile submenu scroll behaviour */
.offcanvas-nav .off-submenu {
  max-height: 300px;      
  overflow-y: auto;
  overflow-x: hidden;
 -webkit-overflow-scrolling: touch; 
  padding-right: 6px;     
}


@media (max-width: 380px) {
  .offcanvas-nav .off-submenu {
    max-height: 220px;
  }
}

.off-submenu::-webkit-scrollbar {
  width: 5px;
}

.off-submenu::-webkit-scrollbar-thumb {
  background: #d11e27;
  border-radius: 10px;
}

.offcanvas-nav {
  padding: 1rem;
  overflow: auto;
}
.offcanvas-nav ul {
  list-style: none;
}
.offcanvas-nav a,
.offcanvas-nav button {
  display: block;
  padding: 0.65rem 0;
  color: #222;
  text-align: left;
  width: 100%;
  border: none;
  background: none;
  font-size: 1rem;
}
.offcanvas-nav .off-submenu {
  /*display: none;*/
  padding-left: 0.75rem;
  border-left: 3px solid #f3f3f3;
  margin-bottom: 0.5rem;
}
.offcanvas-nav .off-submenu h6 {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #555;
}
.offcanvas-nav .off-submenu a {
  padding: 0.45rem 0;
  color: #333;
}


.off-has-submenu .off-submenu.open {
  display: block;
}


.main-nav {
  position: relative;
}
.has-submenu {
  position: static;
}
.has-submenu .submenu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
  z-index: 1500;
  pointer-events: auto;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.submenu h6 {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  color: #444;
}
.submenu a {
  display: block;
  padding: 0.25rem 0;
  color: #333;
}

/* Desktop specific: layout as full-width red mega panel with columns and staggered reveal */
@media (min-width: 992px) {
  .has-submenu .submenu {
    background: #d11e27;
    color: #fff;
    padding: 1.25rem 0;
    box-shadow: none;
  }
  .submenu .submenu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .submenu-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.25rem;
    align-items: start;
  }
  .submenu-column {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.32s ease, transform 0.32s ease;
  }
  .has-submenu:hover .submenu .submenu-column,
  .has-submenu:focus-within .submenu .submenu-column {
    opacity: 1;
    transform: translateY(0);
  }
  /* stagger columns */
  .submenu-column:nth-child(1) {
    transition-delay: 0.02s;
  }
  .submenu-column:nth-child(2) {
    transition-delay: 0.06s;
  }
  .submenu-column:nth-child(3) {
    transition-delay: 0.1s;
  }
  .submenu-column:nth-child(4) {
    transition-delay: 0.14s;
  }
  .submenu-column:nth-child(5) {
    transition-delay: 0.18s;
  }
  .submenu-column h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    text-transform: none;
  }
  .submenu-column a {
    color: #fff;
    padding: 0.35rem 0;
    display: block;
    opacity: 0.95;
  }
}

/* Hover underline effect (red) for all menu items */
.main-nav .nav-link,
.offcanvas-nav a,
.offcanvas-nav button {
  position: relative;
}
.main-nav .nav-link::after,
.offcanvas-nav a::after,
.offcanvas-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #d11e27;
  bottom: -6px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s ease;
}
.main-nav .nav-link:hover::after,
.offcanvas-nav a:hover::after,
.offcanvas-nav button:hover::after {
  transform: scaleX(1);
}

/* Make navbar-toggler-icon visible (simple 3-bar icon) */
.navbar-toggler-icon {
  display: inline-block;
  width: 26px;
  height: 18px;
  position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #333;
}
.navbar-toggler-icon span {
  top: 8px;
}
.navbar-toggler-icon::before {
  top: 0;
}
.navbar-toggler-icon::after {
  bottom: 0;
}

/* Ensure mobile offcanvas only used on small screens */
@media (min-width: 992px) {
  .mobile-offcanvas,
  #mobile-menu-toggle {
    display: none;
  }
}

.top-heading {
  display: inline-block;
  margin-top: 24px;
  align-items: center;
  color: #05514d;
  background-image: linear-gradient(45deg, #fcc304, #fbc005ad);
  padding: 5px 12px;
  margin: 4px 0;
}
.top-box {
  margin-top: 20px;
}
.top-box h5 {
  font-size: 1.1rem;
}

.top-box p {
  font-size: 1rem;
}

@media (max-width: 576px) {
  .top-box h5 {
    font-size: 1rem;
  }
  .top-box p {
    font-size: 0.9rem;
  }
}

/* trusted by css section  */

.trusted-by-section {
  background-color: #f1dcd3;
  padding: 3rem 0;
}

.trusted-by-section h2 {
  font-family: "Playfair Display", serif;
  color: #004d40;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.logo-scroller-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.logo-scroller-container:hover .logo-scroller-inner {
  animation-play-state: paused;
}

.logo-scroller-inner {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
}

.logo-scroller-inner img {
  max-height: 90px;
  width: auto;
  margin: 0 2.5rem;
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

@media (max-width: 767px) {
  .logo-scroller-inner img {
    max-height: 50px;
    width: auto;
    margin: 0 2.5rem;
    vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}

.logo-scroller-inner img:hover {
  opacity: 1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .trusted-by-section {
    padding: 1rem 0;
  }
  .trusted-by-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .logo-scroller-inner img {
    max-height: 30px;
    margin: 0 1.5rem;
  }
}

/* --------------------------------- */

.highlight-title {
  display: inline-block;
  background: #f8d313;
  color: red;
  font-weight: 700;
  font-size: 28px;
  padding: 8px 18px;
  border-radius: 5px;
  box-shadow: 3px 3px 0px #d30000;
}
.section-main-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #f36f21;
}
.section-main-heading + p,
.text-muted {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}
.about-company {
  background-color: #f1dcd3;
}

img.shadow {
  border-radius: 6px;
}

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* --------------------- */

.key-diff-section {
  background: #f5dcd2;
}

/* Section Heading */
.diff-heading {
  color: #0f4b43;
  font-weight: 700;
  font-size: 30px;
}

.diff-box .icon {
  font-size: 32px;
  color: #0f4b43;
  margin-bottom: 8px;
}

.diff-box h6 {
  color: #0f4b43;
  font-weight: 600;
  margin-bottom: 5px;
}

.diff-box p {
  font-size: 12px;
  color: #333;
  line-height: 1.4;
}

/* Stats Red Boxes */
.stats-box {
  background: #d70f21;
  padding: 22px;
  border-radius: 6px;
  color: #fff;
}

.stats-box h4 {
  margin-bottom: 4px;
  font-weight: 700;
}

.stats-box p {
  margin: 0;
}

/* Circle Images */
.offer-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.offer-box h6 {
  color: #0f4b43;
  font-weight: 600;
  margin-top: 10px;
  /* margin-right: 40px; */
}

/* -----------------banner---------------- */

/* Banner wrapper */
.banner-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Responsive Banner Image */
.banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

/* .banner-wrapper:hover .banner-img{
    transform: scale(1.05);
} */

.banner-btn {
  position: absolute;
  bottom: 250px;
  right: 1000px;
  background: #e60000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.banner-btn:hover {
  background: #c90000;
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .banner-btn {
    bottom: 13%;
    right: 40%;
    padding: 10px 24px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .banner-btn {
    bottom: 10%;
    right: 50%;
    transform: translateX(50%);
    padding: 8px 20px;
    font-size: 8px;
  }
}

@media (max-width: 1024px) {
  .banner-btn {
    bottom: 10%;
    right: 50%;
    transform: translateX(50%);
    padding: 8px 20px;
    font-size: 8px;
  }
}

/* why choose us section  */

/* Custom CSS for this section */

.gifting-section {
  background-color: var(--bg-pink);
  color: var(--text-green);
  padding: 30px 0;
}

.gifting-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-green);
}

.gifting-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: var(--text-green);
}

.feature-card {
  /* background-color: var(--card-bg); */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--shadow-color);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-out;
  opacity: 1;
  height:358px;
}

.feature-card.is-visible {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  min-height: 60px;
  color: var(--text-green);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  text-align: justify;
}

.feature-list li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
  color: #555;
}

.feature-list li::before {
  content: attr(data-count) ". ";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--text-green);
}

strong {
  font-weight: 700;
  color: var(--text-green);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gifting-title {
    font-size: 2rem;
  }
  .feature-card {
    margin-bottom: 25px;
  }
  .feature-card h3 {
    min-height: auto;
  }
}

/* Customer Reviews */

/* Section Styling */
.reviews-section {
  background-color: var(--bg-pink);
  padding: 30px 0;
  overflow: hidden;
}

.section-title {
  color: var(--text-green);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
}

/* Marquee Container */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Keyframes for infinite scrolling */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Review Card Styling */
.review-card {
  background-color: var(--card-red);
  color: white;
  width: 350px;
  padding: 30px;
  border-radius: 12px;
  white-space: normal;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.95rem;
  /*line-height: 1.6;*/
  margin-bottom: 20px;
  /*min-height: 120px;*/
}

.reviewer-name {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
  display: inline-block;
  width: 100%;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .review-card {
    width: 300px;
  }
}

/* query section css         */

/* Main Section Styling */
.query-section {
  background-color: var(--bg-pink);
  padding: 60px 0;
}

/* Red Card Container */
.query-card {
  background-color: var(--card-red);
  color: var(--text-white);
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.query-title {
  font-size: 2.5rem;
  margin-bottom: 5px;
  text-align: center;
}

.query-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.9;
}

/* Form Inputs Styling */
.custom-input {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  border-radius: 4px;
  padding: 12px 15px;
  margin-bottom: 20px;
  width: 100%;
  transition: 0.3s;
}

.custom-input:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  outline: none;
  color: white;
}

/* Placeholder color fix */
.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Textarea specific */
textarea.custom-input {
  resize: none;
  height: 150px;
}

.btn-submit {
  background-color: var(--bg-pink);
  color: var(--card-red);
  font-weight: bold;
  padding: 12px 40px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-list {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 1rem;
}

.contact-icon {
  font-size: 1.8rem;
  margin-right: 20px;
  width: 30px;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .contact-list {
    padding-left: 0;
    margin-top: 40px;
  }
  .query-card {
    padding: 30px 20px;
  }
}

/* past work section          */

/* Section Styling */
.past-work-section {
  background-color: var(--bg-pink);
  padding: 80px 0;

  overflow: hidden;
}

/* Left Content Area */
.past-work-content {
  padding-right: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.past-work-title {
  font-size: 2.8rem;
  color: var(--text-green);
  margin-bottom: 15px;
}

.past-work-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
  max-width: 400px;
}

/* Portfolio Button */
.btn-portfolio {
  background-color: var(--button-red);
  color: var(--text-white);
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-portfolio:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #bb2626;
}

.past-work-images {
  position: relative;
  min-height: 500px;
  margin-left: 50px;
}

.past-work-image {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.past-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.past-work-image:hover img {
  transform: scale(1.1);
}

.image-1 {
  width: 280px;
  height: 350px;
  top: 25px;
  left: 18px;
  z-index: 1;
}

.image-2 {
  width: 250px;
  height: 350px;
  top: -70px;
  left: 380px;
  z-index: 2;
}

.image-3 {
  width: 280px;
  height: 280px;
  top: 290px;
  right: 0;
  z-index: 3;
}

.image-4 {
  width: 250px;
  height: 350px;
  top: 100px;
  left: 247px;
  z-index: 4;
}

@media (max-width: 991px) {
  .past-work-content {
    text-align: center;
    padding-right: 0;
    margin-bottom: 50px;
  }
  .past-work-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .past-work-images {
    min-height: 400px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .past-work-image {
    position: static;
    margin: 10px auto;
    width: 70%;
    max-width: 300px;
    height: auto;
  }
  .image-1,
  .image-2,
  .image-3,
  .image-4 {
    width: 250px;
    height: 200px;
    position: absolute;
    left: unset;
    top: unset;
  }
  .image-1 {
    top: 0px;
    left: 10%;
    z-index: 1;
  }
  .image-2 {
    top: 258px !important;
    left: 32% !important;
    transform: translateX(-50%);
    z-index: 2;
    width: 220px;
    height: 180px !important;
  }
  .image-3 {
    top: 100px;
    right: 10%;
    z-index: 3;
  }
  .image-4 {
    top: 70px;
    left: 20%;
    z-index: 4;
    width: 300px;
    height: 250px;
  }
}

@media (max-width: 767px) {
  .past-work-images {
    min-height: 500px;
  }
  .image-1 {
    top: -48px;
    left: 5%;
    width: 145px;
    height: 186px;
  }
  .image-2 {
    top: 280px !important;
    left: 32% !important;
    transform: translateX(-50%);
    width: 210px;
    height: 160px !important;
  }
  .image-3 {
    top: -12px;
    right: 5%;
    width: 160px;
    height: 180px;
  }
  .image-4 {
    top: 60px;
    left: 20%;
    width: 250px;
    height: 250px;
  }
}

/* Section Wrapper */
.delivery-newsletter-section {
  background-color: var(--bg-pink);
  padding: 60px 0;
  text-align: center;
}

.section-heading {
  color: var(--text-green);
  font-size: 2.5rem;
  /* margin-bottom: 40px; */
}

/* --- Delivery Icons Grid --- */
.city-icons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.city-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.city-icon {
  font-size: 2.5rem;
  color: var(--icon-red);
  margin-bottom: 3px;
  transition: transform 0.3s ease;
}

.city-name {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--icon-red);
  text-transform: uppercase;
  border-top: 2px solid var(--icon-red);
  width: 100%;
  padding-top: 5px;
  background-color: var(--icon-red);
  color: white;
}

.city-item:hover .city-icon {
  transform: translateY(-10px) scale(1.2);
}

.newsletter-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-subtitle {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.email-input {
  background-color: transparent;
  border: 1px solid #1b4d3e;
  padding: 10px 15px;
  width: 60%;
  color: var(--text-green);
  border-radius: 10px;
}

.email-input::placeholder {
  color: var(--text-green);
  opacity: 0.7;
}

.email-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.3);
}

.btn-signup {
  background-color: var(--icon-red);
  color: white;
  border: none;
  padding: 10px 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: auto;
  border-radius: 10px;
}

.btn-signup:hover {
  transform: scale(1.05);
  background-color: #b71c1c;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }

  .city-icons-container {
    gap: 15px;
  }

  .city-item {
    width: 60px;
  }

  .city-icon {
    font-size: 2rem;
  }

  .city-name {
    font-size: 0.6rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .email-input {
    width: 100%;
    margin-bottom: 10px;
  }

  .btn-signup {
    width: 100%;
  }
}

/* footer section css  */

/* Main Footer Styling */
.footer-section {
  background-color: var(--footer-bg-red);
  color: var(--text-white);
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
  background: white;
  padding: 5px;
  border-radius: 5px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* Headings */
.footer-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding-bottom: 5px;
}

/* Links List */


.footer-links {
    list-style: none;
  padding: 0;
    max-height: 200px;     
    overflow-y: auto;      
    overflow-x: hidden;   
    padding-right: 5px;    
}


.footer-links::-webkit-scrollbar {
    width: 6px;
}

.footer-links::-webkit-scrollbar-track {
    background: #222;      
}

.footer-links::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}

.footer-links::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--hover-color);
  padding-left: 5px;
}

/* Contact Icons */
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icon {
  color: var(--text-white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--hover-color);
  transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
  background-color: var(--bg-pink);
  color: var(--footer-bg-red);
  padding: 15px 0;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom a {
  color: var(--footer-bg-red);
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-heading {
    margin-top: 20px;
  }
  .social-icons {
    justify-content: flex-start;
  }
}

/* -----------------------Gallery Page CSS Start Here---------------- */

.portfolio-section {
  padding: 50px 0;
  overflow-x: hidden;
  background-color: var(--bg-pink);
}

.section-title {
  text-align: center;
  color: var(--text-green);
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 100px; /* Gap between projects */
  position: relative;
}

/* Image Container */
.project-image {
  width: 45%;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

/* Image Hover Zoom */
.project-wrapper:hover .project-image img {
  transform: scale(1.05);
}

/* Text Card styling */
.project-info {
  width: 45%;
  background-color: var(--card-red);
  color: var(--text-white);
  padding: 40px;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: justify;
}

.alternate {
  text-align: left !important;
}

.project-wrapper.normal {
  justify-content: center;
}
.project-wrapper.normal .project-info {
  margin-left: -10%;
}

.project-wrapper.reverse {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.project-wrapper.reverse .project-info {
  margin-right: -10%;
  text-align: right;
}

.project-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

.project-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 991px) {
  .project-wrapper,
  .project-wrapper.reverse {
    flex-direction: column;
    display: block;
    margin-bottom: 60px;
  }

  .project-image {
    width: 100%;
  }

  .project-info {
    width: 90%;
    margin: 0 auto;
    margin-top: -40px;
    text-align: center !important;
  }

  /* Reset margins for mobile */
  .project-wrapper.normal .project-info,
  .project-wrapper.reverse .project-info {
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
  }
}

/* flot icon  */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5b;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 15px;
    font-size: 26px;
  }
}
/*----about-us-------*/
.about-sec {
    background-color: var(--secondary);
    position: relative;
}


.other-prd{
    height:450px;
}

.other-prd img{
    width:70% !important;
}

.about-us {
    z-index: 1;
    text-align: center;
    width: 45%;
    float: left;
}

.about-us img {
    width: 100%;
    padding-right: 1.5rem;
}

.about-box {
    width: 100%;
}

.about-header .sub-title {
    color: var(--dark) !important;
    font-weight: 500;
}

.ab_btn {
    padding-left: 25px;
    padding-right: 25px;
}

.ab_btn:hover {
    color: var(--light) !important;
}

.ab_btn span {
    padding-left: 8px;
    display: flex;
    align-items: center;
    color: var(--light);
    transition: all 0.5s ease;
}

.ab_btn:hover span {
    transform: translateX(5px) !important;
    color: var(--light);
}

.about-box-content p {
    font-family: var(--font2);
    color: var(--dark) !important;
    font-weight: 400;
    margin-top: 20px;
}

.about-btn {
    margin-top: 20px;
}


.title-sec {
    font-size: 30px;
    background-color: #fe0000;
    color: #dfdedd;
    font-weight: 700;
    display: inline-block;
    padding: 5px 20px;
    margin-bottom: 0;
    line-height: 43px;
    letter-spacing: 1.1px;
    text-transform: capitalize;
    text-shadow: 0px 1px var(--dark);
    font-family: var(--font2);
    box-shadow: rgba(209, 45, 45, 0.3) 0px 19px 38px, rgba(175, 10, 10, 0.22) 0px 15px 12px;
}



/******breadcrump*******/
.breadcrump-sec {
    background: url('../image/bg4.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 10c0px 0;
    position: relative;
    z-index: 1;
    min-height: 300px;

}

.breadcrump-sec:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(230, 14, 14, 0.9);
    content: '';
    z-index: -1;
}

.bread-title {
    /*font-family: var(--font2);*/
    font-size: 35px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    background-color: #ff6600;
    padding: 5px 12px;
    margin-top:100px;

}
.b-title{
    color: var(--bg3);
    text-transform: capitalize;
    font-size:2rem;
    font-family: var(--font1);
    font-weight: 600;
}
.b-links {
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 100%;
    display: inline-block;
    background-color: #ff6600;
    padding: 14px 30px;
    color: #fdff01;
    /*font-family: var(--font1);*/
    font-weight: 800;
    text-transform: capitalize;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 1px 4px;
}

.b-links a {
    font-size: 18px;
    letter-spacing: 1.1px;
    padding: 0 5px;
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    margin-bottom: 50px;
}

.b-item.active {
    color: var(--bg3);
    text-transform: capitalize;
    /*font-family: var(--font1), sans-serif;*/
    letter-spacing: 1.2px;
    font-size: 18px;
    font-weight: 900;
    padding-left: 5PX;
}

span.fa-solid {
    color: var(--bg);
}


.market-place {
    background-color: #f1dcd3;
    position: relative;
}

a.market-btn {
    padding: 18px 30px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-transform: capitalize;
    /*font-family: var(--font1), sans-serif;*/
    font-weight: 600;
    line-height: 1.2;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
    display: block;
    height: 60px;
    border-radius:5px !important;
    
}

.market-title {
    color: var(--bg1);
}

.marketing-title {
    font-size: 32px;
    text-transform: capitalize;
    /*font-family: var(--font1), sans-serif;*/
    font-weight: 600;
    margin: 20px auto;
    line-height: 1.1;
}
.btn-sec {
    align-items: center;
    appearance: none;
    background-color: #ff6600;
    border-width: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font2);
    justify-content: center;
    line-height: 1.4;
    letter-spacing: 1.4px;
    list-style: none;
    overflow: hidden;
    position: relative;
    padding: 12px 22px;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 16px;
    text-transform: capitalize;
    z-index: 9;
}
.btn-sec:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transform: scaleX(0);
    transform-origin: 100% 50%;
     background: #fe0000; 
    transition: transform 0.3s 
ease-in-out;
    z-index: -1;
}
.btn-sec:hover:after {
    transform: scaleX(1);
    transform-origin: 0% 50%;
}

.cropt-gift{
    font-size:24px;
}