/********** Template CSS **********/
:root {
    --primary: #AB7442;
    --light: #F5F5F5;
    --dark: #353535;
    --black1: #000000;
    font-family: Barlow;
}

html {
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFFFFF;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* image border */
.custom-image {
    width: 100%;
    height: auto;
    border: 3px solid #ddd;
    /* Change color and width as needed */
    padding: 5px;
    /* Optional padding for the image */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional shadow */
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* hero section start  */
.hero-curved {
    position: relative;
    min-height: 550px;

    overflow: hidden;
    background: #ffffff;
}

/* Full-width background image layer */
.hero-curved-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 79%;
    z-index: -1;
}

.hero-curved-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-top: 76px;
}

/* Curved content overlay with elongated organic shape */
.hero-curved-content {
    position: relative;
    z-index: 2;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero-curved-content::before {
    content: '';
    position: absolute;
    top: 0%;
    left: -5%;
    width: 64%;
    height: 100%;
    background: linear-gradient(135deg, #008080 0%, #007272 100%);
    border-radius: 0 50% 50% 0 / 0 100% 100% 0;
    z-index: 1;
}

.hero-curved-content-inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 80px 100px 80px 120px;
    color: #ffffff;
}

.hero-curved-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.8px;
}

.hero-curved-content p {
    font-size: 1.2rem;
    color: #ffffff !important;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.98;
}

.hero-curved-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-btn-filled {
    background: #ffffff;
    color: #008080;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-btn-filled:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #037171;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-curved-content h1 {
        font-size: 3.4rem;
    }

    .hero-curved-content-inner {
        max-width: 500px;
        padding: 70px 60px 70px 80px;
    }
}

@media (max-width: 1200px) {
    .hero-curved {
        min-height: 580px;
    }

    .hero-curved-content {
        min-height: 580px;
    }

    .hero-curved-content h1 {
        font-size: 3rem;
    }

    .hero-curved-content p {
        font-size: 1.1rem;
    }

    .hero-curved-content::before {
        width: 75%;
    }
}

@media (max-width: 992px) {
    .hero-curved {
        min-height: 520px;
    }

    .hero-curved-content {
        min-height: 520px;
    }

    .hero-curved-content::before {
        width: 80%;
        border-radius: 0 40% 40% 0 / 0 100% 100% 0;
    }

    .hero-curved-content-inner {
        max-width: 520px;
        padding: 60px 40px 60px 60px;
    }

    .hero-curved-content h1 {
        font-size: 2.6rem;
    }

    .hero-curved-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .hero-curved {
        min-height: auto;
    }

    .hero-curved-image {
        position: relative;
        height: 320px;
    }

    .hero-curved-content {
        min-height: auto;
    }

    .hero-curved-content::before {
        width: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
    }

    .hero-curved-content-inner {
        max-width: 100%;
        padding: 50px 30px;
    }

    .hero-curved-content h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-curved-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-curved-buttons {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-curved-image {
        height: 280px;
        width: 100%;
        margin-top: -75px;
    }

    .hero-curved-content-inner {
        padding: 40px 20px;
    }

    .hero-curved-content h1 {
        font-size: 1.9rem;
    }

    .hero-curved-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-btn-filled,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* hero section end  */

/*** Navbar ***/
.logoheader {
    background-color: #008080;
}

/* Navbar link and button styles specific to the logoheader */
.logoheader .navbar-nav .nav-link {
    color: #07141a;
    /* dark text on teal */
    padding: 8px 30px;
    border-radius: 8px;
    transition: all 0.18s ease-in-out;
    font-weight: 500;
}

.logoheader .navbar-nav .nav-link:hover,
.logoheader .navbar-nav .nav-link:focus {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    text-decoration: none;
}

.logoheader .navbar-toggler {
    border: none;
    color: #ffffff;
}

.logoheader .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.logoheader .btn-primary {
    background-color: #1283ff;
    /* bright blue Sign In */
    border: none;
    box-shadow: 0 2px 6px rgba(18, 131, 255, 0.25);
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.logoheader .btn-primary:hover {
    background-color: #0e6fe6;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(14, 111, 230, 0.25);
}

/* Adjust collapsed Sign In button on small screens */
.logoheader .nav-item.d-lg-none .btn {
    border-radius: 6px;
}

@media (max-width: 991.98px) {
    .logoheader .navbar-nav {
        text-align: left;
    }

    .logoheader .navbar-nav .nav-link {
        color: #ffffff;
        /* keep white on dark collapsed background */
    }

    .logoheader .navbar-collapse {
        background: #008080;
        /* preserve background when collapsed */
        padding: 10px 15px;
    }
}

.custom-card {
    border: 2px solid black;

    position: relative;
}

.card-img {
    height: 100%;
    object-fit: cover;
}

.card-img-overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.custom-card h5,
.custom-card p {
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Padding for container-fluid */
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 35px;
        padding-right: 35px;
    }

    /* Text size adjustments for smaller screens */
    .card-img-overlay h5 {
        font-size: 1rem;
    }

    .card-img-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .card-img-overlay h5 {
        font-size: 0.9rem;
    }

    .card-img-overlay p {
        font-size: 0.75rem;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

/* form */
.form-section {
    background-color: #008080;
    padding: 40px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-control {
    margin-bottom: 20px;
}

.btn-submit {
    background-color: #008080;
    color: white;
    padding: 10px 20px;
    border-color: white;
    border-radius: 4px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #006666;
}

/* footer */
footer {
    background-color: #008080 !important;
    padding: 28px 0;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0;
    margin-bottom: 0;
}

/* Keep inner content centered while background spans full viewport */
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Styling for headings and links */
h5 {
    font-weight: bold;
    margin-bottom: 12px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

footer a:hover {
    color: #f1f9f9;
    text-decoration: underline;
}

/* Footer column links */
footer .row.text-center .col-md-3 a {
    display: block;
    padding: 8px 6px;
    color: #ffffff;
    font-weight: 500;
}

/* Dropdown button styling (Policy) */
.footer-section {
    position: relative;
}

.dropdown-btn {
    background-color: transparent;
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
}

/* Chevron icon for dropdown */
.dropdown-btn::after {
    content: "\25BE";
    margin-left: 8px;
    font-size: 0.7rem;
    opacity: 0.95;
}

/* Dropdown content styling (centered under button) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #201E43;
    min-width: 220px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 50;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 6px;
    overflow: hidden;
}

.dropdown-content a {
    color: #ffffff;
    padding: 10px 16px;
    display: block;
    text-align: left;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Show dropdown on hover */
.footer-section:hover .dropdown-content,
.footer-section:focus-within .dropdown-content {
    display: block;
}

/* Social buttons in footer */
.btn-social {
    border-radius: 6px;
    margin: 0 0.25rem;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    transition: all 0.2s ease;
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Footer copyright text */
.footer-copyeight {
    margin: 0;
    color: #e9f6f6;
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
    footer .row.text-center {
        gap: 8px;
    }

    .text-center {
        margin-bottom: 10px;
    }

    /* Stack columns vertically */
    .col-md-4 {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    /* Center the dropdown button on smaller screens */
    .dropdown-btn {
        width: 100%;
        justify-content: center;
    }

    /* Make dropdown content full-width on mobile */
    .dropdown-content {
        position: relative;
        min-width: 100%;
        left: 0;
        transform: none;
        top: 0;
        margin-top: 8px;
        border-radius: 6px;
    }

    /* Adjust the alignment for mobile */
    .dropdown-content a {
        text-align: center;
        padding: 15px;
    }
}

/* Ensure equal spacing for footer sections */
@media (min-width: 576px) {
    .footer-section {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-section h5 {
        margin: 0;
    }

    .footer-section a {
        display: block;
        padding: 0 10px;
        width: 100%;
    }
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
.img1 img {
    width: 100%;
    /* Let Bootstrap handle the responsiveness */
    display: block;
    margin: 0 auto;
    /* Center the image */
}

.kiomec {
    color: red;
    /* background-color: yellow; */
}


/* our clients start  */
/* Back to Top Button Styles */
#backToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    background-color: #201E43;
    color: white;
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    /* Hidden by default */
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#backToTopBtn:hover {
    background-color: #333;
}

/* Navbar toggler (hamburger) styling */
.navbar-toggler i {
    font-size: 1.25rem;
    color: #201E43
}

.navbar-toggler {
    border: 0
}

/* Explore button style (white box on the right) */
.explore-btn {
    background: #ffffff;
    color: #0b2a33;
    border: 2px solid rgba(0, 0, 0, 0.08);
    font-weight: 600;
    border-radius: 6px;
}

.explore-btn:hover {
    background: #008080;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-color: #ffffff;
}

@media (max-width: 991.98px) {
    .explore-btn {
        width: 100%;
    }
}

/* Clients marquee styles */
.clients-wrapper {
    padding: 1rem 0 2rem 0;
}

.clients-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 2px solid #7fbf6a;
    background: #ffffff;
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    /* Duplicate content width will determine the translate distance; use linear infinite */
    animation: marquee 20s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.client-logo-box {
    min-width: 200px;
    height: 100px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7fbf6a;
    background: #ffffff;
    color: #333;
    font-weight: 600;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* our clients end  */


/* FAQ styling */
#faq .accordion-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

#faq .accordion-button {
    background: linear-gradient(180deg, #f7fbfb, #ffffff);
    border: 1px solid rgba(11, 42, 51, 0.06);
    color: #0b2a33;
    font-weight: 600;
}

#faq .accordion-button:focus {
    box-shadow: none;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0b2a33;
    color: #fff;
    font-weight: 700;
    transition: transform .18s ease, background .18s ease;
}

.accordion-button:not(.collapsed) .faq-icon {
    background: #7fbf6a;
    transform: rotate(45deg);
}

#faqSearch {
    border-radius: 30px;
    padding: .6rem 1rem;
}

.img1 .boody {
    margin-top: 10px;
    text-align: center;
    font-size: larger;
    font-family: "Oswald", system-ui;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

@media (min-width: 576px) {

    /* For small screens and above */
    .img1 .boody {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (min-width: 768px) {

    /* For medium screens and above */
    .img1 .boody {
        margin-left: 8%;
        margin-right: 8%;
    }
}

@media (min-width: 992px) {

    /* For large screens and above */
    .img1 .boody {
        margin-left: 10%;
        margin-right: 10%;
    }
}



@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/* Additional CSS to handle smaller screens */
@media (max-width: 991px) {
    .feature-text {
        padding: 1rem;
    }

    .img-fluid {
        height: auto;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .feature-text p {
        font-size: 1.2rem;
        padding: 0;
    }

    .container.feature {
        padding: 0 !important;
    }

    .feature-text {
        padding: 1rem !important;
    }
}

/* events and campaign */
.custom-card {
    border: 2px solid black;
    position: relative;
}

.card-img {
    height: 100%;
    object-fit: cover;
}

.card-img-overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.custom-card h5,
.custom-card p {
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Padding for container-fluid */
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 35px;
        padding-right: 35px;
    }

    /* Text size adjustments for smaller screens */
    .card-img-overlay h5 {
        font-size: 1rem;
    }

    .card-img-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .card-img-overlay h5 {
        font-size: 0.9rem;
    }

    .card-img-overlay p {
        font-size: 0.75rem;
    }
}

/* event and campaign end */

/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item {
    margin-left: auto;
    margin-right: auto;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}

/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}