
        :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;
        }
        
        /* Leadership Team Section */
        .leadership-team {
            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%);
        }
        
        /* Leadership Cards */
        .leadership-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;
        }
        
        .leadership-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
        }
        
        .leadership-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .leader-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid rgba(32, 201, 151, 0.2);
        }
        
        .leader-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .leadership-card h4 {
            color: var(--navy);
            margin-bottom: 5px;
        }
        
        .leader-role {
            color: var(--teal);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .leader-bio {
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .leader-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .leader-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(32, 201, 151, 0.1);
            color: var(--teal);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .leader-social a:hover {
            background: var(--teal);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Leadership Highlights Section */
        .leadership-highlights {
            padding: 80px 0;
            background: var(--white);
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: var(--transition);
            background: var(--light);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .feature-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box .icon {
            display: inline-block;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin-bottom: 20px;
        }
        
        .feature-box .icon i {
            color: var(--teal);
            font-size: 2rem;
        }
        
        .feature-box 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;
        }
        
        /* 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;
            }
            
            .leadership-team {
                padding: 60px 0;
            }
        }
        
        @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;
            }
        }
        
        @media (max-width: 575.98px) {
            .innerbannercontent h3 {
                font-size: 1.5rem;
            }
        }
 