* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

.hero {
    background-image: url('your-background-image.jpg'); /* Add your background image */
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 10px;
}

.hero-content {


    border-radius: 8px;
    width: 100%; /* Full width */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}



.contact-section {
    background-color: #f5f5f5; /* Light background for the section */
    padding: 60px 20px; /* Padding for top/bottom and left/right */
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
    background: white; /* White background for the container */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
}

.contact-info {
    color: #333; /* Dark text for better readability */
    flex: 1;
    margin-right: 20px; /* Space between info and form */
}

.contact-info h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd; /* Light border for inputs */
    border-radius: 4px;
}

.contact-form button {
    padding: 15px;
    background-color:#2ebb77; /* Customize button color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}




/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack info and form vertically */
    }

    .contact-info {
        margin-right: 0; /* Remove margin for mobile */
        margin-bottom: 20px; /* Space between sections */
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}


/* Map Section */
.map-section {
    padding: 60px 20px;
    background-color: #ffffff; /* White background for the map section */
    text-align: center; /* Center the heading */
}

.map-container {
    max-width: 1200px;
    margin: 0 auto; /* Center the map container */
}

.map-container h2 {
    font-size: 2em;
    margin-bottom: 20px; /* Space between heading and map */
}

/* Responsive Design */
@media (max-width: 768px) {
    
    

    .map-container iframe {
        width: 100%; /* Make the map responsive */
        height: 300px; /* Set height for mobile */
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}



@media (max-width: 768px) {
   
    h1{
        font-size: 28px !important;
    }
    
    
    p,a{
        font-size: 17px !important;
    }
    h2{
        font-size: 22px !important;
    }
  
    .btn-custom{
        font-size: 16px !important;
    }
    
   
    
    
    
    }

    .navbar-brand {
        font-size: 1.5rem;
        font-weight: bold;
      }
      .navbar-nav .nav-link {
          font-family: sans-serif;
        font-size: 1rem;
        margin-right: 15px;
        transition: color 0.3s;
        
      }
      .navbar-nav .nav-link:hover {
        color: #ffc107;
      }
      .btn-outline-primary {
        font-size: 0.9rem;
        font-weight: 600;
        padding: 10px 15px !important;
        color: black;
      }
      .btn-outline-primary:hover {
        background-color: #0d6efd;
        border-color: #ffc107;
        color:white;
      }
     