 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.animated {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Header Styles */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: slideInLeft 0.5s ease;
        }

        .top-bar {
            background: #041B47;
            color: #fff;
            padding: 10px 5%;;
            font-size: 14px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /*max-width: 1200px;*/
            margin: 0 auto;
            padding: 0 20px;
        }
		nav{
			float: right;
			padding-bottom: 25px;
		}
        .nav-container {
            justify-content: space-between;
            align-items: center;
			position:relative;
            padding: 25px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #BC7C3B;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: #BC7C3B;
        }

        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #BC7C3B;
        }

        /* Slider Section */
        .hero-slider {
            margin-top: 0px;
            height: 700px;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            height: 100%;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(188, 124, 59, 0.25) 0%, rgba(4, 27, 71, 0.25) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-content {
    text-align: center;
    color: #ffffff; /* White text looks better on most backgrounds */
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.9); /* makes text readable on light backgrounds */
}



        .slide-content h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .slide-content p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .slide-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #BC7C3B;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            animation: fadeInUp 1s ease 0.9s both;
        }

        .slide-btn:hover {
            background: #a36a31;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(188, 124, 59, 0.3);
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: #fff;
            width: 30px;
            border-radius: 6px;
        }

        .slider-arrow {
            position: absolute;
            top: 60%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.3);
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }

        .slider-arrow:hover {
            background: #BC7C3B;
        }

        .slider-arrow.prev { left: 30px; }
        .slider-arrow.next { right: 30px; }

        /* Container */
        .container {
           /*  max-width: 1200px;*/
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Sections */
        section {
            padding: 100px 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: #BC7C3B;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .section-title h2 {
            font-size: 42px;
            font-weight: 800;
            color: #041B47;
            margin-bottom: 20px;
        }

        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Stats Section */
        .stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            animation: scaleIn 0.6s ease forwards;
        }

        .stat-item:nth-child(1) { animation-delay: 0.2s; }
        .stat-item:nth-child(2) { animation-delay: 0.4s; }
        .stat-item:nth-child(3) { animation-delay: 0.6s; }
        .stat-item:nth-child(4) { animation-delay: 0.8s; }

        .stat-item h3 {
            font-size: 48px;
            font-weight: 800;
            color: #BC7C3B;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 16px;
            color: #666;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #041B47;
        }

        .about-text p {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .mission-box, .vision-box {
            background: #f8f9ff;
            padding: 30px;
            border-radius: 15px;
            border-left: 4px solid #BC7C3B;
            transition: transform 0.3s;
        }

        .mission-box:hover, .vision-box:hover {
            transform: translateX(10px);
        }

        .mission-box h4, .vision-box h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #BC7C3B;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(4, 27, 71, 0.2);
            position: relative;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(188, 124, 59, 0.3), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Features Section */
        .features {
            background: #f8f9ff;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 15px;
			border-left: 8px solid #BC7C3B;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(188, 124, 59, 0.1), transparent);
            transition: left 0.5s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(188, 124, 59, 0.2);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

        .feature-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #041B47;
        }

        .feature-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        /* Programs Section */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .program-card {
            background: #041B47;
            color: #fff;
            padding: 50px 40px;
            border-radius: 20px;
			border-left: 8px solid #BC7C3B;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .program-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: transform 0.5s;
        }

        .program-card:hover::after {
            transform: scale(3);
        }

        .program-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(4, 27, 71, 0.3);
        }

        .program-card h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .program-card ul {
            list-style: none;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }

        .program-card ul li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }

        .program-card ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 18px;
        }

        /* Events Section */
        .events {
            background: #f8f9ff;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .event-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(188, 124, 59, 0.2);
        }

        .event-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .event-card:hover .event-image img {
            transform: scale(1.1);
        }

        .event-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #BC7C3B;
            color: #fff;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
        }

        .event-date .day {
            font-size: 28px;
            display: block;
        }

        .event-date .month {
            font-size: 14px;
            text-transform: uppercase;
        }

        .event-content {
            padding: 30px;
        }

        .event-content h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #041B47;
        }

        .event-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            color: #666;
            font-size: 14px;
        }

        .event-content p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .event-btn {
            display: inline-block;
            padding: 10px 25px;
            background: #BC7C3B;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .event-btn:hover {
            background: #041B47;
            transform: translateX(5px);
        }

        /* Donation Section */
        .donation {
            background: #041B47;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .donation::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .donation-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .donation-content h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .donation-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .donation-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .donation-option {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            border: 2px solid rgba(255,255,255,0.2);
            cursor: pointer;
            transition: all 0.3s;
        }

        .donation-option:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.05);
        }

        .donation-option h3 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .donation-option p {
            font-size: 14px;
            margin: 0;
        }

        .donate-btn {
            display: inline-block;
            padding: 18px 50px;
            background: #fff;
            color: #BC7C3B;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .donate-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        /* Gallery Section */
        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .gallery-tab {
            padding: 12px 30px;
            background: #fff;
            border: 2px solid #BC7C3B;
            color: #BC7C3B;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .gallery-tab.active {
            background: #041B47;
            color: #fff;
            transform: scale(1.05);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            height: 250px;
            display: none;
        }

        .gallery-item.active {
            display: block;
            animation: scaleIn 0.5s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.15) rotate(2deg);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(4, 27, 71, 0.9), transparent);
            padding: 20px;
            color: #fff;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
            animation: scaleIn 0.3s;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 10px;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: #fff;
            font-size: 40px;
            cursor: pointer;
            font-weight: 300;
            transition: transform 0.3s;
        }

        .lightbox-close:hover {
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 50px;
            cursor: pointer;
            padding: 20px;
            user-select: none;
            transition: all 0.3s;
        }

        .lightbox-nav:hover {
            color: #BC7C3B;
            transform: translateY(-50%) scale(1.2);
        }

        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }

        /* Testimonials */
        .testimonials {
            background: #f8f9ff;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .testimonial-card {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: #BC7C3B;
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(188, 124, 59, 0.2);
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
            color: #666;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #BC7C3B 0%, #041B47 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: #fff;
        }

        .author-info h4 {
            font-weight: 600;
            color: #041B47;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 14px;
            color: #666;
        }

        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            padding: 30px;
            background: #f8f9ff;
            border-radius: 15px;
            transition: all 0.3s;
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(188, 124, 59, 0.1);
        }

        .contact-icon {
            font-size: 32px;
        }

        .contact-item h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #041B47;
        }

        .contact-item p {
            color: #666;
            font-size: 15px;
        }

        .contact-form {
            background: #f8f9ff;
            padding: 40px;
            border-radius: 20px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #041B47;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #BC7C3B;
            box-shadow: 0 0 0 3px rgba(188, 124, 59, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #BC7C3B 0%, #041B47 100%);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(188, 124, 59, 0.3);
        }

        /* Footer */
        footer {
            background: #041B47;
            color: #fff;
            padding: 60px 5% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #BC7C3B;
        }

        .footer-section p,
        .footer-section a {
            color: #fff;
            text-decoration: none;
            line-height: 2;
            display: block;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #BC7C3B;
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(188, 124, 59, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #BC7C3B;
            transform: translateY(-5px) rotate(360deg);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(188, 124, 59, 0.3);
            color: #aaa;
        }

        /* Responsive */
        @media (max-width: 768px) {
			.top-bar .container{
				display: block;
				text-align: center;
			}
			.top-bar .container div:last-child{
				display:none
			}
            .menu-toggle {
                display: block;
            }
			.logo-wrapper{
				left:50% !Important;
			}
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }

            nav ul.active {
                display: flex;
            }

            .hero-slider {
                height: 665px;
            }

            .slide-content h1 {
                font-size: 36px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .slider-arrow.prev { left: 10px; }
            .slider-arrow.next { right: 10px; }

            .about-content,
            .contact-content,
            .mission-vision {
                grid-template-columns: 1fr;
            }

            .stats {
                gap: 30px;
            }

            .section-title h2 {
                font-size: 32px;
            }

            .donation-content h2 {
                font-size: 32px;
            }
        }
		.logo-wrapper {
            position: absolute;
            left: 0%;
            top: 0px;
            transform: translateX(-50%);
        }

        .logo {
            width: 100px;
            height: 100px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            border: 4px solid #fff;
        }

        .logo img {
            max-height: 80px;
            width: auto;
            display: block;
            border-radius: 50%;
        }
		
		
		.policy_section {
            margin-bottom: 20px;
        }
        .policy_section h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .policy_section p, .policy_section ul {
            line-height: 1.6;
            color: #34495e;
        }
        .policy_section ul {
            padding-left: 20px;
        }
        .policy_section ul li {
            margin-bottom: 8px;
        }
		
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: #28a745;
    background: #f0fff4;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Alert Styles */
#contactAlertContainer {
    margin-bottom: 20px;
}

.contact-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

.contact-alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-alert-close {
    margin-left: auto;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: inherit;
    opacity: 0.7;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.contact-alert-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}