:root {
    --lemon-yellow: #ffeb3b;
    --vibrant-orange: #ff9800;
    --gradient-primary: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
    --gradient-secondary: linear-gradient(135deg,
            rgba(255, 235, 59, 0.1) 0%,
            rgba(255, 152, 0, 0.1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #fff;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.cultural-pattern-bg {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnM1LjM3My0xMiAxMi0xMiAxMiA1LjM3MyAxMiAxMi01LjM3MyAxMi0xMiAxMnptMCAxLjVjNy40NTYgMCAxMy41IDYuMDQ0IDEzLjUgMTMuNVMyMy40NTYgNDYuNSAxNiA0Ni41IDIuNSA0MC40NTYgMi41IDMzIDguMDQ0IDE5LjUgMTYgMTkuNXoiIGZpbGw9IiNGRkU5MDAiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvZz48L3N2Zz4=");
    background-repeat: repeat;
    background-size: 60px 60px;
}

.hero-gradient {
    background: var(--gradient-primary);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.15);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
    transform: translateY(-3px);
}

.btn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9800 0%, #ffeb3b 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover:before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: #333;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--vibrant-orange);
}

.btn-secondary:hover {
    background: var(--vibrant-orange);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.2);
}

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.cultural-divider {
    height: 4px;
    width: 120px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 30px auto;
    position: relative;
}

.cultural-divider:before,
.cultural-divider:after {
    content: "✦";
    position: absolute;
    top: -10px;
    color: var(--vibrant-orange);
    font-size: 18px;
}

.cultural-divider:before {
    left: 0;
}

.cultural-divider:after {
    right: 0;
}

.counter-item {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTI1IDI1aDUwdjUwSDI1eiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwgMTUyLCAwLCAwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIi8+PHBhdGggZD0iTTAgMGgxMDB2MTAwSDB6IiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjU1LCAyMzUsIDU5LCAwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+");
    background-repeat: repeat;
    background-size: 100px 100px;
    pointer-events: none;
    opacity: 0.3;
    z-index: -1;
}

@media (max-width: 768px) {
    .counter-item {
        font-size: 2.5rem;
    }
}

.footer-pattern {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCIgdmlld0JveD0iMCAwIDEyMCAxMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMGw2MCA2MEwxMjAgMEgweiIgZmlsbD0iI0ZGRTkwMCIgZmlsbC1vcGFjaXR5PSIwLjAzIi8+PHBhdGggZD0iTTAgMTIwbDYwLTYwIDYwIDYwSDB6IiBmaWxsPSIjRkY5ODAwIiBmaWxsLW9wYWNpdHk9IjAuMDMiLz48cGF0aCBkPSJNMTIwIDBsLTYwIDYwTDAgMGgxMjB6IiBmaWxsPSIjRkZCODAwIiBmaWxsLW9wYWNpdHk9IjAuMDMiLz48cGF0aCBkPSJNMTIwIDEyMEw2MCA2MCAwIDEyMGgxMjB6IiBmaWxsPSIjRkZCODAwIiBmaWxsLW9wYWNpdHk9IjAuMDMiLz48L3N2Zz4=");
    background-repeat: repeat;
    background-size: 120px 120px;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-pulse-slow {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--vibrant-orange);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator:before {
    content: "";
    width: 4px;
    height: 10px;
    background: var(--lemon-yellow);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.brand-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 152, 0, 0.1);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.15);
    border-color: var(--vibrant-orange);
}

.event-card {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.event-card:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.team-member {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 40px;
}




.team-avatar {
    width: 170px;
    height: 170px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================
   HERO IMAGE STYLING
================================ */

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glow background */
.hero-image-wrapper::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.35), transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulseGlow 6s infinite ease-in-out;
}

.hero-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(255, 235, 59, 0.25);
    animation: floatHero 5s ease-in-out infinite;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Hover effect (desktop only) */
.hero-image:hover {
    transform: scale(1.04) rotate(-0.5deg);
    box-shadow: 0 40px 80px rgba(255, 152, 0, 0.35);

}

/* ===============================
   ANIMATIONS
================================ */

@keyframes floatHero {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .hero-image {
        height: 480px;
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper::before {
        width: 260px;
        height: 260px;
    }

    .hero-image {
        height: 360px;
        border-radius: 20px;
        animation: none;
        /* mobile e smooth performance */
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 280px;
        border-radius: 16px;
    }
}


/* ===============================
   JOIN US IMAGE
================================ */

.join-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

/* Maintain 1600x882 ratio */
.join-image {
    width: 100%;
    aspect-ratio: 1600 / 882;
    object-fit: cover;
    display: block;
    border-radius: 24px;

    box-shadow: 0 30px 60px rgba(255, 235, 59, 0.25);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Hover effect (desktop only) */
.join-image-wrapper:hover .join-image {
    transform: scale(1.03);
    box-shadow: 0 40px 80px rgba(255, 152, 0, 0.35);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .join-image {
        border-radius: 22px;
    }
}

@media (max-width: 768px) {
    .join-image-wrapper:hover .join-image {
        transform: none;
        /* mobile friendly */
    }

    .join-image {
        border-radius: 20px;
        box-shadow: 0 24px 50px rgba(255, 235, 59, 0.22);
    }
}

@media (max-width: 480px) {
    .join-image {
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(255, 235, 59, 0.2);
    }
}



/* ===============================
   ABOUT US IMAGE
================================ */

.about-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s ease;
    max-width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.about-image {
    width: 100%;
    aspect-ratio: 16 / 9; /* Slightly more standard */
    object-fit: cover;
    display: block;
    border-radius: 24px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Hover effect on desktop */
.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 123, 255, 0.3);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .about-image {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .about-image-wrapper:hover .about-image {
        transform: none; /* Disable hover on smaller screens */
    }

    .about-image {
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 480px) {
    .about-image {
        border-radius: 14px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    }
}







/* ===============================
   COLOR VARIABLES
================================ */


/* ===============================
   PLANS CARDS UI
================================ */

.plan-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff, #fffdf2);
    border-radius: 28px;
    padding: 36px 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.45s ease, box-shadow 0.45s ease,
        background 0.45s ease;
    overflow: hidden;
}

/* Top glow strip */
.plan-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg,
            rgba(255, 235, 59, 0.7),
            rgba(255, 152, 0, 0.7));
}

/* Hover – SOFT & PREMIUM */
.plan-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 60px rgba(255, 152, 0, 0.22);
    background: linear-gradient(180deg, #ffffff, #fffbe6);
}

/* ===============================
   TITLES
================================ */

.plan-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.plan-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 28px;
}

/* ===============================
   FEATURE LIST (ARROWS)
================================ */

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    line-height: 1.6;
    color: #333;
}

/* Arrow bullet */
.plan-feature::before {
    content: "➜";
    font-size: 16px;
    line-height: 1;
    color: var(--vibrant-orange);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .plan-card {
        padding: 32px 28px;
    }
}

@media (max-width: 768px) {
    .plan-card {
        padding: 28px 24px;
    }

    .plan-title {
        font-size: 24px;
    }

    /* Disable heavy hover on mobile */
    .plan-card:hover {
        transform: none;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .plan-card {
        border-radius: 22px;
    }
}




.event-tab {
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  background: #fff;
  border: 2px solid #ffeb3b;
  color: #333;
  transition: all 0.3s ease;
}

.event-tab:hover {
  background: #fff7cc;
}

.event-tab.active {
  background: linear-gradient(90deg, #ffeb3b, #ff9800);
  color: #000;
  border-color: transparent;
}

.event-content {
  display: none;
}

.event-content.active {
  display: block;
}

.event-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}


 

 