                /* ================
                    ABOUT CSS
                ================ */

                 /* ─── Custom Extras ─── */
       /* ===== RESET & BASE ===== */
   
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ===== SECTION ===== */
        .about-section {
            position: relative;
            padding: 80px 0 100px;
            background: #ffffff;
            overflow: hidden;
        }

        /* ===== DOT PATTERN ===== */
        .dot-pattern {
            background-image:
                radial-gradient(circle, rgba(2, 125, 195, 0.04) 1px, transparent 1px);
            background-size: 28px 28px;
        }

        /* ===== FLOATING SHAPES ===== */
        .float-shape {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.3;
            z-index: 0;
        }

        .float-shape--1 {
            width: 280px;
            height: 280px;
            top: -60px;
            right: -40px;
            background: radial-gradient(circle, rgba(2, 125, 195, 0.06), transparent 70%);
            animation: floatShape1 20s ease-in-out infinite alternate;
        }

        .float-shape--2 {
            width: 200px;
            height: 200px;
            bottom: 10%;
            left: -60px;
            background: radial-gradient(circle, rgba(77, 184, 232, 0.05), transparent 70%);
            animation: floatShape2 18s ease-in-out infinite alternate;
        }

        .float-shape--3 {
            width: 160px;
            height: 160px;
            top: 40%;
            right: 10%;
            background: radial-gradient(circle, rgba(2, 125, 195, 0.04), transparent 70%);
            animation: floatShape3 22s ease-in-out infinite alternate;
        }

        .float-shape--4 {
            width: 120px;
            height: 120px;
            bottom: 30%;
            left: 30%;
            background: radial-gradient(circle, rgba(77, 184, 232, 0.04), transparent 70%);
            animation: floatShape4 16s ease-in-out infinite alternate;
        }

        @keyframes floatShape1 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(-40px, 30px) scale(1.1);
            }
        }

        @keyframes floatShape2 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(50px, -30px) scale(1.15);
            }
        }

        @keyframes floatShape3 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(-20px, -40px) scale(1.2);
            }
        }

        @keyframes floatShape4 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(30px, 20px) scale(1.1);
            }
        }

        /* ===== CONTAINER ===== */
        .about-container {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        .about-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .about-badge {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #027DC3;
            background: rgba(2, 125, 195, 0.07);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 16px;
            transition: all 0.4s ease;
        }

        .about-badge i {
            font-size: 0.3rem;
            vertical-align: middle;
            margin-right: 8px;
            color: #027DC3;
        }

        .about-badge:hover {
            background: rgba(2, 125, 195, 0.12);
            transform: translateY(-2px);
        }

        .about-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 900;
            color: #0a1e2f;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .gradient-text {
            background: linear-gradient(135deg, #027DC3 0%, #4db8e8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .gradient-text::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(135deg, #027DC3, #4db8e8);
            border-radius: 4px;
            transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-title:hover .gradient-text::after {
            width: 100%;
        }

        .title-underline {
            width: 64px;
            height: 4px;
            background: linear-gradient(135deg, #027DC3, #4db8e8);
            border-radius: 4px;
            margin: 16px auto 0;
            transition: width 0.6s ease;
        }

        .about-header:hover .title-underline {
            width: 96px;
        }

        /* ===== QUOTE ===== */
        .about-quote {
            /* max-width: 720px; */
            /* margin: 0 auto 56px; */
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-quote.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-quote i {
            font-size: 2rem;
            color: #027DC3;
            opacity: 0.15;
            display: block;
            margin-bottom: 6px;
        }

        .about-quote blockquote {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1rem, 1.6vw, 1.25rem);
            color: #1e293b;
            line-height: 1.8;
            font-weight: 500;
            font-style: italic;
        }

        /* ===== MAIN GRID ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
            margin-top: 65px;
        }

        @media (max-width: 1024px) {
            .about-grid {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        /* ===== LEFT COLUMN ===== */
        .about-profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Profile Image with Rings */
        .profile-wrapper {
            position: relative;
            margin-bottom: 20px;
            
        }

        .profile-ring {
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px solid rgba(2, 125, 195, 0.10);
            animation: ringPulse 3s ease-in-out infinite;
        }

        .profile-ring-2 {
            position: absolute;
            inset: -18px;
            border-radius: 50%;
            border: 2px solid rgba(2, 125, 195, 0.05);
            animation: ringPulse 3s ease-in-out infinite 0.6s;
        }

        @keyframes ringPulse {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.04);
                opacity: 0.2;
            }
            100% {
                transform: scale(1);
                opacity: 0.5;
            }
        }

      .profile-img {
    width: 400px;
    height: 400px;
    border-radius: 0%;
    object-fit: cover;
    /* border: 4px solid #ffffff; */
    box-shadow: 0 20px 60px rgb(1, 1, 2);
    position: relative;
    z-index: 100;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
        .profile-img:hover {
            transform: scale(1.04) rotate(-2deg);
        }

        @media (min-width: 768px) {
            .profile-img {
                width: 390px;
                height: 390px;
            }
        }

        /* Floating Badge */
        .profile-badge {
            position: absolute;
            bottom: -6px;
            right: -6px;
            z-index: 20;
            background: #ffffff;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(2, 125, 195, 0.15);
            border: 2px solid #ffffff;
            animation: badgePulse 2.4s ease-in-out infinite;
        }

        .profile-badge i {
            font-size: 1.6rem;
            color: #027DC3;
        }

        @keyframes badgePulse {
            0% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(2, 125, 195, 0.15);
            }
            50% {
                transform: scale(1.06);
                box-shadow: 0 8px 40px rgba(2, 125, 195, 0.25);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(2, 125, 195, 0.15);
            }
        }

        @media (max-width: 480px) {
            .profile-badge {
                width: 44px;
                height: 44px;
            }
            .profile-badge i {
                font-size: 1.2rem;
            }
            .profile-img {
                width: 250px;
                height: 250px;
            }
                
        }

        .profile-name {
            font-size: 35px;
            font-weight: 900;
            color: #0a1e2f;
            letter-spacing: -0.02em;
            margin-top: 4px;
        }

        .profile-name .gradient-text {
            display: inline;
        }

        .profile-title {
            font-size: 20px;
            font-weight: 600;
            color: #1e293b;
            margin-top: 2px;
        }

        .profile-title span {
            display: block;
            font-size: 15px;
            font-weight: 400;
            color: #64748b;
            margin-top: 2px;
        }

        .profile-credential {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(2, 125, 195, 0.05);
            border: 1px solid rgba(2, 125, 195, 0.08);
            padding: 8px 18px;
            border-radius: 50px;
            margin-top: 14px;
            font-size: 15px;
            font-weight: 600;
            color: #027DC3;
            letter-spacing: 0.03em;
            transition: all 0.4s ease;
            cursor: default;
        }

        .profile-credential:hover {
            background: rgba(2, 125, 195, 0.10);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(2, 125, 195, 0.08);
        }

        .profile-credential i {
            font-size: 0.85rem;
        }

        /* ===== RIGHT COLUMN ===== */
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .content-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #027DC3;
            background: rgba(2, 125, 195, 0.05);
            padding: 6px 16px;
            border-radius: 50px;
            width: fit-content;
            transition: all 0.4s ease;
        }

        .content-badge:hover {
            background: rgba(2, 125, 195, 0.10);
            transform: translateX(4px);
        }

        .content-badge i {
            font-size: 0.5rem;
        }

        .content-heading {
                    font-weight: 800;
            color: #0a1e2f;
            line-height: 1.3;
        }

        .content-heading .gradient-text {
            display: inline;
        }

        .content-text {
            font-size: 20px;
            color: #475569;
            line-height: 1.7;
            font-weight: 400;
        }

        /* ===== INFO CARDS ===== */
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 4px;
        }

        @media (max-width: 480px) {
            .info-grid {
                grid-template-columns: 1fr;
            }
        }

        .info-card {
            background: #bfd0e16b;
            border: 1px solid rgba(2, 125, 195, 0.04);
            border-radius: 16px;
            padding: 20px 18px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            transform: translateY(20px);
        }

        .info-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .info-card:hover {
            transform: translateY(-6px) scale(1.01);
            border-color: rgba(2, 125, 195, 0.12);
            box-shadow: 0 12px 40px rgba(2, 125, 195, 0.06);
            background: #ffffff;
        }

        .info-card .card-icon {
            width: 120px;
            height: 120px;
            border-radius: 12px;
            /* background: rgba(2, 125, 195, 0.06); */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: #027DC3;
            font-size: 1.1rem;
            transition: all 0.4s ease;
        }

        .info-card:hover .card-icon {
            background: rgba(2, 125, 195, 0.12);
            transform: scale(1.05) rotate(-4deg);
        }

        .info-card h5 {
            font-size: 25px;
            font-weight: 800;
            color: #0a1e2f;
            letter-spacing: -0.01em;
        }

        .info-card p {
            font-size: 17px;
            color: #1b232e;
            line-height: 1.6;
            margin-top: 4px;
        }

        .info-card--full {
            grid-column: 1 / -1;
        }

        /* ===== STATS BAR ===== */
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4px;
            background: #f8fafc;
            border: 1px solid rgba(2, 125, 195, 0.04);
            border-radius: 24px;
            padding: 32px 24px;
            margin-top: 56px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .stats-bar.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .stats-bar {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px 0;
                padding: 24px 16px;
            }
        }

        @media (max-width: 480px) {
            .stats-bar {
                grid-template-columns: 1fr 1fr;
                gap: 16px 0;
                padding: 20px 12px;
            }
            
        }

        .stat-item {
            text-align: center;
            padding: 0 8px;
        }

        .stat-item:not(:last-child) {
            border-right: 1px solid rgba(2, 125, 195, 0.05);
        }

        @media (max-width: 768px) {
            .stat-item:nth-child(2) {
                border-right: none;
            }
            .stat-item:nth-child(3) {
                border-right: 1px solid rgba(2, 125, 195, 0.05);
            }
        }

        @media (max-width: 480px) {
            .stat-item:nth-child(2) {
                border-right: none;
            }
            .stat-item:nth-child(3) {
                border-right: none;
            }
        }

        .stat-number {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 900;
            color: #0a1e2f;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .stat-number .suffix {
            font-size: clamp(1.4rem, 2.2vw, 2rem);
            font-weight: 800;
            color: #027DC3;
        }

        .stat-label {
            font-size: clamp(0.65rem, 0.8vw, 0.8rem);
            font-weight: 500;
            color: #94a3b8;
            letter-spacing: 0.02em;
            margin-top: 2px;
        }

        /* ===== ANIMATION CLASSES ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .delay-100 {
            transition-delay: 0.1s;
        }
        .delay-200 {
            transition-delay: 0.2s;
        }
        .delay-300 {
            transition-delay: 0.3s;
        }
        .delay-400 {
            transition-delay: 0.4s;
        }
        .delay-500 {
            transition-delay: 0.5s;
        }
        .delay-600 {
            transition-delay: 0.6s;
        }

        /* ===== RESPONSIVE TWEAKS ===== */
        @media (max-width: 768px) {
            .about-section {
                padding: 60px 0 80px;
            }
            .about-quote {
                margin-bottom: 40px;
            }
            .float-shape--1 {
                width: 160px;
                height: 160px;
                top: -30px;
                right: -20px;
            }
            .float-shape--2 {
                width: 120px;
                height: 120px;
                bottom: 5%;
                left: -30px;
            }
            .float-shape--3 {
                width: 100px;
                height: 100px;
                top: 30%;
                right: 5%;
            }
            .float-shape--4 {
                width: 80px;
                height: 80px;
                bottom: 20%;
                left: 20%;
            }
        }

           /* ================
                    SERVICES CSS
                ================ */

/* ============================================
           CUSTOM UTILITIES & KEYFRAMES
           ============================================ */
        .font-inter {
            font-family: 'Inter', sans-serif;
        }

        .gradient-text {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ---------- Floating Blobs ---------- */
        .blob-1 {
            animation: floatBlob 8s ease-in-out infinite alternate;
        }
        .blob-2 {
            animation: floatBlob 10s ease-in-out infinite alternate-reverse;
        }
        .blob-3 {
            animation: floatBlob 12s ease-in-out infinite alternate;
        }
        @keyframes floatBlob {
            0% {
                transform: translate(0px, 0px) scale(1);
            }
            100% {
                transform: translate(40px, -40px) scale(1.1);
            }
        }

        /* ---------- Service Card ---------- */
        .service-card {
            background: #bfd0e16b;
            border-radius: 32px;
            padding: 32px 36px;
            border: 1px solid rgba(59, 130, 246, 0.06);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
            position: relative;
            overflow: hidden;
            cursor: default;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(139, 92, 246, 0.02));
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        /* Animated left border */
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 0%;
            background: #78581B;
            transition: height 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
            border-radius: 0 4px 4px 0;
        }

        .service-card:hover::after {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-8px) scale(1.01);
            border-color: rgba(59, 130, 246, 0.12);
            box-shadow: 0 24px 64px rgba(59, 130, 246, 0.08);
        }

        /* ---------- Large Icon Wrap ---------- */
        .service-card .icon-wrap {
            width: 126px;
            height:126px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            /* background: rgba(59, 130, 246, 0.06); */
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .service-card:hover .icon-wrap {
            background: rgba(59, 130, 246, 0.12);
            transform: scale(1.05) rotate(-4deg);
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
        }

        .service-card .icon-wrap img {
            width: 156px;
            height: 156px;
            object-fit: contain;
            display: block;
            transition: transform 0.5s ease;
        }

        .service-card:hover .icon-wrap img {
            transform: scale(1.08);
        }

        /* ---------- Card Number ---------- */
        .service-card .card-number {
            position: absolute;
            top: 20px;
            right: 28px;
            font-size: 4rem;
            font-weight: 900;
            color: rgba(59, 130, 246, 0.04);
            letter-spacing: -0.05em;
            line-height: 1;
            transition: all 0.6s ease;
            pointer-events: none;
            font-family: 'Inter', sans-serif;
            user-select: none;
        }

        .service-card:hover .card-number {
            color: rgba(59, 130, 246, 0.08);
            transform: scale(1.1) translateX(-6px);
        }

        /* ---------- Feature Tags ---------- */
        .feature-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #3b82f6;
            background: rgba(59, 130, 246, 0.08);
            padding: 4px 14px;
            border-radius: 50px;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            border: 1px solid rgba(59, 130, 246, 0.06);
            white-space: nowrap;
        }

        .service-card:hover .feature-tag {
            background: rgba(59, 130, 246, 0.14);
            transform: translateY(-1px);
        }

        .feature-tag i {
            font-size: 0.5rem;
        }

        /* ---------- Learn More Link ---------- */
        .learn-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #3b82f6;
            transition: all 0.4s ease;
            position: relative;
        }

        .learn-more::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0%;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transition: width 0.4s ease;
        }

        .learn-more:hover::after {
            width: 100%;
        }

        .learn-more:hover {
            gap: 14px;
            color: #2563eb;
        }

        .learn-more i {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
        }

        .learn-more:hover i {
            transform: translateX(4px);
        }

        /* ---------- Reveal Animations ---------- */
        .reveal-item {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .reveal-item.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-item.delay-100 {
            transition-delay: 0.1s;
        }
        .reveal-item.delay-200 {
            transition-delay: 0.2s;
        }
        .reveal-item.delay-300 {
            transition-delay: 0.3s;
        }
        .reveal-item.delay-400 {
            transition-delay: 0.4s;
        }
        .reveal-item.delay-500 {
            transition-delay: 0.5s;
        }
        .reveal-item.delay-600 {
            transition-delay: 0.6s;
        }

        /* ---------- Decorative Dots ---------- */
        .connect-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #78581B;
            opacity: 0.12;
            animation: dotPulse 2.4s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .connect-dot:hover {
            opacity: 0.6;
            transform: scale(1.4);
        }

        @keyframes dotPulse {
            0%,
            100% {
                opacity: 0.12;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 640px) {
            .service-card {
                padding: 24px 20px;
                border-radius: 24px;
            }
            .service-card .icon-wrap {
                width: 72px;
                height: 72px;
                border-radius: 18px;
            }
            .service-card .icon-wrap img {
                width: 90px;
                height: 90px;
            }
            .service-card .card-number {
                font-size: 2.8rem;
                top: 12px;
                right: 16px;
            }
            .service-card h3 {
                font-size: 1.25rem;
            }
            .service-card .service-desc {
                font-size: 0.9rem;
            }
            .feature-tag {
                font-size: 0.6rem;
                padding: 3px 10px;
                white-space: nowrap;
            }
            .learn-more {
                font-size: 0.8rem;
            }
        }

        @media (min-width: 641px) and (max-width: 1024px) {
            .service-card {
                padding: 28px 32px;
            }
            .service-card .icon-wrap {
                width: 84px;
                height: 84px;
            }
            .service-card .icon-wrap img {
                width: 88px;
                height: 88px;
            }
            .service-card .card-number {
                font-size: 3.4rem;
            }
        }



                   /* ================
                    GALLARY CSS
                ================ */
  body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            overflow-x: hidden;
        }

        /* ============================================
           GALLERY SECTION
           ============================================ */
        .gallery-section {
            padding: 80px 0 100px;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        /* Floating decorative elements */
        .gallery-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.03), transparent 70%);
            pointer-events: none;
            animation: floatBlob 12s ease-in-out infinite alternate;
        }

        .gallery-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.03), transparent 70%);
            pointer-events: none;
            animation: floatBlob 10s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatBlob {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(30px, -30px) scale(1.1);
            }
        }

        /* ============================================
           HEADER
           ============================================ */
        .gallery-header {
            text-align: center;
            margin-bottom: 48px;
            /* position: relative;
            z-index: 2; */
        }
/* 
        .gallery-header .badge {
            display: inline-block;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #3b82f6;
            background: rgba(59, 130, 246, 0.06);
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 12px;
            border: 1px solid rgba(59, 130, 246, 0.08);
            transition: all 0.4s ease;
        } */

        /* .gallery-header .badge:hover {
            background: rgba(59, 130, 246, 0.10);
            transform: translateY(-2px);
        } */

        /* .gallery-header .badge i {
            margin-right: 8px;
            font-size: 0.4rem;
        } */

        /* .gallery-header h2 {
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            font-weight: 900;
            color: #0a1e2f;
            letter-spacing: -0.02em;
            line-height: 1.1;
        } */

        /* .gallery-header h2 .gradient-text {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        } */
/* 
        .gallery-header .underline {
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 4px;
            margin: 14px auto 0;
            transition: width 0.6s ease;
        }

        .gallery-header:hover .underline {
            width: 100px;
        } */

        /* .gallery-header p {
            color: #94a3b8;
            font-size: 0.95rem;
            max-width: 500px;
            margin: 12px auto 0;
        } */

        /* ============================================
           GALLERY GRID
           ============================================ */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
        }

        /* ============================================
           GALLERY ITEM
           ============================================ */
        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1 / 1;
            background: #f8fafc;
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        }

        .gallery-item.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .gallery-item.delay-100 {
            transition-delay: 0.1s;
        }
        .gallery-item.delay-200 {
            transition-delay: 0.2s;
        }
        .gallery-item.delay-300 {
            transition-delay: 0.3s;
        }
        .gallery-item.delay-400 {
            transition-delay: 0.4s;
        }
        .gallery-item.delay-500 {
            transition-delay: 0.5s;
        }
        .gallery-item.delay-600 {
            transition-delay: 0.6s;
        }
        .gallery-item.delay-700 {
            transition-delay: 0.7s;
        }
        .gallery-item.delay-800 {
            transition-delay: 0.8s;
        }

        /* Featured item - spans 2 columns */
        .gallery-item.featured {
            grid-column: span 2;
            aspect-ratio: 2 / 1;
        }

        @media (max-width: 640px) {
            .gallery-item.featured {
                grid-column: span 2;
                aspect-ratio: 1.6 / 1;
            }
        }

        /* ============================================
           IMAGE
           ============================================ */
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: block;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        /* ============================================
           OVERLAY
           ============================================ */
        .gallery-item .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(10, 30, 47, 0.7) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px 24px;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .gallery-item .overlay .icon-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a1e2f;
            font-size: 1.2rem;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .gallery-item:hover .overlay .icon-btn {
            transform: translate(-50%, -50%) scale(1);
        }

        .gallery-item .overlay .icon-btn:hover {
            background: #ffffff;
            transform: translate(-50%, -50%) scale(1.08);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
        }

        .gallery-item .overlay .label {
            color: #ffffff;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.1s;
        }

        .gallery-item:hover .overlay .label {
            opacity: 0.8;
            transform: translateY(0);
        }

        .gallery-item .overlay .title {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.2s;
        }

        .gallery-item:hover .overlay .title {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           DECORATIVE BORDER GLOW (on hover)
           ============================================ */
        .gallery-item::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* ============================================
           LIGHTBOX
           ============================================ */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 30, 47, 0.92);
            backdrop-filter: blur(20px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            padding: 20px;
        }

        .lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-overlay .lightbox-close {
            position: absolute;
            top: 24px;
            right: 28px;
            color: #ffffff;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .lightbox-overlay .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.10);
            transform: rotate(90deg);
        }

        .lightbox-overlay .lightbox-container {
            position: relative;
            max-width: 900px;
            width: 100%;
            max-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: lightboxIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes lightboxIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .lightbox-overlay .lightbox-container img {
            max-width: 100%;
            max-height: 70vh;
            border-radius: 16px;
            object-fit: contain;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
            background: #1a1a2e;
        }

        .lightbox-overlay .lightbox-counter {
            position: absolute;
            bottom: -48px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        /* Navigation buttons */
        .lightbox-overlay .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #ffffff;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-overlay .nav-btn:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-50%) scale(1.05);
        }

        .lightbox-overlay .nav-btn.prev {
            left: -60px;
        }

        .lightbox-overlay .nav-btn.next {
            right: -60px;
        }

        @media (max-width: 768px) {
            .lightbox-overlay .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .lightbox-overlay .nav-btn.prev {
                left: -16px;
            }
            .lightbox-overlay .nav-btn.next {
                right: -16px;
            }
            .lightbox-overlay .lightbox-close {
                top: 12px;
                right: 16px;
                font-size: 1.5rem;
                width: 40px;
                height: 40px;
            }
            .lightbox-overlay .lightbox-container {
                max-height: 70vh;
            }
            .lightbox-overlay .lightbox-container img {
                max-height: 60vh;
            }
        }

        @media (max-width: 480px) {
            .lightbox-overlay .nav-btn {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }
            .lightbox-overlay .nav-btn.prev {
                left: -8px;
            }
            .lightbox-overlay .nav-btn.next {
                right: -8px;
            }
        }

        /* ============================================
           DECORATIVE DOTS
           ============================================ */
        .gallery-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }

        .gallery-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #78581B;
            opacity: 0.08;
            animation: dotPulse 2.4s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .gallery-dots .dot:hover {
            opacity: 0.4;
            transform: scale(1.3);
        }

        .gallery-dots .dot:nth-child(1) {
            animation-delay: 0s;
        }
        .gallery-dots .dot:nth-child(2) {
            animation-delay: 0.3s;
        }
        .gallery-dots .dot:nth-child(3) {
            animation-delay: 0.6s;
        }
        .gallery-dots .dot:nth-child(4) {
            animation-delay: 0.9s;
        }
        .gallery-dots .dot:nth-child(5) {
            animation-delay: 1.2s;
        }
        .gallery-dots .dot:nth-child(6) {
            animation-delay: 1.5s;
        }
        .gallery-dots .dot:nth-child(7) {
            animation-delay: 1.8s;
        }

        @keyframes dotPulse {
            0%,
            100% {
                opacity: 0.08;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.4);
            }
        }

        /* ============================================
           CTA
           ============================================ */
        .gallery-cta {
            text-align: center;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }

        .gallery-cta a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 32px;
            border-radius: 16px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: #ffffff;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.20);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .gallery-cta a:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 48px rgba(59, 130, 246, 0.30);
        }

        .gallery-cta a i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .gallery-cta a:hover i {
            transform: translateX(4px);
        }

        /* ============================================
           RESPONSIVE FINE-TUNE
           ============================================ */
        @media (max-width: 640px) {
            .gallery-section {
                padding: 50px 0 60px;
            }
            .gallery-header {
                margin-bottom: 28px;
            }
            .gallery-header h2 {
                font-size: 1.8rem;
            }
            .gallery-header p {
                font-size: 0.8rem;
            }
            .gallery-item .overlay {
                padding: 12px 14px;
            }
            .gallery-item .overlay .title {
                font-size: 0.75rem;
            }
            .gallery-item .overlay .label {
                font-size: 0.55rem;
            }
            .gallery-item .overlay .icon-btn {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            .gallery-dots {
                gap: 6px;
                margin-top: 24px;
            }
            .gallery-dots .dot {
                width: 8px;
                height: 8px;
            }
            .gallery-cta {
                margin-top: 24px;
            }
            .gallery-cta a {
                padding: 10px 24px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 400px) {
            .gallery-grid {
                gap: 8px;
            }
            .gallery-item {
                border-radius: 12px;
            }
            .gallery-item .overlay .icon-btn {
                width: 32px;
                height: 32px;
                font-size: 0.7rem;
            }
        }


                   /* ================
                    SIP CALCULATAR CSS
                ================ */


        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            overflow-x: hidden;
        }

        /* ============================================
           SIP CALCULATOR SECTION
           ============================================ */
        .sip-section {
            padding: 60px 0 80px;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        /* Floating decorative blobs */
        .sip-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -150px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.04), transparent 70%);
            pointer-events: none;
            animation: floatBlob1 14s ease-in-out infinite alternate;
        }

        .sip-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.04), transparent 70%);
            pointer-events: none;
            animation: floatBlob2 12s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatBlob1 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(-40px, 30px) scale(1.1);
            }
        }

        @keyframes floatBlob2 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(40px, -30px) scale(1.15);
            }
        }

        .float-shape {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.3;
            z-index: 0;
        }

        .float-shape--1 {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 5%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
            animation: floatSmall 8s ease-in-out infinite alternate;
        }

        .float-shape--2 {
            width: 40px;
            height: 40px;
            bottom: 30%;
            right: 8%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
            animation: floatSmall 10s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatSmall {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(20px, -20px) scale(1.2);
            }
        }

        /* ============================================
           CONTAINER
           ============================================ */
        .sip-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* ============================================
           HEADER
           ============================================ */
        .sip-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .sip-header .badge {
            display: inline-block;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #3b82f6;
            background: rgba(59, 130, 246, 0.06);
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 12px;
            border: 1px solid rgba(59, 130, 246, 0.08);
            transition: all 0.4s ease;
        }

        .sip-header .badge:hover {
            background: rgba(59, 130, 246, 0.10);
            transform: translateY(-2px);
        }

        .sip-header .badge i {
            margin-right: 8px;
            font-size: 0.4rem;
        }


        .sip-header h2 .gradient-text {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    

        .sip-header:hover .underline {
            width: 100px;
        }

        /* .sip-header p {
            color: #94a3b8;
            font-size: 0.95rem;
            max-width: 500px;
            margin: 12px auto 0;
        } */

        /* ============================================
           MAIN GRID
           ============================================ */
        .sip-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        @media (max-width: 992px) {
            .sip-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        /* ============================================
           LEFT — CALCULATOR CONTROLS
           ============================================ */
        .sip-controls {
            background: #bfd0e16b;
            border-radius: 28px;
            padding: 28px 24px;
            border: 1px solid rgba(59, 130, 246, 0.04);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .sip-controls::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #78581B;
            background-size: 200% 100%;
            animation: shimmerBar 4s ease-in-out infinite;
        }

        @keyframes shimmerBar {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .sip-controls:hover {
            border-color: rgba(59, 130, 246, 0.10);
            box-shadow: 0 12px 48px rgba(59, 130, 246, 0.06);
            transform: translateY(-2px);
        }

        /* ---------- Control Group ---------- */
        .control-group {
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .control-group:nth-child(1) {
            animation-delay: 0.1s;
        }
        .control-group:nth-child(2) {
            animation-delay: 0.2s;
        }
        .control-group:nth-child(3) {
            animation-delay: 0.3s;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .control-group .control-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .control-group .control-label label {
            font-size: 18px;
            font-weight: 600;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .control-group .control-label label i {
            color: #78581B;
            font-size: 15px;
            width: 20px;
        }

        .control-group .control-label .value-display {
            font-size:15px;
            font-weight: 800;
            color: #0a1e2f;
            background: #ffffff;
            padding: 2px 14px;
            border-radius: 8px;
            border: 1px solid rgba(59, 130, 246, 0.08);
            min-width: 70px;
            text-align: center;
            transition: all 0.3s ease;
        }

        /* ---------- Custom Range Slider ---------- */
        .slider-track-custom {
            position: relative;
            width: 100%;
            height: 6px;
            background: rgba(59, 130, 246, 0.10);
            border-radius: 4px;
            cursor: pointer;
            margin-top: 25px;
        }

        .slider-track-custom .slider-fill {
            height: 100%;
            border-radius: 4px;
            background:#78581B;
            width: 0%;
            transition: width 0.1s ease;
            position: relative;
        }

        .slider-track-custom input[type="range"] {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            -webkit-appearance: none;
            appearance: none;
            background: transparent;
            cursor: pointer;
            z-index: 3;
            margin: 0;
        }

        .slider-track-custom input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #ffffff;
            border: 3px solid #78581B;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.20);
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            z-index: 4;
        }

        .slider-track-custom input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.12);
            border-color: #78581B;
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.30);
        }

        .slider-track-custom input[type="range"]::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #ffffff;
            border: 3px solid #78581B;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.20);
            cursor: pointer;
        }

        .slider-track-custom input[type="range"]::-moz-range-track {
            height: 6px;
            background: transparent;
            border: none;
        }

        .slider-track-custom input[type="range"]::-moz-range-progress {
            height: 6px;
            background:#78581B;
            border-radius: 4px;
        }

        .slider-track-custom .range-labels {
            display: flex;
            justify-content: space-between;
            font-size: 20px;
            color: #94a3b8;
            margin-top: 4px;
        }

        /* ---------- Results Display ---------- */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 4px;
            opacity: 0;
            animation: fadeUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s;
        }

        @media (max-width: 480px) {
            .results-grid {
                grid-template-columns: 1fr 1fr;
            }
            .results-grid .result-card:last-child {
                grid-column: span 2;
            }
        }

        .result-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 14px 10px;
            text-align: center;
            border: 1px solid rgba(59, 130, 246, 0.06);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .result-card:hover {
            transform: translateY(-4px);
            border-color: rgba(59, 130, 246, 0.12);
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.06);
        }

        .result-card .result-number {
            font-size: 1.2rem;
            font-weight: 900;
            color: #0a1e2f;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .result-card .result-label {
            font-size: 0.65rem;
            font-weight: 500;
            color: #94a3b8;
            letter-spacing: 0.03em;
            margin-top: 2px;
        }

        .result-card .result-icon {
            font-size: 0.9rem;
            margin-bottom: 2px;
            display: block;
        }

        .result-card--invested .result-icon {
            color: #78581B;
        }
        .result-card--returns .result-icon {
            color: #78581B;
        }
        .result-card--total .result-icon {
            color: #78581B;
        }

        .result-card--invested {
            border-left: 3px solid #78581B;
        }
        .result-card--returns {
            border-left: 3px solid #78581B;
        }
        .result-card--total {
            border-left: 3px solid #78581B;
        }

        /* ============================================
           RIGHT — CHARTS
           ============================================ */
        .sip-charts {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .chart-card {
            background: #bfd0e16b;
            border-radius: 24px;
            padding: 20px 20px 16px;
            border: 1px solid rgba(59, 130, 246, 0.04);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .chart-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        .chart-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .chart-card:hover {
            border-color: rgba(59, 130, 246, 0.08);
            box-shadow: 0 12px 48px rgba(59, 130, 246, 0.04);
            transform: translateY(-2px);
        }

        .chart-card .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .chart-card .chart-header h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #1e293b;
        }

        .chart-card .chart-header h4 i {
            color: #78581B;
            margin-right: 8px;
        }

        .chart-card .chart-header .chart-badge {
            font-size: 0.55rem;
            font-weight: 600;
            color: #78581B;
            background: rgba(59, 130, 246, 0.06);
            padding: 3px 12px;
            border-radius: 50px;
        }

        .chart-card .chart-wrapper {
            position: relative;
            height: 220px;
        }

        .chart-card .chart-wrapper canvas {
            width: 100% !important;
            height: 100% !important;
        }

        /* Pie chart specific sizing */
        .chart-card.pie-chart .chart-wrapper {
            height: 200px;
            max-width: 280px;
            margin: 0 auto;
        }

        @media (max-width: 992px) {
            .chart-card.pie-chart .chart-wrapper {
                max-width: 240px;
            }
        }

        @media (max-width: 480px) {
            .chart-card .chart-wrapper {
                height: 160px;
            }
            .chart-card.pie-chart .chart-wrapper {
                height: 160px;
                max-width: 200px;
            }
        }

        /* ============================================
           DECORATIVE ELEMENTS
           ============================================ */
        .sip-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
        }

        .sip-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #78581B;
            opacity: 0.08;
            animation: dotPulse 2.4s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .sip-dots .dot:hover {
            opacity: 0.4;
            transform: scale(1.3);
        }

        .sip-dots .dot:nth-child(1) {
            animation-delay: 0s;
        }
        .sip-dots .dot:nth-child(2) {
            animation-delay: 0.3s;
        }
        .sip-dots .dot:nth-child(3) {
            animation-delay: 0.6s;
        }
        .sip-dots .dot:nth-child(4) {
            animation-delay: 0.9s;
        }
        .sip-dots .dot:nth-child(5) {
            animation-delay: 1.2s;
        }

        @keyframes dotPulse {
            0%,
            100% {
                opacity: 0.08;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.4);
            }
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 768px) {
            .sip-section {
                padding: 40px 0 60px;
            }

            .sip-controls {
                padding: 20px 16px;
                border-radius: 20px;
            }

            .control-group {
                margin-bottom: 16px;
            }

            .control-group .control-label label {
                font-size: 0.75rem;
            }

            .control-group .control-label .value-display {
                font-size: 0.8rem;
                min-width: 60px;
                padding: 2px 10px;
            }

            .results-grid {
                gap: 8px;
            }

            .result-card {
                padding: 10px 8px;
                border-radius: 12px;
            }

            .result-card .result-number {
                font-size: 1rem;
            }

            .chart-card {
                padding: 16px 14px 12px;
                border-radius: 18px;
            }

            .chart-card .chart-header h4 {
                font-size: 0.75rem;
            }

            .sip-header h2 {
                font-size: 1.8rem;
            }

            .sip-header p {
                font-size: 0.8rem;
            }

            .sip-dots {
                gap: 6px;
                margin-top: 24px;
            }

            .sip-dots .dot {
                width: 8px;
                height: 8px;
            }
        }

        @media (max-width: 480px) {
            .sip-section {
                padding: 30px 0 40px;
            }

            .sip-container {
                padding: 0 14px;
            }

            .sip-controls {
                padding: 16px 12px;
                border-radius: 16px;
            }

            .control-group .control-label .value-display {
                font-size: 0.7rem;
                min-width: 50px;
                padding: 2px 8px;
            }

            .result-card .result-number {
                font-size: 0.85rem;
            }

            .result-card .result-label {
                font-size: 0.55rem;
            }

            .chart-card .chart-wrapper {
                height: 140px;
            }
            .chart-card.pie-chart .chart-wrapper {
                height: 140px;
                max-width: 160px;
            }
        }

        /* ============================================
           SCROLLBAR
           ============================================ */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        ::-webkit-scrollbar-thumb {
            background: #78581B;
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #78581B;
        }



                   /* ================
                    CONTACT US CSS
                ================ */

                        
        .font-inter {
            font-family: 'Inter', sans-serif;
        }

        .gradient-text {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-bg {
            background:#78581B;
        }

        .gradient-border {
            position: relative;
            background: #ffffff;
            border-radius: 24px;
            border: 1px solid transparent;
            background-clip: padding-box;
        }

        /* ---------- Floating Blobs ---------- */
        .blob-1 {
            animation: floatBlob 10s ease-in-out infinite alternate;
        }
        .blob-2 {
            animation: floatBlob 12s ease-in-out infinite alternate-reverse;
        }
        .blob-3 {
            animation: floatBlob 8s ease-in-out infinite alternate;
        }
        .blob-4 {
            animation: floatBlob 14s ease-in-out infinite alternate-reverse;
        }

        @keyframes floatBlob {
            0% {
                transform: translate(0px, 0px) scale(1);
            }
            100% {
                transform: translate(30px, -30px) scale(1.1);
            }
        }

        /* ---------- Contact Card Hover ---------- */
        .contact-card {
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(59, 130, 246, 0.06);
            background: #bfd0e16b;
        }

        .contact-card:hover {
            transform: translateY(-6px) scale(1.02);
            border-color: rgba(59, 130, 246, 0.12);
            box-shadow: 0 16px 48px rgba(59, 130, 246, 0.08);
        }

        .contact-card .icon-wrap {
            transition: all 0.4s ease;
        }

        .contact-card:hover .icon-wrap {
            transform: scale(1.05) rotate(-4deg);
            background: rgba(59, 130, 246, 0.12);
        }

        /* ---------- Form Inputs ---------- */
        .form-input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid rgba(59, 130, 246, 0.06);
            border-radius: 14px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.4s ease;
            background: #f8fafc;
            color: #0a1e2f;
            outline: none;
        }

        .form-input:focus {
            border-color: #3b82f6;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.06);
        }

        .form-input::placeholder {
            color: #94a3b8;
        }

        .form-input.error {
            border-color: #ef4444;
            background: #fef2f2;
        }

        .form-textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid rgba(59, 130, 246, 0.06);
            border-radius: 14px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.4s ease;
            background: #f8fafc;
            color: #0a1e2f;
            outline: none;
            resize: vertical;
            min-height: 120px;
        }

        .form-textarea:focus {
            border-color: #3b82f6;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.06);
        }

        .form-textarea::placeholder {
            color: #94a3b8;
        }

        /* ---------- Submit Button ---------- */
        .submit-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            border-radius: 16px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: #ffffff;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.20);
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .submit-btn:hover::before {
            opacity: 1;
        }

        .submit-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 48px rgba(59, 130, 246, 0.30);
        }

        .submit-btn:active {
            transform: translateY(0) scale(0.98);
        }

        .submit-btn span,
        .submit-btn i {
            position: relative;
            z-index: 1;
        }

        /* ---------- WhatsApp Button ---------- */
        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 28px;
            border-radius: 16px;
            background: #25D366;
            color: #ffffff;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
            font-family: 'Inter', sans-serif;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 48px rgba(37, 211, 102, 0.35);
            color: #ffffff;
        }

        .whatsapp-btn:active {
            transform: translateY(0) scale(0.98);
        }

        .whatsapp-btn i {
            font-size: 1.4rem;
        }

        /* ---------- Decorative Dots ---------- */
        .contact-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
        }

        .contact-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #00112C;
            opacity: 0.08;
            animation: dotPulse 2.4s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .contact-dots .dot:hover {
            opacity: 0.4;
            transform: scale(1.3);
        }

        .contact-dots .dot:nth-child(1) {
            animation-delay: 0s;
        }
        .contact-dots .dot:nth-child(2) {
            animation-delay: 0.3s;
        }
        .contact-dots .dot:nth-child(3) {
            animation-delay: 0.6s;
        }
        .contact-dots .dot:nth-child(4) {
            animation-delay: 0.9s;
        }
        .contact-dots .dot:nth-child(5) {
            animation-delay: 1.2s;
        }
        .contact-dots .dot:nth-child(6) {
            animation-delay: 1.5s;
        }

        @keyframes dotPulse {
            0%,
            100% {
                opacity: 0.08;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.4);
            }
        }

        /* ---------- Reveal Animations ---------- */
        .reveal-item {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .reveal-item.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-item.delay-100 {
            transition-delay: 0.1s;
        }
        .reveal-item.delay-200 {
            transition-delay: 0.2s;
        }
        .reveal-item.delay-300 {
            transition-delay: 0.3s;
        }
        .reveal-item.delay-400 {
            transition-delay: 0.4s;
        }
        .reveal-item.delay-500 {
            transition-delay: 0.5s;
        }

        /* ---------- Success Toast ---------- */
        .toast-message {
            position: fixed;
            top: 30px;
            right: 30px;
            padding: 16px 24px;
            border-radius: 16px;
            background: #ffffff;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
            border-left: 5px solid #10b981;
            z-index: 9999;
            display: flex;
            align-items: center;
            gap: 14px;
            transform: translateX(120%);
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            max-width: 400px;
            font-family: 'Inter', sans-serif;
        }

        .toast-message.show {
            transform: translateX(0);
        }

        .toast-message .toast-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #10b981;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .toast-message .toast-content h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #0a1e2f;
        }

        .toast-message .toast-content p {
            font-size: 0.8rem;
            color: #64748b;
            margin: 0;
        }

        .toast-message .toast-close {
            background: none;
            border: none;
            color: #94a3b8;
            cursor: pointer;
            font-size: 1.2rem;
            padding: 0 4px;
            transition: color 0.3s ease;
        }

        .toast-message .toast-close:hover {
            color: #475569;
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 640px) {
            .form-input,
            .form-textarea {
                padding: 12px 14px;
                font-size: 0.85rem;
                border-radius: 12px;
            }

            .submit-btn {
                padding: 12px 28px;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }

            .whatsapp-btn {
                padding: 12px 20px;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }

            .toast-message {
                top: 16px;
                right: 16px;
                left: 16px;
                max-width: none;
                padding: 14px 18px;
            }

            .contact-dots {
                gap: 6px;
                margin-top: 24px;
            }

            .contact-dots .dot {
                width: 8px;
                height: 8px;
            }
        }

        @media (max-width: 480px) {
            .form-input,
            .form-textarea {
                padding: 10px 12px;
                font-size: 0.8rem;
                border-radius: 10px;
            }
        }

        /* ============================================
           SCROLLBAR
           ============================================ */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #3b82f6;
        }