:root {
    --primary: lab(46.28% -40.26 33.32);
    --primary-light: #4caf50;
    --secondary: #ff9800;
    --dark: #1b5e20;
    --light: #e8f5e9;
    --text: #212121;
    --text-light: #757575;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background-color: #f9f9f9;
    overflow-x: hidden;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

/* Enhanced Professional Background Animation */
.main-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: 
        linear-gradient(135deg, rgba(46, 125, 50, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%),
        radial-gradient(circle at 20% 80%, rgba(46, 125, 50, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.2) 0%, transparent 50%);
    animation: backgroundShift 25s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0% 0%, 20% 80%, 80% 20%;
        filter: hue-rotate(0deg);
    }
    25% {
        background-position: 0% 0%, 30% 70%, 70% 30%;
        filter: hue-rotate(10deg);
    }
    50% {
        background-position: 0% 0%, 25% 75%, 75% 25%;
        filter: hue-rotate(20deg);
    }
    75% {
        background-position: 0% 0%, 35% 65%, 65% 35%;
        filter: hue-rotate(10deg);
    }
}

/* Floating Particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0.8;
}

.particle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 8%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.3) 0%, rgba(46, 125, 50, 0.1) 70%);
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 75%;
    left: 15%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.3) 0%, rgba(255, 152, 0, 0.1) 70%);
    animation-duration: 20s;
    animation-delay: -3s;
}

.particle:nth-child(3) {
    width: 50px;
    height: 50px;
    top: 45%;
    left: 85%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.25) 0%, rgba(46, 125, 50, 0.08) 70%);
    animation-duration: 30s;
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-30px) rotate(270deg) scale(1.05);
    }
    100% {
        transform: translateY(0) rotate(360deg) scale(1);
        opacity: 0.8;
    }
}

/* Mountain Silhouette */
.mountain-silhouette {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(27, 94, 32, 0.25) 0%, rgba(27, 94, 32, 0.15) 30%, rgba(27, 94, 32, 0.08) 60%, transparent 100%);
    z-index: -1;
    animation: mountainPulse 30s ease-in-out infinite;
    clip-path: polygon(0% 100%, 10% 70%, 20% 80%, 30% 60%, 40% 90%, 50% 50%, 60% 85%, 70% 65%, 80% 95%, 90% 55%, 100% 100%);
}

@keyframes mountainPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scaleY(1);
        filter: brightness(1);
    }
    50% {
        opacity: 0.95;
        transform: scaleY(1.08);
        filter: brightness(1.2);
    }
}

.section {
    animation: sectionEntrance 1s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes sectionEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container, header, section {
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Enhanced for Mobile & Desktop */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
    z-index: 1001;
    background: none;
    border: none;
    padding: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

/* Navigation Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 10px 15px;
    display: inline-block;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
    width: 0;
}

.nav-links a:hover::after {
    width: calc(100% - 30px);
}

/* Feedback Button in Nav */
.feedback-btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    margin-left: 10px;
}

.feedback-btn-nav:hover {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.feedback-btn-nav::after {
    display: none !important;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1418065460487-3e41a6c84dc5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    width: 100%;
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-color: #e68900;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--secondary);
    margin: 15px auto;
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 60px;
    text-align: center;
}

.stat {
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.chapters {
    background-color: var(--light);
}

.chapters-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.chapter-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.chapter-card:hover {
    transform: translateY(-10px);
}

.chapter-image {
    height: 200px;
    overflow: hidden;
}

.chapter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.chapter-content {
    padding: 20px;
}

.founders-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.founders-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.founder-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary);
}

.founder-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

/* Team Slider */
.x-slider-container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.x-slider-track {
    display: flex;
    gap: 18px;
    transition: transform .5s ease;
}

.x-slide {
    flex: 0 0 25%;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    overflow: hidden;
    transition: .4s;
}

.x-slide:hover {
    transform: translateY(-6px);
}

.x-slide img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.x-slide h3 {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
}

.x-slide p {
    font-size: 14px;
    color: #555;
    margin: 6px 0 14px;
}

.x-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    z-index: 10;
}

.x-btn:hover {
    background: var(--dark);
    transform: translateY(-50%) scale(1.12);
}

.x-prev {
    left: 10px;
}

.x-next {
    right: 10px;
}

/* Buraq Partner Section */
.buraq-partner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
    position: relative;
}

.buraq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.buraq-header {
    text-align: center;
    margin-bottom: 50px;
}

.buraq-header .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.buraq-header h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.buraq-header h2 span {
    background: linear-gradient(125deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.buraq-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.buraq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.15);
}

.buraq-info-panel {
    padding: 40px 35px;
    background: linear-gradient(135deg, #fefaf5, #ffffff);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.logo-circle img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.logo-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
}

.partner-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tag {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-light);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 20px 0;
    font-size: 0.95rem;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-item .stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
}

.buraq-team-panel {
    padding: 40px 35px;
    background: white;
    text-align: center;
}

.panel-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.panel-subtitle {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.team-member {
    text-align: center;
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.team-member:hover .member-avatar {
    border-color: var(--secondary);
    transform: scale(1.02);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 8px 0 2px;
}

.team-member .role {
    font-size: 0.7rem;
    color: var(--primary-light);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 25px 0 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.buraq-social-icon {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.buraq-social-icon:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-4px);
}

.partner-quote {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    background: rgba(76, 175, 80, 0.05);
    padding: 12px 15px;
    border-radius: 30px;
    display: inline-block;
}

/* Sponsors */
.sponsors {
    background-color: var(--light);
}

.sponsor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.sponsor-header {
    padding: 30px;
    background: rgb(245, 248, 246);
    text-align: center;
}

.sponsor-logo {
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.sponsor-body {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}

.sponsor-info {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.sponsor-gallery {
    flex: 1;
    min-width: 300px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 30px;
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-logo {
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Help Foundation */
.help-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.help-text {
    flex: 1;
    min-width: 300px;
}

.help-image {
    flex: 1;
    min-width: 300px;
}

.help-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Contact */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.social-icon-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.social-label {
    font-weight: 600;
    color: #333;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .15s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
    border: 1px solid rgba(0,0,0,0.06);
    color: #333;
    font-size: 18px;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.card-wrapper {
    max-width: 550px;
    width: 100%;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--primary);
}

.input-field {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

#send-button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.footer_sec {
    background: var(--primary);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer_div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.announcement-bar {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 10;
}

.blinking-text {
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.7;
    }
}

.comming_soon {
    width: 70%;
    height: 150px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    z-index: 5;
}

.inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: 100%;
    backdrop-filter: blur(4px);
    flex-direction: column;
    border-radius: 20px;
}

.black {
    color: black;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
/* Mobile Styles - Menu optimized for Android */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 25px 30px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        gap: 15px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin: 0;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover {
        padding-left: 5px;
        color: var(--primary);
    }
    
    .feedback-btn-nav {
        margin: 10px 0 0 !important;
        text-align: center;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        border-radius: 50px;
        padding: 12px !important;
    }
    
    .feedback-btn-nav:hover {
        padding-left: 12px !important;
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .header-container {
        padding: 8px 0;
    }
    
    .announcement-bar {
        top: 70px;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .comming_soon {
        width: 90%;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .x-slide {
        flex: 0 0 50%;
    }
    
    .buraq-grid {
        grid-template-columns: 1fr;
    }
    
    .buraq-info-panel, .buraq-team-panel {
        padding: 30px 25px;
    }
    
    .logo-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .buraq-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 1000px) {
    .x-slide {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 700px) {
    .x-slide {
        flex: 0 0 50%;
    }
    .x-slide img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .buraq-partner-section {
        padding: 60px 0;
    }
    .buraq-header h2 {
        font-size: 1.5rem;
    }
    .buraq-header p {
        font-size: 0.9rem;
    }
    .logo-circle {
        width: 65px;
        height: 65px;
    }
    .logo-wrapper h3 {
        font-size: 1.3rem;
    }
    .team-row {
        gap: 25px;
    }
    .member-avatar {
        width: 85px;
        height: 85px;
    }
    .x-slide {
        flex: 0 0 90%;
    }
    .x-slide img {
        height: 170px;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .section {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
}

/* Large Desktop Screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Desktop Screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .x-slide {
        flex: 0 0 25%;
    }
}

/* Tablet Screens */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .founders-container {
        grid-template-columns: 1fr;
    }
    
    .chapters-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .buraq-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsor-body {
        flex-direction: column;
    }
    
    .sponsor-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .card-wrapper {
        max-width: 100%;
    }
}

/* Mobile Landscape */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat {
        min-width: calc(50% - 20px);
    }
    
    .founders-container {
        grid-template-columns: 1fr;
    }
    
    .chapters-gallery {
        grid-template-columns: 1fr;
    }
    
    .buraq-header h2 {
        font-size: 1.5rem;
    }
    
    .help-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer_div {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Buraq Logo Section */
.buraq-logo-section {
    text-align: center;
    margin-bottom: 50px;
}

.buraq-logo-container {
    display: inline-block;
    padding: 20px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 125, 32, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buraq-logo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.buraq-partner-logo {
    max-width: 280px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .buraq-logo-container {
        padding: 15px 30px;
    }
    
    .buraq-partner-logo {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .buraq-logo-container {
        padding: 12px 20px;
    }
    
    .buraq-partner-logo {
        max-width: 160px;
    }
}