@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/* ==========================
   Base Styles
========================== */
html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #FFF8F6; /* Ivory */
    color: #2E2E2E; /* Charcoal */
    margin: 0;
    padding: 0;
}

/* ==========================
   Typography
========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #B03A4C; /* Primary Rose Red */
    margin-bottom: 0.75rem;
}

p, span, li, a {
    color: #2E2E2E; /* Charcoal */
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================
   Buttons
========================== */
.btn-primary {
    background-color: #B03A4C; /* Primary */
    border-color: #B03A4C;
    color: #FFF8F6;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #7A1F32; /* Deep Burgundy */
    border-color: #7A1F32;
    color: #FFF8F6;
}

/* Optional Secondary Button */
.btn-secondary {
    background-color: #FAD4D4; /* Blush Pink */
    border-color: #FAD4D4;
    color: #B03A4C;
}

.btn-secondary:hover {
    background-color: #B03A4C;
    border-color: #B03A4C;
    color: #FFF8F6;
}

/* ==========================
   Utility / Custom Classes
========================== */
.bg-soft {
    background-color: #FBE9E9; /* Light Accent */
}

.text-primary {
    color: #B03A4C !important;
}

.text-accent {
    color: #7A1F32 !important;
}

.bg-primary {
    background-color: #B03A4C !important;
    color: #FFF8F6;
}

.bg-accent {
    background-color: #7A1F32 !important;
    color: #FFF8F6;
}

/* ==========================
   Top Strip / Header Enhancements
========================== */
.top-strip {
    background-color: #FBE9E9; /* Light Accent */
    font-size: 14px;
    padding: 8px 0;
}

.top-strip i {
    color: #B03A4C; /* Icon Color */
}

.top-strip .dropdown-toggle {
    color: #B03A4C;
    border-color: #B03A4C;
}
/* Custom dropdown styles */
.dropdown-menu {
    background-color: #FFF8F6; /* Ivory */
    border: 1px solid #FAD4D4; /* Blush Pink border */
}

.dropdown-item {
    color: #2E2E2E; /* Charcoal text */
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #FAD4D4; /* Blush pink on hover */
    color: #B03A4C; /* Rose red text */
}

.navbar-nav .nav-link {
    color: #B03A4C;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #7A1F32;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional: remove the slide down effect gap */
}
/* Decoration Cards - Enhanced */
.decoration-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(176, 58, 76, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(186, 58, 76, 0.1);
}

.decoration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(176, 58, 76, 0.18);
}

.card-image-wrapper {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(186, 58, 76, 0) 0%, rgba(186, 58, 76, 0.15) 100%);
    transition: all 0.4s ease;
}

.decoration-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(186, 58, 76, 0.1) 0%, rgba(186, 58, 76, 0.25) 100%);
}

.decoration-card:hover .card-img {
    transform: scale(1.08);
}

.price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: white;
    color: #B03A4C;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #B03A4C;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-title {
    font-family: 'Playfair Display', serif;
    color: #B03A4C;
    margin-bottom: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
}

.card-description {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 14.5px;
    line-height: 1.5;
}

.card-footer {
    margin-top: auto;
    padding-top: 10px;
}

/* Button Styles */
.whatsapp-btn, .call-btn {
    flex: 1;
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    text-align: center;
    border: none;
}

/*.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}*/

.call-btn {
    background-color: #ffdee9;
    color: #b3005e;
}

.call-btn:hover {
    background-color: #ffcde0;
    color: #80003c;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 16px rgba(176, 58, 76, 0.4);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.baby-banner {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(186, 58, 76, 0.1);
}

/* Buttons */
.btn-call-now {
    background: linear-gradient(135deg, #B03A4C 0%, #7A1F32 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(176, 58, 76, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

/* Hover Effects */
.btn-call-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(176, 58, 76, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.city-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 25px rgba(176, 58, 76, 0.15) !important;
}

.city-icon {
    transition: all 0.3s ease;
}

.city-card:hover .city-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #FAD4D4 0%, #FFB7B7 100%) !important;
}


.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    border: none;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: #FAD4D4 !important;
    opacity: 1 !important;
    text-decoration: underline !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #B03A4C;
    transform: translateY(-3px);
}
.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(176, 58, 76, 0.1);
}

.service-icon {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #B03A4C 0%, #7A1F32 100%) !important;
}

.service-card:hover .service-icon i {
    color: white !important;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .baby-banner {
        text-align: center;
        background-position: 65% center !important;
    }
    .btn-call-now, .btn-whatsapp {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .card-image-wrapper {
        height: 380px;
    }

    .card-title {
        font-size: 1.25rem;
    }
}
.cursor-pointer {
    cursor: pointer;
}

/* Hero Section with Parallax */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* Gallery Section Styles */
.gallery-section {
    overflow: hidden;
    position: relative;
}

.gallery-img-container {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 100%; /* Square aspect ratio */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.95);
}

.gallery-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(122, 31, 50, 0.9) 0%, transparent 100%);
    color: white;
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
}

.gallery-caption h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-zoom-icon {
    position: absolute;
    top: -35px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B03A4C;
    font-size: 1.2rem;
    transform: scale(0);
    transition: all 0.3s ease 0.1s;
}

/* Hover Effects */
.gallery-img-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(176, 58, 76, 0.3);
    z-index: 2;
}

.gallery-img-container:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.gallery-img-container:hover .gallery-caption {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
}

.gallery-img-container:hover .gallery-zoom-icon {
    transform: scale(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-img-container {
        padding-bottom: 120%; /* Slightly taller on mobile */
    }

    .gallery-caption {
        padding: 15px;
    }

    .gallery-caption h4 {
        font-size: 1rem;
    }

    .gallery-zoom-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: -25px;
    }
}


.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: #B03A4C;
}
.btn-custom {
    background-color: #B03A4C;
    color: #ffffff;
}
.btn-custom:hover {
    background-color: #962e3f;
    color: #fff;
}

.bg-light-pink { background-color: #ffebf1; }
.text-dark-pink { color: #B03A4C; }

/*New Css Code*/
.birthday-decoration-section {
  background: #fff7e6; /* theme-matching light cream background */
  padding: 60px 20px;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.birthday-decoration-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.birthday-decoration-section h2 {
  font-size: 28px;
  text-align: center;
  font-weight: 600;
  color: #B03A4C;
  margin-bottom: 25px;
}

.birthday-decoration-section h3 {
  font-size: 22px;
  color: #B03A4C;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
}

.birthday-decoration-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.birthday-decoration-section ul,
.birthday-decoration-section ol {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.birthday-decoration-section ul li,
.birthday-decoration-section ol li {
  margin-bottom: 10px;
}

.birthday-decoration-section hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 40px 0;
}
