 :root {
            --primary-color: #202A44;
            --secondary-color: #E67E22;
            --secondary-dark: #D35400;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --dark-blue: #0a0f44;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --section-padding: 80px 5%;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }
        
        /* Navbar styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--primary-color);
            padding: 15px 5%;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }
        
        .navbar.scrolled {
            padding: 10px 5%;
            box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo {
            width: 50px;
            height: auto;
            transition: var(--transition);
        }
        
        .logo-text {
            font-size: 22px;
            font-weight: 700;
            color: var(--secondary-color);
            line-height: 1.2;
        }
        
        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
            margin: 0;
            padding: 0;
            transition: var(--transition);
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-item {
            text-decoration: none;
            color: var(--white);
            font-size: 16px;
            font-weight: 500;
            padding: 8px 0;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-item:hover {
            color: var(--secondary-color);
        }
        
        .nav-item::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }
        
        .nav-item:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .donate-btn {
            background: var(--secondary-color);
            color: var(--white);
            padding: 10px 25px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0px 4px 15px rgba(230, 126, 34, 0.3);
        }
        
        .donate-btn:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0px 6px 20px rgba(230, 126, 34, 0.4);
        }
        
        /* Modern hamburger menu */
        .hamburger {
            display: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            transition: var(--transition);
        }
        
        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: var(--white);
            margin: 6px 0;
            transition: var(--transition);
            transform-origin: center;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        /* Main content spacing */
        main {
            margin-top: 80px;
        }
        
        /* Contact Container */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--section-padding);
        }
        
        /* Contact Header */
        .contact-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeIn 1s ease-out;
        }
        
        .contact-header h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
        }
        
        .contact-header h1::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -15px;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        .contact-header p {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact Content */
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        /* Contact Information */
        .contact-info {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .info-item {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
        }
        
        .info-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .info-item i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .info-item h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .info-item p {
            font-size: 1.1rem;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* Contact Form */
        .contact-form {
            flex: 1;
            min-width: 300px;
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .contact-form:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
        }
        
        .contact-form h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--secondary-color);
            color: var(--white);
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
        }
        
        .submit-btn:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
        }
        
        /* Map Section */
        .map-section {
            margin-top: 60px;
            text-align: center;
        }
        
        .map-section h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
        }
        
        .map-section h2::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -10px;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .map-section iframe {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        /* Footer */
        .footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 80px 5% 30px;
            font-family: 'Poppins', sans-serif;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .logo-column {
            max-width: 350px;
        }
        
        .footer-logo {
            width: 60px;
            height: auto;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .footer-logo:hover {
            transform: rotate(15deg);
        }
        
        .footer-logo-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .footer-text {
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .footer-heading {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--secondary-color);
            position: relative;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 40px;
            height: 2px;
            background: var(--secondary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-link {
            color: var(--white);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
            opacity: 0.9;
            position: relative;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 1px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--secondary-color);
            opacity: 1;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 50%;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-copyright {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .designer-credit {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 10px;
        }
        
        .designer-link {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .designer-link:hover {
            color: var(--secondary-dark);
            text-decoration: underline;
        }
        
        /* Admin link */
        .admin-link {
            display: inline-block;
            margin-top: 15px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .admin-link:hover {
            color: var(--secondary-color);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 5%;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 30px;
                clip-path: circle(0% at 90% 5%);
                transition: clip-path 0.8s ease-in-out;
                z-index: 1000;
            }
            
            .nav-links.active {
                clip-path: circle(150% at 90% 5%);
            }
            
            .hamburger {
                display: block;
                z-index: 1001;
            }
            
            .contact-header h1 {
                font-size: 2.2rem;
            }
            
            .contact-header p {
                font-size: 1rem;
            }
            
            .info-item {
                padding: 20px;
            }
            
            .contact-form {
                padding: 30px;
            }
            
            .map-section h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .contact-header h1 {
                font-size: 2rem;
            }
            
            .info-item i {
                font-size: 2rem;
            }
            
            .info-item h3 {
                font-size: 1.1rem;
            }
            
            .info-item p {
                font-size: 1rem;
            }
            
            .contact-form h2 {
                font-size: 1.5rem;
            }
            
            .form-group input,
            .form-group textarea {
                padding: 12px;
            }
            
            .submit-btn {
                padding: 12px 25px;
            }
        }
