@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #1E293B;           
    --sky-blue: #0EA5E9;       
    --yellow: #F59E0B;         
    
    --soft-blue: #E0F2FE;
    --yellow-light: #FEF3C7;
    --soft-green: #D1FAE5;
    --green: #10B981;
    --soft-red: #FFE4E6;
    --red: #F43F5E;
    
    --bg-light: #F8FAFC;       
    --border-light: #F1F5F9;
}

body {
    font-family: 'Mukta', 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #475569;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', 'Mukta', sans-serif; }
.text-navy { color: var(--navy) !important; }
.text-sky-blue { color: var(--sky-blue) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-green { color: var(--green) !important; }
.text-red { color: var(--red) !important; }

.bg-navy { background-color: var(--navy) !important; }
.bg-sky-blue { background-color: var(--sky-blue) !important; }
.bg-soft-blue { background-color: var(--soft-blue) !important; }
.bg-yellow-light { background-color: var(--yellow-light) !important; }
.bg-soft-green { background-color: var(--soft-green) !important; }
.bg-soft-red { background-color: var(--soft-red) !important; }
.bg-light-gray { background-color: var(--bg-light) !important; }

.max-w-700 { max-width: 700px; }
.line-height-0 { line-height: 0; }

.navbar { transition: all 0.3s ease; }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.nav-link { color: var(--navy) !important; padding: 0.5rem 1rem !important; transition: 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--sky-blue) !important; }

.btn-primary {
    background-color: var(--sky-blue); color: white; border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
    background-color: #0284C7; color: white; transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2) !important;
}
.btn-outline-primary {
    color: var(--sky-blue); border: 2px solid var(--sky-blue);
    background: transparent; transition: all 0.3s;
}
.btn-outline-primary:hover {
    background-color: var(--sky-blue); color: white; transform: translateY(-3px);
}
.btn-yellow {
    background-color: var(--yellow); border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-yellow:hover {
    background-color: #D97706; transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2) !important;
}
.btn-white { border: 2px solid var(--border-light); transition: all 0.3s; }
.btn-white:hover { border-color: var(--sky-blue); color: var(--sky-blue) !important; }

.hero-section { background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%); }
.pulsing-dot {
    width: 8px; height: 8px; border-radius: 50%; display: inline-block;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(14, 165, 233, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.highlight-svg { position: absolute; bottom: -10px; left: 0; width: 100%; z-index: -1; }

.organic-blob {
    width: 100%; 
    max-width: 450px; 
    aspect-ratio: 1 / 1;
    top: 55%; 
    left: 55%;
    transform: translate(-50%, -50%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphBlob 8s ease-in-out infinite alternate-reverse; 
    z-index: 1;
}
.organic-blob-img {
    width: 100%; 
    max-width: 450px; 
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphBlob 8s ease-in-out infinite alternate;
    display: block;
    margin: 0 auto;
}

@keyframes morphBlob {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
}
.drop-shadow-img { filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1)); }

.floating-trust-badge {
    position: absolute; bottom: 10%; left: -5%; z-index: 3;
    animation: float 4s ease-in-out infinite;
}
.icon-circle {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.icon-circle-sm {
    width: 35px; height: 35px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.wave-divider {
    position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0;
}

.playful-card {
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.playful-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.feature-icon {
    width: 70px; height: 70px; border-radius: 20px; 
    display: flex; align-items: center; justify-content: center;
    transform: rotate(-5deg); transition: 0.3s;
}
.playful-card:hover .feature-icon { transform: rotate(0deg) scale(1.1); }

.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #64748B; text-decoration: none; transition: 0.3s;
}
.footer-links a:hover { color: var(--sky-blue); padding-left: 5px; }
.social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: 0.3s;
}
.social-btn:hover { transform: translateY(-4px) scale(1.05); }

.hexagon-clip {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 4px solid white;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    transition: transform 0.4s ease;
}
.hexagon-clip:hover {
    transform: scale(1.05);
}

.pointer-events-none {
    pointer-events: none;
}

@media (min-width: 992px) {
    .mspd-content-wrapper {
        margin-left: -10%;
        margin-top: 5%;    
    }
}

@media (max-width: 991.98px) {
    .mspd-image-wrapper {
        border-radius: 1rem 1rem 0 0;
        overflow: hidden;
    }
    .mspd-image-wrapper img {
        height: 300px !important;
    }
    .mspd-content-wrapper {
        margin-top: -30px;
    }
    .mspd-content-wrapper > div {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
}

.scroll-top-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: var(--sky-blue);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-top-btn:hover {
    background-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important; }

.bg-navy { background-color: #0c1b30 !important; }

.mspd-section {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    border: 5px solid #fff;
    transform: translateZ(0);
}

.mspd-gallery-wrap {
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.img-stack-item {
    border-radius: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 8px solid #fff;
    position: absolute;
    transition: all 0.3s ease;
    z-index: 2;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.img-stack-item:hover {
    transform: translateY(-5px) scale(1.03);
    z-index: 5;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.img-stack-1 { width: 45%; top: 10%; left: 10%; transform: rotate(-5deg); z-index: 4; }
.img-stack-2 { width: 50%; bottom: 10%; right: 10%; transform: rotate(5deg); z-index: 3;}
.img-stack-3 { width: 35%; top: 30%; right: 15%; transform: rotate(-8deg); z-index: 2;}
.img-stack-4 { width: 40%; bottom: 25%; left: 15%; transform: rotate(10deg); z-index: 2;}

.mspd-content-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mspd-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 991.98px) {
    .mspd-gallery-wrap {
        min-height: 350px;
        border-radius: 2rem 2rem 0 0;
    }
    .mspd-content-wrap {
        border-radius: 0 0 2rem 2rem;
    }
    .mspd-section .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .img-stack-item { width: 60%; aspect-ratio: 4/3; }
    .img-stack-1 { top: 5%; left: 5%; }
    .img-stack-2 { bottom: 5%; right: 5%; }
    .img-stack-3, .img-stack-4 { display: none; }
}

.navbar-toggler .close-icon {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .menu-icon {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .close-icon {
    display: inline-block;
}

.form-control::-webkit-input-placeholder { color: #adb5bd !important; }
.form-control::-moz-placeholder          { color: #adb5bd !important; opacity: 1; }
.form-control:-ms-input-placeholder      { color: #adb5bd !important; }
.form-control::placeholder               { color: #adb5bd !important; opacity: 1; }

.form-select {
    color: #adb5bd !important;
}

.form-control:focus,
.form-control:not(:placeholder-shown),
.form-select:focus,
.form-select:valid {
    color: #2b3a4a !important;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .floating-trust-badge {
        left: 5% !important;
        bottom: 5% !important;
        max-width: 90%;
    }
    
    .organic-blob, 
    .organic-blob-img {
        max-width: 100%;
    }
}