.home-banner-2025 {}
.home-banner-2025 img {width:100%; }


.cla-header {
    /* position: relative; */
    width: 100%;
    height: 200px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.0));
    color: white;
    border-top: 5px solid #EB3E19;
    background-size: 100%;
    position: fixed;
    transition: background 0.3s ease;
    z-index: 9;
}

.cla-header.stuck {
    background: #002436;
    height: 160px;
}

        .header-top-bar {
            /* background: rgba(0, 0, 0, 0.4); */
            padding: 8px 0;
            font-size: 14px;
        }

        .header-top-content {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 30px;
        }

        .top-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .top-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .top-links a:hover {
            opacity: 0.8;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: white;
            font-size: 18px;
            transition: opacity 0.3s;
        }

        .social-icons a:hover {
            opacity: 0.7;
        }

        .header-main {
            max-width: 100%;
            margin: 0 auto;
            padding: 10px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            max-width: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-text h1 {
            font-size: 32px;
            font-weight: bold;
            letter-spacing: 1px;
            margin-bottom: 5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .logo-text p {
            font-size: 12px;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .main-nav {
            display: flex;
            gap: 35px;
            align-items: center;
            /* margin-top: 20px; */
        }

        .main-nav .mwPageBlock {
            display: block;
        }

        .main-nav .blockContents {
            display: block;
        }

        .main-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 25px;
        }

        .main-nav > .mwPageBlock > .blockContents > ul {
            display: flex;
        }

        .main-nav li {
            position: relative;
        }

        .main-nav > .mwPageBlock > .blockContents > ul > li {
            position: relative;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: opacity 0.3s;
            white-space: nowrap;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            display: block;
            padding: 8px 0;
        }

        .main-nav a:hover {
            opacity: 0.8;
        }

        .main-nav .Title {
            display: inline-block;
        }

        /* Dropdown styles */
        .main-nav ul ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 240px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            /* border-radius: 4px; */
            padding: 10px 0;
            z-index: 1000;
            flex-direction: column;
            gap: 0;
        }

        .main-nav ul ul a {
            color: #333;
            padding: 10px 20px;
            font-size: 14px;
            text-shadow: none;
            transition: background 0.2s, color 0.2s;
        }

        .main-nav ul ul a:hover {
            background: #f5f5f5;
            opacity: 1;
            color: #ff3333;
        }

        .main-nav li.has-children > a::after {
            content: '\25BC';
            font-size: 10px;
            margin-left: 6px;
            display: inline-block;
            transition: transform 0.3s;
        }

        .main-nav ul ul li.has-children > a::after {
            content: '\25B6';
            float: right;
            margin-left: 10px;
        }

        .main-nav li:hover > ul {
            display: block;
        }

        /* Third level dropdown */
        .main-nav ul ul ul {
            top: 0;
            left: 100%;
            margin-left: 0;
        }

        .main-nav > .mwPageBlock > .blockContents > ul > li:hover > a::after {
            transform: rotate(180deg);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .search-icon {
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 8px;
            transition: opacity 0.3s;
        }

        .search-icon:hover {
            opacity: 0.7;
        }

        .donate-btn {
            background: #EB3E19;
            border:1px solid #EB3E19;
            color: white;
            padding: 10px 25px;
            border: none;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .donate-btn:hover {
            background: #fff;
            color:#EB3E19;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 10px;
        }

        .burgerLines,
        .burgerSlashes {
            display: block;
        }

        .burgerLine,
        .burgerSlash {
            display: block;
            width: 25px;
            height: 2px;
            background: white;
            margin: 4px 0;
            transition: 0.3s;
        }

        .burgerText {
            display: block;
            font-size: 12px;
            margin-top: 5px;
        }

        .translate {
            display: inline-block;
            margin-top: -8px;
        }





/* Google Translate Widget Styles */
.translate {
  background: transparent;
}

#google_translate_element {
  background: transparent;
}

.skiptranslate.goog-te-gadget {
  background: transparent !important;
  color: white !important;
  font-family: inherit;
}

/* Dropdown select styling */
.goog-te-combo {
  background: transparent;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.goog-te-combo:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.goog-te-combo:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.7);
}

.goog-te-combo option {
  background: #333;
  color: white;
}

/* "Powered by Google Translate" text and link */
.goog-te-gadget span,
.goog-te-gadget a {
  color: white !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  color: white !important;
  text-decoration: none;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover {
  text-decoration: underline;
}

/* Google logo image filter for better visibility on dark backgrounds */
.VIpgJd-ZVi9od-l4eHX-hSRGPd img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}



        @media (max-width: 1200px) {
            .main-nav {
                gap: 20px;
            }

            .main-nav a {
                font-size: 14px;
            }
        }

        @media (max-width: 992px) {
            .main-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .header-main {
                padding: 20px;
            }

            .logo-text h1 {
                font-size: 24px;
            }

            .logo-icon {
                width: 60px;
                height: 60px;
            }

            .logo-icon-inner {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 768px) {
            .cla-header {
                height: auto;
            }

            .top-links {
                display: none;
            }
            .header-top-bar {display:none}

            .header-top-content {
                justify-content: center;
            }

            .logo-text h1 {
                font-size: 20px;
            }

            .logo-text p {
                font-size: 10px;
            }
        }