:root {
    --emerald: #10b981;
    --emerald-dark: #059669;
    --emerald-light: #34d399;
    --gold: #fbbf24;
    --gold-dark: #f59e0b;
    --black: #111827;
    --white: #f9fafb;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --gold-light: #fde68a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--emerald);
    color: white;
}

.btn-primary:hover {
    background-color: var(--emerald-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
}

.btn-secondary:hover {
    background-color: rgba(16, 185, 129, 0.1);
    transform: translateY(-3px);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

/* Premium Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
   
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background-color: transparent;
    padding: 15px 0;
    
    
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo:hover {
    transform: translateY(-2px);
}



.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}
 .logo {
        font-size: 1.8rem;
        font-weight: 500;
        /*color; #14c794;*/;
        color:white;
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo span {
        color: #00e6a4;
      }

      .logo i {
        margin-right: 8px;
        color: var(--emerald);
      }

      .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 32px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 1.15rem;
    position: relative;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--gold);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
    
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s;
}

/* PREMIUM HERO SECTION - MOBILE OPTIMIZED */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(251, 191, 36, 0.1));
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7)), 
                url('image\ -\ 2026-01-20T131030.990.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    animation: premiumZoom 25s infinite alternate ease-in-out;
}

@keyframes premiumZoom {
    0% { transform: scale(1) rotate(0.5deg); }
    50% { transform: scale(1.05) rotate(-0.5deg); }
    100% { transform: scale(1) rotate(0.5deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(16, 185, 129, 0.15) 0%, 
        rgba(251, 191, 36, 0.1) 50%, 
        transparent 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    background: linear-gradient(to right, #ffffff, var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    border-radius: 2px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

/* Premium Countdown Timer */
.countdown-container {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.countdown-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 90px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.countdown-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    font-family: 'Jost', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.hero-subtext {
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-subtext i {
    color: var(--gold);
    animation: pulse 2s infinite;
}

/* Stats Section */
.stats {
    padding: 90px 0;
    background-color: var(--white);
    position: relative;
}

.stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.6rem;
    color: var(--black);
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--emerald);
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 750px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease;
    border-top: 4px solid var(--emerald);
    position: relative;
    overflow: hidden;
}

.stat-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
    z-index: 0;
}

.stat-card:hover {
    transform: translateY(-12px);
}

.stat-card i {
    font-size: 2.8rem;
    color: var(--emerald);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--emerald);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.stat-text {
    font-size: 1.15rem;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

/* Vision Section */
.vision {
    padding: 90px 0;
    background-color: #f0f9ffc2;
    position: relative;
}

.vision:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image\ -\ 2026-01-25T151321.227.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.vision .container {
    position: relative;
    z-index: 1;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.vision-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid var(--emerald);
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vision-card:nth-child(2) {
    border-left-color: var(--gold);
}

.vision-card:nth-child(3) {
    border-left-color: var(--emerald-dark);
}

.vision-card:hover {
    transform: translateY(-8px);
}

.vision-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 12px;
}

.vision-card h3 i {
    color: var(--emerald);
}

.vision-card:nth-child(2) h3 i {
    color: var(--gold);
}

.vision-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.vision-features {
    margin-top: 20px;
}

.vision-features li {
    margin-bottom: 10px;
    color: var(--gray);
    position: relative;
    padding-left: 28px;
}

.vision-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

.vision-button {
    text-align: center;
    margin-top: 50px;
}

/* Policy Highlights */
.policy-highlights {
    padding: 90px 0;
    background-color: var(--white);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.policy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.policy-card:hover {
    border-bottom-color: var(--emerald);
    transform: translateY(-8px);
}

.policy-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.policy-icon i {
    color: var(--emerald);
    font-size: 2.2rem;
}

.policy-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.policy-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* News Preview */
.news-preview {
    padding: 90px 0;
    background-color: #f8fafc;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    height: 220px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--emerald);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-content {
    padding: 30px;
}

.news-date {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.news-date i {
    margin-right: 8px;
    color: var(--emerald);
}

.news-content h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.news-link {
    color: var(--emerald);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.news-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23059669' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 45px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-logo .logo-img {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin-right: 12px;
}

.footer-about p {
    margin-bottom: 25px;
    color: var(--gray-light);
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    width: 45px;
    height: 3px;
    background-color: var(--gold);
    left: 0;
    bottom: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--gray-light);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--emerald);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: var(--gray-light);
}

.contact-info i {
    color: var(--emerald);
    margin-right: 12px;
    font-size: 1.2rem;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--emerald);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* 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 pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Floating Elements for Premium Effect */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent);
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent);
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 20%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Premium Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0.7;
    animation: fadeInUp 0.8s ease-out 1.2s both;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* MOBILE OPTIMIZATION - Premium Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(16, 185, 129, 0.1));
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 18px 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links li:nth-child(7) { transition-delay: 0.7s; }
    
    .nav-links a {
        font-size: 1.4rem;
        padding: 10px 30px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding: 10px 40px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -7px);
    }
    
    .section-title h2 {
        font-size: 2.3rem;
    }
    
    .cta-content h2 {
        font-size: 2.4rem;
    }
    
    .countdown-container {
        padding: 25px;
    }
}

/* PREMIUM MOBILE DESIGN - Optimized for all mobile devices */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 80px 0 40px;
        background-attachment: scroll;
    }
    
    .hero-bg {
        background-attachment: scroll;
        animation: premiumZoomMobile 20s infinite alternate ease-in-out;
    }
    
    @keyframes premiumZoomMobile {
        0% { transform: scale(1); }
        100% { transform: scale(1.08); }
    }
    
    .hero-content {
        padding: 0 15px;
        width: 100%;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero h1::after {
        width: 80px;
        bottom: -10px;
    }
    
    .hero p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        width: 100%;
        padding: 0 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 0;
        font-size: 1rem;
    }
    
    .countdown-container {
        padding: 20px;
        margin: 0 15px 25px;
        border-radius: 15px;
    }
    
    .countdown-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .countdown-timer {
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
        border-radius: 12px;
        flex: 1;
        max-width: 70px;
    }
    
    .countdown-value {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    
    .countdown-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .hero-subtext {
        font-size: 0.9rem;
        gap: 8px;
        text-align: center;
        line-height: 1.4;
        padding: 0 15px;
        margin-top: 20px;
    }
    
    /* Hide floating elements on mobile for performance */
    .floating-element {
        display: none;
    }
    
    /* Mobile-specific optimizations */
    .logo {
        font-size: 1.6rem;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    /* Other sections mobile optimization */
    .stats,
    .vision,
    .policy-highlights,
    .news-preview,
    .cta-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    .stats-grid,
    .vision-grid,
    .policy-grid,
    .news-grid {
        gap: 25px;
    }
    
    .stat-card,
    .vision-card,
    .policy-card,
    .news-card {
        padding: 25px 20px;
    }
    
    .stat-number,
    .stat-card i {
        font-size: 2.2rem;
    }
    
    .vision-card h3,
    .policy-card h3,
    .news-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator span {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .scroll-indicator .mouse {
        width: 25px;
        height: 40px;
    }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        padding: 0;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-buttons .btn {
        max-width: 280px;
        padding: 15px 0;
    }
    
    .countdown-container {
        padding: 18px;
        margin: 0 10px 20px;
    }
    
    .countdown-title {
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 65px;
        padding: 12px 8px;
        max-width: 65px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .hero-subtext {
        font-size: 0.85rem;
        gap: 6px;
        padding: 0 10px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .navbar.scrolled {
        padding: 12px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .stats-grid,
    .vision-grid,
    .policy-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        bottom: 25px;
        left: 25px;
    }
}

/* Landscape Mode Optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        margin-bottom: 20px;
    }
    
    .countdown-container {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .countdown-item {
        padding: 10px 8px;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 1.6rem;
    }
    
    .hero-subtext {
        margin-top: 15px;
    }
}
 
