﻿
        /* ========== RESET ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            color: #0f172a;
        }

        /* ========== GLOBAL ========== */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        /* ========== HEADER ========== */
        .main-header {
            background: #ffffff;
            border-bottom: 1px solid #eef2f7;
            height: auto;
            display: flex;
            align-items: center;
        }

        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 120px;
        }

        .menu a {
            margin: 0 18px;
            text-decoration: none;
            color: #0b3f62;
            font-weight: 600;
            font-size: 17px;
        }

            .menu a:hover {
                color: #d5b46c;
            }

        .header-actions {
            display: flex;
            align-items: center;
        }

        .phone {
            margin-right: 20px;
            color: #475569;
            font-size: 14px;
        }

        /* Primary Button */
        .btn-primary {
            background: #0b3f62;
            color: white;
            padding: 10px 22px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

            .btn-primary:hover {
                background: #d5b46c;
                color: #0b3f62;
            }

        /* ========== HERO ========== */
        .hero {
            background: #f8fafc;
            padding: 90px 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 54px;
            color: #0b3f62;
            line-height: 1.2;
            font-weight: 700;
        }

            .hero-text h1 span {
                color: #d5b46c;
            }

        .hero-text p {
            margin-top: 22px;
            font-size: 18px;
            color: #475569;
            line-height: 1.6;
        }

        .hero-btns {
            margin-top: 30px;
        }

        /* Gold Button */
        .btn-gold {
            background: #d5b46c;
            color: #0b3f62;
            padding: 14px 28px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            margin-right: 15px;
            display: inline-block;
            transition: 0.3s;
        }

            .btn-gold:hover {
                background: #0b3f62;
                color: white;
            }

        /* Outline Button */
        .btn-outline {
            border: 2px solid #0b3f62;
            color: #0b3f62;
            padding: 12px 26px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

            .btn-outline:hover {
                background: #0b3f62;
                color: white;
            }

        .hero-image img {
            width: 100%;
        }

        .hero-v2 {
            padding: 100px 0;
            background: linear-gradient( 135deg, #f8fafc 0%, #eef2f7 100% );
            position: relative;
        }

        .hero-v2-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-v2-text h1 {
            font-size: 60px;
            line-height: 1.15;
            color: #061a3f;
            font-weight: 700;
        }

            .hero-v2-text h1 span {
                color: #d5b46c;
            }

        .hero-v2-text p {
            margin-top: 24px;
            font-size: 18px;
            color: #475569;
            line-height: 1.7;
            max-width: 520px;
        }

        .hero-accent {
            width: 90px;
            height: 5px;
            background: #d5b46c;
            border-radius: 6px;
            margin: 24px 0;
        }

        .hero-v2-buttons {
            margin-top: 35px;
        }

        .btn-gold {
            background: #d5b46c;
            color: #061a3f;
            padding: 15px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            margin-right: 18px;
            display: inline-block;
            box-shadow: 0 12px 24px rgba(213,180,108,0.25);
            transition: all .3s ease;
        }

            .btn-gold:hover {
                transform: translateY(-2px);
                background: #061a3f;
                color: white;
            }

        .btn-outline {
            border: 2px solid #061a3f;
            color: #061a3f;
            padding: 13px 30px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all .3s ease;
        }

            .btn-outline:hover {
                background: #061a3f;
                color: white;
            }

        .hero-v2-image {
            position: relative;
        }

            .hero-v2-image img {
                width: 100%;
                border-radius: 22px;
                position: relative;
                z-index: 2;
            }

            /* Shadow Layer Behind */
            .hero-v2-image::before {
                content: "";
                position: absolute;
                width: 95%;
                height: 95%;
                background: #061a3f;
                opacity: 0.05;
                border-radius: 22px;
                top: 25px;
                left: 25px;
                z-index: 1;
            }

            .hero-v2-image img {
                animation: heroFloat 6s ease-in-out infinite;
            }

        @keyframes heroFloat {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-12px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* ========== RESPONSIVE ========== */
        @media(max-width:992px) {

            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .menu {
                display: none;
            }
        }

        @media(max-width:992px) {

            .hero-v2-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-v2-text p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-v2-buttons {
                justify-content: center;
            }
        }

        .tagline-rotator {
            margin-top: 18px;
            font-size: 25px;
            color: #061a3f;
            font-weight: 600;
            height: 32px;
            overflow: hidden;
            position: relative;
        }

        #taglineText {
            position: absolute;
            left: 0;
            top: 0;
            transition: transform .6s ease, opacity .6s ease;
        }



        /* ================= WHY SECTION ================= */

        .why-section {
            background: #f1f5f9;
            padding: 80px 0;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 620px 1fr;
            gap: 40px;
            align-items: stretch;
        }

        /* LEFT CARD */
        .why-card {
            background: #ffffff;
            padding: 40px;
            border-radius: 22px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        }

            .why-card h2 {
                color: #061a3f;
                font-size: 34px;
                margin-bottom: 20px;
            }

            .why-card p {
                color: #475569;
                font-size: 16px;
                line-height: 1.7;
                margin-bottom: 18px;
            }

            .why-card .highlight {
                color: #061a3f;
                font-weight: 700;
            }

        /* RIGHT IMAGE */
        .why-image {
            border-radius: 22px;
            overflow: hidden;
            height: 100%;
        }

            .why-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

        .why-card {
            transition: 0.3s;
        }

            .why-card:hover {
                transform: translateY(-5px);
            }

        @media(max-width:992px) {

            .why-grid {
                grid-template-columns: 1fr;
            }

            .why-card {
                order: 2;
            }

            .why-image {
                order: 1;
                height: 320px;
            }
        }

        .sbn-growth-timeline-section {
            padding: 110px 0;
            background: #f8fafc;
        }

        .growth-top-content {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 70px;
        }

        .growth-main-heading {
            font-size: 44px;
            color: #061a3f;
            margin-bottom: 18px;
            font-weight: 700;
        }

        .growth-subtext {
            font-size: 20px;
            color: #d5b46c;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .growth-description {
            font-size: 18px;
            color: #475569;
            line-height: 1.7;
        }

        .timeline-wrapper {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .timeline-line {
            position: absolute;
            top: 40px;
            left: 5%;
            width: 90%;
            height: 3px;
            background: #e2e8f0;
            z-index: 0;
        }

        .timeline-item {
            position: relative;
            text-align: center;
            z-index: 2;
        }

        .timeline-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: #061a3f;
            color: #d5b46c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 15px 35px rgba(6,26,63,0.25);
        }

        .timeline-card {
            background: #ffffff;
            padding: 28px;
            border-radius: 18px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: .3s;
        }

            .timeline-card h3 {
                font-size: 20px;
                color: #061a3f;
                margin-bottom: 10px;
            }

            .timeline-card p {
                font-size: 15px;
                color: #475569;
            }

        .timeline-item:hover .timeline-card {
            transform: translateY(-8px);
        }

        @media(max-width:1100px) {
            .timeline-wrapper {
                grid-template-columns: repeat(2,1fr);
            }

            .timeline-line {
                display: none;
            }
        }

        @media(max-width:600px) {
            .timeline-wrapper {
                grid-template-columns: 1fr;
            }
        }
        /* =====================================================
   SBN ULTRA SLIDER - FULL CSS
   Features:
   - Multi Card Responsive
   - Image + Video Support
   - Overlay Text
   - Smooth Animation
   - Performance Optimized
===================================================== */


        /* ================= SECTION BASE ================= */

        .sbn-ultra-slider {
            padding: 100px 0;
            background: #f1f5f9;
        }


        /* ================= WRAPPER ================= */

        .ultra-slider-wrapper {
            overflow: hidden;
            position: relative;
        }


        /* ================= TRACK ================= */

        .ultra-slider-track {
            display: flex;
            gap: 25px;
            transition: transform .5s ease;
            will-change: transform;
        }


        /* ================= SLIDE CARD ================= */

        .ultra-slide {
            min-width: 33.33%;
            position: relative;
            flex-shrink: 0;
        }


            /* ================= MEDIA ================= */

            .ultra-slide img,
            .ultra-slide video {
                width: 100%;
                height: 380px;
                object-fit: cover;
                border-radius: 24px;
                display: block;
            }


        /* ================= OVERLAY ================= */

        .ultra-overlay {
            position: absolute;
            bottom: 25px;
            left: 25px;
            right: 25px;
            color: white;
            z-index: 2;
        }


        /* Optional Gradient Overlay for Better Text Visibility */
        .ultra-slide::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 45%;
            background: linear-gradient( to top, rgba(6,26,63,0.85), rgba(6,26,63,0.0) );
            border-radius: 0 0 24px 24px;
        }


        /* ================= TEXT ================= */

        .ultra-overlay h3 {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
        }


        /* ================= HOVER EFFECT ================= */

        .ultra-slide:hover img,
        .ultra-slide:hover video {
            transform: scale(1.04);
        }

        .ultra-slide img,
        .ultra-slide video {
            transition: transform .6s ease;
        }


        /* ================= DESKTOP ================= */

        @media(max-width:1200px) {
            .ultra-slide {
                min-width: 33.33%;
            }
        }


        /* ================= TABLET ================= */

        @media(max-width:992px) {
            .ultra-slide {
                min-width: 50%;
            }

                .ultra-slide img,
                .ultra-slide video {
                    height: 340px;
                }
        }


        /* ================= MOBILE ================= */

        @media(max-width:600px) {
            .ultra-slide {
                min-width: 100%;
            }

                .ultra-slide img,
                .ultra-slide video {
                    height: 280px;
                    border-radius: 18px;
                }

            .ultra-overlay h3 {
                font-size: 20px;
            }
        }


        /* ================= PERFORMANCE HELPERS ================= */

        .ultra-slider-track,
        .ultra-slide img,
        .ultra-slide video {
            backface-visibility: hidden;
            transform: translateZ(0);
        }


            /* ================= OPTIONAL SCROLL PARALLAX SAFE ================= */

            .ultra-slider-track.parallax {
                transition: transform .2s linear;
            }

        .ultra-overlay {
            backdrop-filter: blur(6px);
            padding: 12px 18px;
            border-radius: 10px;
        }

        .ultra-section-header {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 60px;
        }

        /* Main Heading */
        .ultra-main-heading {
            font-size: 44px;
            color: #061a3f;
            font-weight: 700;
            margin-bottom: 18px;
        }

        /* Gold Sub Heading */
        .ultra-sub-heading {
            font-size: 22px;
            color: #d5b46c;
            font-weight: 600;
            margin-bottom: 18px;
        }

        /* Description */
        .ultra-description {
            font-size: 18px;
            color: #475569;
            line-height: 1.7;
        }

        .ultra-main-heading::after {
            content: "";
            display: block;
            width: 90px;
            height: 4px;
            background: #d5b46c;
            margin: 20px auto 0;
            border-radius: 4px;
        }

        /* =====================================================
   SBN GROWTH & DIGITAL SUPPORT SECTION
===================================================== */

        .sbn-growth-support-section {
            padding: 110px 0;
            background: #ffffff;
        }

        /* HEADER */

        .growth-support-header {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 70px;
        }

            .growth-support-header h2 {
                font-size: 42px;
                color: #061a3f;
                margin-bottom: 18px;
                font-weight: 700;
            }

            .growth-support-header p {
                font-size: 18px;
                color: #475569;
                line-height: 1.7;
            }

        /* GRID */

        .growth-support-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* CARD BASE */

        .support-card {
            background: #f8fafc;
            padding: 35px;
            border-radius: 20px;
            transition: all .45s cubic-bezier(.2,.8,.2,1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

            /* HOVER GLOW LAYER */

            .support-card::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient( 135deg, rgba(213,180,108,0.18), rgba(6,26,63,0.06) );
                opacity: 0;
                transition: .45s;
            }

            /* GOLD TOP BORDER EFFECT */

            .support-card::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 0%;
                height: 4px;
                background: #d5b46c;
                transition: .45s;
            }

            /* HOVER EXPAND */

            .support-card:hover {
                transform: translateY(-14px) scale(1.03);
                box-shadow: 0 30px 70px rgba(6,26,63,0.15);
            }

                .support-card:hover::before {
                    opacity: 1;
                }

                .support-card:hover::after {
                    width: 100%;
                }

        /* ICON */

        .support-icon {
            font-size: 36px;
            margin-bottom: 18px;
            transition: transform .45s ease;
        }

        .support-card:hover .support-icon {
            transform: scale(1.25) rotate(5deg);
        }

        /* TEXT */

        .support-card h3 {
            color: #061a3f;
            margin-bottom: 12px;
            font-size: 20px;
            transition: .3s;
        }

        .support-card p {
            color: #475569;
            line-height: 1.6;
            font-size: 15px;
            transition: .3s;
        }

        .support-card:hover p {
            color: #334155;
        }

        /* MOBILE SAFE */

        @media(hover:none) {
            .support-card:hover {
                transform: none;
                box-shadow: none;
            }
        }

        /* RESPONSIVE */

        @media(max-width:992px) {
            .growth-support-grid {
                grid-template-columns: repeat(2,1fr);
            }
        }

        @media(max-width:600px) {
            .growth-support-grid {
                grid-template-columns: 1fr;
            }
        }

        .ecosystem-premium-section {
            padding: 120px 0;
            background: linear-gradient( 180deg, #ffffff 0%, #f8fafc 100% );
        }

        .eco-premium-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

            .eco-premium-header h2 {
                font-size: 46px;
                color: #061a3f;
                margin-bottom: 20px;
            }

            .eco-premium-header p {
                font-size: 22px;
                color: #d5b46c;
                font-weight: 600;
            }

        .eco-premium-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .eco-premium-panel {
            background: white;
            padding: 45px;
            border-radius: 28px;
            box-shadow: 0 30px 70px rgba(6,26,63,0.08);
            transition: .4s;
        }

            .eco-premium-panel:hover {
                transform: translateY(-12px);
                box-shadow: 0 50px 90px rgba(6,26,63,0.15);
            }

        .highlight-panel {
            background: linear-gradient( 180deg, #ffffff 0%, rgba(213,180,108,0.08) 100% );
        }

        .eco-panel-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 30px;
        }

        .eco-panel-icon {
            width: 60px;
            height: 60px;
            background: #061a3f;
            color: #d5b46c;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
        }

        .eco-panel-header h3 {
            font-size: 26px;
            color: #061a3f;
        }

        .eco-feature {
            display: flex;
            gap: 14px;
            margin-bottom: 16px;
            font-size: 17px;
            color: #475569;
        }

            .eco-feature span {
                color: #d5b46c;
                font-weight: bold;
            }

        @media(max-width:900px) {
            .eco-premium-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ================= OPPORTUNITY SECTION ================= */

        .sbn-opportunity-section {
            padding: 120px 0;
            background: #ffffff;
        }

        /* GRID */

        .opportunity-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* LEFT TEXT */

        .opportunity-content h2 {
            font-size: 46px;
            color: #061a3f;
            margin-bottom: 20px;
        }

        .opportunity-desc {
            font-size: 18px;
            color: #475569;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        /* TAG GRID */

        .opportunity-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        /* TAG STYLE */

        .opp-tag {
            background: #f8fafc;
            padding: 12px 22px;
            border-radius: 40px;
            font-weight: 600;
            color: #061a3f;
            border: 1px solid #e2e8f0;
            transition: .3s;
        }

            .opp-tag:hover {
                background: #061a3f;
                color: #d5b46c;
            }

        /* IMAGE */

        .opportunity-image img {
            width: 100%;
            border-radius: 28px;
            box-shadow: 0 30px 80px rgba(6,26,63,0.15);
        }

        /* QUOTE */

        .opportunity-quote {
            margin-top: 80px;
            text-align: center;
        }

            .opportunity-quote h3 {
                font-size: 30px;
                color: #061a3f;
                max-width: 700px;
                margin: auto;
            }

        @media(max-width:992px) {

            .opportunity-grid {
                grid-template-columns: 1fr;
            }

            .opportunity-content {
                text-align: center;
            }

            .opportunity-tags {
                justify-content: center;
            }
        }
        /* =====================================================
   BUDDY ENTERPRISES SECTION
===================================================== */

        .buddy-enterprises-section {
            padding: 110px 0;
            background: #f8fafc;
        }

        /* HEADER */

        .buddy-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 70px;
        }

            .buddy-header h2 {
                font-size: 40px;
                color: #061a3f;
                margin-bottom: 18px;
                font-weight: 700;
            }

            .buddy-header p {
                font-size: 18px;
                color: #475569;
                line-height: 1.7;
            }

        /* GRID */

        .buddy-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 30px;
        }

        /* CARD */

        .buddy-card {
            background: #ffffff;
            padding: 32px;
            border-radius: 18px;
            transition: .35s;
            box-shadow: 0 12px 35px rgba(0,0,0,0.05);
        }

            .buddy-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 30px 60px rgba(6,26,63,0.12);
            }

        /* ICON */

        .buddy-icon {
            font-size: 34px;
            margin-bottom: 18px;
        }

        /* TEXT */

        .buddy-card h3 {
            color: #061a3f;
            margin-bottom: 12px;
            font-size: 20px;
        }

        .buddy-card p {
            color: #475569;
            font-size: 15px;
            line-height: 1.6;
        }

        /* RESPONSIVE */

        @media(max-width:992px) {
            .buddy-grid {
                grid-template-columns: repeat(2,1fr);
            }
        }

        @media(max-width:600px) {
            .buddy-grid {
                grid-template-columns: 1fr;
            }
        }

        /*.sbn-final-close {
            padding: 120px 0;
            text-align: center;
            background: linear-gradient( 180deg, #ffffff 0%, #f8fafc 100% );
        }

            .sbn-final-close h2 {
                font-size: 48px;
                color: #061a3f;
                max-width: 900px;
                margin: 0 auto 30px;
            }

        .close-sub {
            font-size: 22px;
            color: #475569;
            max-width: 700px;
            margin: 0 auto 20px;
        }

        .close-mini {
            font-size: 18px;
            color: #94a3b8;
        }

        .sbn-final-cta {
            padding: 100px 0;
            text-align: center;
            background: #0e6388;
            color: white;
        }

            .sbn-final-cta h2 {
                font-size: 44px;
                margin-bottom: 20px;
            }

            .sbn-final-cta p {
                font-size: 20px;
                margin-bottom: 40px;
                opacity: 0.9;
            }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* PRIMARY BUTTON */

        /*.cta-primary {
            background: #d5b46c;
            color: #061a3f;
            padding: 18px 40px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
        }*/

        /* SECONDARY BUTTON */

        /*.cta-secondary {
            border: 2px solid #d5b46c;
            color: #d5b46c;
            padding: 18px 40px;
            border-radius: 12px;
            text-decoration: none;
        }*/
        .sbn-final-cta {
            padding: 120px 0;
            background: radial-gradient(circle at 20% 20%, rgba(213,180,108,0.08), transparent 40%), radial-gradient(circle at 80% 80%, rgba(213,180,108,0.06), transparent 40%), linear-gradient(180deg, #061a3f 0%, #020617 100%);
        }

        .cta-premium-box {
            max-width: 900px;
            margin: auto;
            text-align: center;
            padding: 70px 60px;
            border-radius: 28px;
            background:radial-gradient(circle at 20% 20%, rgba(213,180,108,0.08), transparent 40%), radial-gradient(circle at 80% 80%, rgba(213,180,108,0.06), transparent 40%), linear-gradient(180deg, #061a3f 0%, #020617 100%);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(213,180,108,0.25);
            box-shadow: 0 40px 100px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.03);
        }

            .cta-premium-box h2 {
                font-size: 48px;
                color: white;
                margin-bottom: 22px;
                font-weight: 700;
            }

            .cta-premium-box p {
                font-size: 20px;
                color: #cbd5e1;
                max-width: 650px;
                margin: 0 auto 40px;
            }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 24px;
        }

        .cta-primary {
            background: #d5b46c;
            color: #061a3f;
            padding: 18px 44px;
            border-radius: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: .35s;
            box-shadow: 0 15px 40px rgba(213,180,108,0.35);
        }

            .cta-primary:hover {
                transform: translateY(-3px);
            }

        .cta-secondary {
            border: 2px solid rgba(213,180,108,0.6);
            color: #d5b46c;
            padding: 18px 44px;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 600;
            transition: .35s;
        }

            .cta-secondary:hover {
                background: rgba(213,180,108,0.1);
            }

        @media(max-width:768px) {

            .cta-premium-box {
                padding: 50px 30px;
            }

                .cta-premium-box h2 {
                    font-size: 34px;
                }

            .cta-buttons {
                flex-direction: column;
            }
        }

        .sbn-footer {
            background: #020617;
            color: #cbd5e1;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 40px;
        }

        .sbn-footer h3,
        .sbn-footer h4 {
            color: white;
            margin-bottom: 20px;
        }

        .sbn-footer ul {
            list-style: none;
            padding: 0;
        }

        .sbn-footer li {
            margin-bottom: 10px;
        }

        /* BOTTOM */

        .footer-bottom {
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid #1e293b;
        }

        .footer-brand {
            max-width: 280px;
        }

        .footer-logo {
            height: 55px;
            margin-bottom: 18px;
        }

        .footer-brand p {
            color: #cbd5e1;
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-logo-badge {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            /* Premium Shadow */
            box-shadow: 0 10px 25px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
        }

            .footer-logo-badge img {
                max-width: 60%;
                max-height: 60%;
                object-fit: contain;
            }

        .footer-logo-badge {
            transition: .35s;
        }

            .footer-logo-badge:hover {
                transform: translateY(-4px);
                box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 4px 12px rgba(0,0,0,0.2);
            }

        .footer-logo-badge {
            border: 2px solid #d5b46c;
        }

        .sbn-final-close {
            padding: 80px 0;
            background: radial-gradient(circle at 10% 30%, rgba(213,180,108,0.06), transparent 40%), radial-gradient(circle at 90% 70%, rgba(6,26,63,0.06), transparent 40%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }

        .final-close-box {
            max-width: 900px;
            margin: auto;
            text-align: center;
            padding: 70px 60px;
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(6px);
            border-radius: 28px;
            box-shadow: 0 30px 80px rgba(6,26,63,0.08), inset 0 0 0 1px rgba(255,255,255,0.4);
        }

            .final-close-box h2 {
                font-size: 52px;
                color: #061a3f;
                line-height: 1.2;
                margin-bottom: 26px;
                font-weight: 700;
            }

        .close-sub {
            font-size: 22px;
            color: #475569;
            max-width: 720px;
            margin: 0 auto 20px;
        }

        .close-mini {
            font-size: 18px;
            color: #94a3b8;
        }

        .final-close-box h2::after {
            content: "";
            display: block;
            width: 90px;
            height: 4px;
            background: #d5b46c;
            margin: 28px auto 0;
            border-radius: 4px;
        }

        @media(max-width:768px) {

            .final-close-box {
                padding: 50px 30px;
            }

                .final-close-box h2 {
                    font-size: 34px;
                }

            .close-sub {
                font-size: 18px;
            }
        }
    
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* SOCIAL WRAPPER */
.rounded-social {
    display: flex;
    gap: 10px;
}

/* BASE BUTTON */
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    background: #f4f6f9;
    color: #333;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* BRAND HOVERS */
.social-btn.insta:hover {
    background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
    color: #fff;
}

.social-btn.fb:hover {
    background: #1877f2;
    color: #fff;
}

.social-btn.linkedin:hover {
    background: #0a66c2;
    color: #fff;
}
/* Modal Box */
.success-modal{
    border-radius:18px;
    border:none;
    box-shadow:0 40px 80px rgba(6,26,63,0.25);
}

/* Success Icon Circle */
.success-icon{
    width:70px;
    height:70px;
    margin:auto;
    background:#061a3f;
    color:#d5b46c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:bold;
}
/* ================= TOOLBAR ================= */

.members-toolbar{
    display:flex;
    justify-content:flex-start;
    margin-bottom:30px;
}

.members-search{
    width:320px;
}

/* ================= CARD GRID ================= */

.members-card-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* ================= MEMBER CARD ================= */

.member-card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 20px 50px rgba(6,26,63,0.08);
}

.member-card:hover{
    transform:translateY(-12px);
    box-shadow:0 40px 90px rgba(6,26,63,0.18);
}

/* ================= HEADER ================= */

.member-card-header{
    padding:30px;
    text-align:center;
}

/* ================= AVATAR ================= */

.member-avatar{
    width:95px;
    height:95px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #f1f5f9;
}

/* ================= BODY ================= */

.member-card-body{
    padding:28px;
    text-align:center;
}

.member-card-body h5{
    color:#061a3f;
    font-weight:700;
    font-size:18px;
    margin-bottom:6px;
}

/* ================= DESIGNATION ================= */

.member-designation{
    color:#d5b46c;
    font-weight:600;
    margin-bottom:14px;
}

/* ================= DESCRIPTION ================= */

.member-desc{
    /*font-size:14px;
    color:#64748b;
    margin-bottom:18px;*/
    min-height:60px;
}

/* ================= SECTOR TAGS ================= */

.member-sectors{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    justify-content:center;
    margin-bottom:22px;
}

.member-sectors span{
    background:#f1f5f9;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:500;
}

/* ================= PROFILE BUTTON ================= */

.member-profile-btn{
    width:100%;
    background:#061a3f;
    color:#d5b46c;
    border:none;
    padding:12px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.member-profile-btn:hover{
    background:#020617;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){
    .members-card-grid{ grid-template-columns:repeat(3,1fr); }
}

@media(max-width:900px){
    .members-card-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:500px){
    .members-card-grid{ grid-template-columns:1fr; }

    .members-search{
        width:100%;
    }
}


.members-heading{
    font-size:42px;
    font-weight:700;
    color:#061a3f;
    margin-bottom:30px;
}
        .contact-section {
            padding: 60px 20px;
        }

        .contact-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            gap: 40px;
        }

        /* Left Form */
        .contact-form {
            flex: 1;
            background: #fff;
            padding: 40px;
            border-radius: 12px;
        }

            .contact-form h2 {
                margin-bottom: 25px;
                color: #0b2c5d;
            }

            .contact-form label {
                display: block;
                margin-bottom: 8px;
                font-weight: bold;
                color: #0b2c5d;
            }

            .contact-form input,
            .contact-form textarea {
                width: 100%;
                padding: 14px;
                margin-bottom: 20px;
                border: 1px solid #ddd;
                border-radius: 8px;
                font-size: 14px;
            }

            .contact-form textarea {
                resize: none;
                height: 120px;
            }

            .contact-form button {
                background: #0b3b8f;
                color: #fff;
                padding: 14px 30px;
                border: none;
                border-radius: 8px;
                cursor: pointer;
                font-size: 16px;
            }

        /* Right Info */
        .contact-info {
            flex: 1;
            background: #fff;
            padding: 40px;
            border-radius: 12px;
        }

            .contact-info h2 {
                color: #0b2c5d;
                margin-bottom: 25px;
            }

        .info-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .icon {
            font-size: 22px;
        }

        .contact-info h3 {
            margin: 30px 0 15px;
            color: #0b2c5d;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-bottom: 30px;
        }

            .social-icons div {
                width: 40px;
                height: 40px;
                background: #fff;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                border-radius: 10px;
            }

        .member-btn {
            background: #0b3b8f;
            color: #fff;
            padding: 14px 30px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            cursor: pointer;
        }