 
        :root {
            --navy: #0d2f5e;
            --navy-dark: #051b38;
            --navy-light: #1a4b8c;
            --teal: #20c997;
            --teal-dark: #149672;
            --cyan: #17a2b8;
            --white: #ffffff;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-text: #212529;
            --light-text: #ffffff;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
            background: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
         /* Hero Section */
        .page-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            text-align: center;
            margin-top: 20px;
        }
        
        .page-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        
        .page-hero p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        
        /* Banner Section */
      /*  .imageaboutus {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        
        .imageaboutus img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .innerbannercontent {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right, rgba(13, 47, 94, 0.85), rgba(13, 47, 94, 0.7));
            color: var(--light-text);
            text-align: center;
        }
        
        .innerbannercontent h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .Bannernavigater {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .Bannernavigater li {
            display: inline-block;
            margin: 0 10px;
            color: var(--light-text);
        }
        
        .Bannernavigater li a {
            color: var(--teal);
            font-weight: 500;
        }
        
        .Bannernavigater li a:after {
            content: "\f101";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-left: 10px;
        }
        
        /* Partners Section */
        .partners-section {
            padding: 100px 0;
            background: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--navy);
            font-size: 2.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--teal);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* NEW: SBL Partner Section - Modern Design */
        .sbl-partner-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            position: relative;
            overflow: hidden;
        }
        
        .sbl-partner-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../assets/Images/SlideDeck/office13.jpg') center/cover no-repeat;
            opacity: 0.1;
        }
        
        .sbl-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            padding: 50px 40px;
            color: var(--dark-text);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .sbl-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }
        
        .sbl-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, var(--teal) 0%, var(--cyan) 100%);
        }
        
        .sbl-header {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .sbl-logo-container {
            flex: 0 0 auto;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .sbl-logo {
            max-height: 120px;
            width: auto;
        }
        
        .sbl-title {
            flex: 1;
            min-width: 300px;
        }
        
        .sbl-title h3 {
            color: var(--navy);
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .sbl-title p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 0;
        }
        
        .sbl-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .highlight-box {
            background: rgba(32, 201, 151, 0.05);
            border-radius: 15px;
            padding: 25px;
            border-left: 4px solid var(--teal);
            transition: var(--transition);
        }
        
        .highlight-box:hover {
            background: rgba(32, 201, 151, 0.1);
            transform: translateY(-5px);
        }
        
        .highlight-box h5 {
            color: var(--navy);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .highlight-box h5 i {
            color: var(--teal);
        }
        
        .highlight-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .highlight-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .highlight-list li:before {
            content: '\f061';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: var(--teal);
        }
        
        .sbl-cta {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .sbl-btn {
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .sbl-btn:hover {
            background: linear-gradient(90deg, var(--teal-dark) 0%, var(--cyan) 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        /* Testimonial Section */
        .testimonial-section {
            padding: 80px 0;
            background: var(--light);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            padding: 40px;
            transition: var(--transition);
            position: relative;
            text-align: center;
        }
        
        .testimonial-card:before {
            content: '\201C';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 5rem;
            color: rgba(32, 201, 151, 0.1);
            font-family: Georgia, serif;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-text {
            margin-bottom: 20px;
            font-style: italic;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            color: var(--navy);
            font-weight: 600;
        }
        
        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background: var(--white);
        }
        
        .benefit-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .benefit-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .benefit-card .icon {
            display: inline-block;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin-bottom: 20px;
        }
        
        .benefit-card .icon i {
            color: var(--teal);
            font-size: 2rem;
        }
        
        .benefit-card h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            text-align: center;
        }
        
        .cta-section h2 {
            color: var(--light-text);
            margin-bottom: 20px;
        }
        
        .cta-section p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-btn {
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            display: inline-block;
        }
        
        .cta-btn:hover {
            background: linear-gradient(90deg, var(--teal-dark) 0%, var(--cyan) 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }
        
        .btn-outline-light:hover {
            background: var(--white);
            color: var(--navy);
        }
        
        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .innerbannercontent h3 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .innerbannercontent h3 {
                font-size: 2rem;
            }
            
            .imageaboutus {
                height: 300px;
            }
            
            .partners-section {
                padding: 60px 0;
            }
            
            .sbl-header {
                flex-direction: column;
                text-align: center;
            }
            
            .sbl-title {
                min-width: auto;
            }
        }
        
        @media (max-width: 767.98px) {
            .innerbannercontent h3 {
                font-size: 1.8rem;
            }
            
            .imageaboutus {
                height: 250px;
            }
            
            .Bannernavigater li {
                display: block;
                margin: 5px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .sbl-card {
                padding: 30px 20px;
            }
            
            .sbl-highlights {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 575.98px) {
            .innerbannercontent h3 {
                font-size: 1.5rem;
            }
        }
   