body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow-x: hidden;
}

/* Header Section */
header {
    background-image: url('../Media/aesthetic\ background\ 1.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    position: relative; 
    color: white; 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    background-color: transparent; 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    position: relative; 
    z-index: 10; 
}

/* Logo Styles */
.logo img {
    margin-bottom: 5px;
    height: 15vh;
    width: 11vw;
}

.logo-underline {
    width: 30px;
    height: 2px;
    background-color: black; 
    position: absolute;
    bottom: 15px;
    left: 6%;
    transform: translateX(-50%);
}

/* Nav Links Styles */
.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    width: 50vw;
    margin-left: 9%;
    gap: 15px;
    margin-top: 1%;
    margin-bottom: 0;
}

.nav-links li {
    margin: 0 20px;
    padding: 1%;
    text-align: center;
}

.nav-links a {
    text-decoration: none;
    color: white; 
    font-size: 14px;
}

.nav-links li:hover {
    background-color: rgba(5, 71, 21, 0.8); 
    padding-left: 2%;
    padding-right: 2%;
}

.nav-links a:hover {
    color: white;
}

/* Icons Styles */
.icons {
    display: flex;
    align-items: center;
    gap: 28px;
    width: 20vw;
    z-index: 999;

}

.icons i {
    font-size: 18px;
    margin-left: 20px;
    cursor: pointer;
    color: white; 
}

/* Menu Toggle Styles */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white; 
    z-index: 999;
}

/* Search Container Styles */
.search-container {
    display: none;
    position: absolute;
    top: 80%;
    right: 15%;
    width: 300px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.87);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.479);
    z-index: 1000;
}

.search-container.active {
    display: block;
}

.search-input {
    width: 100%;
}

/* Header Content Section */
.header-content {
    text-align: center;
    color: white; 
    padding: 50px 20px;  
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}
/* Search Container Styles */
.search-container {
    display: none;
    position: absolute;
    top: 80%;
    right: 15%;
    width: 300px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.87);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.479);
    z-index: 1000;
}

.search-container.active {
    display: block;
}

.search-input {
    width: 100%;
}
/* RESPONSIVE DESIGN - Small Screens */
@media screen and (max-width: 1024px) {
    .navbar {
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .menu-toggle {
        position: relative;
        display: block;
        order: 1;
        z-index: 1000;
    }

    .icons {
        order: 3;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(5, 71, 21, 0.9);
        text-align: center;
        padding: 10px 0;
        z-index: 999;
    }

    /* Show Menu When Toggled */
    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        padding: 10px;
    }
}
@media screen and (max-width: 768px) {
header {
    background-image: url('../Media/aesthetic\ background\ 1.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    font-family: 'Times New Roman', Times, serif;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    overflow: hidden;
    z-index: 5;
}
    /* Ensure Navbar is Flexible */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        position: relative;
        background-color: transparent;
    }

    /* Logo should be in the center */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 1;
    }

    .logo img {
        margin-top: -62%;
        height: 50px;
        order: 1;
        width: 35vw;
        height: 15vh;
    }

    .logo-underline{
        margin-left: 51%;
        top: 85%;
    }
    /* Show Toggle Button on Small Screens */
    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        margin-left: 10px;
        order: 2; 
        margin-top: 30%;
       z-index: 7000;
    }

    /* Icons Always on the Right */
    .icons {
        display: flex;
        align-items: center;
        gap: 133px;
        order: 3; 
        margin-top: 30%;
        z-index: 99;

    }

    /* Hide Navigation Links by Default */
    .nav-links {
        display: none;
        flex-direction: column;
        position: relative;
        top: 150px;
        left: 3%;
        width: 50%;
        text-align: center;
        padding: 10px 0;
    }

    /* Show Nav Links When Active */
    .nav-links.show {
        display: flex;
        position: absolute;
        
    }

    .nav-links li {
        margin: 10px 0;
        padding: 10px;
    }

.icons i {
    font-size: 18px;
    margin-left: -128%;
    cursor: pointer;
    position: relative;
}
/* Header Content Section */
.header-content {
    text-align: center;
    padding: 50px 20px;  
    position: absolute;
    top: 63%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.header-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.header-content p {
    font-size: 1rem;
    line-height: 1.6;
}
}

/* About Us Section */
section.container {
    max-width: 1200px;
    margin: auto;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h6.text-warning {
    font-size: 1.3rem;
}

h2.fw-bold {
    font-size: 2.2rem;
    color: #072f10;
}

p.text-muted {
    font-size: 1.1rem;
    line-height: 2.2;
    padding: 3%;
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 25px;
}

.card-body {
    padding: 20px;
}

h4.fw-bold {
    font-size: 1.5rem;
}

p.small {
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    h6.text-warning {
        font-size: 1.6rem;
    }
    h2.fw-bold {
        font-size: 2.3rem;
    }
    h4.fw-bold {
        font-size: 1.3rem;
    }
    p.text-muted, p.small {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    h2.fw-bold {
        font-size: 2.9rem;
    }
    h4.fw-bold {
        font-size: 1.8rem;
    }
    p.text-muted, p.small {
        font-size: 0.85rem;
    }
    .row .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .card-img-top {
        height: 40vh;
        width: 96%;
    }
    
}

@media (max-width: 576px) {
    h2.fw-bold {
        font-size: 2.1rem;
    }
    h4.fw-bold {
        font-size: 2.5rem;
    }
    p.text-muted, p.small {
        font-size: 0.9rem;
        width: 97.5%;
    }
    .row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .story-card img {
        height: 25vh;
    }
}
/* Services Ssection */
.story-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}
.story-card {
    border: none;
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2.3%;
}
.story-card img {
    border-radius: 10px;
    width: 100%;
    height: 33vh;
}
.story-card h5 {
    font-weight: bold;
    margin-top: 15px;
}
.story-card p {
    color: #6c757d;
}
.story-btn {
    background-color: #072f10;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
}
.story-btn:hover {
    background-color: #074716;

}

/* Footer Section */
.footer {
    background: url('../Media/FOOTER.png') no-repeat center center;
    background-size: cover;
    width: 150%;
    color: white;
    padding: 50px 0;
    position: relative;
    margin-left: -10%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
}
.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}
.footer-column h5 {
    font-weight: bold;
    margin-bottom: 15px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 8px;
}
.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.footer-column ul li a:hover {
    text-decoration: underline;
}
.footer-logo {
    text-align: left;
    margin-top: 20px;
}

.footer-divider {
    border-top: 1px solid white;
    margin: 20px 0;
}
.footer-copyright {
    text-align: center;
    margin-left: 22%;
    padding-top: 10px;
}
/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
.footer {
    position:absolute;
    margin-left: 0.3%;
    margin: 0;
    padding-bottom: 3%;
    padding-top: 14%;
    margin-top: -80%;
    width: 100%;
    overflow: hidden;
    top: 580%;
    background-image: none;
    background-color: #072f10;
    height: fit-content;
    overflow-y: hidden;
    overflow-x: hidden;
    font-size: 0.8rem;

}
    .footer-content {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 3px;
    }

    .footer-column {
        text-align: center;
        margin-left: 10%;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        font-size: 0.8rem;
    }
    .footer-divider {
        width: 100%;
    }
    .follow-column{
        margin-left: -30%;
    }
    .footer-copyright {
        margin-left: 49%;
        padding-top: 10px;
        width: 100%;
    }
}
