* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    padding: 40px 0;
}

.card-face.back p {
  color: #000; /* Black text */
}

.Service {
    text-align: center;
    justify-content: center;
    display: flex;
    font-size: 2.5rem;
    margin: 40px 20px 10px auto;
    border-radius: 15px;
    padding: 10px 30px;
    background: linear-gradient(to right, #4F7C82, #0B2E33, rgba(0, 255, 255, 0.3));
    color: white;
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.Service:hover {
    background: linear-gradient(to left, rgba(0, 255, 255, 0.3), #0B2E33, #4F7C82);
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.slider-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.nav-container {
    text-align: center;
    margin-bottom: 20px;
}

.nav-btn {
    background: #0B2E33;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 8px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #14525a;
}

.slider-container {
    overflow: hidden;
}

.grid {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.card {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    box-sizing: border-box;
    padding: 15px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.card:hover .card-inner,
.card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 20px;
    overflow: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.front {
    background: #fff;
    z-index: 2;
}

.front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front h4 {
    position: absolute;
    bottom: 15px;
    background: #0B2E33;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 16px;
}

.back {
    background-color: #9ddae2;
    color: white;
    transform: rotateY(180deg);
    text-align: center;
    padding: 15px;
}

.back h4 {
    background: #0B2E33;
    width: 100%;
    margin: 0;
    padding: 10px;
    font-size: 18px;
    border-radius: 10px 10px 0 0;
}

.back p {
    padding: 10px;
    font-size: 14px;
    flex-grow: 1;
}

.back button {
    margin-top: auto;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #ff0080, #00ffff, #00ff80);
    color: white;
    font-weight: bold;
    cursor: pointer;
    animation: rgbButton 4s linear infinite;
}

@keyframes rgbButton {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px;
    }

    .card-inner {
    aspect-ratio: 1 / 1;
    }

    .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* carousel */

.carousel{
    width: 97vw;
    height: 100vh;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.carousel .list .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 67%;
}

.carousel .list .item:nth-child(4){
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6){
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(67% + 800px);
    opacity: 0;
}





.list .item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    font-size: 100px;
    text-transform: uppercase;
    color: #14ff72cb;
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(224, 203, 12, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(243, 7, 7, 0.8);
    

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}


.content .btn{
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}

.content .btn button:nth-child(1){
    margin-right: 15px;
}

.content .btn button:nth-child(2){
    background: transparent;
    color: #14ff72cb;
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover{
    background-color: #14ff72cb;
    color: #fff;
    border-color: #14ff72cb;
}


@keyframes animate {
    
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */






/* next prev arrows */

.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #14ff72cb;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover{
    background: #fff;
    color: #000;
}




/* Responsive Design */

@media screen and (max-width: 999px){
    
    header{
        padding-left: 5px;
    }

    .list .item .content{
        left: 10px;
    }

    .content .title, .content .name{
        font-size: 70px;
    }
    .content .name{
        font-size: 30px;
    }

    .content .des{
        font-size: 16px;
    }

}

@media screen and (max-width: 690px){
    header nav a{
        font-size: 14px;
        margin-right: 0;
    }

    .list .item .content{
        top: 40%;
    }

    .content .title, .content .name{
        font-size: 45px;
    }

    .content .btn button{
        padding: 10px 15px;
        font-size: 14px;
    }
}


.package-heading {
  text-align: center;
  justify-content: center;
  display: flex;
  font-size: 2.5rem;
  margin: 40px 20px 10px auto;
  border-radius: 15px;
  padding: 10px 30px;
  background: linear-gradient(to right, #4F7C82, #0B2E33, rgba(0, 255, 255, 0.3));
  color: white;
  animation: fadeInUp 0.6s ease-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.package-heading:hover {
  background: linear-gradient(to left, rgba(0, 255, 255, 0.3), #0B2E33, #4F7C82);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.package-slider {
  overflow: hidden;
  position: relative;
  padding: 20px;
  max-width: 100vw;
  box-sizing: border-box;
}

.package-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.package-item {
  flex: 0 0 33.3333%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 300px;
  max-width: 100%;
  box-sizing: border-box;
}

.package-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}

.package-item img {
  width: 100%;
  border-radius: 10px;
}

.package-actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.package-actions a {
  padding: 8px 16px;
  background: #14ff72cb;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.package-actions a:hover {
  background: #0b2e33;
}

.package-slider-controls.top-controls {
  text-align: center;
  margin-bottom: 10px;
}

.package-slider-controls button {
  background: linear-gradient(135deg, #4F7C82, #0B2E33);
  color: white;
  border: none;
  font-size: 1.8rem;
  margin: 0 10px;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.4s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.package-slider-controls button:hover {
  background: #14ff72cb;
  transform: scale(1.1);
}

/* Heading animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tablet - show 2 cards */
@media (max-width: 1024px) {
  .package-item {
    flex: 0 0 48%;
  }
}

/* Mobile - show 1 card */
@media (max-width: 768px) {
  .package-item {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

:root {
  --primary-color: #4F7C82;
  --text-dark: #0B2E33;
  --extra-light: #f9f9f9;
  --white: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--extra-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section__description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* ---------- JOURNEY CARDS ---------- */
.journey__slider-wrapper {
  overflow: hidden;
  position: relative;
}

.journey__grid {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.journey__card {
  flex: 0 0 100%;
  max-width: 100%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow-color);
  transition: transform 0.3s ease;
}

.journey__card:hover {
  transform: translateY(-6px);
}

.journey__card__bg {
  background: var(--primary-color);
  color: var(--white);
  padding: 40px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey__card__bg i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.journey__card__bg h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

.journey__card__content {
  padding: 30px 20px;
  text-align: center;
}

.journey__card__content i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.journey__card__content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.journey__card__content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

/* ---------- BANNER CARDS ---------- */
.banner__slider {
  overflow: hidden;
  width: 100%;
}

.banner__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.banner__card {
  flex: 0 0 100%;
  padding: 2rem 1rem;
  text-align: center;
  background-color: var(--extra-light);
  border-radius: 2rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card h4 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--primary-color);
}

.banner__card p {
  font-size: 1.1rem;
  color: #555;
}

/* ---------- DESKTOP FIXED GRID (JOURNEY & BANNER) ---------- */
@media (min-width: 768px) {
  .journey__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .journey__card {
    flex: none;
    max-width: none;
  }

  .banner__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    transform: none !important;
  }

  .banner__card {
    flex: none;
  }
}

/* ---------- AUTO SLIDE ANIMATION ---------- */
@keyframes autoSlide {
  0% { transform: translateX(0%); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}

@media (max-width: 767px) {
  .journey__grid,
  .banner__track {
    animation: autoSlide 24s infinite ease-in-out;
  }

  .section__header {
    font-size: 2rem;
  }

  .section__description {
    font-size: 1rem;
  }

  .journey__card__bg,
  .journey__card__content {
    padding: 20px 15px;
  }

  .journey__card__bg i {
    font-size: 2rem;
  }

  .journey__card__content i {
    font-size: 1.5rem;
  }

  .journey__card__content h4 {
    font-size: 1.1rem;
  }

  .journey__card__content p {
    font-size: 0.9rem;
  }

  .journey__card {
    border-radius: 12px;
  }

  .banner__card h4 {
    font-size: 3rem;
  }

  .banner__card p {
    font-size: 1rem;
  }
}


:root {
  --primary-color: #4F7C82;
  --text-dark: #0B2E33;
  --text-light: #888;
  --extra-light: #f9f9f9;
  --white: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --star-color: #f5b50a;
}

/* Section Styling */
.client__container {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--extra-light);
}

.client__container .section__header {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.client__container .section__description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
}

/* Swiper Core Styling */
.swiper {
  width: 100%;
  padding-bottom: 40px;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch; /* Ensure all slides are same height */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* Card Styling */
.client__card {
  width: 100%;
  max-width: 400px;
  background-color: var(--extra-light);
  border-radius: 1rem;
  padding: 5px;
  transition: 0.3s;
  box-shadow: 0 4px 20px var(--shadow-color);
  display: flex;
  flex-direction: column;
  height: 100%; /* Fill swiper-slide height */
}

.client__card:hover {
  background-color: var(--primary-color);
}

.client__content {
  padding: 1rem;
  background-color: var(--white);
  border-radius: calc(1rem - 5px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  height: 100%;
}

.client__rating {
  margin-bottom: 0.5rem;
  color: var(--star-color);
  font-size: 1.2rem;
}

.client__rating::before {
  content: "★★★★★";
  letter-spacing: 2px;
}

/* Testimonial Text */
.client__content p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0.5rem 0 1rem;
}

/* Reviewer Info */
.client__details {
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client__details img {
  max-width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
}

.client__details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  transition: 0.3s;
}

.client__card:hover h4 {
  color: var(--white);
}

.client__details h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin: 0;
  transition: 0.3s;
}

.client__card:hover h5 {
  color: var(--extra-light);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .client__container .section__header {
    font-size: 2rem;
  }

  .client__container .section__description {
    font-size: 1rem;
  }

  .client__content p {
    font-size: 0.9rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .client__details {
    flex-direction: column;
    align-items: flex-start;
  }

  .client__details img {
    margin-bottom: 0.5rem;
  }

  .client__card {
    max-width: 90%;
    margin: auto;
  }
}
