*, ::before, *::after {
    margin: 0;
    padding: 0;
}
:root {
    --primary: #4fc440;
    --secondary: #0c194e;
    --black: #222222;
    --grey-color: #a9a9a9;
    --light-green: #d7e5eb;
    --strong-green: #024636;
    --light-grey: #efefef;
    --dark-grey: #3e3e3e;
    --border-radius: 15px;
}
body {
    font-family: "Quicksand", sans-serif;
}
a {
    text-decoration: none;
}

/** ===========================================================================
    Navbar 
===============================================================================**/

.logo img {
    width: 250px;
    max-width: 100%;
    height: auto;
}

/* Navigation Menu Styling */
.nav-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.nav-links a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 18px;
    position: relative;
    text-decoration: none;
    margin: 0 15px;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}
.nav-links .active {
    color: var(--primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    border-radius: 5px;
    bottom: -10px;
    left: 0;
    background-color: var(--strong-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Book Button Styling */
.book-btn {
    background-color: var(--primary);
    color: #fff;
    border-radius: 3em;
    padding: .7em 2.3em;
    transition: all .3s ease-in;
    text-decoration: none;
}

.book-btn:hover {
    color: white;
    opacity: 0.5;
}

/* Hamburger Menu Styling */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    margin: 4px 0;
    transition: 0.4s;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo img {
        width: 220px;
    }
    .about-img img {
        width: 100% !important;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
        padding: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .book-btn {
        display: none;
    }

    .col-8.nav-menu {
        justify-content: flex-end;
    }
}
@media (max-width: 480px) {
    .logo img {
        width: 200px;
    }
}
/** ===========================================================================
    Hero 
===============================================================================**/
#hero {
    position: relative;
}
#hero .bg-image {
    height: 600px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#hero .bg-image img {
    width: 100%;
}

.hero-content {
    height: 500px;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: start; */
}
.hero-content h1 {
    font-size: 2.5rem;
    color: var(--secondary) !important;
}
.hero-content h2 {
    font-size: 1.5rem;
    color: var(--primary) !important;
}
.hero-content h1,
.hero-content h2  {
    margin-bottom: 1.5rem;
    color: var(--black);
}
.hero-content .btn {
    background-color: var(--strong-green);
    color: white;
    border-radius: 3em;
    padding: .7em 1.5em;
    font-size: 1.1rem;
    margin-top: 1.2rem;
    text-transform: uppercase;
    border: 2px solid var(--strong-green);
    transition: all .3s ease-in;
}
.hero-content .btn:hover {
    transform: translateY(10px);
    opacity: 0.8;
}
.hero-content .btn:nth-last-of-type(1){
    background-color: transparent;
    color: var(--strong-green);
    margin-left: 1rem;
}

.right-section {
    position: relative;
    min-height: 800vh!important;
}
.right-section .intro-image img {
    width: 100%;
    border-radius: 20px;
}

.leaf {
    position: absolute;
    background-color: var(--primary);
    opacity: 0.7;
}
.leaf1 {
    top: 0%;
    left: 30%;
    width: 200px;
    height: 300px;
    transform: rotate(-30deg);
    border-radius: 70% 0 70% 0;
}
.leaf2 {
    top: 20%;
    right: 20%;
    width: 150px;
    height: 250px;
    transform: rotate(30deg);
    border-radius: 0 70% 0 70%;
}
.video-icon {
    position: absolute;
    top: 150px;
    right: 40%;
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    cursor: pointer;
    animation: pulse 2s infinite;
    font-size: 3.5rem;
}
.video-icon::before {
    content: '';
    font-size: 30px;
    color: var(--strong-green);
}
.video-icon a {
    color: var(--strong-green);
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/** ===========================================================================
    About Section
===============================================================================**/
#about h2, #about h3 {
    color: var(--secondary);
}
.about-section {
    position: relative;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: var(--light-grey);
}
  
.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/image.png');
    background-size: contain; 
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}
  
.about-section * {
    position: relative;
    z-index: 2;
    }

.about-section .circle-box {
    /* border-left: 15px solid var(--strong-green); */
}
.about-section .circle {
    height: 150px;
    width: 150px;
    background-color: var(--secondary);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 3rem;
}
.about-section .mission-text {
    /* text-align: center; */
    padding-left: 3rem;
    padding-right: 3rem;
    margin-left: 5%;
    margin-right: 5%;
    border-left: 15px solid var(--secondary);
    border-right: 15px solid var(--secondary);
    border-radius: 1em;
}
.about-section .mission-text h3 {
    color: var(--secondary);
}
.about-section .mission-text p {
    font-size: 20px;
}
.about-section h2 {
    margin-top: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}
.head-underline {
    height: 12px;
    width: 60px;
    background-color: var(--strong-green);
    margin-bottom: 2rem;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.about-section p {
    font-size: 20px;
    margin-bottom: 2rem;
}
.about-section .cards-wrap {
    display: flex;
}
.about-section .a-card {
    background-color: white;
    max-width: 100%;
    margin-bottom: 8px;
    padding: 1.2rem;
    border-radius: 30px;
}
.about-section .a-card h3 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--secondary);
}
.about-section .a-card p {
    color: var(--dark-grey);
    font-size: 16px;
}
.about-section .a-card .icon {
    font-size: 6rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: var(--strong-green);
    display: flex;
    justify-content: center;
}

/** ===========================================================================
    About
===============================================================================**/
#about {
    position: relative;
}
#about .bg-image {
    height: 300px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.2;
}
#about .bg-image img {
    width: 100%;
}

.about-content {
    margin-top: 3rem;
    padding-top: 3rem;
    background-color: var(--light-grey);
    position: relative;
}
 
.about-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/image.png');
    background-size: contain; 
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}
 
.about-content * {
    position: relative;
    z-index: 2;
 }
.about-content p {
    font-size: 18px;
}
.about-content .title {
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.about-img {
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img img {
    width: 75%;
    border: 20px solid white;
    border-radius: 35px;
}
.team-card {
    background-color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 30px;
}
.team-card .avatar {
    border-radius: 30px;
    height: 300px;
    overflow: hidden;
}
.team-card .avatar img {
    width: 100%;
    border-radius: 20px;
}
.team-card .name {
    margin-top: 1rem;
    font-size: 25px;
    color: var(--secondary);
}
.team-card p a {
    color: var(--strong-green);
}

/** ===========================================================================
    Services
===============================================================================**/
#services h2, 
#services h3,
#services h4 {
    color: var(--secondary);
}
#services .bg-image {
    height: 300px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.2;
}
#services .bg-image img {
    width: 100%;
}
.services-content {
    margin-top: 3rem;
    padding-top: 3rem;
    background-color: var(--light-grey);
    padding-bottom: 5rem;
    margin-bottom: 0;
}

.services-content::before {
    content: "";
    position: absolute;
    top: 250px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/image.png');
    background-size: cover; 
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
 }
 
 .services-content * {
    position: relative;
    z-index: 2;
 }

.service-card {
    background-color: white;
    padding: 1rem;
    border-radius: 30px;
    height: 100%;
}
.service-card h4 {
    font-weight: 600;
    font-size: 20px;
}

.service-card .image {
    width: 100%;
    margin-bottom: 1rem;
}
.service-card .image img {
    width: 100%;
    border-radius: var(--border-radius);
}

/** ===========================================================================
    Ora ESG
===============================================================================**/
#ora .bg-image {
    height: 300px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}
#ora .bg-image img {
    width: 100%;
}

.ora-content {
    margin-top: 3rem;
    padding-top: 3rem;
    background-color: var(--light-grey);
    position: relative;
}
 
.ora-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/image.png');
    background-size: contain; 
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}
 
.ora-content * {
    position: relative;
    z-index: 2;
 }

 .ora-content .feature-card {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.ora-images-section {
    position: relative;
}
.ora-images-section img {
    width: 100%;
    margin-bottom: 3rem;
    margin-top: -2.5rem;
}

/** ===========================================================================
    Contact
===============================================================================**/
#contacts h2 {
    color: var(--secondary);
}
#contacts .bg-image {
    height: 300px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.2;
}
#contacts .bg-image img {
    width: 100%;
}
.contact-section {
    background-color: var(--light-grey);
    margin-top: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.contact-section .contact-box {
    background-color: white;
    padding: 1rem;
    border-radius: 30px;
    height: 100%;
}

.contact-section .contact-box .btn {
    background-color: var(--primary);
    color: white;
    border-radius: 3em;
    padding: .7em 1.5em;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    transition: all .3s ease-in;
}
.contact-section .contact-box .btn:hover {
    transform: translateY(10px);
    opacity: 0.8;
}

.contact-section .contact-box input {
    height: 50px;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #808080;
    padding-left: 1rem;
}
.contact-section .contact-box input:focus {
    border: 2px solid var(--strong-green) !important;
    border: none;
}
.contact-section .contact-box textarea {
    width: 100%;
    border-radius: 15px;
    border: 1px solid #808080;
    padding-left: 1rem;
    padding-top: 5px;
}
.contact-section .contact-item {
    display: flex;
    margin-bottom: 2rem;
}
.contact-section .contact-item .icon {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background-color: var(--light-grey);
    border-radius: 15px;
}
.contact-section .contact-item .icon i {
    color: var(--secondary);
}
.contact-section .contact-item .content {
    display: flex;
    align-items: center;
    font-weight: 600;
    padding-left: 1rem;
    color: #6d6d6d;
}

/** ===========================================================================
    Footer
===============================================================================**/
#footer {
    background-color: var(--secondary);
    color: white;
    padding-top: 5rem;
    position: relative;
}
/* #footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/image.png');
    background-size: auto; 
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

#footer * {
    position: relative;
    z-index: 2;
} */
#footer hr {
    margin-bottom: 1rem;
    margin-top: 3rem;
}
#footer img {
    width: 200px;
}
.footer-content {
    color: #7A86B9;
}
.footer-content a {
    color: #7A86B9;
    transition: all .3s ease-in;
}
.footer-content a:hover {
    cursor: pointer;
    color: var(--light-green);
    font-weight: 600;
}
.footer-content > div {
    display: flex;
    align-items: center;
}
.footer-content .icon-wrap {
    margin-right: 8px;
    height: 38px;
    width: 38px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #253472;
    transition: all .3s ease-in;
}
.footer-content .icon-wrap:hover {
    color: var(--primary);
    background-color: var(--primary);
}
.footer-content .icon-wrap i {
    color: white;
}
.footer-content .demo-email {
    margin-top: 1rem;
    background-color: var(--grey-color);
    padding: 5px 6px;
    border-radius: 15px;
    position: relative;
}
.footer-content .demo-email input{
    height: 40px;
    width: 80%;
    border-radius: 10px;
    border: none;
    padding: 5px 8px;
    background-color: var(--grey-color);
    color: var(--black);
    font-weight: 600;
}
.footer-content .demo-email input::placeholder {
    color: var(--black);
}
.footer-content .demo-email input:focus {
    border: none;
    outline: none;
}
.footer-content .demo-email .btn {
    background-color: var(--secondary);
    color: white;
    border-radius: 10px;
    position: absolute;
    right: 8px;
    transition: all .3s ease-in;
}
.footer-content .demo-email .btn:hover {
    opacity: 0.6;
}

/** ===========================================================================
    Call to action
===============================================================================**/

#call-action {
    background-color: var(--light-grey);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.call-action-box {
    /* background-color: var(--black); */
    background: rgb(169,169,169);
    background: linear-gradient(76deg, rgba(169,169,169,1) 0%, rgb(61, 120, 83) 0%, rgba(169,169,169,1) 67%);
    border-radius: 30px;
    padding: 1rem;
    height: 60vh;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.call-action-box .img-holder {
    width: 60%;
    position: absolute;
    display: flex;
    justify-content: end;
    
}
.call-action-box .img-holder:nth-last-child(1) {
    top: 100px;
    right: 150px;
}
.call-action-box .img-holder:nth-last-child(2) {
    top: 10px;
    right: 10px;
}

.call-action-box .img-holder img {
    width: 80%;
    border-radius: 15px;
}
.call-action-box .book-input {
    margin-top: 1rem;
    background-color: var(--grey-color);
    padding: 5px 6px;
    border-radius: 15px;
    position: relative;
    width: 38%;
}
.call-action-box .book-input input{
    height: 40px;
    width: 70%;
    border-radius: 10px;
    border: none;
    padding: 5px 8px;
    background-color: var(--grey-color);
    color: var(--black);
    font-weight: 600;
}

.call-action-box .book-input input::placeholder {
    color: var(--black);
}
.call-action-box .book-input input:focus {
    border: none;
    outline: none;
}
.call-action-box .book-input .btn {
    background-color: var(--strong-green);
    color: white;
    border-radius: 10px;
    position: absolute;
    right: 8px;
    transition: all .3s ease-in;
}
.call-action-box .book-input .btn:hover {
    opacity: 0.6;
}

/** ===========================================================================
    Section Partners
===============================================================================**/
/*** Partners Styles ***/
#partners {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
    position: relative;
}

.partners {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: .875rem;
    width: max-content; 
    
    display: flex;
    align-items: center;
    animation: slidePartners 10s linear infinite;
    
    /* Remove margin that was causing the gap */
    margin-left: 0;
    margin-right: 0;
    
    /* Move the container outside the view initially */
    position: relative;
    left: 0; /* Start position to eliminate gap */
}

.partners a {
    padding: 0 20px;
    flex-shrink: 0; 
}

.partners a img {
    max-height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

#partners .partners a:hover img {
    transform: scale(1.1);
}

#partners:hover .partners {
    animation-play-state: paused;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0); /* Start at initial position */
    }
    100% {
        transform: translateX(calc(50% + 100px)); /* Move rightward by half the width plus some buffer */
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .partners {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .partners a {
        padding: 0 15px;
    }
    .partners a img {
        max-height: 70px;
    }
}
