 :root {
            --primary-color: #1a5d1a;
            --secondary-color: #d4af37;
            --accent-color: #8b4513;
            --light-color: #f5f5f5;
            --dark-color: #333;
            --text-color: #444;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f9f9f9;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: fixed;
        }
   .first-section{
    padding:10px 5px 10px;
    top:0;
    width:100%;
    background-color: black;
    color: White;
    position:fixed;
  }
  .header-content{
    display: flex;
    color: White;
    flex-direction:row;
    justify-content: space-between;
    margin-bottom:0;
    align-items: center;
     
  } 
    .menu-list{
    display: flex;
    flex-direction:row;
    gap:10px;
    color: white;
    list-style:none;
}
.menu-list a{
    text-decoration:none;
    color: white;
    transition: color 0.3s;
}
    .hamburger{
    display:none;
    cursor: pointer;
    }   
.icons{
    height:35px;
    width :30px;
    font-size:40px;
    margin-right:13px;
    }
    .image{
        width:30vh;
        height:50vh;
    }
    .awe{
            text-align: center;
            font-size:25px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 3px;
            position: relative;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--secondary-color);
        }
        
        .hero {
            text-align: center;
            padding: 6rem 0;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
       #text{
        padding:7px 8px;
        color: White;
        background-color:#00071a;
         font-weight: bold;
         text-align: center;
        }
          #text h1{
              font-size:30px;
          }
        .small-content{
           padding:10px 7px;
           display: flex;
           flex-direction: column;
           gap:25px;
           background-color: black;
        }
        .history{
            padding:12px 7px;
            font-size:20px;
            font-weight: light ;
            background-color:#000921;
            color: White;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .btn:hover {
            background-color: #e6c135;
            transform: translateY(-3px);
        }
        
        /* Section Styles */
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-color);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .attractions-grid, .opportunities-grid, .needs-grid, .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .card:hover {
            transform: translateY(-10px);
        }
        
        .card-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .card-content {
            padding: 1.5rem;
        }
        
        .card h3 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .card ul {
            padding-left: 1.2rem;
            margin-top: 1rem;
        }
        
        .card li {
            margin-bottom: 0.5rem;
        }
        
        /* Climate Section */
        .climate-info {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .climate-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .climate-item {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .climate-item h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        
        /* Festival Section */
        .festival-highlight {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .festival-highlight h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        
        /* Industry Section */
        .industry-highlight {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1585435557343-3b092031d5ad?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .industry-highlight h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        
        .company-info {
            margin-bottom: 2rem;
        }
        
        .company-info h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
        }
         @media(max-width:320px){
         .image{
             height:30vh;
             width:20vh
             }
             .header-content{
    top:0px;
    padding:5px 2px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
 .menu-list{
        position: absolute;
        top:40px;
        right:0px;
        color: black;
        background-color: White;
        display:flex;
        flex-direction: column;
        display: none;
        background-color: black;
        padding:1.5rem;
        width:100px;
        }
        
      .menu-list a{
       color: White;
      }   
    .hamburger{
        display: block;
    } 
    
    .menu-list.active{
        display: flex;
    } 
       .hero h1 {
                font-size: 2.2rem;
            }
     .hero p {
     font-size: 1rem;
                 }
                 
         }
  @media(max-width:780px){
.header-content{
    top:0px;
    padding:5px 2px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
 .menu-list{
        position: absolute;
        top:40px;
        right:0px;
        color: black;
        background-color: White;
        display:flex;
        flex-direction: column;
        display: none;
        background-color: black;
        padding:1.5rem;
        width:100px;
        }
        
      .menu-list a{
       color: White;
      }   
    .hamburger{
        display: block;
    } 
    
    .menu-list.active{
        display: flex;
    } 
       .hero h1 {
                font-size: 2.2rem;
            }
     .hero p {
     font-size: 1rem;
                 }
           }
        
    
