  :root {
            --primary: #0D6B1E;
            --secondary: #158A2D;
            --accent: #FFB800;
            --light: #F5F5F5;
            --dark: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            width: 95px;
            height: 70px;
            margin-right: 5px;
        }
        
        .logo-text {
            color: white;
            font-size: 18px;
            font-weight: 600;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .search-icon, .menu-toggle {
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: none;
        }
        
        .auth-buttons a {
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            margin-left: 10px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .login-btn {
            color: var(--primary);
            background-color: white;
        }
        
        .register-btn {
            color: white;
            background-color: var(--accent);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(13, 107, 30, 0.8), rgba(13, 107, 30, 0.8)), url('/api/placeholder/1200/400') no-repeat center center/cover;
            height: 450px;
            display: flex;
            align-items: center;
            color: white;
            margin-bottom: 40px;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 40px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .cta-button {
            padding: 12px 25px;
            background-color: var(--accent);
            color: var(--dark);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #e6a700;
            transform: translateY(-2px);
        }
        
        /* Featured Content */
        .section-title {
            text-align: center;
            font-size: 30px;
            margin-bottom: 40px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .featured-videos, .news-section {
            padding: 60px 0;
        }
        
        .video-grid, .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .video-card, .news-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .video-card:hover, .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }
        
        .video-thumbnail, .news-thumbnail {
            height: 180px;
            overflow: hidden;
        }
        
        .video-thumbnail img, .news-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .video-card:hover .video-thumbnail img, .news-card:hover .news-thumbnail img {
            transform: scale(1.05);
        }
        
        .video-content, .news-content {
            padding: 20px;
        }
        
        .video-title, .news-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .video-date, .news-date {
            color: #777;
            font-size: 14px;
        }
        
        /* Categories Section */
        .categories-section {
            background-color: #e9f4eb;
            padding: 60px 0;
        }
        
        .categories-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .category-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .category-column h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        
        .category-links a {
            display: block;
            color: var(--dark);
            text-decoration: none;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        
        .category-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 60px 0;
        }
        
        .contact-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-right: 15px;
            width: 40px;
            height: 40px;
            background-color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .social-links {
            margin-top: 30px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        

          .map-title h2 {
                font-size: 1.3rem;
            }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 30px 0;
        }
        
        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            width: 60px;
            height: 60px;
        }
        
        .copyright {
            text-align: center;
        }
         .contact-form{
                max-width:250px;
            }
        /* Media Queries */
        @media (max-width: 992px) {
            .header-container {
                padding: 0 20px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            .contact-form{
                max-width:250px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .search-icon, .menu-toggle {
                display: block;
            }
            
            .auth-buttons {
                display: none;
            }
            
            .hero {
                height: 350px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .video-grid, .news-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .logo-text {
                display: none;
            }
            
            .hero {
                height: 300px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .video-grid, .news-grid {
                grid-template-columns: 1fr;
            }
        }

          @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .header h1 {
                font-size: 1.4rem;
            }

            .map-title h2 {
                font-size: 1.3rem;
            }

            .info-card {
                padding: 15px;
            }

            /* More square aspect ratio for very small screens */
            .map-container {
                padding-bottom: 100%; /* 1:1 aspect ratio */
            }
        }
    
   /*  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
    
    body {
      background-color: #f5f5f5;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      position: relative;
    } */
    
    .hero-slide {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }
    
    .hero-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
    }
    
    .hero-content {
      position: absolute;
      bottom: 0;
      left: 0;
      padding: 30px;
      color: white;
      width: 70%;
      background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
    }
    
    .hero-title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.2;
    }
    
    .read-btn {
      display: inline-block;
      background-color: #006400;
      color: white;
      padding: 10px 30px;
      border-radius: 25px;
      margin-top: 15px;
      text-decoration: none;
      font-weight: bold;
    }
    
    .read-btn .icon {
      margin-right: 5px;
    }
    
    .thumbnail-container {
      position: absolute;
      right: 20px;
      bottom: 20px;
      width: 30%;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .thumbnail {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      cursor: pointer;
      position: relative;
    }
    
    .thumbnail img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }
    
    .thumbnail-content {
      padding: 10px;
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
    }
    
    .thumbnail-title {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 5px;
    }
    
    .thumbnail-date {
      font-size: 12px;
      color: #ccc;
    }
    
    .nav-buttons {
      position: absolute;
      bottom: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 10px;
      pointer-events: none;
    }
    
    .nav-btn {
      background-color: rgba(255, 255, 255, 0.3);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      font-size: 24px;
    }
    
    .header {
      background-color: #800000;
      color: white;
      padding: 20px 10px;
      text-align: center;
      margin-bottom: 20px;
      border-radius: 12px 12px 0 0;
    }
    
    .header h1 {
      font-size: 28px;
      margin-bottom: 5px;
    }
    
    .header h2 {
      font-size: 16px;
      font-weight: normal;
    }
    
    .profile-container {
      position: absolute;
      bottom: 20px;
      right: 20px;
      display: flex;
      gap: 5px;
    }
    
    .profile {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #eee;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      font-weight: bold;
      font-size: 12px;
    }
    
    .more-profiles {
      background-color: rgba(255, 255, 255, 0.3);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: white;
    }

    