  /* Banner Design */
        .banner-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            min-height: 600px;
        }

        /* Animated Background Circles */
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }

        .bg-circle-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #ec4899, #8b5cf6);
            top: -100px;
            left: -100px;
            animation: pulse 8s ease-in-out infinite;
        }

        .bg-circle-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            bottom: -50px;
            right: -50px;
            animation: pulse 10s ease-in-out infinite;
            animation-delay: 2s;
        }

        .bg-circle-3 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            top: 50%;
            right: 20%;
            animation: float 15s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.15;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -30px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }

        /* Content Styles */
        .banner-content {
            position: relative;
            z-index: 2;
        }

        .badge-custom {
            display: inline-block;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
            border: 1px solid rgba(139, 92, 246, 0.3);
            color: #a78bfa;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .banner-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .banner-title .gradient-text {
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .banner-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 600px;
        }

        /* Button Styles */
        .btn-primary-custom {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            border: none;
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
            background: linear-gradient(135deg, #2563eb, #0891b2);
        }

        .btn-secondary-custom {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary-custom:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-3px);
        }

        /* Image/Illustration Area */
        .banner-image {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        /* Floating Cards */
        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .card-1 {
            top: 10%;
            left: -10%;
            animation: floatCard 6s ease-in-out infinite;
        }

        .card-2 {
            top: 30%;
            right: -15%;
            animation: floatCard 8s ease-in-out infinite;
            animation-delay: 2s;
        }

        .card-3 {
            bottom: 10%;
            left: -5%;
            animation: floatCard 7s ease-in-out infinite;
            animation-delay: 4s;
        }

        @keyframes floatCard {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ec4899, #8b5cf6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .card-title {
            color: white !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .card-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
        }

        /* Main Illustration Circle */
        .main-circle {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
            border-radius: 50%;
            border: 2px solid rgba(139, 92, 246, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .inner-circle {
            width: 250px;
            height: 250px;
            background: rgba(30, 41, 59, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            border: 1px solid rgba(139, 92, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            animation: rotate 20s linear infinite reverse;
        }

        .main-icon {
            font-size: 4rem;
            margin-bottom: 15px;
            filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
        }

        .main-text {
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
        }

        /* Orbit Dots */
        .orbit-dot {
            position: absolute;
            width: 15px;
            height: 15px;
            background: linear-gradient(135deg, #ec4899, #8b5cf6);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(236, 72, 153, 0.8);
        }

        .dot-1 {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .dot-2 {
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }

        .dot-3 {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .dot-4 {
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .feature-box {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .feature-title {
            color: white;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .feature-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .banner-title {
                font-size: 3rem;
            }

            .banner-subtitle {
                font-size: 1.1rem;
            }

            .main-circle {
                width: 280px;
                height: 280px;
            }

            .inner-circle {
                width: 200px;
                height: 200px;
            }

            .main-icon {
                font-size: 3rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .banner-title {
                font-size: 2.5rem;
            }

            .banner-subtitle {
                font-size: 1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .floating-card {
                display: none;
            }

            .main-circle {
                width: 250px;
                height: 250px;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }

          /* ============================================
           1. MISSION & VISION SECTION (Split Design)
           ============================================ */
        .mission-vision-section {
            background: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .mission-vision-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
        }

        .mission-box,
        .vision-box {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 50px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .mission-box:hover,
        .vision-box:hover {
            transform: translateY(-10px);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
        }

        .mission-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ec4899, #8b5cf6);
        }

        .vision-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #3b82f6, #06b6d4);
        }

        .mv-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .mission-icon {
            background: linear-gradient(135deg, #ec4899, #8b5cf6);
        }

        .vision-icon {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
        }

        .mv-title {
            color:white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .mv-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            font-size: 1.05rem;
        }

           /* ============================================
           3. CORE VALUES SECTION (Card Grid)
           ============================================ */
        .values-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 100px 0;
            position: relative;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
            transition: all 0.4s ease;
        }

        .value-card:hover::before {
            top: 0;
        }

        .value-card:hover {
            transform: translateY(-15px);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
        }

        .value-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: inline-block;
            transition: all 0.4s ease;
        }

        .value-card:hover .value-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .value-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            color:white;
        }

        .value-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            position: relative;
        }
       .section-title-service{
        color:white;
       }
