/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #fff; /* Default text color for better contrast */
    background-color: #f4f4f4;
  }

  html{
    scroll-behavior: smooth;
}
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header with Slideshow */
  header {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Navigation Bar */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
  }

 
  
  nav.scrolled {
    background: #09122C; /* Semi-transparent background when scrolled */
    padding: 10px 0;
  }
  
  nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .logo img {
    height: 70px;
    transition: height 0.3s ease;
  }
  
  nav.scrolled .logo img {
    height: 40px; /* Smaller logo when scrolled */
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none; /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  /* Transform Hamburger into "X" */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Navigation Links */
  .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.2); /* Light hover effect */
    color: #e67e22;
  }
  
  /* Slideshow Background */
  .slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(50%);
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
   
  }
  
  /* Header Content */
  .header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 100;
  }
  
  .header-content h1 {
    font-size: 4rem;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Text shadow for better visibility */
  }
  
  .header-content p {
    font-size: 1.5rem;
    margin: 10px 0 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Text shadow for better visibility */
  }
  
 /* About Section */
.about {
    padding: 60px 0;
    background: #fff;
    color: #333;
  }
  
  .about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about-text .btn {
    display: inline-block;
    background: #213555;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .about-text .btn:hover {
    background: #d35400;
  }
  
  .about-image {
    flex: 1;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsive Design for About Section */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text {
      order: 2; /* Move text below image on smaller screens */
    }
  
    .about-image {
      order: 1; /* Move image above text on smaller screens */
    }
  
    .about-text p {
      font-size: 1rem;
    }
  
    .about h2 {
      font-size: 2rem;
    }

    /* Header content on smaller devices */
    .header-content h1{
      margin-top: 300px;
      
    }

  }

  /* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
  }
  
  .modal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
  }
  
  .ticket-options {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
  }
  
  .ticket {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
  }
  
  .ticket h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #e67e22;
  }
  
  .ticket .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  .ticket .qrcode {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: block;
  }
  
  /* Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
  }
  
  .close:hover {
    color: #e67e22;
  }
  
  /* Responsive Design for Modal */
  @media (max-width: 600px) {
    .ticket-options {
      flex-direction: column;
    }
  
    .ticket {
      margin-bottom: 20px;
    }
  
    .ticket .qrcode {
      width: 120px;
      height: 120px;
    }
  }




 /* Organizers Section */
.organizers {
    padding: 80px 0;
    background-color: #0a192f; /* Dark blue background */
    text-align: center;
  }
  
  .organizers h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #ccd6f6; /* Light blue text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
  }
  
  .organizers h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: #ff6b6b; /* Orange accent line */
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .organizer-card {
    background: #112240; /* Slightly lighter dark blue for cards */
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .organizer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    border-color: #09122C; /* Orange accent on hover */
  }
  
  .profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid transparent;
    background: linear-gradient(45deg, #213555, #27445D); /* Gradient border */
    padding: 4px; /* Creates the gradient border effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .organizer-card:hover .profile-pic {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6); /* Glow effect on hover */
  }
  
  .organizer-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #ccd6f6; /* Light blue text */
    font-weight: 500;
  }
  
  .responsibility {
    font-size: 1rem;
    color: #8892b0; /* Grayish-blue text */
    margin-bottom: 15px;
    font-weight: 400;
  }
  
  .phone {
    font-size: 0.9rem;
    color: #64ffda; /* Light blue accent */
    margin-bottom: 20px;
    font-weight: 400;
  }
  
  .social-handles {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-link {
    color: #8892b0; /* Grayish-blue icons */
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-link:hover {
    color: #ff6b6b; /* Orange accent on hover */
    transform: scale(1.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .organizers h2 {
      font-size: 2.2rem;
    }
  
    .organizers-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
  
    .profile-pic {
      width: 120px;
      height: 120px;
    }
  
    .organizer-card h3 {
      font-size: 1.4rem;
    }
  
    .responsibility {
      font-size: 0.9rem;
    }
  
    .phone {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .organizers h2 {
      font-size: 2rem;
    }
  
    .organizers-grid {
      grid-template-columns: 1fr;
    }
  }










  
  /* Footer */
  footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .header-content h1 {
      font-size: 2.5rem;
    }
  
    .header-content p {
      font-size: 1.2rem;
    }
  
    /* Hamburger Menu for Mobile */
    .hamburger {
      display: flex; /* Show hamburger menu */
    }
  
    .nav-links {
      position: fixed;
      top: 70px; /* Adjust based on navbar height */
      right: -100%; /* Hide off-screen */
      width: 100%;
      height: calc(100vh - 70px);
      background: rgba(44, 62, 80, 0.9);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.3s ease;
    }
  
    .nav-links.active {
      right: 0; /* Slide in from the right */
    }
  
    .nav-links li {
      margin: 20px 0;
    }
  
    .nav-links a {
      font-size: 1.2rem;
    }
  }




  /* Activities Section */
.activities {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
  }
  
  .activities h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50; /* Dark blue */
    position: relative;
    font-weight: 700;
  }
  
  .activities h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #2dd4bf; /* Teal */
    margin: 15px auto 0;
    border-radius: 2px;
  }
  
  .activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  
  .activity-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }
  
  .activity-icon {
    font-size: 3rem;
    color: #2dd4bf; /* Teal */
    margin-bottom: 20px;
    transition: color 0.4s ease, transform 0.4s ease;
  }
  
  .activity-card:hover .activity-icon {
    color: #2c3e50; /* Dark blue */
    transform: scale(1.2);
  }
  
  .activity-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50; /* Dark blue */
    transition: color 0.4s ease;
  }
  
  .activity-card:hover h3 {
    color: #2dd4bf; /* Teal */
  }
  
  .activity-card p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    transition: color 0.4s ease;
  }
  
  .activity-card:hover p {
    color: #555;
  }
  
  /* Responsive Design for Activities Section */
  @media (max-width: 768px) {
    .activities h2 {
      font-size: 2.5rem;
    }
  
    .activity-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
  
    .activity-icon {
      font-size: 2.5rem;
    }
  
    .activity-card h3 {
      font-size: 1.6rem;
    }
  }
  
  @media (max-width: 480px) {
    .activities h2 {
      font-size: 2.2rem;
    }
  
    .activity-grid {
      grid-template-columns: 1fr;
    }
  
    .activity-icon {
      font-size: 2.2rem;
    }
  
    .activity-card h3 {
      font-size: 1.4rem;
    }
  }



/* Sponsored By Section */
.sponsored-by {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a192f, #112240); /* Dark blue gradient */
    color: #fff;
    text-align: center;
    overflow: hidden;
  }
  
  .sponsored-by h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #ccd6f6; /* Light blue text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
  }
  
  .sponsored-by h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: #ff6b6b; /* Orange accent line */
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  /* Carousel Container */
  .carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .carousel-track {
    display: flex;
    animation: scroll 20s linear infinite; /* Infinite scrolling animation */
  }
  
  .carousel-slide {
    flex: 0 0 auto;
    width: 200px; /* Adjust based on sponsor logo size */
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel-slide img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%); /* Grayscale effect for logos */
    transition: filter 0.3s ease;
  }
  
  .carousel-slide:hover img {
    filter: grayscale(0%); /* Full color on hover */
  }
  
  /* Carousel Animation */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%); /* Move halfway for infinite loop */
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .sponsored-by h2 {
      font-size: 2.2rem;
    }
  
    .carousel-slide {
      width: 150px;
      margin: 0 15px;
    }
  }
  
  @media (max-width: 480px) {
    .sponsored-by h2 {
      font-size: 2rem;
    }
  
    .carousel-slide {
      width: 120px;
      margin: 0 10px;
    }
  }
  



  /* Cultural Groups Section */
.cultural-groups {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
    text-align: center;
  }
  
  .cultural-groups h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #2c3e50; /* Dark blue */
    font-weight: 700;
  }
  
  .cultural-groups .subtitle {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 50px;
  }
  
  .groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  
  .group-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }
  
  .group-logo {
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
  }
  
  .group-logo img {
    max-width: 100px;
    height: auto;
  }
  
  .group-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .group-card h3 {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #2c3e50;
  }
  
  .learn-more {
    display: inline-block;
    background: #213555;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s ease;
  }
  
  .learn-more:hover {
    background: #d35400;
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
  }
  
  .modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
  }
  
  .close:hover {
    color: #e67e22;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .groups-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  
    .group-card h3 {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 480px) {
    .groups-grid {
      grid-template-columns: 1fr;
    }
  
    .group-card h3 {
      font-size: 1.2rem;
    }
  }



  /* Cultural Groups Section */
#events {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
    text-align: center;
  }
  
  #events h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50; /* Dark blue */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
  }
  
  #events h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: #ff6b6b; /* Orange accent line */
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }
  
  .event-media {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .event-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .event-logo img {
    width: 80px;
    height: auto;
  }
  
  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
 
  }
  
  .event-card:hover .event-image img {
    transform: scale(1.1);
  }
  
  .event-content {
    padding: 20px;
    text-align: left;
  }
  
  .event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
  }
  
  .event-content p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .cta {
    display: inline-block;
    background: #213555;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .cta:hover {
    background: #d35400;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #events h2 {
      font-size: 2.2rem;
    }
  
    .event-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  
    .event-content h3 {
      font-size: 1.3rem;
    }
  
    .event-content p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    #events h2 {
      font-size: 2rem;
    }
  
    .event-grid {
      grid-template-columns: 1fr;
    }
  
    .event-content h3 {
      font-size: 1.2rem;
    }
  
    .event-content p {
      font-size: 0.8rem;
    }
  }















 
  /* Contact Section */
#contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
  text-align: center;
}

#contact h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #2c3e50;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

#contact h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background-color: #ff6b6b;
  transform: translateX(-50%);
  border-radius: 2px;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Make the form and map responsive */
.contact-form, .map {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #213555;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  display: inline-block;
  background: #213555;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #d35400;
}

/* Map styling */
.map {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form, .map {
    width: 100%;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  #contact h2 {
    font-size: 2.2rem;
  }

  .contact-form, .map {
    padding: 15px;
  }

  .contact-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #contact {
    padding: 60px 10px;
  }

  .contact-container {
    padding: 0 10px;
  }

  .contact-form input, 
  .contact-form textarea {
    font-size: 0.9rem;
  }

  .contact-form button {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
}










  /* Footer Section */

  /* Footer Section */
footer {
  background: #0a192f; /* Dark blue background */
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Footer Grid */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  width: 100%;
  margin-bottom: 40px;
  text-align: left;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ff6b6b; /* Orange accent */
  font-weight: 600;
  text-transform: uppercase;
}

.footer-column p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccd6f6; /* Light blue text */
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccd6f6; /* Light blue text */
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}

.footer-column ul li a:hover {
  color: #ff6b6b; /* Orange accent on hover */
  transform: translateX(5px);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  color: #ccd6f6; /* Light blue text */
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #ff6b6b; /* Orange accent on hover */
  transform: scale(1.1);
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}

.newsletter-form input {
  padding: 12px;
  border: 1px solid #ccd6f6; /* Light blue border */
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
  background: #fff;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #ff6b6b; /* Orange accent */
  outline: none;
}

.newsletter-form button {
  background: #ff6b6b; /* Orange accent button */
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
  background: #d35400; /* Darker orange on hover */
  transform: translateY(-2px);
}

.newsletter-form p {
  font-size: 0.9rem;
  color: #ccd6f6; /* Light blue text */
  margin-top: 10px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #ccd6f6; /* Light blue text */
  width: 100%;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-top {
    gap: 30px;
  }

  .footer-column h3 {
    font-size: 1.3rem;
  }

  .footer-column p,
  .footer-column ul li a,
  .newsletter-form input,
  .newsletter-form button {
    font-size: 0.9rem;
  }

  .social-links a {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }

  .footer-column {
    align-items: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .newsletter-form {
    max-width: 300px;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-column h3 {
    font-size: 1.2rem;
  }

  .footer-column p,
  .footer-column ul li a,
  .newsletter-form input,
  .newsletter-form button {
    font-size: 0.85rem;
  }

  .social-links a {
    font-size: 1.1rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}
























