/* Global styles */
body {
    font-family: 'Poppins', sans-serif;
  }
  
  .header {
    height: 150px; /* Increase header height if needed */
  }
  
  .logo {
    width: 80px; /* Adjust logo size as needed */
    height: auto;
    margin-right: 20px; /* Adjust margin as needed */
  }
  
  /* Center header content */
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  
  .hero .hero-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .hero h1 {
    font-size: 3.5em;
    font-weight: 600;
    text-align: center; /* Center align the h1 text */
  }
  
  .hero p {
    font-size: 1em;
    font-weight: 400;
  }
  
  .hero .custom-btn {
    font-size: 1.5em; /* Smaller font size for the button */
    padding: 10px 20px; /* Adjust padding for the button */
    border: none;
    border-radius: 5px; /* Rounded corners */
    background-color: #ffc107; /* Attractive yellow background */
    color: #000; /* Black text color */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
  }
  
  .hero .custom-btn:hover {
    background-color: #34f637; /* Darker yellow on hover */
    transform: scale(1.05); /* Slightly larger on hover */
  }
  
  .hero .btn-sm {
    padding: 8px 16px; /* Smaller padding for small button */
  }
  
  .navbar-nav .nav-item .nav-link {
    font-size: 1em;
  }
  
  .footer-content p,
  .footer-content ul {
    margin: 0;
    padding: 0;
  }
  
  .footer-content ul {
    list-style: none;
    padding-top: 10px;
  }
  
  .footer-content ul li {
    display: inline;
    margin: 0 10px;
  }
  
  .footer-content ul li a {
    font-size: 1.5em;
  }
  
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
    }
  }
  
  /* Additional styles for specific elements */
  .hero {
    min-height: 400px; /* Example: Set minimum height for hero section */
  }
  
  .hero h1 {
    font-size: 3.5em;
    font-weight: 600;
  }
  
  .hero p {
    font-size: 1em;
    font-weight: 400;
  }
  
  .hero .btn {
    margin-top: 20px; /* Adjust top margin as needed */
  }
  
  .main-container h2,
  .main-container img {
    text-align: center;
  }
  
  .main-container {
    text-align: justify;
  }


  /* Navbar styles */
  
/* Navbar styles */
.custom-navbar {
    
    padding: 15px; /* Add padding to the navbar */
    margin: 0px 0; /* Add margin to the navbar */
  }
  
  .custom-navbar .nav-item {
    margin: 0 15px; /* Add margin between nav items */
  }
  
  .custom-navbar .nav-link {
    padding: 10px 15px; /* Add padding to nav links */
    border-radius: 25px; /* Add border radius to nav links */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
  }
  
  .custom-navbar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Light background color on hover */
    color: #ffc107; /* Change text color on hover */
  }
  
  .navbar-toggler-icon {
    color: #fff; /* Example: Set color for the navbar toggler icon */
  }

  
  .footer-content ul li {
    display: inline;
    margin: 0 10px;
  }
  
  .footer-content ul li a {
    font-size: 1.5em;
  }
  
  
  
  /* Footer styles */
  footer {
    background-color: #343a40; /* Example: Set background color */
    color: #fff; /* Example: Set text color */
  }
  
  footer h2 {
    font-size: 1.8em; /* Example: Adjust font size */
    margin-bottom: 20px; /* Example: Adjust bottom margin */
  }
  
  footer p {
    font-size: 1em; /* Example: Adjust font size */
  }
  
  .footer-content ul.list-inline {
    margin-top: 20px; /* Example: Adjust top margin */
  }
  
  .footer-content ul.list-inline li {
    display: inline-block;
    margin: 0 10px;
  }
  
  .footer-content ul.list-inline li a {
    color: #fff; /* Example: Set link color */
  }
  
  .footer-content ul.list-inline li a:hover {
    color: #ffc107; /* Example: Set hover color */
  }
  
  /* Center header h1 and p */
  .header .container {
    text-align: center;
  }
  