@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Fjalla+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* variable */

:root {
    --alt-font: "Roboto Condensed", sans-serif;
    --primary-font: "Roboto Condensed", sans-serif;
    --base-color: #8B5E3C;
    --dark-gray: #141414;
    --medium-gray: #707070;
    --aluminium-grey: #707070;
}


/* reset */

body {
    font-size: 18px;
    line-height: 30px;
}

a:hover {
    color: var(--dark-gray);
}


/* header */

.navbar .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 600;
    font-family: "Roboto Condensed", sans-serif;
}

.navbar .navbar-nav .dropdown.open .dropdown-menu {
    background-color: var(--dark-gray);
}

.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Roboto Condensed", sans-serif;
}

header .navbar-brand img {
    max-height: 100px;
    /* keep logo size */
    width: 100px;
    /* make it square */
    height: 100px;
    /* make it square */
    border-radius: 90%;
    /* makes it circular */
    object-fit: cover;
    /* ensures image fills circle */
}

.header-top-bar div>a {
    color: var(--light-gray);
}

.header-top-bar div>a:hover {
    color: var(--white);
}

.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
    font-size: 30px;
}

.navbar .navbar-nav .dropdown .dropdown-menu a i {
    width: 35px;
}

header .btn.btn-box-shadow.btn-base-color,
.btn.btn-base-color {
    color: var(--dark-gray);
}

header .btn.btn-box-shadow.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:hover {
    color: var(--dark-gray);
}

header .btn.btn-small {
    font-size: 15px;
    padding: 10px 18px;
}

html,
body {
    overflow-x: hidden !important;
}


/* Offset page content to account for fixed header height */


/* btn */

.btn.btn-hover-animation-switch.btn-link {
    padding-top: 0;
}

.btn {
    text-transform: inherit;
    font-weight: 600;
    letter-spacing: 0;
}

.btn.btn-extra-large {
    font-size: 18px;
    padding: 16px 32px;
}

.btn.btn-large {
    font-size: 17px;
    padding: 14px 28px;
}

.btn.btn-medium {
    font-size: 16px;
    padding: 12px 24px;
}

.btn.btn-small {
    font-size: 15px;
}

.btn.btn-very-small {
    font-size: 14px;
    padding: 9px 20px;
}


/* counter style */

.counter-style-04 .vertical-counter:after {
    color: var(--base-color);
}

.review-star-icon i {
    color: var(--base-color);
}

.google-maps-link a:hover {
    color: var(--white);
}


/* footer style */

footer ul li {
    margin-top: 1px;
    margin-bottom: 1px;
}

footer p {
    line-height: 28px;
}


/* page title */

.page-title-double-large h1 {
    font-size: 4.375rem;
    line-height: 4.688rem;
    font-family: "Roboto Condensed", sans-serif;
}

.page-title-double-large h2 {
    font-size: 16px;
    line-height: 28px;
    font-family: "Roboto Condensed", sans-serif;
}


/* top bottom left right class */

.right-12 {
    right: 12%;
}

.bg-jungle-green {
    background-color: #2ebb79;
}


/* Outside box */

.outside-box-top-205px {
    margin-top: -205px;
}


/* Transparent background color */

.bg-gradient-gray-light-dark-transparent {
    background-image: linear-gradient(to top, #f7f7f7 0%, transparent 100%);
}

@media (max-width: 1399px) {
    .xl-h-180px {
        height: 180px;
    }
    .xl-w-180px {
        width: 180px;
    }
}

@media (max-width: 1199px) {
    .outside-box-top-200px {
        margin-top: -150px;
    }
}

@media (max-width: 991px) {
    .outside-box-top-200px {
        margin-top: 10px;
    }
    .navbar .navbar-nav .dropdown.open .dropdown-menu {
        padding-bottom: 15px;
    }
}

@media (max-width: 767px) {
    /* First image container */
    .w-80.ms-auto {
        margin: 0 auto !important;
        /* center horizontally */
        width: 100% !important;
        /* make it responsive */
        text-align: center;
    }
    .w-80.ms-auto img {
        display: inline-block;
        max-width: 100%;
    }
    /* Second image container */
    .w-60.overflow-hidden.position-absolute.left-15px.bottom-20px {
        position: relative !important;
        /* no absolute */
        left: auto !important;
        bottom: auto !important;
        margin: 15px auto 0 auto;
        /* center below the first image */
        width: 100% !important;
        text-align: center;
    }
    .w-60.overflow-hidden.position-absolute.left-15px.bottom-20px img {
        display: inline-block;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    section.text-center.py-1 {
        margin-top: 50px !important;
    }
}

.highlight-black {
    color: #000;
    /* black color */
}

.zoom-bg {
    background-color: #000;
    background-repeat: no-repeat;
    /* prevents tiling */
    background-position: center;
    /* keeps it centered */
    background-size: cover;
    animation: zoomEffect 15s ease-in-out infinite;
}

@keyframes zoomEffect {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 115%;
    }
    100% {
        background-size: 100%;
    }
}


/* Sidebar button */

.sidebar-toggle-btn {
    position: fixed;
    right: 15px;
    font-size: 26px;
    border: none;
    background: transparent;
    color: #000;
    z-index: 1051;
    /* above navbar */
}

.sidebar-toggle-btn:focus {
    outline: none;
    box-shadow: none;
}


/* 3D Carousel Styles */


/* Container */

.image-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* full screen */
    max-width: 100%;
    /* remove Bootstrap limit */
    margin: 0 auto;
    --slide-width: 25%;
}

@media (max-width: 1200px) {
    .image-slider-container {
        --slide-width: 25%;
    }
}


/* 4 per view */

@media (max-width: 992px) {
    .image-slider-container {
        --slide-width: 33.333%;
    }
}


/* 3 per view */

@media (max-width: 768px) {
    .image-slider-container {
        --slide-width: 50%;
    }
}


/* 2 per view */

@media (max-width: 576px) {
    .image-slider-container {
        --slide-width: 100%;
    }
}


/* 1 per view */

.image-slider-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform .55s ease;
}

.image-slide {
    flex: 0 0 var(--slide-width);
    box-sizing: border-box;
    padding: 40px 28px;
    /* spacing */
}

.image-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    /* force square for perfect circle */
    border-radius: 0%;
    /* makes circle */
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease, box-shadow .45s ease;
    transform: scale(.85);
}


/* Active highlight */

.image-slide.active img {
    filter: blur(0) brightness(1);
    z-index: 1;
}


/* Nav Arrows */

.image-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    /* no background */
    color: hwb(0 100% 0%);
    /* white arrows */
    border: none;
    font-size: 42px;
    /* bigger for visibility */
    cursor: pointer;
    z-index: 5;
    padding: 0;
    line-height: 1;
    transition: transform .2s ease;
}


/* Wrapper for circle */

.circle-wrapper {
    position: relative;
    border-radius: 16px;
    /* instead of 50% */
    overflow: hidden;
}

.circle-wrapper img {
    border-radius: 16px;
    /* same rounded corners */
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s ease;
}


/* Full black overlay */

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    font-family: "Roboto Condensed", sans-serif;
    /* change font family */
    font-size: 22px;
    /* adjust size */
    font-weight: 600;
    /* make it bold */
    text-align: center;
    padding: 15px;
    opacity: 0;
    transition: opacity .4s ease, transform .4s ease;
}


/* Hover effect */

.circle-wrapper:hover img {
    transform: scale(1.2);
}

.circle-wrapper:hover .overlay-text {
    opacity: 1;
    transform: scale(1.05);
}


/* Smaller buttons on mobile */

@media (max-width: 576px) {
    .image-slider-btn {
        font-size: 32px;
    }
    .image-slider-btn.prev {
        left: 10px;
    }
    .image-slider-btn.next {
        right: 10px;
    }
}

.big-title {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    color: #222;
    display: block;
    margin-bottom: 10px;
}

.about-block {
    text-align: center;
    margin-bottom: 50px;
}

.services-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}


/* FADE-IN for the whole section */

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ZOOM-IN effect for heading */

h2.zoom-heading {
    display: inline-block;
    position: relative;
    animation: zoomIn 1s ease forwards;
    transform-origin: center;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Underline animation on hover */

h2.zoom-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: orange;
    transition: width 0.4s ease;
}

h2.zoom-heading:hover::after {
    width: 100%;
}

.services-section {
    max-width: 1200px;
    margin: auto;
    font-family: "Roboto Condensed", sans-serif;
}

.section-title {
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 2.8rem;
    font-weight: 200px;
    margin-bottom: 10px;
    color: hsl(0, 0%, 0%);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #555;
}

.service-item {
    display: flex;
    flex-direction: row;
    /* default: image left, text right */
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    margin: 40px auto;
    padding: 30px;
    max-width: 1200px;
}

.service-item.reverse {
    flex-direction: row-reverse;
    /* flip when using "reverse" */
}

.service-image {
    flex: 1 1 45%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.service-image img:hover {
    transform: scale(1.1);
}

.service-content {
    flex: 1 1 55%;
}

.service-content {
    flex: 1 1 55%;
}

.service-content h3 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 10px;
    font-family: "Roboto Condensed", sans-serif;
}

.service-content p {
    font-size: 1rem;
    color: hsl(0, 0%, 0%);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #444;
}

.service-content ul li::before {
    content: "✔";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

@media (max-width: 992px) {
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        /* stack image & text */
        text-align: center;
        /* center-align text */
    }
    .service-content,
    .service-image {
        flex: 1 1 100%;
        /* full width */
    }
    .service-content {
        margin-top: 20px;
    }
}


/* --- SLIDE ANIMATIONS --- */

.slide-left,
.slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.slide-left {
    transform: translateX(-100px);
}

.show {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 20px;
    text-align: center;
}

.info-card {
    flex: 1;
    transition: transform 0.3s ease;
}

.icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card:hover .icon {
    transform: scale(1.1);
    border-color: #8B4513;
    /* Reddish Brown border on hover */
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.info-card p {
    font-size: 16px;
    color: #333;
    text-align: center;
}

.info-card a {
    text-decoration: none;
    color: inherit;
}

.info-card a:hover {
    color: #8B4513;
}

.map-section {
    /* fallback dark tone */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px;
}


/* Wrapper for map with 3D look */

.map-wrap {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    /* Keeps proper ratio */
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.6);
    transform: perspective(1000px) rotateX(3deg) rotateY(-3deg);
}


/* Responsive iframe */

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


/* Fix footer contact column visibility on mobile */

@media (max-width: 576px) {
    footer .col-lg-3,
    footer .col-md-4,
    footer .col-sm-5 {
        flex: 0 0 100% !important;
        /* full width */
        max-width: 100% !important;
        margin: 10px 0 !important;
        /* add spacing */
    }
    footer .col-lg-3 a,
    footer .col-lg-3 span {
        font-size: 14px;
        /* smaller text for phones */
        display: block;
        /* stack contact info */
    }
}

.card-section {
    margin-left: 0%;
    margin-right: 0%;
    background: #f5f5f5;
    text-align: center;
}

.section-heading {
    font-size: 2.5em;
    block-size: 3px;
    color: #000;
    font-family: "Roboto Condensed", sans-serif;
}

.card-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0%;
    margin-right: 0%;
}

.card {
    background: white;
    width: 300px;
    height: 400px;
    margin: 30px;
    padding: 0px;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
    height: 200px;
    /* adjust height as needed */
    overflow: hidden;
    position: relative;
    /* ensures nothing spills out */
    object-fit: contain;
}

.card img {
    width: 250%;
    height: 100%;
    border-radius: 0px;
    margin-bottom: 10px;
    object-fit: fill;
    display: block;
    /* removes default inline spacing */
    transition: transform 0.5s ease;
    /* smooth zoom */
}

.card:hover img {
    transform: scale(1.2);
    /* zooms in image on hover */
}


/* Top row slides from right */

.top-row .card.clide-in {
    opacity: 1;
    transform: translateX(0);
}


/* Bottom row slides from left */

.bottom-row .card {
    transform: translateX(-50px);
}

.bottom-row .card.slide-in {
    opacity: 1;
    transform: translateX(0);
}


/* Responsive */

@media (max-width: 992px) {
    .card {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .card {
        width: 45%;
        margin: 10px 2%;
    }
}

@media (max-width: 480px) {
    .card {
        width: 90%;
        margin: 10px auto;
    }
    .section-heading {
        font-size: 1.5em;
        block-size: 3px;
        color: #000;
        padding-bottom: 20px;
        font-family: "Roboto Condensed", sans-serif;
    }
}


/* Section container */

.animated-section {
    position: relative;
    overflow: hidden;
    padding: 80px 15px;
    z-index: 1;
}


/* Shape base */

.animated-section .shape {
    position: absolute;
    opacity: 0.4;
    animation: float 20s linear infinite;
}


/* Squares */

.shape.square {
    width: 40px;
    height: 40px;
    background: hsl(292, 96%, 52%);
}

.shape.square2 {
    width: 50px;
    height: 50px;
    background: hsl(36, 77%, 52%);
}


/* Triangles */

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid hsl(199, 90%, 55%);
}

.shape.triangle2 {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 40px solid hsl(122, 78%, 51%);
}


/* Hexagons */

.shape.hexagon {
    width: 60px;
    height: 34.64px;
    background-color: hsl(54, 77%, 50%);
    position: relative;
    margin: 17.32px 0;
}

.shape.hexagon:before,
.shape.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

.shape.hexagon:before {
    bottom: 100%;
    border-bottom: 17.32px solid hsl(54, 74%, 38%);
}

.shape.hexagon:after {
    top: 100%;
    border-top: 17.32px solid hsl(54, 46%, 36%);
}


/* Floating animation */

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) translateX(50px) rotate(180deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}


/* Text animations */

.about-block {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.about-block:nth-child(1) {
    animation-delay: 0.3s;
}

.about-block:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .animated-section {
        padding: 60px 10px;
    }
    .big-title {
        font-size: 24px;
    }
    .about-block p {
        font-size: 14px;
    }
}

.royal-divider {
    width: 1000px;
    /* length of line */
    height: 4px;
    /* thickness */
    margin: 20px auto;
    /* center & spacing */
    border-radius: 50px;
    /* smooth pill shape */
    background: linear-gradient( 90deg, transparent, #d4af37, #ffc400, #d4af37, transparent);
    position: relative;
}

.royal-divider::before,
.royal-divider::after {
    content: "◆";
    /* diamond shapes */
    font-size: 14px;
    color: #d4af37;
    position: absolute;
    top: -10px;
}

.royal-divider::before {
    left: -20px;
}

.royal-divider::after {
    right: -20px;
}

@media (max-width: 576px) {
    .royal-divider {
        width: 80%;
        height: 3px;
    }
    .royal-divider::before,
    .royal-divider::after {
        font-size: 12px;
        top: -8px;
    }
}


/* Lightbox Overlay */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}


/* Image inside lightbox */

.lightbox img {
    max-width: 95%;
    /* allow it to take almost full width */
    max-height: 95%;
    /* allow it to take almost full height */
    border-radius: 8px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.7);
    transform: scale(1);
    /* default scale */
    transition: transform 0.4s ease-in-out;
}


/* Zoom-in effect when lightbox opens */

.lightbox img:hover {
    transform: scale(1.05);
    /* slight zoom on hover */
}


/* Close button */

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}


/* Navigation arrows */

.lightbox .prev,
.lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 55px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    z-index: 10000;
}

.lightbox .prev {
    left: 30px;
}

.lightbox .next {
    right: 30px;
}

.lightbox .prev:hover,
.lightbox .next:hover,
.lightbox .close:hover {
    color: #ffc400;
    /* highlight color */
}


/* Body background */

body {
    font-family: "Roboto Condensed", sans-serif;
    margin: 0;
    padding: 40;
    color: hsl(0, 0%, 0%);
}


/* Form container */

.bg-nero-grey {
    margin-top: 220px;
    background: url("https://www.transparenttextures.com/patterns/wood-pattern.png"), #c49a6c;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}


/* Form headings */

.contact-form-style-03 h4 {
    color: hsl(0, 0%, 0%);
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-form-style-03 h4 span {
    color: lab(37.12% 38.55 48.15);
    /* highlight color */
}


/* Labels */

.contact-form-style-03 label {
    color: lab(0% 0 0);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}


/* Input & Textarea styling */

.contact-form-style-03 .form-control {
    background: transparent;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px 12px 10px 35px;
    color: lab(0% 0 0);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding-left: 40px;
}

.contact-form-style-03 .form-control:focus {
    border-color: hsl(0, 0%, 0%);
    box-shadow: 0 0 8px #a3490080;
    padding-left: 40px;
}


/* Submit button */

.contact-form-style-03 .btn {
    background: lab(33.2% 18.82 43.24);
    border: none;
    color: hsl(0, 0%, 0%);
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    padding-left: 40px;
}

.contact-form-style-03 .btn:hover {
    background: hwb(29 0% 55%);
    transform: translateY(-2px);
}


/* Paragraph text */

.contact-form-style-03 p {
    color: hsl(0, 0%, 0%);
    font-size: 0.85rem;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .form-row {
        flex-direction: column !important;
    }
    .form-icon {
        left: 8px;
    }
}

.fa-facebook-f:hover,
.fa-instagram:hover,
.fa-youtube:hover {
    color: hsl(64, 98%, 49%) !important;
}