/* --- Global Reset & Variables --- */
:root {
    --bg-color: #0a192f;      /* Dark Navy Background */
    --light-bg: #112240;      /* Lighter Navy for Cards */
    --text-primary: #ccd6f6;  /* Off-White Text */
    --text-secondary: #8892b0;/* Grey Text */
    --accent: #64ffda;        /* Neon Teal Highlight */
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Navigation --- */
.navbar {
    background-color: rgba(10, 25, 47, 0.95);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}
.logo-text {
    display: flex;
    align-items: center;
    font-weight: 700; /* Text bold karne ke liye */
    color: var(--white);
    line-height: 1; /* Extra height hatane ke liye */
}


.highlight { color: var(--accent); }

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.nav-links a:hover { color: var(--accent); }

.btn-contact {
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.btn-contact:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    margin: 0 10px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-color);
}

.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
}

.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* --- General Section Styling --- */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; text-align: center; }
.section-header h2 { font-size: 2.5rem; color: var(--white); margin-bottom: 10px; }
.underline { width: 60px; height: 4px; background: var(--accent); margin: 10px auto; border-radius: 2px; }

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

.feature-list li { margin-bottom: 10px; color: var(--text-secondary); }

/* Code Visual Card */
.code-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: 'Courier New', monospace;
    border-left: 4px solid var(--accent);
}
.code-header { display: flex; gap: 8px; margin-bottom: 20px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.keyword { color: #c792ea; } .string { color: #c3e88d; } .name { color: #ffcb6b; }
.indent { padding-left: 20px; }

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

.project-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.project-card:hover { transform: translateY(-5px); }

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: var(--bg-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-bottom-left-radius: 8px;
}

.card-content h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 15px; }
.project-desc { color: var(--text-secondary); margin-bottom: 20px; font-size: 0.95rem; }

.tech-stack { display: flex; gap: 10px; margin-bottom: 25px; flex-wrap: wrap; }
.tech-stack span {
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(100, 255, 218, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.btn-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.btn-link:hover { text-decoration: underline; }

/* --- Footer --- */
footer {
    background-color: #020c1b;
    padding: 40px 0 20px;
    text-align: center;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.copyright { font-size: 0.8rem; color: var(--text-secondary); }

/* --- Mobile Responsive --- */
.hamburger { display: none; cursor: pointer; }

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    
    .nav-links { display: none; } /* Simplified for this example */
    .footer-content { flex-direction: column; gap: 20px; }
}

/* =========================================
   ADD THIS TO THE BOTTOM OF YOUR STYLE.CSS
   ========================================= */

/* --- Project Page Specific Styles --- */

.project-hero {
    padding: 120px 0 60px 0;
    text-align: center;
    background: radial-gradient(circle at center, #112240 0%, #0a192f 100%);
}

.tech-tag {
    display: inline-block;
    font-size: 0.8rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    margin: 0 5px 20px 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Phone Mockup Styling */
.phone-mockup {
    width: 280px;
    height: 550px;
    background: #020c1b;
    border: 8px solid #8892b0;
    border-radius: 40px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.screen {
    width: 100%;
    height: 100%;
    background: #112240;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.screen-header {
    position: absolute;
    top: 30px;
    font-weight: bold;
    font-size: 1.2rem;
}

.mic-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: rgba(100, 255, 218, 0.1);
    padding: 20px;
    border-radius: 50%;
    color: var(--accent);
}

/* Feature List Styling */
.feature-item {
    margin-bottom: 30px;
    border-left: 2px solid rgba(100, 255, 218, 0.2);
    padding-left: 20px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tech-specs h4 {
    margin-bottom: 15px;
    color: var(--white);
}

/* Call to Action Box */
.cta-section {
    background-color: var(--light-bg);
    margin-top: 50px;
}

.text-center { text-align: center; }

/* Responsive for Project Page */
@media (max-width: 768px) {
    .project-details-grid {
        grid-template-columns: 1fr;
    }
    .phone-mockup {
        margin-bottom: 50px;
        height: 450px;
        width: 240px;
    }
}

/* --- Phone Body Structure --- */
.phone-mockup {
    width: 280px;
    height: 550px;
    background-color: #020c1b; /* Phone Border Color */
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid #112240; /* Outer Bezel */
    margin: 0 auto;
    position: relative;
}

/* --- Screen --- */
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a192f 0%, #112240 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- App Header --- */
.app-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    opacity: 0.7;
}

/* --- Main Content (Mic & Animation) --- */
.app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

/* Microphone Style */
.mic-circle {
    width: 80px;
    height: 80px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.mic-icon {
    font-size: 32px;
    z-index: 2;
}

/* Pulsing Effect behind Mic */
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #64ffda;
    opacity: 0;
    animation: pulse-animation 2s infinite;
}

.status-text {
    color: #64ffda;
    font-family: monospace;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* --- Voice Wave Bars Animation --- */
.voice-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
}

.bar {
    display: block;
    width: 6px;
    background: #64ffda;
    border-radius: 10px;
    animation: sound-wave 1s ease-in-out infinite;
}

/* Har bar ko alag delay denge taaki wave jaisa lage */
.bar:nth-child(1) { height: 20%; animation-delay: 0.1s; }
.bar:nth-child(2) { height: 50%; animation-delay: 0.2s; }
.bar:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.bar:nth-child(4) { height: 50%; animation-delay: 0.4s; }
.bar:nth-child(5) { height: 20%; animation-delay: 0.5s; }

/* --- App Footer (Home Bar) --- */
.app-footer {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.home-indicator {
    width: 40%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* --- Keyframe Animations --- */

@keyframes sound-wave {
    0% { height: 20%; opacity: 0.5; }
    50% { height: 100%; opacity: 1; }
    100% { height: 20%; opacity: 0.5; }
}

@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* --- Chat Screen Layout --- */
.chat-screen {
    flex-grow: 1;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden; /* Scroll hide karne ke liye */
}

/* --- Message Bubbles --- */
.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    animation: popIn 0.3s ease-out;
}

/* User Message (Right - Neon Teal) */
.user-msg {
    align-self: flex-end;
    background-color: #64ffda; /* Neon Teal */
    color: #0a192f; /* Dark Navy Text */
    border-bottom-right-radius: 2px;
    font-weight: 600;
}

/* AI Message (Left - Light Navy) */
.ai-msg {
    align-self: flex-start;
    background-color: #112240; /* Lighter Navy */
    color: #ccd6f6; /* White Text */
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-bottom-left-radius: 2px;
    display: flex;
    align-items: flex-end; /* Avatar align */
    gap: 8px;
}

/* Sub-text for translation (English meaning) */
.sub-text {
    font-size: 10px;
    opacity: 0.7;
    font-style: italic;
    display: block;
    margin-top: 4px;
}

/* AI Small Avatar Icon */
.ai-avatar {
    font-size: 12px;
    margin-bottom: 2px;
}

/* --- Typing Dots Animation --- */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 5px 0;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background-color: #64ffda;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

/* --- Input Bar at Bottom --- */
.input-bar {
    padding: 15px;
    background-color: #112240;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-field {
    background-color: #0a192f;
    color: #8892b0;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 12px;
    flex-grow: 1;
}

.send-btn {
    color: #64ffda;
    font-size: 18px;
    cursor: pointer;
}

/* --- Animations --- */
@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Aapubhasa.html Development Roadmap
.timeline {
    border-left: 2px solid rgba(100, 255, 218, 0.2); /* Teal Line */
    margin-left: 20px;
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item h4 { color: #fff; margin-bottom: 5px; }
.timeline-item p { color: #8892b0; font-size: 0.9rem; }

/* The Dot */
.timeline-item .dot {
    width: 16px;
    height: 16px;
    background: #0a192f;
    border: 2px solid #8892b0;
    border-radius: 50%;
    position: absolute;
    left: -39px;
    top: 5px;
}

/* Completed Item Style */
.timeline-item.done .dot {
    background: #64ffda;
    border-color: #64ffda;
}

/* Active Item Style (Pulse) */
.timeline-item.active .dot {
    background: #64ffda;
    box-shadow: 0 0 10px #64ffda;
}

.timeline-item.active .dot.pulse {
    animation: pulse-animation 2s infinite;
}

/*  home page Founder About us */

.founder-card {
    background: linear-gradient(135deg, #112240 0%, #0a192f 100%);
    border: 1px solid var(--accent);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    position: relative;
}

.founder-card::before {
    content: '"';
    font-size: 80px;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.founder-text p { font-style: italic; color: var(--text-primary); }

/* HTML - <body> ke turant baad paste karein): */
 
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Content ke peeche */
}

.background-animation span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(100, 255, 218, 0.1); /* Teal transparent */
    animation: moveUp 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

/* Alag alag speed aur position */
.background-animation span:nth-child(1){ left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.background-animation span:nth-child(2){ left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.background-animation span:nth-child(3){ left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.background-animation span:nth-child(4){ left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.background-animation span:nth-child(5){ left: 65%; width: 20px; height: 20px; animation-delay: 0s; }

@keyframes moveUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
}


/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-header {
    padding-top: 120px;
    padding-bottom: 40px;
    background-color: var(--bg-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Info thoda chhota, Form bada */
    gap: 60px;
    align-items: start;
}

/* --- Left Side: Contact Info --- */
.contact-info h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.info-desc {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.info-item .details span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-item .details a, 
.info-item .details p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item .details a:hover {
    color: var(--accent);
}

/* Social Icons */
.social-section h4 {
    color: var(--white);
    margin: 40px 0 20px 0;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-btn {
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--accent);
    color: var(--bg-color);
    background-color: var(--accent);
}

/* --- Right Side: Form --- */
.contact-form-card {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-color);
    border: 1px solid #233554;
    border-radius: 5px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

/* Dropdown arrow fix for dark mode */
.form-group select {
    cursor: pointer;
}

.full-width {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack one below other */
        gap: 40px;
    }
    
    .contact-form-card {
        padding: 25px;
    }
}
/* --- Home Page CTA Banner --- */
.cta-banner {
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), 
                url('https://www.transparenttextures.com/patterns/cubes.png'); /* Subtle pattern */
    padding: 80px 0;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    margin-top: 50px;
}

.cta-banner h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
}

/* Button ko thoda bada banayenge yahan */
.big-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3); /* Neon Glow */
}

.big-btn:hover {
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.6);
    transform: translateY(-3px);
}

/* Mobile ke liye text size adjust */
@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 1.8rem;
    }
}


/* --- Team / Profile Section Styles --- */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

/* Card Design */
.team-card {
    background-color: var(--light-bg); /* Lighter Navy */
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(100, 255, 218, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px); /* Upar uthne ka effect */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(100, 255, 218, 0.3);
}

/* Profile Image Styling */
.profile-img-box {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px auto;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Photo crop hoke fit hogi */
    border-radius: 50%;
    border: 3px solid var(--accent); /* Neon Border */
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.2); /* Neon Glow */
    background-color: #0a192f; /* Fallback color */
}

/* Text Styling */
.team-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.role-badge {
    display: inline-block;
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Divider Line */
.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 20px 0;
}

/* Responsibilities List */
.resp-list {
    text-align: left;
    padding-left: 10px;
}

.resp-list li {
    color: var(--text-primary); /* Off-white */
    font-size: 0.9rem;
    margin-bottom: 8px;
    list-style: none;
    position: relative;
    padding-left: 20px;
}

/* Custom Bullet Point (Arrow) */
.resp-list li::before {
    content: "▹";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr; /* Mobile par ek ke neeche ek */
        max-width: 400px;
        margin: 40px auto 0 auto;
    }
}



/* Profile Image Container */
.profile-img-box {
    width: 140px;       /* Size */
    height: 140px;
    margin: 0 auto 20px auto; /* Center mein lane ke liye */
    position: relative;
    z-index: 1;
}
/*after lunch 11_Dec_2025 "/
/* Main Profile Image Styling */
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* Image chipkegi nahi, fit hogi */
    border-radius: 50%;   /* Perfect Circle */
    
    /* Border Styling - Dark Blue background ke upar acha dikhega */
    border: 4px solid #112240;  /* Card ke color ka border taaki cut out lage */
    
    /* Outer Glow (Neon Teal) */
    box-shadow: 0 0 0 3px #64ffda, /* Thin teal line */
                0 0 20px rgba(100, 255, 218, 0.4); /* Glow effect */
                
    background-color: #e0e0e0; /* Agar image load na ho to grey dikhe */
    transition: all 0.3s ease;
}

/* Hover karne par effect */
.team-card:hover .profile-img {
    transform: scale(1.05); /* Thoda zoom hoga */
    box-shadow: 0 0 0 3px #64ffda, 
                0 0 30px rgba(100, 255, 218, 0.6); /* Glow badh jayega */
}

/* =========================================
   DONATION PAGE STYLES
   ========================================= */

.donate-section {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.donate-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side Text */
.donate-text h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.donate-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.transparency-box {
    margin-top: 30px;
    background: rgba(100, 255, 218, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}

.transparency-box h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.transparency-box ul {
    list-style: none;
    padding-left: 0;
}

.transparency-box ul li {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

/* Right Side QR Card */
.qr-card {
    background: linear-gradient(145deg, #112240, #0a192f);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-width: 400px;
    margin: 0 auto;
}

.qr-header h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.qr-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* The White Box for QR Code */
.qr-box {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}

/* Neon Corners around QR */
.qr-box::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--accent), transparent, var(--accent));
    z-index: -1;
    animation: border-glow 3s infinite linear;
}

.qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

.upi-id-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 5px;
    color: var(--text-secondary);
    font-family: monospace;
    font-size: 1rem;
    margin-bottom: 20px;
    border: 1px dashed var(--text-secondary);
}

.upi-id-box strong {
    color: var(--accent);
    margin-left: 5px;
    letter-spacing: 1px;
}

.thank-you-note {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes border-glow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .donate-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .transparency-box {
        text-align: left;
    }
}

/* --- Footer Links Styling --- */
.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links-list a:hover {
    color: var(--accent); /* Neon Teal color */
    padding-left: 5px;    /* Hover karne par thoda right khiskega */
}

/* Footer ko mobile par sahi dikhane ke liye */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}


/* --- Logo Size Fix --- */
.nav-logo {
    height: 40px !important;  /* Logo ki height fix kar di */
    width: auto !important;   /* Width apne aap adjust hogi */
    max-width: 100%;          /* Screen se bahar nahi jayega */
    object-fit: contain;      /* Image stretch nahi hogi */
    display: block;           /* Layout break hone se bachayega */
}

/* Navbar Flexbox Fix (Taaki Logo aur Text ek line mein rahe) */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden; /* Agar logo bada ho to bhi bahar na nikle */
}


/* =========================================
   NEW ATTRACTIVE SUPPORT BUTTON STYLE
   ========================================= */

.btn-support-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Icon aur text ke beech gap */
    padding: 14px 35px;
    
    /* Gradient Background (Teal to Blue) */
    background: linear-gradient(45deg, #64ffda, #4facfe);
    
    color: #0a192f; /* Dark Text for contrast */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4); /* Initial Glow */
    
    /* Centering if needed */
    margin-top: 20px;
}

/* Button Text Styling */
.btn-support-glow .text {
    position: relative;
    z-index: 2;
}

/* Button Icon Styling */
.btn-support-glow .icon {
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

/* --- Hover Effects --- */
.btn-support-glow:hover {
    transform: translateY(-5px) scale(1.02); /* Thoda upar aur bada hoga */
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.6); /* Glow badh jayega */
}

/* Shine Animation Effect on Hover */
.btn-support-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: all 0.6s;
    z-index: 1;
}

.btn-support-glow:hover::before {
    left: 100%; /* Shine effect move karega */
}

/* Mobile Responsive Adjustment */
@media (max-width: 768px) {
    .btn-support-glow {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: auto; /* Full width nahi, content ke hisab se */
    }
}


/* --- Donate Button Style --- */
.btn-donate {
    background-color: transparent;
    color: #ffd700; /* Gold Color */
    border: 2px solid #ffd700;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex; /* Icon aur text align karne ke liye */
    align-items: center;
    gap: 8px;
}

.btn-donate:hover {
    background-color: #ffd700;
    color: #0a192f; /* Background dark navy ho jayega text ka */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); /* Gold Glow */
    transform: translateY(-3px);
}

/* Agar Hero Section mein laga rahe hain to thoda bada size */
.hero-buttons .btn-donate {
    padding: 12px 30px;
    font-size: 1rem;
    margin-left: 15px; /* Dusre button se gap */
}


/* =========================================
   NEW ATTRACTIVE SUPPORT BUTTON STYLE
   ========================================= */

.btn-support-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Icon aur text ke beech gap */
    padding: 14px 35px;
    
    /* Gradient Background (Teal to Blue) */
    background: linear-gradient(45deg, #64ffda, #4facfe);
    
    color: #0a192f; /* Dark Text for contrast */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4); /* Initial Glow */
    
    /* Centering if needed */
    margin-top: 20px;
}

/* Button Text Styling */
.btn-support-glow .text {
    position: relative;
    z-index: 2;
}

/* Button Icon Styling */
.btn-support-glow .icon {
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

/* --- Hover Effects --- */
.btn-support-glow:hover {
    transform: translateY(-5px) scale(1.02); /* Thoda upar aur bada hoga */
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.6); /* Glow badh jayega */
}

/* Shine Animation Effect on Hover */
.btn-support-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: all 0.6s;
    z-index: 1;
}

.btn-support-glow:hover::before {
    left: 100%; /* Shine effect move karega */
}

/* Mobile Responsive Adjustment */
@media (max-width: 768px) {
    .btn-support-glow {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: auto; /* Full width nahi, content ke hisab se */
    }
}

/* --- HAMBURGER MENU STYLES --- */

/* 1. Default (Desktop) par Hamburger chhupa rahega */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent); /* Neon color */
    border-radius: 5px;
    transition: 0.3s;
}

/* 2. Mobile View Logic (Max Width 768px) */
@media (max-width: 768px) {
    
    /* Hamburger ko dikhao */
    .hamburger {
        display: flex; 
        z-index: 101; /* Sabse upar */
    }

    /* Links ko chhupa do (Default mobile state) */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Screen ke bahar right side mein */
        height: 100vh; /* Pura lamba */
        width: 70%;    /* Screen ka 70% hissa */
        background-color: #112240; /* Dark Card Background */
        display: flex;
        flex-direction: column; /* Upar se niche list */
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.4s ease-in-out; /* Smooth animation */
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 100;
    }

    /* Jab Menu Active ho (JS se class add hogi) */
    .nav-links.active {
        right: 0; /* Wapis screen mein lao */
    }

    /* Auth Item ko mobile par adjust karo */
    .auth-item {
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* --- Navbar Auth Section Styling --- */

/* 1. Sign In Button Style */
.btn-login-nav {
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
    font-weight: 600;
}

.btn-login-nav:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

/* 2. Profile Box (Logged In State) */
.nav-profile-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 30px;
    transition: 0.3s;
    border: 1px solid transparent; /* Invisible border */
}

.nav-profile-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* User ka Naam (Navbar mein) */
#nav-user-name {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Chhota Gol Avatar */
.nav-avatar-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent); /* Neon Border */
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3); /* Glow */
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .auth-item {
        margin-top: 10px;
    }
    #nav-user-name {
        display: inline-block; /* Mobile par naam dikhana chahiye */
    }
}
