 /*Footer CSS*/
 :root {
            --bhagwa-primary: #FF6B35;
            --bhagwa-secondary: #FF8C42;
            --bhagwa-light: #FFB88C;
            --bhagwa-dark: #E55A2B;
            --saffron: #FF9933;
            --deep-orange: #D2691E;
            --cream: #FFF8DC;
            --warm-white: #FFFEF7;
            --text-dark: #2D1B0E;
            --text-medium: #8B4513;
            --gold: #DAA520;
            --shadow: rgba(255, 153, 51, 0.3);
            --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF9933 100%);
            --gradient-secondary: linear-gradient(45deg, #FF8C42 0%, #DAA520 100%);
            --gradient-radial: radial-gradient(circle, #FF6B35 0%, #E55A2B 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
        }

        .demo-content {
            height: 50vh;
            background: var(--warm-white);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            font-size: 24px;
            font-weight: 600;
        }

        .footer-section {
            background: linear-gradient(135deg, var(--text-dark) 0%, #1A1A1A 100%);
            color: var(--warm-white);
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

      
        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--gradient-primary);
            background-size: 200% 100%;
            animation: flow-border 4s ease-in-out infinite;
        }

        @keyframes flow-border {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

     
        .footer-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float-bg 6s ease-in-out infinite;
        }

        @keyframes float-bg {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.1); }
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px 0;
            position: relative;
            z-index: 2;
        }

       
        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 50px;
            margin-bottom: 15px;
        }

       
        .footer-logo-section {
            position: relative;
        }

        .footer-logo-container {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .footer-logo-circle {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 10px 30px var(--shadow);
            padding: 8px;
        }

        .footer-logo-circle::before {
            content: '';
            position: absolute;
            width: 90px;
            height: 90px;
            border: 2px solid var(--bhagwa-light);
            border-radius: 50%;
            border-top-color: transparent;
            border-right-color: transparent;
            animation: rotate-slow 12s linear infinite;
        }

        @keyframes rotate-slow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .footer-logo-image {
            width: 64px;
            height: 64px;
            object-fit: contain;
            border-radius: 50%;
            background: var(--warm-white);
            padding: 4px;
            z-index: 2;
        }

        .footer-org-info h2 {
            font-family: 'Merriweather', serif;
            font-size: 28px;
            font-weight: 900;
            color: var(--warm-white);
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .footer-org-tagline {
            color: var(--bhagwa-light);
            font-size: 14px;
            font-style: italic;
            font-weight: 500;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.8;
            margin: 10px 0 10px;
            
        }

       
        .footer-social-title {
            color: var(--warm-white);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            display: inline-block;
        }

        .footer-social-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--warm-white);
            font-size: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .social-icons a:hover::before {
            left: 0;
        }

        .social-icons a:hover {
            transform: translateY(-8px) rotate(5deg);
            color: var(--text-dark);
            box-shadow: 0 15px 35px var(--shadow);
        }

        
        .footer-section-header {
            color: var(--warm-white);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .footer-section-header::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-secondary);
            border-radius: 3px;
        }

       
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
            position: relative;
            transform: translateX(0);
            transition: transform 0.3s ease;
        }

        .footer-links li::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--gradient-primary);
            border-radius: 50%;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .footer-links li:hover::before {
            opacity: 1;
            left: -20px;
            transform: translateY(-50%) scale(1.2);
        }

        .footer-links li:hover {
            transform: translateX(10px);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
            font-weight: 500;
            position: relative;
            display: inline-block;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--bhagwa-light);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

      
        .footer-newsletter {
            position: relative;
        }

        .newsletter-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .newsletter-form {
            position: relative;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .newsletter-form input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.3);
            color: var(--warm-white);
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .newsletter-form input:focus {
            border-color: var(--bhagwa-primary);
            box-shadow: 0 0 20px var(--shadow);
            background: rgba(0, 0, 0, 0.4);
            outline: none;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
        }

        .input-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--bhagwa-light);
            font-size: 16px;
            z-index: 2;
        }

        .newsletter-form button {
            width: 100%;
            padding: 16px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px var(--shadow);
        }

        .newsletter-form button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s ease;
        }

        .newsletter-form button:hover::before {
            left: 100%;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px var(--shadow);
        }

        .newsletter-response {
            font-size: 14px;
            margin-top: 15px;
            padding: 12px 16px;
            border-radius: 8px;
            display: none;
            font-weight: 500;
        }

        .newsletter-response.success {
            background: rgba(46, 204, 113, 0.2);
            color: #2ecc71;
            border: 1px solid rgba(46, 204, 113, 0.3);
            display: block;
        }

        .newsletter-response.error {
            background: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
            border: 1px solid rgba(231, 76, 60, 0.3);
            display: block;
        }

       
        .footer-bottom {
            border-top: 2px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
            position: relative;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: var(--gradient-primary);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin: 0;
            font-weight: 500;
        }

        .footer-bottom p a {
            color: var(--bhagwa-light);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .footer-bottom p a:hover {
            color: var(--saffron);
            text-shadow: 0 0 10px var(--shadow);
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-bottom-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--bhagwa-light);
        }

        .footer-bottom-links a:hover::after {
            width: 100%;
        }

      
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: 1.5fr 1fr 1fr;
                gap: 40px;
            }
            
            .footer-newsletter {
                grid-column: span 3;
                max-width: 500px;
            }
        }

        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }
            
            .footer-logo-section {
                grid-column: span 2;
            }
            
            .footer-newsletter {
                grid-column: span 2;
                max-width: none;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 60px 15px 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-logo-section,
            .footer-newsletter {
                grid-column: span 1;
            }
            
            .footer-logo-container {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-bottom-links {
                justify-content: center;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .footer-logo-circle {
                width: 70px;
                height: 70px;
            }
            
            .footer-logo-image {
                width: 56px;
                height: 56px;
            }
            
            .footer-org-info h2 {
                font-size: 24px;
            }
            
            .social-icons a {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .footer-bottom-links {
                flex-direction: column;
                gap: 10px;
            }
        }
        
 
.footer-partner-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    padding:25px 0;
}


.footer-logo-1{
    height:75px;
    width:auto;
    object-fit:contain;
}


.footer-logo-2{
    height:80px;
    width:80px;
    padding:8px;
    background:#fff;
    border-radius:50%;
    object-fit:contain;
    box-sizing:border-box;
}


@media (max-width:768px){
    .footer-partner-logos{
        display:none;
    }
}
         
/*Header CSS*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bhagwa-primary: #FF6B35;
            --bhagwa-secondary: #FF8C42;
            --bhagwa-light: #FFB88C;
            --bhagwa-dark: #E55A2B;
            --saffron: #FF9933;
            --deep-orange: #D2691E;
            --cream: #FFF8DC;
            --warm-white: #FFFEF7;
            --text-dark: #2D1B0E;
            --text-medium: #8B4513;
            --gold: #DAA520;
            --shadow: rgba(255, 153, 51, 0.3);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--warm-white);
            color: var(--text-dark);
        }
            .decorative-strip {
                height: 4px;
                background: linear-gradient(90deg, 
                    #FFD700 0%,      
                    #FFC107 25%,   
                    #FFB300 50%,    
                    #FFC107 75%, 
                    #FFD700 100%);
                animation: shimmer 3s ease-in-out infinite;
            }

        @keyframes shimmer {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

       
        .contact-banner {
            background: linear-gradient(135deg, #5E0000 0%, #990000 100%);
            color: var(--warm-white);
            padding: 12px 0;
            position: relative;
            overflow: hidden;
        }

        .contact-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.1), transparent);
            animation: slide 4s infinite;
        }

        @keyframes slide {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            color: var(--bhagwa-light);
            transform: translateY(-2px);
        }

        .contact-item i {
            color: var(--saffron);
            font-size: 16px;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background: #FFF8E7;
            color: #800000;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--saffron);
            transform: translateY(-3px) rotate(5deg);
            box-shadow: 0 5px 15px var(--shadow);
            color: white;
        }

        
        .main-header {
            background: var(--warm-white);
            padding: 20px 0;
            box-shadow: 0 4px 30px rgba(255, 107, 53, 0.1);
            position: relative;
        }

        .main-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--bhagwa-primary), var(--saffron), var(--bhagwa-primary));
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 30px;
        }

       
        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo-circle {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--bhagwa-primary), var(--saffron));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 8px 25px var(--shadow);
        }

        .logo-circle::before {
            content: '';
            position: absolute;
            width: 92px;
            height: 92px;
            border: 3px solid var(--bhagwa-light);
            border-radius: 50%;
            border-top-color: transparent;
            border-right-color: transparent;
            animation: rotate 8s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .logo-circle i {
            font-size: 32px;
            color: white;
            z-index: 2;
        }

        .org-details h1 {
            font-family: 'Merriweather', serif;
            font-size: 28px;
            font-weight: 900;
            color: var(--bhagwa-primary);
            margin-bottom: 5px;
            text-shadow: 1px 1px 2px rgba(255, 107, 53, 0.1);
        }

        .org-details p {
            font-size: 14px;
            color: var(--text-medium);
            font-weight: 500;
            
        }

        
        .search-section {
            flex: 1;
            display: flex;
            justify-content: center;
            padding: 0 20px;
        }

        .search-container {
            position: relative;
            width: 100%;
            max-width: 400px;
        }

        .search-box {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid var(--bhagwa-light);
            border-radius: 50px;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
            background: var(--cream);
        }
        
            a:focus {
                outline: none;
            }

        .search-box:focus {
            border-color: var(--bhagwa-primary);
            box-shadow: 0 0 20px var(--shadow);
            background: white;
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--bhagwa-primary);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: var(--saffron);
            transform: translateY(-50%) scale(1.1);
        }

       
        .action-buttons {
            display: flex;
            gap: 15px;
        }

        .action-btn {
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .btn-donate {
            background: linear-gradient(135deg, var(--bhagwa-primary), var(--saffron));
            color: white;
            box-shadow: 0 6px 20px var(--shadow);
        }

        .btn-volunteer {
            background: transparent;
            color: var(--bhagwa-primary);
            border: 2px solid var(--bhagwa-primary);
        }

        .action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.5s;
        }

        .action-btn:hover::before {
            left: 100%;
        }

        .action-btn:hover {
            transform: translateY(-3px);
        }

        .btn-donate:hover {
            box-shadow: 0 8px 30px var(--shadow);
        }

        .btn-volunteer:hover {
            background: var(--bhagwa-primary);
            color: white;
        }

        
        .navigation {
            background: linear-gradient(135deg, var(--bhagwa-primary) 0%, var(--saffron) 100%);
            position: relative;
            overflow: hidden;
        }

        .navigation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: 200px 20px;
            animation: wave 10s linear infinite;
        }

        @keyframes wave {
            0% { background-position-x: 0; }
            100% { background-position-x: 200px; }
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 5px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 18px 25px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 8px 8px 0 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 3px 3px 0 0;
        }

        .nav-item:hover .nav-link {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-item:hover .nav-link::after {
            width: 70%;
        }

        .nav-link i {
            font-size: 16px;
        }

       
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 250px;
            background: white;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .dropdown-link:hover {
            background: var(--cream);
            border-left-color: var(--bhagwa-primary);
            padding-left: 25px;
        }

        .dropdown-link i {
            color: var(--bhagwa-primary);
            width: 20px;
            text-align: center;
        }

       
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }

       
        .language-switcher {
            position: absolute;
            top: 15px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 5px;
        }

        .language-switcher select {
            background: transparent;
            border: none;
            color: white;
            padding: 5px 10px;
            cursor: pointer;
            outline: none;
        }

        
        @media (max-width: 1024px) {
            .header-content {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }
            
            .search-section {
                order: -1;
            }
            
            .nav-menu {
                flex-wrap: wrap;
                gap: 2px;
            }
            
            .nav-link {
                padding: 15px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .contact-info {
                justify-content: center;
                gap: 20px;
            }
            
            .logo-section {
                flex-direction: column;
                gap: 15px;
            }
            
            .action-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .action-btn {
                justify-content: center;
            }
            
            .navigation {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .org-details h1 {
                font-size: 24px;
            }
            
            .search-box {
                padding: 12px 45px 12px 15px;
                font-size: 14px;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        
        
      
.logo-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #FF9933);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.3);
    padding: 10px;
}

.logo-container::before {
    display: none;
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border: 3px solid #FFB88C;
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: rotate 8s linear infinite;
}

.logo-image {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    background: #FFFEF7;
    padding: 3px;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 30px;
    }
    
    .logo-section {
        justify-content: center;
        gap: 20px;
    }
    
    .logo-container {
        width: 85px;
        height: 85px;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .org-details h1 {
        font-size: 26px;
    }
    
    .org-details p {
        font-size: 15px;
    }
    
    .search-section {
        order: -1;
        padding: 0;
    }
    
    .search-container {
        max-width: 450px;
    }
    
    .search-box {
        padding: 16px 55px 16px 22px;
        font-size: 16px;
    }
    
    .search-btn {
        width: 45px;
        height: 45px;
    }
    
    .action-buttons {
        gap: 20px;
        justify-content: center;
    }
    
    .action-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
   
    .nav-menu {
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 16px 22px;
        font-size: 15px;
    }
    
    .dropdown {
        min-width: 280px;
    }
    
    .dropdown-link {
        padding: 16px 22px;
        font-size: 15px;
    }
    
    .contact-info {
        gap: 25px;
    }
    
    .contact-item {
        font-size: 15px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
    }
}


@media (min-width: 601px) and (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 0 25px;
    }
    
    .logo-section {
        justify-content: center;
        gap: 18px;
    }
    
    .logo-container {
        width: 80px;
        height: 80px;
    }
    
    .logo-image {
        width: 75px;
        height: 75px;
    }
    
    .org-details h1 {
        font-size: 25px;
    }
    
    .org-details p {
        font-size: 14px;
    }
    
    .search-section {
        order: -1;
        padding: 0;
    }
    
    .search-container {
        max-width: 400px;
    }
    
    .search-box {
        padding: 15px 50px 15px 20px;
        font-size: 15px;
    }
    
    .search-btn {
        width: 42px;
        height: 42px;
    }
    
    .action-buttons {
        gap: 15px;
        justify-content: center;
    }
    
    .action-btn {
        padding: 13px 25px;
        font-size: 14px;
    }
    
   
    .nav-menu {
        gap: 3px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .dropdown {
        min-width: 260px;
    }
    
    .dropdown-link {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
        gap: 22px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
}


@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .main-header {
        padding: 15px 0;
    }
    
    .header-content {
        gap: 20px;
    }
    
    .logo-section {
        gap: 15px;
    }
    
    .logo-container {
        width: 75px;
        height: 75px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .org-details h1 {
        font-size: 24px;
    }
    
    .nav-link {
        padding: 14px 20px;
    }
    
    .contact-banner {
        padding: 10px 0;
    }
    
    .contact-content {
        flex-direction: row;
        gap: 20px;
    }
    
    .contact-info {
        flex-direction: row;
        gap: 25px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
    .main-header {
        padding: 25px 0;
    }
    
    .header-content {
        gap: 25px;
    }
    
    .logo-section {
        gap: 20px;
    }
    
    .search-container {
        max-width: 85%;
    }
    
    .action-buttons {
        flex-direction: row;
        width: auto;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 5px;
    }
}


@media (pointer: coarse) and (min-width: 601px) {
    .nav-link {
        padding: 18px 25px;
        min-height: 50px;
    }
    
    .dropdown-link {
        padding: 18px 22px;
        min-height: 50px;
    }
    
    .action-btn {
        padding: 15px 30px;
        min-height: 50px;
    }
    
    .search-box {
        padding: 18px 55px 18px 22px;
        min-height: 50px;
    }
    
    .search-btn {
        width: 50px;
        height: 50px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        min-height: 44px;
    }
}


@media (min-width: 601px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .decorative-strip {
        height: 6px;
    }
    
    .main-header::after {
        height: 3px;
    }
}


@media (max-width: 600px) {
    .contact-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
        gap: 20px;
        flex-direction: column;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    .navigation {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }
    
    .org-details h1 {
        font-size: 22px;
    }
    
    .search-box {
        padding: 12px 45px 12px 15px;
        font-size: 14px;
    }
}


.navigation {
    position: relative;
    z-index: 9999;
}

.nav-item {
    position: relative;
}

.dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0;
    z-index: 99999 !important;
    min-width: 200px;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,.4) !important;
    overflow: visible !important;
    display: none;
}

.nav-item:hover > .dropdown {
    display: block !important;
}


.nav-item:nth-last-child(-n+3) > .dropdown,
.nav-more > .dropdown {
    left: auto !important;
    right: 0 !important;
}


header,
.main-header,
.header-content,
nav,
.nav-content,
.nav-menu {
    overflow: visible !important;
}

.nav-more .nav-arrow {
    font-size: .65rem;
    margin-left: 4px;
    transition: transform .25s ease;
    vertical-align: middle;
}

.nav-more:hover .nav-arrow {
    transform: rotate(180deg);
}


.dropdown-group {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 4px;
    margin-top: 4px;
}

.dropdown-group:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.dropdown-group-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 4px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.dropdown-group-title i {
    font-size: .75rem;
    opacity: .7;
}

.dropdown-group .dropdown-link {
    padding-left: 28px;
}
