
        :root {
            --icons-color: #b8388b;
            --button-color: #F90005;
            --primary-color: #04349a;
            --secondary-color: #10b981;
            --accent-color: #f59e0b;
            --light-bg: #f9fafb;
            --dark-bg: #1f2937;
            --text-light: #f3f4f6;
            --text-dark: #1f2937;
            --border-radius-sm: 8px;
            --border-radius-md: 16px;
            --border-radius-lg: 24px;
            --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }

        /* Top header with advanced styling */
        .top-header-box {
            width: 99.5%;
            background: linear-gradient(135deg, var(--primary-color), #04349a);
            border-bottom-left-radius: var(--border-radius-lg);
            /* border-bottom-right-radius: var(--border-radius-lg); */
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 100;
        }

        .top-header-box a {
            transition: all 0.3s ease;
            position: relative;
        }

        .top-header-box a:hover {
            color: #fff !important;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }

        .top-header-box a.fw-bold::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #fff;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .top-header-box a.fw-bold:hover::after {
            transform: scaleX(1);
        }

        /* Enhanced navbar styling */
        .custom-navbar {
            background-color: #fff;
            transition: all 0.3s ease;
            padding: 4px 0;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .navbar-brand::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: var(--accent-color);
            border-radius: 50%;
            top: 5px;
            right: -15px;
        }

        .nav-link {
            position: relative;
            margin: 0 3px;
            padding: 8px 10px !important;
            font-weight: 500;
            color: var(--text-dark) !important;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

        .nav-link.active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

        /* Enhanced dropdown styling */
        .navbar .dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
            animation: fadeInDown 0.3s ease-in-out;
            border: none;
            border-radius: var(--border-radius-md);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: #000;
        }

        .staticBankdrop {
            animation: fadeInDown 0.3s ease-in-out;
            border: none;
            border-radius: var(--border-radius-md);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }


        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-menu {
            padding: 10px;
            border-radius: var(--border-radius-md);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            background: #fff;
        }

        .dropdown-item {
            padding: 4px 10px;
            border-radius: var(--border-radius-sm);
            transition: all 0.2s ease;
            position: relative;
            font-size: 15px;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 0;
            height: 0;
            background-color: var(--primary-color);
            border-radius: 50%;
            transform: translateY(-50%);
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background-color: #04349a;
            padding-left: 25px;
            color: white;
        }

        .dropdown-item:hover::before {
            width: 6px;
            height: 6px;
        }


        /* Enhanced carousel styling */
        .carousel-container {
            padding: 2px 20px;
        }

        .carousel-bg {

            animation: fadeInDown 0.3s ease-in-out;
            border: none;
            border-radius: var(--border-radius-md);
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            min-height: 400px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 1;
        }

        .carousel-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            
            z-index: -1;
        }

        .carousel-bg::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            z-index: -1;
        }

        .carousel-caption {
            text-align: left;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .carousel-indicators {
            margin-bottom: 0;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            margin: 0 5px;
        }

        .carousel-indicators .active {
            background-color: #fff;
        }

        /* Feature cards section */
        .feature-card {
            border: none;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 24px;
        }

        /* Custom buttons */
        .btn-primary-gradient {
            background-color: var(--button-color);
            /* border: none; */
            padding: 4px 7px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4f46e5, var(--primary-color));
            transition: all 0.4s ease;
            z-index: -1;
        }

        .btn-primary-gradient:hover::before {
            left: 0;
        }

        .btn-warning {
            background-color: var(--accent-color);
            border: none;
            border-radius: var(--border-radius-sm);
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-warning:hover {
            background-color: #e79800;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        }

        .btn-outline-light {
            border: 2px solid #fff;
            border-radius: var(--border-radius-sm);
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-light:hover {
            background-color: #fff;
            color: var(--primary-color) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        }

        /* Footer styling */
        .footer {
            background: linear-gradient(135deg, var(--primary-color), #010738);
            /* background-color: var(--dark-bg); */
            color: var(--text-light);
            border-top-left-radius: var(--border-radius-lg);
            border-top-right-radius: var(--border-radius-lg);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -80%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(rgba(255, 255, 255, 0.05), transparent 70%);
            border-radius: 50%;
        }

        .footer::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(rgba(255, 255, 255, 0.05), transparent 70%);
            border-radius: 50%;
        }

        .footer-heading {
            position: relative;
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            height: 2px;
            width: 40px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 20px;
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .download-app-btn {
            display: inline-block;
            background-color: rgba(2, 8, 74, 0.1);
            border-radius: var(--border-radius-md);
            padding: 10px 15px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-right: 10px;
            margin-bottom: 10px;
        }


        .download-app-btn i {
            font-size: 1.5rem;
            margin-right: 8px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }


        /* For mobile, make the navbar act like a sidebar */
        @media (max-width: 991px) {
            .navbar-collapse {
                position: fixed;
                top: 0;
                left: -100%;
                width: 250px;
                height: 100%;
                background-color: #e7dbdb;
                transition: left 0.3s ease;
                box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
            }

            .navbar-collapse.show {
                left: 0;
            }

            .navbar-nav {
                flex-direction: column;
                margin-top: 30px;
            }

            .navbar-toggler {
                position: absolute;
                top: -50px;
                left: 15px;
            }
        }

        /* Optional styling for the button */
        .navbar-toggler-icon {
            background-color: #fdf9f9;
        }



        @media (max-width: 768px) {
            .carousel-bg {
                text-align: center;
            }
                .dropdown-item {
            padding: 4px 10px;
            border-radius: var(--border-radius-sm);
            transition: all 0.2s ease;
            position: relative;
            font-size: 13px;
        }
  
              .update-label {
                font-size: 10px;
            width: 45%;
            background-color: var(--button-color);
            color: white;
            padding: 6px 8px;
            margin-left: 5px;
            font-weight: bold;
            display: inline-block;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        }


            /* .carousel-content {
                margin-bottom: 30px;
            } */

            .top-header-box {
                font-size: 0.8rem;
            }

            .footer {
                text-align: center;
            }

            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-links a {
                padding-left: 0;
            }

            .footer-links a::before {
                display: none;
            }

            .footer-links a:hover {
                padding-left: 0;
            }
        }

        /* Quick access floating button */
        .floating-quick-access {
            position: fixed;
            bottom: 45px;
            right: 30px;
            background: var(--primary-color);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .floating-quick-access:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
        }

        /* Logo Header Styling */
        .responsive-logoImg {
            max-width: 100%;
            height: auto;
            max-height: 61px;
            width: auto;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .responsive-logoImg {
                max-height: 50px;
            }
        }

        @media (max-width: 576px) {
            .responsive-logoImg {
                max-height: 40px;
            }
        }

        /* Logo Header ENd Styling */



        .border-bottom {
            border-bottom: var(--bs-border-width) var(--bs-border-style) #04349a !important;
        }
   
        /* Custom Colors */
        :root {
            --primary-color: #04349a;
            --secondary-color: #2c3e50;
            --accent-color: #e67e22;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
            --text-muted: #6c757d;
        }


        /* Section Styles */
        .section-title {
            position: relative;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            margin: 0 auto;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

        /* Card Styles */
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 8px;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Timeline Styles */
        .timeline {
            position: relative;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 2px;
            background-color: var(--primary-color);
        }

        .timeline-item {
            position: relative;
            padding-bottom: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.4rem;
            top: 0.3rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }

        /* Team Member Cards */
        .team-card {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 4px solid var(--light-bg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Stats Counter */
        .counter-item {
            text-align: center;
            padding: 2rem 0;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        /* Values Section */
        .value-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }


        .cta-banner {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 8px;
            padding: 3rem 2rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-primary:hover {
            background-color: #004494;
            border-color: #004494;
        }

        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .nav-link {
            cursor: pointer;
            /* font-weight: bold; */
            color: #333;
        }

        .card-box {
            background-color: #fdf1e6;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
        }

        .card-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-apply {
            background-color: var(--button-color);
            color: white;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 2px;
            border: none;
        }

        .btn-know {
            border: 2px solid var(--button-color);
            color: #ff6a00;
            font-weight: bold;
            border-radius: 2px;
            padding: 10px 20px;
            background-color: transparent;
        }

        .LoanCardHead {
            font-weight: 600;
            color: var(--primary-color);
        }


        .navbar .dropdown:hover .dropdown-menulogin {
            display: block;
            right: 3px;
            margin-top: 0;
            animation: fadeInDown 0.3s ease-in-out;
            border: none;
            border-radius: var(--border-radius-md);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: #000;
        }
   
        .about-section {
            background-color: var(--primary-color);
            padding: 50px 0;
            width: 100%;
            color: white;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .about-content h2 {
            color: #eef1f5;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .about-content p {
            margin-bottom: 20px;
            font-size: 16px;
        }





        .nav-card {
            position: relative;
            /* Needed for positioning the ::after */
            background-color: #fdf1e6;
            border-radius: 10px;
            padding: 6px 7px;
            height: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            /* Prevents overflow from ::after */
        }

        .nav-card::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 4px;
            width: 0%;
            background: var(--primary-color);
            border-radius: 0 10px 10px 0;
            transition: width 0.4s ease;
        }

        .nav-card:hover::after {
            width: 100%;
        }

        .nav-card:hover {
            background-color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
        }


        .nav-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #0056b3;
            font-weight: 600;
        }

        .circle-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #e9f0f8;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .circle-icon i {
            font-size: 30px;
            color: var(--icons-color);
        }

        .circle-icon i:hover {
            font-size: 30px;
            color: var(--primary-color);
        }

        .explore-btn {
            background-color: #0056b3;
            color: white;
            border: none;
            padding: 1px 6px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .explore-btn:hover {
            background-color: #003d82;
        }

        @media (max-width: 767px) {
            .row {
                justify-content: center;
            }
        }

        .latest-update-bar {
            /* position: fixed; */
            bottom: 615px;
            left: 0;
            width: 100%;
            padding: 2px 0;
            background-color: #f8f9fa;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
            overflow: hidden;   
            display: flex;
            align-items: center;
        }

        .update-label {
            width: 12%;
            background-color: var(--button-color);
            color: white;
            padding: 3px 5px;
            margin-left: 2px;
            /* border-radius: 20px; */
            font-weight: bold;
            display: inline-block;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        }

        .marquee-container {
            flex-grow: 1;
            overflow: hidden;
            padding: 0 4px;
        }

        .marquee-text {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
            color: var(--button-color);
            font-size: 1.1em;
        }

        .news-item {
            display: inline-block;
            margin-right: 10px;
            padding-left: 10px;
            position: relative;
        }

        .news-item:before {
            content: "•";
            position: absolute;
            left: 10px;
            color: #dc3545;
            font-size: 1.4em;
        }

        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        .security-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 60px 40px;
            background: linear-gradient(to right, #f2f3f8 50%, #ffffff 50%);
            position: relative;
            overflow: hidden;
        }

        .security-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://samarohibank.com/wp-content/uploads/2025/04/78bcfa4b09054db6ccceb01218a2d164.jpeg');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .security-text {
            flex: 1 1 50%;
            padding: 20px 40px;
            color: #002e6e;
            z-index: 1;
            position: relative;
        }

        .security-text h2 {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .underline {
            display: inline-block;
            margin-bottom: 30px;
            width: 20%;
            height: 3px;
            background-color: #002e6e;
            position: relative;
        }

        .underline::after {
            content: '';
            position: absolute;
            right: 0;
            top: -4px;
            width: 6px;
            height: 6px;
            background-color: #002e6e;
            border-radius: 50%;
        }

        .security-text p {
            font-size: 15px;
            line-height: 1.8;
            color: #002e6e;
        }

        @media (max-width: 992px) {
            .security-section {
                padding: 40px 20px;
                background: #f2f3f8;
                flex-direction: column;
            }

                .latest-update-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3px 0;
            background-color: #f8f9fa;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

            .security-section::after {
                position: static;
                width: 100%;
                height: 90px;
                background-size: cover;
                background-position: center;
            }

            .security-text {
                flex: 1 1 100%;
                padding: 20px;
            }

            .security-text h2 {
                font-size: 26px;
            }

            .underline {
                width: 40%;
            }

            .security-text p {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .security-text h2 {
                font-size: 20px;
            }

            .underline {
                width: 30%;
            }

            .security-text p {
                font-size: 11px;
            }
        }


    #google_translate_element {
        height: 25px;
        overflow: hidden;
        background: transparent;
        outline: none;
    }

    #google_translate_element .goog-te-gadget-simple .goog-te-menu-value span:first-child {
        display: none;
    }

    #google_translate_element .goog-te-gadget-simple .goog-te-menu-value:before {
        content: 'Translate'
    }

    .skiptranslate>iframe {
        height: 0 !important;
        border-style: none;
        box-shadow: none;
        display: none;
    }

    body {
        top: 0px !important;
    }

    .goog-te-gadget-icon {
        display: none;
    }

        
    /* Langulage Text */
    .lang {
        font-weight: 600;
    }


    .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
        color: #e7d3d3;
    }

        .goog-te-gadget-simple {
        background-color: #00008b;
        border-left: 1px solid #D5D5D5;
        border-top: 1px solid #9B9B9B;
        border-bottom: 1px solid #E8E8E8;
        border-right: 1px solid #D5D5D5;
        font-size: 11pt;
        display: inline-block;
        padding-top: 0px;
        padding-bottom: 2px;
        cursor: pointer;
    }


      .carousel-slide-bg {
    margin-top: 0;
    background-size: cover;         
    background-repeat: no-repeat;
    background-position: center;
    height: 71vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


        .carousel-slide-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(0, 0, 0, 0.4);
            /* Dark overlay */
            z-index: 1;
        }

        .carousel-content {
            z-index: 2;
            max-width: 600px;
        }

        .carousel h1,
        .carousel p {
            color: black;
        }

        .carousel .btn {
            z-index: 2;
        }

        @media (max-width: 767px) {
            .carousel-content {
                text-align: center;
                margin: 0 auto;
            }
        }
