/* ---------------------------------------------------
   1. GLOBAL & VARIABLES (Matches Contact Page)
---------------------------------------------------- */
:root {
    --primary-pink: #ff6cab;
    --primary-dark-pink: #d94a92;
    --primary-blue: #4cc9f0;
    --primary-yellow: #ffd166;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --bg-light: #fff9fc; /* Subtle pink tint */
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}

/* Typography Helpers */
.sub-title {
    color: var(--primary-pink);
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ---------------------------------------------------
   2. HEADER SECTION
---------------------------------------------------- */
.page-header {
    height: 75vh;
    min-height: 400px;
    background-image: url('../img/completeparty.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-bottom: 2rem;
    margin-bottom: -70px;
}

.header-overlay {
    position: absolute;
    inset: 0;
    /* Consistent Gradient Overlay */
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.7), rgba(214, 48, 49, 0.3));
    z-index: 1;
}

.header-title {
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave-bottom path {
    fill: var(--bg-light);
}

/* ---------------------------------------------------
   3. ABOUT STORY SECTION
---------------------------------------------------- */
.about-story {
    background-color: var(--bg-light);
}

 .about-story .story-text {
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Image Stack & Blob */
.about-story .image-stack {
    position: relative;
    padding: 20px;
}

.about-story .image-stack img {
    /* Floating animation for the image */
    animation: float-img 4s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-story .blob-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 70%;
    height: 90%;
    background: linear-gradient(135deg, rgba(255, 108, 171, 0.15), rgba(76, 201, 240, 0.15));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: blob-bounce 8s infinite ease-in-out;
}

@keyframes float-img {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes blob-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) translate(10px, 10px) rotate(5deg); }
}

/* ---------------------------------------------------
   4. VALUES SECTION (Cards)
---------------------------------------------------- */
.values-section {
    background-color: #ffffff;
    position: relative;
}

.values-section .value-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect: Card Lifts */
.values-section .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 108, 171, 0.15);
    border-color: transparent;
}

/* Icon Styling */
.values-section .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff0f6, #ffe3ee);
    color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    transition: all 0.4s ease;
}

/* Varying Colors for Cards (Nth-child trick) */
.col-lg-3:nth-child(2) .values-section .icon-box { color: var(--primary-blue); background: #e0f7fa; }
.col-lg-3:nth-child(3) .values-section .icon-box { color: var(--primary-yellow); background: #fffde7; }
.col-lg-3:nth-child(4) .values-section .icon-box { color: #a55eea; background: #f3e5f5; }

.values-section .value-card:hover .icon-box {
    transform: scale(1.1) rotate(10deg);
}

.values-section .value-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* ---------------------------------------------------
   5. DIFFERENCE SECTION
---------------------------------------------------- */
.difference-section {
    background-color: var(--bg-light);
}

.difference-section .bg-circle-shape {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 108, 171, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Custom List Icons */
.difference-section .diff-icon-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* Hover effect on list items */
.difference-section .difference-item:hover .diff-icon-circle {
    background: var(--primary-pink);
    color: #fff;
    transform: rotate(360deg);
}

/* Image Wrapper */
.difference-section .main-diff-img {
    border-radius: 30px 0 30px 0;
    box-shadow: 20px 20px 0px rgba(255, 108, 171, 0.2);
    transition: 0.3s;
}

.difference-section .creative-img-wrapper:hover .main-diff-img {
    box-shadow: 25px 25px 0px var(--primary-blue);
    transform: translate(-5px, -5px);
}

/* Floating Badge */
.difference-section .floating-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: #ffffff;
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    color: var(--text-dark);
    text-align: center;
    border-bottom: 5px solid var(--primary-pink);
   
}

.difference-section .floating-badge span.fs-3 {
    color: var(--primary-pink);
}

/* ---------------------------------------------------
   6. PROCESS SECTION
---------------------------------------------------- */
.process-section {
    background: #fff;
    overflow: hidden;
}

/* Dashed Line */
.process-section .process-line {
    position: absolute;
    top: 50px;
    left: 15%;
    width: 70%;
    height: 3px;
    /* Gradient Dashed Line */
    background-image: linear-gradient(to right, var(--primary-pink) 50%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 25px 3px;
    background-repeat: repeat-x;
    z-index: 0;
    opacity: 0.4;
}

.process-section .step-icon-wrapper {
    position: relative;
    display: inline-block;
    background: #fff;
    padding: 0 20px;
    z-index: 2;
}

.process-section .step-icon {
    width: 110px;
    height: 110px;
    background: #fff;
    border: 2px dashed var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-pink);
    transition: all 0.4s ease;
    margin: 0 auto;
}

.process-section .step-number {
    position: absolute;
    top: 0;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--primary-pink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(255, 108, 171, 0.4);
}

/* Step Colors Variation */
.col-lg-4:nth-child(3) .process-section .step-icon { border-color: var(--primary-blue); color: var(--primary-blue); }
.col-lg-4:nth-child(3) .process-section .step-number { background: var(--primary-blue); }

.col-lg-4:nth-child(4) .process-section .step-icon { border-color: var(--primary-yellow); color: var(--primary-yellow); }
.col-lg-4:nth-child(4) .process-section .step-number { background: var(--primary-yellow); }

/* Hover Effects */
.process-section .process-step:hover .step-icon {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-dark-pink));
    color: #fff;
    border-style: solid;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 108, 171, 0.3);
}

/* Specific hovers for blue/yellow steps */
.col-lg-4:nth-child(3):hover .process-section .step-icon { background: var(--primary-blue); box-shadow: 0 15px 30px rgba(76, 201, 240, 0.3); }
.col-lg-4:nth-child(4):hover .process-section .step-icon { background: var(--primary-yellow); box-shadow: 0 15px 30px rgba(255, 209, 102, 0.3); }

/* ---------------------------------------------------
   7. SHARED COMPONENTS (Whatsapp, Loader)
---------------------------------------------------- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
    transform: scale(1.05) translateY(-5px);
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* Perfect center loader for all devices */
 /* -----------------------------------------
   FIXED — FULL PERFECT CENTER LOADER CODE
------------------------------------------ */

/* Loader Wrapper */
.loader-wrapper {
    position: fixed !important;
    inset: 0 !important;              /* top:0; left:0; right:0; bottom:0 */
    width: 100vw !important;
    height: 100vh !important;         /* full mobile height fix */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    z-index: 999999 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
}

/* Balloon Container */
.loader-balloons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
}

/* Balloons */
.loader-balloons .balloon {
    width: 40px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-pink);
    position: relative;
    animation: anime 1.4s ease-in-out infinite;
    box-shadow: inset -5px -5px 10px rgba(0,0,0,0.1);
}

/* Balloon Colors */
.loader-balloons .balloon:nth-child(2) {
    background: var(--primary-blue);
    animation-delay: 0.25s;
}

.loader-balloons .balloon:nth-child(3) {
    background: var(--primary-yellow);
    animation-delay: 0.5s;
}

/* Balloon String */
.loader-balloons .balloon::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: rgba(0,0,0,0.2);
    transform: translateX(-50%);
}

/* Floating Animation */
@keyframes anime {
    0%, 100% { transform: translateY(4px); }
    50% { transform: translateY(-12px); }
}

/* Hide Loader Animation */
.loader-wrapper.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Prevent Page Move When Loader is Visible */
html, body {
    overflow-x: hidden !important;
}


/* ---------------------------------------------------
   8. RESPONSIVE
---------------------------------------------------- */
@media (max-width: 991px) {
    .page-header { height: 45vh; }
    
    .difference-section { text-align: center; }
    .difference-section .difference-item { flex-direction: column; align-items: center; text-align: center; }
    .difference-section .diff-icon-circle { margin-bottom: 15px; }
    .ms-3 { margin-left: 0 !important; }

    .creative-img-wrapper { margin-bottom: 40px; }
    .difference-section .main-diff-img { width: 100%; }

    /* Process Section Mobile */
    .process-section .step-icon-wrapper { padding: 0; }
    .process-section .process-step { margin-bottom: 40px; }
    .process-section .process-line { display: none; }
}

@media (max-width: 768px) {
    .difference-section .floating-badge { left: 50%; transform: translateX(-50%); bottom: -35px; width: 80%; }
}