/* Hero Section */
.aboutuscls {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('images/islet-8110071_1280.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    padding: 100px;
    width: 100%;
    height: 200px;
}

.overlay h1 {
    font-size: 48px;
    font-weight: bold;
}

.overlay p {
    font-size: 16px;
    line-height: 1.6;
}

/* Hero Section */
.aboutuscls {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('images/islet-8110071_1280.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    padding: 100px;
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    padding: 0 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .aboutuscls {
        height: 350px;
    }

    .overlay {
        padding: 80px;
        height: 180px;
    }

    .overlay h1 {
        font-size: 36px;
    }

    .overlay p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .aboutuscls {
        height: 300px;
    }

    .overlay {
        padding: 60px 30px;
        height: auto;
    }

    .overlay h1 {
        font-size: 28px;
    }

    .overlay p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .aboutuscls {
        height: 250px;
    }

    .overlay {
        padding: 40px 20px;
        height: auto;
    }

    .overlay h1 {
        font-size: 22px;
    }

    .overlay p {
        font-size: 13px;
    }
}




/* General Styling for Our Story Section */
.ourstry {
    margin-top: 50px;
    margin-left: 50px;
    padding: 20px; /* Padding for some space around the content */
    border-radius: 8px; /* Rounded corners for a softer look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-family: Arial, sans-serif; /* Clean and modern font */
    color: #333; /* Dark text color for readability */
}

/* Heading Styling */
.ourstry h2 {
    font-size: 2em; /* Larger font size for main heading */
    margin-bottom: 10px; /* Space below the heading */
    color: #333; /* Primary color for headings */
}

.ourstry h3, .ourstry h4 {
    margin-top: 30px;
    font-size: 1.5em; /* Slightly smaller than main heading */
    margin-bottom: 10px; /* Space below the sub-headings */
    color: #333; /* Primary color for sub-headings */
}

.ourstry h3{
    margin-top: 60px;
}
/* Paragraph Styling */
.ourstry p {
    font-size: 1.1em; /* Standard font size for paragraphs */
    line-height: 1.8; /* Increased line height for better readability */
    margin-bottom: 15px; /* Space below paragraphs */
    color: #666;
}

/* List Styling */
.ourstry ul {
    list-style-type: disc; /* Disc bullets for list items */
    margin-left: 20px; /* Indent list from the left */
    margin-bottom: 20px; /* Space below the list */
}

.ourstry li {
    margin-bottom: 10px; /* Space below each list item */
    line-height: 1.8; /* Increased line height for better readability */
    font-size: 1em;
}

/* Strong Tag Styling within List */
.ourstry li strong {
    font-size: 1.2em;
    color: #666; /* Primary color for emphasis */
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .ourstry {
        padding: 15px; /* Reduced padding for smaller screens */
        margin: 20px; /* Reduced margin */
    }

    .ourstry h2 {
        font-size: 1.8em; /* Smaller font size for headings */
    }

    .ourstry h3, .ourstry h4 {
        font-size: 1.3em; /* Slightly smaller font size for sub-headings */
    }

    .ourstry p {
        font-size: 1em; /* Smaller font size for paragraphs */
    }

    .ourstry ul {
        margin-left: 15px; /* Reduced margin for list items */
    }
}

@media (max-width: 576px) {
    .ourstry {
        padding: 10px; /* Further reduced padding */
        margin: 10px; /* Further reduced margin */
    }

    .ourstry h2 {
        font-size: 1.6em; /* Further reduced font size for headings */
    }

    .ourstry h3, .ourstry h4 {
        font-size: 1.2em; /* Further reduced font size for sub-headings */
    }

    .ourstry p {
        font-size: 0.9em; /* Further reduced font size for paragraphs */
    }

    .ourstry ul {
        margin-left: 10px; /* Further reduced margin for list items */
    }
}
