
        :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);
        }
        
        
        
        /* 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;
        }
        
        /* About Us Section */
        .aboutus {
            padding: 100px 0;
            background: var(--light);
        }
        
        .about-heading h4 {
            color: var(--navy);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .about-heading h4:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .aboutus .content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        
        .listinInnerpage {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }
        
        .listinInnerpage li {
            margin: 10px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .listinInnerpage li:before {
            content: "\f0a4";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: var(--teal);
            font-size: 16px;
        }
        
        /* Right side content */
        .Rightsidesection h3 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        .Rightsidesection h5 {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .grayblock {
            background: var(--light);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-weight: 600;
            color: var(--navy);
            border-left: 4px solid var(--teal);
        }
        
        .Getsupport {
            display: inline-block;
            padding: 12px 30px;
            background: var(--teal);
            color: white;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        
        .Getsupport:hover {
            background: var(--teal-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        /* Map styling */
        .mapp {
            position: relative;
            width: 100%;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .mapp iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
      
        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
        }
        
        .values-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .values-title h2 {
            color: var(--light-text);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .values-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--teal);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .value-item {
            text-align: center;
            padding: 30px 20px;
            margin-bottom: 30px;
        }
        
        .value-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-bottom: 20px;
            font-size: 2rem;
            color: var(--teal);
        }
        
        .value-item h4 {
            color: var(--light-text);
            margin-bottom: 15px;
        }
        
        .value-item p {
            opacity: 0.9;
        }
        
        
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1399.98px) {
            .leader-card {
                max-width: 1200px;
                padding: 40px 45px;
            }
        }
        
        @media (max-width: 1199.98px) {
            .innerbannercontent h3 {
                font-size: 2.5rem;
            }
            
            .leader-card {
                max-width: 1100px;
                padding: 35px 40px;
                min-height: 450px;
            }
            
            .leader-image {
                width: 250px;
                height: 250px;
            }
            
            .leader-name {
                font-size: 2.1rem;
            }
            
            .leader-position {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .navbar {
                padding: 10px 0;
            }
            
            .navbar-collapse {
                background: var(--navy);
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }
            
            .innerbannercontent h3 {
                font-size: 2rem;
            }
            
            .imageaboutus {
                height: 300px;
            }
            
            .aboutus {
                padding: 60px 0;
            }
            
            .leader-section, .values-section {
                padding: 60px 0;
            }
            
            .leader-content {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            
            .leader-card {
                min-height: auto;
                padding: 35px 30px;
                max-width: 95%;
            }
            
            .leader-image {
                width: 220px;
                height: 220px;
            }
            
            /* Mobile dropdown styles */
            .dropdown-menu {
                background: rgba(255, 255, 255, 0.05);
                margin-top: 10px;
            }
            
            .dropdown-item {
                padding-left: 40px;
            }
        }
        
        @media (max-width: 767.98px) {
            #TopNav {
                text-align: center;
            }
            
            .TopNavLeft, .TopNavRight {
                text-align: center !important;
            }
            
            .TopNavRight .DetailsInTopNav {
                margin: 0 10px;
            }
            
            .innerbannercontent h3 {
                font-size: 1.8rem;
            }
            
            .imageaboutus {
                height: 250px;
            }
            
            .about-heading h4 {
                font-size: 2rem;
            }
            
            .Bannernavigater li {
                display: block;
                margin: 5px 0;
            }
            
            .leader-image {
                width: 200px;
                height: 200px;
            }
            
            .leader-name {
                font-size: 1.9rem;
            }
            
            .leader-position {
                font-size: 1.3rem;
            }
            
            .leader-card {
                padding: 30px 25px;
            }
        }
        
        @media (max-width: 575.98px) {
            .innerbannercontent h3 {
                font-size: 1.5rem;
            }
            
            .about-heading h4 {
                font-size: 1.8rem;
            }
            
            .leader-image {
                width: 180px;
                height: 180px;
            }
            
            .leader-name {
                font-size: 1.7rem;
            }
            
            .leader-position {
                font-size: 1.2rem;
                padding: 8px 18px;
            }
            
            .leader-card {
                padding: 25px 20px;
                border-radius: 18px;
            }
            
            #back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
        }
  