
    :root{
        --bg1color: #0c001a;
        --bg2color: #faf3de;
        --bg3color: #faf3de;
    }
    
    
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
             background-color:var(--bg2color);
             align-content: center;
             Margin-left:10px;
             margin-right: 10 px;
          
        }

        /* Hero Section */
  
    .hero {
            margin-top:130px;
            margin-bottom: 5px;
    position: relative;
    width: 96.5%;
    height: 80vh; /* Adjust as needed */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
     background-image: url('../images/herooo1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* Ensures the image covers the entire section */
        }


.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    object-fit: cover;
    background-repeat:no-repeat;
    background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-image {
    position: fixed;
    width: 90%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Black overlay */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background-color: rgba(237, 95, 7, 1); /* Black with 50% opacity */
    z-index: 1; /* Ensure the overlay is on top of the background image */
}

/* Ensure content inside the hero section appears above the overlay */
.hero-image > * {
    position: relative;
    z-index: 2; /* Makes content visible above the overlay */
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 0, 0, 0.1); 
}

.overlay-text {
    position: relative;
    z-index: 1;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    display: flex; /* Make overlay-text a flex container */
    flex-direction: column; /* Stack titles vertically */
    align-items: center; /* Center titles horizontally */
}

.section-title {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    margin: 10px 0;
}

.section-title:first-of-type {
    font-size: 1.5rem;
    /*font-style: italic;*/ 
    color: rgb(255, 255, 255);
        text-align: center;
    margin-top: 30px; /* Remove default margin-top */
}

.section-title:last-of-type {
    font-size: 4rem;
    text-align: center;
    color: rgb(14, 4, 156);
    text-shadow: 2px 1px 1px rgba(255, 255, 255, 0.8);
}

.styled-emoji {
    font-size: 2rem;
    color: Red;
    vertical-align: middle;
}

.styled-emoji:last-of-type {
    transform: scaleX(-1);
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
    position: relative; /* For z-index */
    z-index: 2; /* Place buttons above overlay */
    margin-top: -100px; /* Add some space between text and buttons */
}

.hero-buttons button {
    background-color: #f78614;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    margin-top: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    /*border: 4px solid goldenrod;*/
    border-radius: 20px;
    box-shadow: 0 4px 4px white; /* Initial shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition for scale and shadow */
}

/* Hover effect */
.hero-buttons button:hover {
    transform: scale(1.1); /* Slightly enlarge the button */
    box-shadow: 0 4px 10px white; /* Add a glowing shadow effect on hover */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .section-title:last-of-type {
        font-size: 3rem; /* Smaller font size */
    }
    .styled-emoji {
        font-size: 1.2rem; /* Smaller font size */
    }
    .hero{
          width: 100vw;
    }
    .hero-buttons {
        font-size: 1rem; /* Ensure consistent font size */
        flex-direction: column;
        align-items: center;
        width: auto; /* Adjust to auto width */
        margin: 5px auto; /* Small margin around buttons */
        box-sizing: border-box;
        gap: 5px; /* Small but noticeable gap between buttons */
        margin-top: 100px; /* Add space between text and buttons */
    }
    .hero-buttons button {
        width: 100%;
        margin: 2px 0; /* Minimal margin between buttons */
        box-sizing: border-box;
        padding: 10px; /* Adjust padding for compactness */
        font-size: 1rem; /* Consistent font size */
    }
    .overlay-text {
        margin-top: 10px; /* Add space between text and buttons */
    }
    
.hero {
        width: 100%;
        overflow: hidden; /* Ensure no overflow on smaller screens */
    }
    
    .hero-image,
    .image {
        width: 100%; /* Constrain image to viewport width */
        height: auto; /* Allow height to adjust dynamically */
         
    }
}







 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

     

        .container1, .container2, .container3, .container4{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .container1{
            background-color: #faf3de;
        }
        .text-section {
            flex: 1;
            max-width: 50%;
        }

        .text-section h1 {
            font-size: 2rem;
            color: #f4a261;
            text-align: left;
        }

        .image-section {
            flex: 1;
            max-width: 50%;
        }

        .image-section img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                text-align: justify;
            }
            .text-section, .image-section {
                max-width: 95%;
            }
        }



 
        h2 {
            margin-top: 20px;
        }
        .map-container {
            width: 90%;
            max-width: 800px;
            margin: 20px auto;
            border: 2px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        iframe {
            width: 100%;
            height: 500px;
            border: 0;
        }
        .view-button {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 20px;
            font-size: 18px;
            font-weight: bold;
            color: white;
            background-color:none;
            border: solid;
            border-color: goldenrod;
            border-radius: 40px;
            cursor: pointer;
            text-decoration: none;
        }
        .view-button:hover {
            background-color: #e64a19;
        }
        
        
        
