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

body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/616401/pexels-photo-616401.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    /* background-image: url('images/background.jpg'); */
    background-image: url('images/background4.jpg');
    background-position: center;
    background-size: cover;
    filter: blur(3px);
    z-index: -1;
    opacity: 0.95;
}

/* Button Styling */
.menu-btns {
    max-width: 400px;
    /* Limit button width for large screens */
    width: 100%;
    /* Ensure buttons fill container on smaller screens */
    font-weight: 600;
    background-color: #299f49;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for buttons */
    transition: background-color 0.3s, transform 0.2s ease-in-out;
    /* Smooth transitions */
}

.menu-btns i {
    font-size: 1.5rem;
    margin-right: 10px;
    /* Add spacing between icon and text */
}

.menu-btns:hover {
    background-color: #f7f7f7;
    color: #299f49;
    transform: translateY(-3px);
    /* Subtle lift effect */
    /* border: 2px solid #299f49; */
}

/* Button Container Styling */
.button-container {
    max-width: 600px;
    /* Centered content area for large screens */
    margin: 0 auto;
    padding: 20px;
}

h1 i {
    /* font-family: 'bootstrap-icons'; */
}

p i {
    /* font-family: cursive; */
}

/* Logo Styling */
.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
    .button-container {
        padding: 40px;
        /* Add more padding for larger screens */
    }

    .menu-btns {
        font-size: 1.5rem;
    }
}

.map-container {
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    margin: 0 auto;
}

.btn {
    border-radius: 50px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

.btn-outline-success:hover {
    background-color: #198754;
    color: white;
}


/* Platform Icon Styling */
.platform-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.platform-icon1 {
    width: 200px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 0px;
}

/* Platform Icons Container */
.platform-icons {
    flex-wrap: wrap;
}

.platform-icons div {
    margin-bottom: 20px;
}

/* General Button Styling */
.btn {
    font-size: 1rem;
    min-width: 180px;
    background-color: #299f49;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: background-color 0.3s, transform 0.2s ease-in-out;
}

.btn:hover {
    background-color: #f7f7f7;
    color: #000;
    transform: translateY(-3px);
    /* Subtle lift on hover */
    /* border: none; */
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    color: white;
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #299f49;
}

/* Social Icons Styling */
.social-icons a {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    transition: transform 0.2s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.1);
    /* Slight zoom on hover */
}

.text-shadow {
    text-shadow: 1px 1px 2px white;
}

/* Hide sections by default */
.hidden-section {
    display: none;
}