/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    
  }
  
  h1, h2, h3, p {
    margin: 0 0 10px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
/* Header Styles */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0); /* Initially visible */
    opacity: 1;
    background-color: rgba(19, 133, 255, 0.879);
    
  }
  
  /* Scrolled Header Background */
  .site-header.scrolled {
    background-color: rgba(19, 133, 255, 0.879); /* Add your preferred background */
  }
  
  .site-header.hidden {
    transform: translateY(-100%); /* Slide up when hidden */
    opacity: 0;
  }
  
  .site-header.visible {
    transform: translateY(0); /* Slide down when visible */
    opacity: 1;
  }
  
  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-between;
    margin-bottom: -.5rem;
    margin-top: -.5rem;
    
  }
  .site-nav > * {
    order: 0; /* Default order for all children */
  }
  
  
  
  .site-nav ul {
    list-style-type: none;
    display: flex;
    gap: 60px;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
  
  
  }
  
  
  .site-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .site-nav a:hover {
    color: #e6c200;;
  }
  
  
  
  .logo {
    display: flex;
    align-items: center;
    border: seashell;
    
    
  }
  
  
  .main-content {
    padding-top: 20px; /* Offset for fixed header */
  }
  
  .btn {
    margin-top: 20px;
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    animation: flashing 1s infinite;
  }
  
  /* General Icon Styles */
  
  
  /* Hover Effect */
  .hamburger:hover,
  .exit:hover {
    color:#e6c200; /* Change color on hover */
    transform: scale(1.1); /* Slightly enlarge icon on hover */
  }
  
  .hamburger{
    display: none;
  }
  
  .hamburger svg {
    width: 35px;
    height: 35px;
    stroke: #ffffff;
    border: none;
    color: white;
  }
  
  
  .overlay-menu ul {
    list-style-type: none;
    text-align: center;
  }
  .hamburger,
  .exit {
    font-size: 1.6rem; /* Larger size for better visibility */
    color: #ffffff; /* Neutral modern color */
    cursor: pointer; /* Show pointer on hover */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth effects */
    z-index: 1001; /* above other content */
    margin-bottom: -0.d5rem;
    background: none;
    border: none;
  
  }
  .exit{
    margin-left: -2rem;
  }
  
  .contact-button{
    background: #ffd700;
    color: #333;
    padding: 6px 12px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: .9rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .site-nav{
      justify-content: space-between;
    }
  
    @media (max-width: 768px) {
      .site-nav {
        justify-content: space-between; /* Keep items spaced out */
      }
    
      .hamburger {
        order: -1; /* Move the hamburger icon to appear first */
      }
    
      .logo {
        order: 0; /* Keep the logo in its original position */
        margin-top: -5px;
      }
    
      .overlay-menu {
        order: 1; /* Keep the overlay menu in its original position */
      }
    
      .contact-button {
        order: 2; /* Ensure the contact button is last */
      }
    }
  
    .logo-and-hamberger
  {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
  }
  
  
    .site-nav ul {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: 8rem;
      gap: 0;
  
    }
  
    .site-nav li {
      margin-top: 10px;
      gap: 0;
    }
  
    .monetization-info {
    font-size: 16px;
    }
  
    .overlay-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color:#1877f2;
  
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
     
  }
  
  .overlay-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    
  }
  
  
  
  
  }
  /* Hide the menu (ul) on mobile */
  @media (max-width: 768px) {
  
    .hamburger {
      display: block;
      margin-left: -2rem;
      
    }
  }
  

.about-section {
    padding: 5rem 0;
    text-align: center;
    color: #444;
  }
  
  .about-section h1 {
    font-size: 1.5rem;
    color: #007bff;
    margin-top: 2rem;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
  }
  
  .about-text {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0 1.5rem;
  }
  
  .about-image {
    text-align: center;
    padding: 0 1.5rem;
  }
  
  .about-image img {
    image-resolution: 10px;
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .about-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .about-text, .about-image {
      padding: 0;
    }
  
    .about-image img {
      max-width: 80%;
    }
  }
  
  @media (max-width: 768px) {
    .about-section h2 {
      font-size: 2.2rem;
    }
  
    .about-image img {
      max-width: 60%;
    }
  }
  
  @media (max-width: 480px) {
    .about-section {
      padding: 4rem 0;
    }
  
    .about-section h1 {
        margin-top: 2rem;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #007bff;
    }
  
    .about-text {
      font-size: 1rem;
    }
  }

  /* Footer Styling */
.site-footer {
    background-color: #1a1a1a;
    color: #f1f1f1;
    padding: 40px 20px;
    font-size: 0.9rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
    border-bottom: 2px solid #f1c40f;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
    color: #f1f1f1;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #f1c40f;
    text-decoration: underline;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #f1c40f;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 0.8rem;
  }
  
  .footer-bottom a {
    color: #f1c40f;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .footer-section {
      text-align: center;
      min-width: 100%;
    }
  
    .footer-section h3 {
      font-size: 1.5rem;
    }
  
    .footer-section p,
    .footer-section a {
      font-size: 1rem;
    }
  
    .footer-bottom {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .site-footer {
      padding: 20px 15px;
    }
  
    .footer-section h3 {
      font-size: 1.2rem;
    }
  
    .footer-section p,
    .footer-section a {
      font-size: 0.9rem;
    }
  
    .footer-bottom {
      font-size: 0.8rem;
    }
  }
  