:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-secondary: #555555;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    /* --bs-light: #E6F0EF; */
    --bs-light: #d9f7dd;
    --bs-dark: #03201F;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --main-col: #004526;
    --main-col2: #006400;
    --main-lit-col: #618F3E;
    /* --bs-primary: #386336; */
    --bs-primary: darkgreen;
    --bs-primary-2: #SE6338;
    --bs-primary-dark: #004526;
}

.text-light {
    color: var(--bs-light) !important;
}

.txtJst{
    text-align: justify !important;
}

:target {
    scroll-margin-top: 100px;
    /* Adjust this value to the exact height of your sticky nav bar */
}


/* Background Vimeo video */
.video-background {
    position: fixed;  /* fixed so it stays as background */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* pushes it behind all content */
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;  /* covers portrait screens */
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none; /* prevents interaction */
}

/* Landscape fix */
@media (min-aspect-ratio: 16/9) {
    .video-background iframe {
        width: 100vw;
        height: 56.25vw;
    }
}


/* Video section code End */


/* Example content over video */
.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.fs_video {
    width: auto;
    height: 100vh;
}

.bg-light {
    background-color: #d9f7dd !important;
}

a {
    color: var(--bs-primary-dark);
}

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.buildh{
    line-height: 1.4;
}

.coco_home_body .hero-header {
    background: url(../img/Background/coco_hero_bg.png) top center no-repeat;
}

#about {
    position: relative;
}


.coco_home_body .nav_logo {
    max-width: 180px;
    /* max-height: 20vh; */
}

.coco_home_body .sticky-top {
    background-color: var(--bs-light);
    background: url(../img/Background/coco_hero_bg.png) top center no-repeat;
    background-size: cover;
}

.coco_home_body .navbar-light .navbar-toggler {
    color: var(--bs-primary);
    opacity: 0.55;
    border-color: var(--bs-primary);
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: var(--bs-primary-dark);
    background-color: var(--bs-light);
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 .25rem rgba(0, 100, 0, .5);
}



/* second Home Start */

img[src*="image/icon/"] {
    max-width: 90px;
}

/* second Home End */


/* dreem Home Start */
.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 25%, var(--bs-dark));
    z-index: 1;
}

/* dreem Home End */

/* Continous Carasoule Start */

.carouselm-container {
    overflow: hidden;
    white-space: nowrap;
    background: #ffefef;
    padding: 15px 0;
    position: relative;
}

.carouselm-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
}

.carouselm-item-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    /* Bootstrap danger */
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 25px;
    margin: 0 10px;
    border-radius: 50px;
    min-width: 250px;
}

.carouselm-item-custom button {
    margin-left: 15px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .carouselm-item-custom {
        font-size: 1rem;
        min-width: 200px;
        padding: 8px 18px;
    }
}

/* Continous Carasoule End */

.text-primary {
    color: var(--bs-primary) !important;
}

.text-primaryd {
    color: var(--bs-primary-dark) !important;
}

.text-primary-2 {
    color: var(--bs-primary-2) !important;
}

.btn-primary {
    background-color: var(--main-col2);
    /* border-color: #0d6b68; */
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--main-col);
    border-color: #0a5653;
}


.rounded {
    border-radius: .25rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: .2rem !important
}

.rounded-2 {
    border-radius: .25rem !important
}

.rounded-3 {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.rounded-end {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-start {
    border-bottom-left-radius: .25rem !important;
    border-top-left-radius: .25rem !important
}

.service-item.bg-primary .service-img h3 {
    background: var(--bs-primary);
    /* color: var(--bs-white);
    transition: .5s; */
}

.gallery-item {
    display: none;
    /* hidden by default */
}

.gallery-item.show {
    display: block;
    /* visible when filter applies */
}


.ro_inro {
    margin-right: 0px;
    margin-left: 0px;
}



.coco_map iframe {
    width: 100%;
    /* width: 98vw; */
    height: 350px;
}

.coco_home_body .footer h5 {
    font-size: x-large;
}

.coco_home_body .footer .btn.btn-link {
    color: var(--bs-primary-dark);
    opacity: 0.8;
}

.coco_home_body .footer .copyright a {
    /* color: rgba(255, 255, 255, .5); */
    color: var(--bs-primary-dark);
    opacity: 0.8;
}

.footer .btn.btn-link:hover {
    /* color: var(--bs-white); */
    color: var(--bs-primary-dark);
    opacity: 1;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright a:hover {
    color: var(--bs-primary-dark);
    opacity: 1;
}

/* WhatsApp Floating Button */
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 5px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp_float:hover {
  transform: scale(1.1);
  transition: 0.3s;
  background-color: #20b958;
}

.back-to-top {
    right: 24px;
    bottom: 15px;
}


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    
    .hero-header {
    margin-top: -85;
    padding-top: 85;
    }
    
    .cocologo {
        width: 120px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .cocologo {
        width: 150px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .cocologo {
        width: 150px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .cocologo {
        width: 155px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .cocologo {
        width: 160px;
    }

    .testimonial-img {
        border-left: 1px solid white;
    }

    .coco_map iframe {
        height: 70vh;
    }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .cocologo {
        width: 165px;
    }

    .testimonial-img {
        border-left: 1px solid white;
    }

    .coco_map iframe {
        height: 70vh;
    }
}