/* ========================================
   TEAM SANAT - Premium Political Website
   Modern, Elegant, Responsive Design
   ======================================== */

/* === CSS Variables === */
:root {
    --primary-red: #E30613;
    --primary-green: #0B8F3A;
    --gold: #FFD700;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #2D3748;
    --text-dark: #1A202C;
    --text-light: #718096;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --gradient-red: linear-gradient(135deg, #E30613 0%, #C50510 100%);
    --gradient-green: linear-gradient(135deg, #0B8F3A 0%, #097A31 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-hero: linear-gradient(135deg, #E30613 0%, #0B8F3A 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-light);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* === Container === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
     padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C50510 0%, #A0040D 100%);
}

.btn-secondary {
    background: var(--gradient-green);
    color: var(--white);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #097A31 0%, #076528 100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-red);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

/* ===========================
   Header & Navigation
=========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 110px;
    padding: 10px 0;
}

main {
    margin-top: 110px;
}

@media (max-width: 1024px) {
    main {
        margin-top: 90px;
    }
}

.hero {
    position: relative;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    padding: 180px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
    z-index: 1;
    pointer-events: none;
}

.hero > .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1,
.hero .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}


/* ===========================
   Logo
=========================== */
/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: 90px;      /* Increase to 100px if needed */
    width: auto;       /* Maintain aspect ratio */
    max-width: 100%;
}

/* ===========================
   Navigation Menu
=========================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===========================
   Buttons
=========================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile-only helper: hide by default, show inside mobile menu */
.mobile-only {
    display: none;
}

/* ===========================
   Mobile Toggle
=========================== */

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 1024px) {

    .navbar {
        min-height: 90px;
    }

    .logo img {
        max-width: 220px;
        max-height: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }
    /* Show mobile-only items inside the mobile nav */
    .mobile-only {
        display: block;
    }
    .nav-menu .mobile-only .nav-btn {
        width: 100%;
        padding: 12px 20px;
        text-align: center;
        border-radius: 12px;
    }
}
/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 180px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.hero > .hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: -50px;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

/* === Section Styles === */
.section {
    padding: 100px 0;
}

.project-map-section {
    padding: 100px 0;
    background: #ffffff;
}

.project-map-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}

.project-map-card,
.project-map-card-secondary {
    border-radius: 32px;
    border: 1px solid rgba(226, 232, 240, 1);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    padding: 3rem;
}

.project-map-card {
    background: #fee2e2;
}

.project-map-card-secondary {
    background: #f8fafc;
}

.project-map-label {
    display: inline-flex;
    border-radius: 9999px;
    background: #fee2e2;
    color: #b91c1c;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.project-map-title {
    margin-top: 1.5rem;
    font-size: clamp(2rem, 2.5vw, 2.75rem);
    line-height: 1.05;
    color: #0f172a;
}

.project-map-text,
.project-map-card-secondary p,
.project-map-card-secondary ul {
    margin-top: 1.25rem;
    color: #475569;
    line-height: 1.75;
    font-size: 1rem;
}

.project-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    border-radius: 9999px;
    background: #dc2626;
    color: #ffffff;
    padding: 1rem 1.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease;
}

.project-map-link:hover {
    background: #b91c1c;
}

.project-map-overview-title {
    color: #b91c1c;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.875rem;
    font-weight: 700;
}

.project-map-features {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.project-map-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}

.project-map-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #dc2626;
    font-size: 1rem;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .project-map-grid {
        grid-template-columns: 1fr;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(227, 6, 19, 0.1);
    color: var(--primary-red);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* === Stats Section === */
.stats-section {
    background: var(--light-gray);
}

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

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Cards === */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* === Glassmorphism Card === */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
}

/* === Leadership Grid === */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.leader-card {
    text-align: center;
    padding: 40px 30px;
}

.leader-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.leader-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.leader-position {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 16px;
}

/* === Organization Flow === */
.org-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.org-node {
    background: var(--white);
    padding: 30px 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 250px;
    transition: var(--transition);
}

.org-node:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.org-node-title {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.org-arrow {
    font-size: 2rem;
    color: var(--primary-green);
}

/* === Forms === */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

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

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* === Footer === */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-red);
    transform: translateY(-3px);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }

/* === Responsive === */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}



.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:320px;
    cursor:pointer;
}

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

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    color:#fff;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.60) 35%,
        rgba(0,0,0,.20) 70%,
        transparent 100%
    );
}

.gallery-overlay h4{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#fff;
}

.gallery-overlay p{
    margin:8px 0;
    color:#f5f5f5;
    font-size:15px;
}

.gallery-overlay span{
    display:inline-block;
    margin-top:10px;
    background:rgba(255,255,255,.2);
    padding:6px 14px;
    border-radius:20px;
    font-size:14px;
    color:#fff;
}


.activity-card{
    transition:.4s;
}

.activity-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15)!important;
}

.activity-img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card-body{
    padding:25px;
}

.card-body h5{
    font-weight:700;
    line-height:1.5;
    min-height:80px;
}

.card-body p{
    color:#666;
    line-height:1.7;
    min-height:80px;
}

@media(max-width:768px){

.activity-img{
    height:220px;
}

}



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

.social-link{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.social-link:hover{
    transform:translateY(-5px) scale(1.08);
    color:#fff;
}

.facebook{
    background:#1877F2;
}

.twitter{
    background:#000;
}

.instagram{
    background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.youtube{
    background:#FF0000;
}

.whatsapp{
    background:#25D366;
}

.social-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    color:#fff !important;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.social-btn:hover{
    transform:translateY(-5px) scale(1.08);
    color:#fff !important;
}

.facebook{
    background:#1877F2;
}

.whatsapp{
    background:#25D366;
}

.twitter{
    background:#000;
}

.telegram{
    background:#229ED9;
}

.copy{
    background:#ff9800;
    border:none;
}

.footer-link{
    display:block;
    color:rgba(255,255,255,.75);
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-link:hover{
    color:#ffffff;
    padding-left:8px;
}

.footer-link.active{
    color:#ffd700;
    font-weight:600;
}



.gallery-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
    transition: .3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item iframe {
    width: 100%;
    height: 250px;
    display: block;
    border: 0;
}

.gallery-content {
    padding: 15px;
}

.gallery-content h4 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.gallery-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.gallery-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.gallery-content {
    padding: 15px;
}

.gallery-content h5 {
    margin-bottom: 10px;
}

.gallery-content p {
    margin-bottom: 0;
}


.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.12);
    transition: all .3s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-content {
    padding: 15px;
}

.video-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.video-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}


.gallery-card {
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    text-align: center;
    padding: 10px;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}



/* ===================================
   Floating Bottom Right Icons
=================================== */

.floating-icons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-icons .icon {
    position: relative;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 24px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.floating-icons .icon:hover {
    transform: scale(1.1);
}

/* Tooltip */
.floating-icons .icon span {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);

    background: #222;
    color: #fff;

    padding: 8px 15px;
    border-radius: 6px;

    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.floating-icons .icon:hover span {
    opacity: 1;
    visibility: visible;
}

/* Colors */

.phone {
    background: #1877F2;
}

.whatsapp {
    background: #25D366;
}

.join {
    background: #ff6b00;
}

/* WhatsApp Pulse */

.whatsapp {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */

@media (max-width:768px) {

    .floating-icons {
        right: 15px;
        bottom: 15px;
    }

    .floating-icons .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-icons .icon span {
        display: none;
    }
}

/*==============================
 Membership Form
===============================*/

.registration-section{
    padding:35px 0;
    background:#f5f7fb;
}

.registration-card{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.form-header{
    text-align:center;
    margin-bottom:20px;
}

.form-header h2{
    font-size:34px;
    color:#d71920;
    font-weight:700;
    margin-bottom:8px;
}

.form-header p{
    color:#666;
    font-size:15px;
    margin:0;
}

/* Grid */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:15px;
    font-weight:600;
    margin-bottom:6px;
}

.form-group span{
    color:red;
}

.form-control{
    width:100%;
    height:46px;
    padding:10px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    transition:.3s;
}

textarea.form-control{
    height:100px;
}

input[type=file]{
    height:auto;
    padding:10px;
}

.form-control:focus{
    border-color:#d71920;
    outline:none;
    box-shadow:0 0 8px rgba(215,25,32,.15);
}

.form-group small{
    font-size:12px;
    color:#777;
    margin-top:5px;
}

.full-width{
    grid-column: 1 / -1;
}

.alert{
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 600;
}

.alert-success{
    background: #eaf8ee;
    color: #1d7a3d;
    border: 1px solid #bde6c8;
}

.alert-danger{
    background: #fff1f1;
    color: #b42318;
    border: 1px solid #f6c2c2;
}

.submit-btn{
    margin-top:20px;
}

.submit-btn button{
    width:100%;
    height:48px;
    border:none;
    border-radius:8px;
    background:#d71920;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.submit-btn button:hover{
    background:#b31318;
}

/* Mobile */

@media(max-width:768px){

.registration-section{
padding:20px 10px;
}

.registration-card{
padding:18px;
border-radius:10px;
}

.form-header{
margin-bottom:15px;
}

.form-header h2{
font-size:26px;
}

.form-header p{
font-size:14px;
}

.form-grid{
grid-template-columns:1fr;
gap:12px;
}

.form-control{
height:44px;
font-size:14px;
}

.submit-btn{
margin-top:15px;
}

.submit-btn button{
height:46px;
font-size:16px;
}

}

.photo-preview{

margin-top:15px;

text-align:center;

}

.photo-preview img{

width:140px;

height:140px;

border-radius:50%;

border:4px solid #ddd;

object-fit:cover;

display:none;

margin:auto;

}

.error{

color:red;

font-size:13px;

margin-top:5px;

}

.loading{

pointer-events:none;

opacity:.7;

}











