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

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    /* padding: 0 !important; */
    /* overflow-x: hidden; */
    /* overflow-y: hidden !important; */
}

/* Header and Navigation Styles */
.header {
    width: 100%;
}

.log-button {
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    margin: 0;
    font-size: 20px;
    color: #33e94d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    font-size: 12px;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sea-but {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sea {
    margin-bottom: 4px;
}

.search {
    border: none;
    border-bottom: 1px solid #33e94d;
    padding: 5px;
    width: 200px;
}

.search:focus {
    outline: none;
}

.search::placeholder {
    color: #33e94d;
    opacity: 0.8;
}

.but {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Button styles */
.contribute-btn,
.query-btn {
    border-radius: 15px;
    padding: 6px 20px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.contribute-btn {
    border: 1px solid #33e94d;
    color: #fff;
    background-color: #33e94d;
}

.contribute-btn:hover {
    color: #33e94d;
    background-color: transparent;
}

.query-btn {
    border: 1px solid #28b83d;
    color: #fff;
    background-color: #28b83d;
}

.query-btn:hover {
    color: #28b83d;
    background-color: transparent;
}

/* Navigation styles */
.nav-header {
    background: linear-gradient(135deg, #33e94d 0%, #28b83d 100%);
    min-height: 70px;
    color: white;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 0 35px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav {
    flex: 1;
}

.nav-bar {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.nav-bar li {
    position: relative;
}

.nav-bar a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.nav-bar li:hover>a {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 4px;
}

/* Dropdown styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #28b83d;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background: #28b83d;
    border-radius: 4px;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu .dropdown:hover>.sub-dropdown {
    display: block;
}

/* Main Content Styles */
main.main {
    margin: 20px 50px;
}

/* Section One */
.sec-one {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin: 10px;
    flex-wrap: wrap;
}

.supp-k12 {
    flex: 1 1 65%;
    padding: 25px;
    background: rgba(51, 233, 77, 0.1);
    border-radius: 8px;
}

.supp-k12 h2 {
    color: #28b83d;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.supp-k12 span {
    display: block;
    line-height: 1.6;
    color: #333;
}

.supp-img {
    flex: 1 1 30%;
    min-height: 200px;
    background-color: #33e94d;
    border-radius: 8px;
    overflow: hidden;
}

/* Border Divider */
.border-blue {
    width: 100%;
    height: 4px;
    background-color: #33e94d;
    border-radius: 4px;
    margin: 15px 0;
}

/* Content Sections */
.sec-three,
.sec-four {
    padding: 0px 20px;
    margin-top: 15px;
}

.filter-one {
    margin-bottom: 20px;
}

.latest-contents {
    background-color: #33e94d;
    color: white;
    padding: 2px 20px;
    border-radius: 6px;
    display: inline-block;
}

.latest-contents span {
    font-size: 13px;
    font-weight: 500;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    max-width: 100% !important;
    height: 300px;
    /* margin: 20px auto; */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(51, 233, 77, 0.2);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out !important;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: fill;
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.control {
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control:hover {
    background: white;
    transform: scale(1.1);
}

.control i {
    font-size: 24px;
    color: #33e94d;
}

/* Content Boxes */
.content-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.content-box>div {
    background: #f8f9fa;
    border: 1px solid rgba(51, 233, 77, 0.2);
    border-radius: 8px;
    min-height: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box>div:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(51, 233, 77, 0.15);
    border-color: #33e94d;
}

/* Hamburger menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
    padding: 10px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .carousel {
        height: 350px;
    }
}

@media (max-width: 992px) {
    main.main {
        margin: 20px 30px;
    }

    .sec-one {
        gap: 15px;
    }

    .supp-k12 {
        flex: 1 1 100%;
    }

    .supp-img {
        flex: 1 1 100%;
        height: 250px;
    }

    .carousel {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar {
        justify-content: flex-end;
    }

    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #28b83d;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: block;
    }

    .nav-bar {
        flex-direction: column;
    }

    .dropdown-menu,
    .sub-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        width: 100%;
        background: rgba(40, 184, 61, 0.3);
    }

    .dropdown.active>.dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown.active>.sub-dropdown {
        display: block;
    }

    main.main {
        margin: 15px 20px;
    }

    .supp-k12 h2 {
        font-size: 1.5rem;
    }

    .carousel {
        height: 250px;
    }

    .content-box {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .log-button {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    main.main {
        margin: 10px;
    }

    .sec-one {
        margin: 5px;
    }

    .supp-k12 {
        padding: 15px;
    }

    .carousel {
        height: 200px;
    }

    .controls {
        padding: 0 10px;
    }

    .control {
        width: 35px;
        height: 35px;
    }

    .content-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .content-box>div {
        min-height: 150px;
    }

    .log-button {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        align-items: center;
    }

    .sea-but {
        width: 100%;
        align-items: center;
    }

    .search {
        width: 100%;
        max-width: 300px;
    }

    .but {
        width: 100%;
        justify-content: center;
    }
}

/* =================== */

form i {
    position: absolute;
    margin: 10px;
}

@media (min-width:768px) {

    .navbar {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

}

.offcanvas-body1 {
    display: grid;
    padding: 0px 0px 5px 0px;
    overflow-y: scroll;
    height: 200px;
    margin: 10px;
}

.offcanvas-body1 a,
.section-manu-footer a {
    margin: 10px;
    border-bottom: 1px solid #b8b8b9;
    padding: 0px 0px 8px 0px;
}

.section-manu-footer {
    display: grid;
}

.menu-bar ul li a {
    text-transform: capitalize;
    font-weight: 500;
}

/* header close */

.text-title {
    text-transform: uppercase;
    letter-spacing: 12px;
    font-weight: 100;
}

.border-radius {
    border-radius: 10px;
}

.title {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    /* padding: 15px !important; */
}

.list-unstyled svg {
    border-radius: 20px;
    margin-left: 10px;
}

.list-unstyled li a {
    font-size: 14px;
    /* color: #7f7b7b; */
    color: var(--bs-secondary-color) !important;
}

.social-media-bar i {
    font-size: 15px;
}

.star {
    color: #efc172;
}

.rating,
.plateform {
    font-size: 16px;
    font-weight: 500;
    color: #11163b;
    text-transform: capitalize;

}

.window {
    color: #f67373;
    text-decoration: underline;

}

.date {
    font-size: 15px;
}

.link-more {
    font-size: 15px;
    color: #0418ae !important;
    text-decoration: none;
}

.card1 {
    border: 1px solid #4c4a4a;
    margin: 10px;
    border-radius: 20px;
}

.card1:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.post-slide {
    overflow: hidden;
    margin-right: 15px;
    background-color: #fff !important
}

.post-slide .post-img {
    float: left;
    width: 50%;
    position: relative;
    margin-right: 30px
}

.post-slide .post-img img {
    width: 100%;
    height: auto
}

.post-slide .post-date {
    background: #ec3c6a;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 2% 3%;
    width: 60px;
    height: 60px;
    text-align: center;
    transition: all .5s ease
}

.post-slide .date {
    display: block;
    font-size: 20px;
    font-weight: 700
}

.post-slide .month {
    display: block;
    font-size: 11px;
    text-transform: uppercase
}

.post-slide .post-review {
    padding: 5% 3% 1% 0;
    border-top: 3px solid #38cfd8
}

.post-slide:hover .post-review {
    border-top-color: #ec3c6a
}

.post-slide .post-title {
    margin: 0 0 10px 0
}

.post-slide .post-title a {
    font-size: 14px;
    color: #333;
    text-transform: uppercase
}

.post-slide .post-title a:hover {
    text-decoration: none;
    font-weight: 700
}

.post-slide .post-bar {
    padding: 0;
    list-style: none;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px
}

.post-slide .post-bar:after,
.post-slide .post-bar:before {
    border: 1px solid #38cfd8;
    bottom: -10px;
    content: "";
    display: block;
    position: absolute;
    right: 36%;
    width: 25px
}

.post-slide .post-bar:before {
    border: 1px solid #ec3c6a;
    right: 32%
}

.post-slide .post-bar li {
    color: #555;
    font-size: 10px;
    margin-right: 10px;
    display: inline-block
}

.post-slide .post-bar li a {
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    color: #ec3c6a
}

.post-slide .post-bar li a:hover {
    color: #ec3c6a
}

.post-slide .post-bar li i {
    color: #777;
    margin-right: 5px
}

.post-slide .post-description {
    font-size: 12px;
    line-height: 21px;
    color: #444454
}

.owl-theme .owl-controls {
    margin-top: 30px
}

.owl-theme .owl-controls .owl-page span {
    background: #fff;
    border: 2px solid #37a6a4
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    background: #37a6a4
}

@media only screen and (max-width:990px) {
    .post-slide .post-img {
        width: 100%
    }

    .post-slide .post-review {
        width: 100%;
        border-bottom: 4px solid #ec3c6a
    }

    .post-slide .post-bar:before {
        left: 0
    }

    .post-slide .post-bar:after {
        left: 25px
    }
}

.bg-class {
    /* background: linear-gradient(rgba(82, 82, 81, 0.95), rgba(97, 97, 97, 0.95)), url('../img/images.jpg') !important; */
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url('../img/bg-question.jpg') !important;
    ;
    color: white;
    padding: 30px 0;
    text-align: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 300px;
    width: 100%;
}

.learn-more {
    border-radius: 20px;
    padding: 20px;
    /* background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; ; */
    color: #fff !important;
    text-transform: uppercase;
}

.post-title {
    text-transform: uppercase;
    background-color: var(--bs-success-rgb);
}

#colorlib-breadcrumbs {
    padding: 3em 0;
    clear: both;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

#colorlib-breadcrumbs .breadcrumbs h2 {
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 0;
    font-size: 24px;
    font-weight: 700;
}

#colorlib-breadcrumbs .breadcrumbs p {
    margin-bottom: 0;
    font-size: 13px;
}


#colorlib-breadcrumbs {
    padding: 3em 0;
    clear: both;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

#colorlib-breadcrumbs .breadcrumbs h2 {
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 0;
    font-size: 24px;
    font-weight: 700;
}

#colorlib-breadcrumbs .breadcrumbs p {
    margin-bottom: 0;
    font-size: 13px;
}

.img-responsive {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* width: 100%; */
}


blockquote {
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 30px;
    background: #fafafa;
    border-left-color: #1d5714;
    font-style: italic;
    color: #999999;
    font-size: 20px;
}

a {
    text-decoration: none;
}


.dropdown-item:hover {
    color: #1d5714;
    background-color: #fff !important;
    /* color: #000 !important; */
}


.property-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
    border: 1px solid #000;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    position: relative;
}

.property-image img {
    width: 100%;
    height: 250px;
    object-fit: fill;
    margin-top: 35px;
}

.tag {
    position: absolute;
    top: 36px;
    left: -55px;
    background: #007bff;
    color: white;
    padding: 5px 50px;
    transform: rotate(-45deg);
    font-size: 12px;
    font-weight: 600;
    display: none;
}

.tag.under {
    background: #d9534f;
}

.price-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2d2d2d;
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    font-weight: 600;
}

.property-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f5a623;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
}

.sale-badge {
    background: #f5a623;
    color: white;
    border: none;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 3px;
    margin-top: 10px;
}

.compare-btn {
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px 8px;
    margin-left: 10px;
    cursor: pointer;
}

.compare-btn:hover {
    background: #eee;
}

.detail-btn {
    background: #8b2500;
    color: #fff;
    border: none;
    padding: 6px 20px;
    font-weight: 600;
    border-radius: 5px;
}

.detail-btn:hover {
    background: #a63100;
}

@media (max-width:768px) {

    .property-type,
    .price-badge {
        font-size: 12px;
    }
}

.box {
    color: #fff;
    background: #000;
    border-radius: 20px;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 10px;
}

.contact-info-wrap p a{
    color: #fff !important;
}