:root {
    --primary-color: #375FE0;
    --secondary-color: #375FE0;
    --light-purple: rgba(215, 228, 238, 0.95);
    --dark-text: #222222;
    --transition: all 0.3s ease;
}

/* Add or modify these styles at the top of your about.css */
html, body {
    /*overflow-x: hidden;*/
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Modify your existing body style */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    background-color: #faf8f8f1;
    max-width: 100vw;
}

.main-content{
    overflow-x: hidden !important;
}

.Memories {
    background-color: rgba(215, 228, 238, 0.95);
    background-image: url('../images/about/cover\ image\ 1.jpg');
    background-size: cover;
    background-position: center;    
}

/* Header Section */
.about-header {
    position: relative;
    min-height: 400px;
    width: 100%;
    background-image: url('../images/about/about_background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

.about-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    rgba(38, 40, 44, 0.8),
    rgba(25, 22, 37, 0.8)
  );
  z-index: 1;
}

.about-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1200px;
  padding: 0 1rem;
  width: 100%;
}

.about-header-content h1 {
  font-weight: 700;
  color: white;
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.about-header-content p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-top: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.about-header .custom-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem auto;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    max-width: 90%;
    list-style: none;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-header .breadcrumb-item {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.about-header .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.5rem;
    float: none;
}

.about-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-header .breadcrumb-item a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.about-header .breadcrumb-item.active {
    color: white;
}

/* Media Queries */
@media (min-width: 992px) {
    .about-header {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    .about-header {
        min-height: 300px;
        padding: 3rem 1rem;
    }

    .about-header-content {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .about-header {
        min-height: 250px;
        padding: 2rem 1rem;
    }

    .about-header-content h1 {
        font-size: 1.8rem;
    }
}

/* Fix for iOS devices */
@supports (-webkit-touch-callout: none) {
    .about-header {
        background-attachment: scroll;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .about-header {
        background-image: url('../images/about/about_background.jpeg');
    }
}

.main_content {
    position: relative;
    z-index: 0;
    padding: 0 15px; /* Add base padding */
}

.main_content::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -55px;
    width: 800px;
    height: 800px;
    /* background-image: url('../images/about/peacock_illustration.png'); */
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(15deg);
    transform-origin: center;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.header-image {
    width: 100%;
    max-width: 1296px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.headline {
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive font size */
    line-height: 1.2;
    margin-bottom: 1rem;
}

.card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 1rem; /* Add margin for mobile stacking */
}

/* App download section styles */
.purple-bg {
    padding: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 15px;
}

.purple-bg h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.purple-bg p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.purple-bg img {
    max-height: 300px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.store-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
    font-size: 0.9rem;
}

.store-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.store-icon {
    font-size: 24px;
    margin-right: 8px;
}

.stats-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
}

.stats-text {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #353333;
    font-weight: 500;
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: #375FE0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(55,95,224,0.08);
    flex-shrink: 0;
    margin-top: 2px;
}

.Memories h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.3rem;
}
.Memories p.text-muted {
    font-size: 1rem;
    color: #383737c5 !important;
    margin-bottom: 0.5rem;
}

.quote {
    color: var(--primary-color);
    font-size: clamp(24px, 4vw, 32px);
}

/* Review card styles */
.reviewsSwiper .card {
    height: 50%;
    min-height: 300px;
    margin: 0 10px;
    transition: transform 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviewsSwiper .card:hover {
    transform: translateY(-5px);
}

.reviewsSwiper .quote i {
    font-size: 24px;
    color: #375FE0;
}

.reviewsSwiper .card img {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover;
}

.reviewsSwiper .card h5 {
    font-size: 16px;
    color: #333;
    margin: 15px;
}

.reviewsSwiper .card p {
    font-size: 14px;
    line-height: 1.6;
}
.reviewsSwiper {
    position: relative;
    padding:  0 60px !important;
    max-width: 1200px;
    margin: 0 auto;
}
.swiper-wrapper {
    display: flex;
    align-items: center;
    height: 40%;
}

.reviewsSwiper .swiper-button-next,
.reviewsSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #375FE0;
    border-radius: 50%;
    color: white !important;
    top: 50%;
}

.reviewsSwiper .swiper-button-next:after,
.reviewsSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.reviewsSwiper .swiper-button-next {
    right: 0;
}

.reviewsSwiper .swiper-button-prev {
    left: 0;
}

/* .reviewsSwiper .swiper-pagination {
    bottom: 0 !important;
    position: absolute;
}

.reviewsSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
    background: #d1d5db;
    opacity: 0.5;
    top: -10%;
}

.reviewsSwiper .swiper-pagination-bullet-active {
    background: #375FE0 !important;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
} */



.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(108, 60, 233, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.book-now-btn {
    background-color: #FF9E0C;
    color: white;
    transition: all 0.3s ease;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
}

.book-now-btn:hover {
    background-color: #000000;
    color: white;
    transform: translateY(-1px);
}

/* Container improvements for mobile */
.container, .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Section spacing */
.section {
    padding: 3rem 0;
}

.download-section {
    position: relative;
    background-color: #375FE0;
    background-image: url('../images/about/round-lines.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 80%;
    overflow: hidden;
    z-index: 1;
}

.download-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 59, 201, 0.7);
    z-index: 2;
}

.download-section > .container {
    position: relative;
    z-index: 3;
}

.download-section img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-top: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.download-section h2 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.download-section p {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
}

.store-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    color: #375FE0;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    background-color: #FF9E0C;
    color: white;
}

.store-icon {
    font-size: 1.5rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .download-section {
        padding: 30px 15px;
        max-width: 95%;
    }

    .download-section h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .download-section p {
        font-size: 0.95rem;
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .store-btn {
        font-size: 0.95rem;
        padding: 10px 15px;
    }

    .download-section img {
        max-width: 120px;
        margin-bottom: 20px;
    }
}


.looking-section {
    position: relative;
    background-color: #375FE0;
    background-image: url('../images/about/round-lines.jpg'); /* Your overlay image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 80%;
    overflow: hidden;
    z-index: 1;
}

/* Optional: Add a semi-transparent layer for darkening or styling effect */
.looking-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 59, 201, 0.7); /* Maintain blue tone with opacity */
    z-index: 2;
}

/* Ensure content stays above overlay */
.looking-section > .container {
    position: relative;
    z-index: 3;
}

.looking-section h2 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

.looking-section p {
    font-size: 1rem;
    color: white;
    margin: 0 auto;
}

.looking-section span {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.looking-section img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-top: 15px;
}

.about-experience-box {
    padding: 0.2rem !important;
    justify-content: center;
}

.about-experience-box h2{
    text-align: center;
}
.about-experience-box p{
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .looking-section h2 {
        font-size: 2rem;
    }
    .looking-section span {
        font-size: 1.25rem;
    }
    .looking-section p {
        font-size: 0.95rem;
    }
    .book-now-btn {
        width: 100%;
        padding: 12px 0;
    }
}

/* Gallery Section Styles */
.gallery-about {
  margin-top:10px ;
  background: #f8fafc;
  padding: 0;
  overflow-x: hidden;
}

.gallery-flickity {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-flickity::-webkit-scrollbar {
  display: none;
}

.gallery-cell {
  flex: 0 0 auto;
  width: 500px;
  height: 500px;
  margin: 0;
  position: relative;
  overflow: hidden;
  
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: transform 0.8s cubic-bezier(.4,2,.3,1), box-shadow 0.3s, opacity 0.5s;
}

.gallery-cell.visible img {
  opacity: 1;
  transform: scale(1) translateY(0);
  box-shadow: 0 4px 16px rgba(55,95,224,0.12);
}

@media (max-width: 600px) {
  .gallery-cell {
    width: 70vw;
    height: 100px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .looking-section h2 {
        font-size: 2rem;
    }
    .looking-section span {
        font-size: 1.25rem;
    }
    .looking-section p {
        font-size: 0.95rem;
    }
    .book-now-btn {
        width: 100%;
        padding: 12px 0;
    }
}

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .main_content {
        padding: 0 10px;
    }
    
    .main_content::after {
        width: 500px;
        height: 500px;
        left: -55px;
        bottom: 75%; 
        transform: rotate(15deg);
        opacity: 0.1;
    }
    
    .purple-bg {
        padding: 20px 15px;
        margin: 10px;
        border-radius: 15px;
    }
    
    .purple-bg h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .purple-bg p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .purple-bg img {
        max-height: 150px;
        margin-bottom: 15px;
    }
    
    .store-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .store-btn {
        width: 100%;
        min-width: auto;
        padding: 15px;
        font-size: 1rem;
    }
    
    .header-image {
        margin: 0 10px;
        width: calc(100% - 20px);
        border-radius: 10px;
    }
    
    .headline {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .stats-number {
        font-size: 1.8rem;
    }
    
    .stats-text {
        font-size: 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .main_content::after {
        width: 500px;
        height: 500px;
        left: -55px; 
        bottom: 75%; 
        transform: rotate(15deg); 
    }
    
    .purple-bg {
        padding: 25px 20px;
        margin: 10px;
    }
    
    .purple-bg h2 {
        font-size: 1.8rem;
    }
    
    .purple-bg img {
        max-height: 180px;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .store-btn {
        flex: 1;
        max-width: 200px;
    }
    
    .header-image {
        border-radius: 15px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .main_content::after {
        width: 600px;
        height: 600px;
        left: -120px;
        bottom: 35%;
        transform: rotate(12deg);
    }
    
    .purple-bg {
        padding: 30px 25px;
    }
    
    .purple-bg h2 {
        font-size: 2rem;
    }
    
    .purple-bg img {
        max-height: 220px;
    }
    
    .store-buttons {
        justify-content: center;
        gap: 20px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .main_content::after {
        width: 800px;
        height: 800px;
        left: -100px;
        bottom: 42%;
    }
    
    .purple-bg {
        padding: 35px 30px;
    }
    
    .purple-bg img {
        max-height: 250px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .header-image {
        max-width: 100%;
    }
}

/* XXL devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .header-image {
        max-width: 1296px;
    }
    
    .main_content {
        padding: 0 20px;
    }
}

/* Utility classes for better mobile experience */
.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-center-mobile {
        text-align: left;
    }
}

/* Fix for touch devices */
@media (hover: none) {
    .store-btn:hover,
    .btn-primary:hover,
    .btn-outline-primary:hover,
    .book-now-btn:hover {
        transform: none;
    }
}

/* Improve accessibility for smaller screens */
@media (max-width: 767.98px) {
    .btn, .store-btn {
        min-height: 44px; /* Better touch targets */
        touch-action: manipulation;
    }
}

/* Loading performance optimization */
.main_content::after {
    will-change: transform;
    backface-visibility: hidden;
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .main_content::after {
        background-size: contain;
    }
}