 :root {
            --emerald: #10b981;
            --emerald-dark: #059669;
            --emerald-light: #34d399;
            --gold: #fbbf24;
            --gold-dark: #f59e0b;
            --black: #111827;
            --white: #f9fafb;
            --gray: #6b7280;
            --gray-light: #e5e7eb;
        }
        
        * {
            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: 12px 30px;
            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;
        }
        
        .btn-primary {
            background-color: var(--emerald);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--emerald-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
        }
        
        .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 20px rgba(251, 191, 36, 0.2);
        }
        
        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
          
            z-index: 1000;
            background-color: transparent;
            transition: all 0.4s ease;
        }
        
        .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: 30px;
        }
        
        .nav-links a {
            color: white;
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            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;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .page-hero {
            height: 60vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .page-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .page-hero {
    position: relative;
    height: 70vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* HERO BACKGROUND */
.news-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.5)
        ),
        url("image\ -\ 2026-01-25T151537.517.webp");
    background-size: cover;
    background-position: center 15%; /* 🔑 THIS is the magic */
    background-repeat: no-repeat;
    z-index: -1;
}

/* CONTENT */
.hero-content {
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 5vw, 3.7rem);
    font-weight: 700;
    margin-bottom: 1rem;
     color: var(--emerald-light);
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
    color: #f1f1f1;
}

        
        /* Footer */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .footer-logo .logo-img {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            margin-right: 10px;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: var(--gray-light);
        }
        
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--gold);
            left: 0;
            bottom: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--gray-light);
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--emerald);
        }
        
        .contact-info li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--gray-light);
        }
        
        .contact-info i {
            color: var(--emerald);
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--emerald);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            z-index: 999;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        /* News Page Specific Styles */
        .news-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--black);
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .news-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            padding: 10px 25px;
            background: white;
            border: 1px solid var(--gray-light);
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--emerald);
            color: white;
            border-color: var(--emerald);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s 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: 6px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            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);
        }
        
        .featured-news {
            margin-bottom: 80px;
        }
        
        .featured-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .featured-image {
            height: 100%;
            min-height: 400px;
            background-size: cover;
            background-position: center;
        }
        
        .featured-content {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .featured-category {
            display: inline-block;
            background: var(--gold);
            color: var(--black);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .featured-content h2 {
            font-size: 2rem;
            color: var(--black);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .featured-content p {
            color: var(--gray);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .newsletter-section {
            background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
            padding: 70px 0;
            border-radius: 10px;
            margin-bottom: 80px;
            text-align: center;
            color: white;
        }
        
        .newsletter-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .newsletter-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border-radius: 50px;
            border: none;
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
        }
        
        .newsletter-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        }
        
        .load-more {
            text-align: center;
            margin-top: 40px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .page-hero h1 {
                font-size: 2.8rem;
            }
            
            .page-hero p {
                font-size: 1.2rem;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--black);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 1000;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .nav-links a {
                font-size: 1.3rem;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .featured-card {
                grid-template-columns: 1fr;
            }
            
            .featured-image {
                min-height: 300px;
            }
            
            .featured-content {
                padding: 30px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }
            .news-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.5)
        ),
        url("image\ -\ 2026-01-25T151756.102.webp");
    background-size: cover;
    background-position: center 15%; /* 🔑 THIS is the magic */
    background-repeat: no-repeat;
    z-index: -1;
}
            .page-hero p {
                font-size: 1.1rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                left: 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .newsletter-content h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .featured-content h2 {
                font-size: 1.6rem;
            }
            
            .news-content {
                padding: 20px;
            }
        }