:root {
    --brand-red: #e60012;
    --brand-dark: #242424;
    --light-90: rgba(255, 255, 255, .9);
    --shadow: 0 10px 30px rgba(0, 0, 0, .12);
    --radiustop: 20px;
    --radiusbottom: 20px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #e1e2e3;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}



/* ======= Hero Section ======= */
.hero {
    position: relative;
    min-height: 60vh;
    color: #fff;
    overflow: hidden;
    margin-top: 85px;
}

/* Swiper setup */
.swiper {
    width: 100%;
    height: 90vh;
}

/* .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
} */



/* Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

/* Pagination */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--brand-red);
    opacity: 1;
}

/* Default (desktop) */
.swiper-slide {
  background-size: cover;
  background-position: center;
}

/* Mobile fix */
@media (max-width: 768px) {
  .swiper {
     width: 100%;
    height: 30vh;
  }
  .swiper-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 30vh; /* adjust if too tall */
  }
}


/* Your existing shape wrap */
.shape-wrap {
    position: absolute;
    right: 4%;
    top: 14%;
    width: 420px;
    height: 520px;
    pointer-events: none;
    z-index: 2;
}

.sq {
    position: absolute;
    background: #e6e7e7ff;
    box-shadow: var(--shadow);
}

.sq.s1 {
    width: 150px;
    height: 150px;
    right: 180px;
    top: 100px;
    border-radius: var(--radiustop) 0 var(--radiusbottom) 0;
}

.sq.s2 {
    width: 520px;
    height: 220px;
    right: 70%;
    top: 220px;
    background: #e60012;
    border-radius: var(--radiustop) 0 var(--radiusbottom) 0;
    color: #fff;
}

.sq.s2 h1 {
    font-size: 1.5rem;
}

.sq.s3 {
    width: 200px;
    height: 200px;
    right: 150px;
    top: 350px;
    background: #6a6b6dff;
    border-radius: var(--radiustop) 0 var(--radiusbottom) 0;
    z-index: -9999;
}

/* Caption Ribbon */
.caption-ribbon {
    position: absolute;
    left: 1rem;
    bottom: 8rem;
    background: var(--light-90);
    color: #000;
    padding: .8rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 2;
    margin-right: 20px;
}

.caption-ribbon .chev {
    color: var(--brand-red);
    font-size: 1.2rem;
}

/* ======= Right-side action rail (Download / Inquiries / Share) ======= */
.action-rail {
    position: fixed;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.fab-item {
    position: relative;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: none;
    display: grid;
    place-items: center;
    background: #fff;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.fab-btn .bi {
    font-size: 1.3rem;
    color: #222;
}

/* Flyout panel */
.flyout {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem .8rem;
    white-space: nowrap;
}

.flyout::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #fff;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, .08);
}

.flyout .pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .4rem .6rem;
    border-radius: 999px;
    border: 1px solid #e9ecef;
    font-size: .9rem;
    text-decoration: none;
    color: #222;
}

.flyout .pill .bi {
    font-size: 1rem;
}

/* Hover behaviour */
.fab-item:hover .flyout,
.fab-item.open .flyout {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}


.custom-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 2rem;
}

.navbar-brand img {
    height: 50px;
    width: 150px;
    /* margin-right: 8px; */
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1.2rem;
    color: #000 !important;
    margin: 0 8px;
}

.navbar-nav .nav-link:hover {
    font-weight: 500;
    font-size: 1.2rem;
    color: #51c0dc !important;
    margin: 0 8px;
}

.nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.nav-bottom-links {
    font-size: 0.85rem;
    margin-top: -5px;
}

.nav-bottom-links a {
    text-decoration: none;
    color: #000;
    margin-left: 10px;
    font-size: 0.85rem;
}

.globe-icon {
    font-size: 1.2rem;
    margin-left: 15px;
    cursor: pointer;
}


/* category section */
.category-card {
    /* background: url('../images/bg.avif') no-repeat center center; */
    background: linear-gradient(90deg,rgba(18, 148, 181, 1) 0%, rgba(252, 250, 250, 1) 100%, rgba(250, 249, 247, 1) 100%);
    background-size: cover;
    border-radius: 12px;
    padding: 30px 20px;
    /* more padding for spacing */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center the image */
    justify-content: center;
    min-height: 280px;
    /* give a fixed card height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card img {
    width: 350px;
    /* smaller size */
    height: 200px;
    border-radius: 8px;
    margin-bottom: 10px;
    object-fit: contain;
    /* no stretching */
    display: block;
}

.category-card p {
    margin-top: 5px;
    font-weight: 500;
    color: #002c5f;
    font-size: 15px;
}

/* carousel */
.carousel-indicators {
    position: relative;
    margin-top: 10px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.show-all {
    color: #d00;
    font-weight: 500;
    text-decoration: none;
}

.show-all:hover {
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background: #111;
    /* dark background */
    color: #bbb;
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer .footer-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s;
}

.footer a:hover {
    color: #0ea8e5;
    /* soft golden hover */
}

.footer .festival-text {
  text-align: center;
  color: #4fb7d9;
  font-weight: 600;
  font-size: 14px;
  margin-top: -25px;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer .subscribe-box {
  background: #fff8e1; /* Light festive warm background */
  border: 2px solid #a1d5eb; /* Festive orange border */
  border-radius: 50px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  max-width: 350px;
  margin: 0 auto 40px auto;
  box-shadow: 0 4px 15px rgba(3, 44, 75, 0.3);
  transition: box-shadow 0.3s ease;
}

.footer .subscribe-box:hover {
  box-shadow: 0 6px 20px rgba(7, 189, 249, 0.6);
}

.footer .subscribe-box input {
  border: none;
  flex: 1;
  padding: 8px 15px;
  outline: none;
  border-radius: 50px;
  font-weight: 600;
}

.footer .subscribe-box button {
  border: none;
  background: #085f85;
  color: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer .subscribe-box button:hover {
  background: #7ddff5;
}


.footer .partners {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 15px 0;
    margin: 30px 0;
    font-size: 13px;
}

.footer .partners a {
    margin: 0 10px;
    color: #bbb;
}

.footer .partners a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #777;
}

.footer-bottom a {
    margin: 0 10px;
    color: #bbb;
}

.footer-bottom a:hover {
    color: #fff;
}


/* Testimonial Section */
.testimonialSwiper {
  padding: 20px 0;
}

.testimonialSwiper .swiper-slide {
  height: auto; /* allow card height to adjust */
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-img-top {
  height: 250px;
  object-fit: contain; /* keeps full image visible with empty space if aspect ratio differs */
  background-color: #f8f9fa; /* optional: gives a background for empty space */
}

/* brand css section  */

.trusted-title h4 {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.3;
}

.brand-section {
  background: #fff;
  border-left: 2px solid rgb(165, 165, 165);
}

.custom-border {
    border-bottom: 2px solid rgb(165, 165, 165);
}

.brand-logo {
  max-height: 150px;
  margin-bottom: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.brand-logo img {
    width: 150px;
    height: 150px;
}

.brand-logo.logo-bg {
    background-color: #1ba8db;
}

.brand-section .col > div {
  font-size: 1.08rem;
  font-weight: 500;
  color: #24292f;
  margin-top: 4px;
}

/* Responsive Tweaks */
@media (max-width: 767.98px) {
  .trusted-title {
    margin-bottom: 1.5rem;
    text-align: center !important;
  }
}


/* whatsapp icons */
.floating-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px; /* Rounded shape */
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  animation: blink-whatsapp 1s infinite; /* Blinking effect */
}

.float-icon {
  margin-top: 16px;
}

/* Blinking Animation */
@keyframes blink-whatsapp {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
