/* ===== GLOBAL ===== */

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: white;
    font-family: 'Poppins', sans-serif;
    
}
h1, h2, .section-title {
    font-family: 'Poppins', sans-serif;
}
/* ===== COLORS ===== */

:root {
    --primary: #f57921;
    --secondary: #185888;
}

/* ===== TOP HEADER ===== */

.top-header {
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
    top: 0;
    width: 100%;
    z-index: 1050;
     transition: transform 0.5s cubic-bezier(.4,0,.2,1),
                opacity 0.4s ease;
    will-change: transform, opacity;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    transition: 0.3s;
}

.top-header a:hover {
    color: var(--primary);
}

.top-social a {
    margin-left: 12px;
}

/* Mobile Hide Top Bar */
@media (max-width: 768px) {
    .top-header {
        display: none;
    }
}
/* ===== NAVBAR ===== */
.custom-toggler {
  background-color: #185888;
  border: none; /* optional */
}
.navbar-toggler-icon {
  filter: invert(1);
}
.navbar {
     position: fixed;
    top: 32px; /* top header height */
    left: 0;
    width: 100%;
    background: white;
    padding: 5px 0;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1),
                padding 0.4s ease,
                box-shadow 0.4s ease,
                top 0.5s cubic-bezier(.4,0,.2,1);
    z-index: 1040;
}
.navbar.scrolled {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 6px 0;
}
.header-scrolled .top-header {
    transform: translateY(-100%);
    opacity: 0;
}

.header-scrolled .navbar {
    transform: translateY(-40px);
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.navbar-brand img {
    height: 65px;
}

.navbar a {
    color: black;
    font-weight: 500;
}

.navbar a:hover {
    color: var(--primary) !important;
}
.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 10px 18px;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: var(--primary);
}

/* Hover Dropdown for Desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
}

/* Smooth dropdown */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* Center spacing */
.navbar-nav {
    font-size: 16px;
}

/* Extra gap handled by Bootstrap gap-4 */

/* Call Button Style */
.btn-call {
    background: var(--primary);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
}

.btn-call:hover {
    background: var(--secondary);
    color: #fff !important;
}
/* ===== HERO LAYOUT ===== */
/* ===== HERO SECTION ===== */

.zen-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ===== SLIDER ===== */

.zen-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.zen-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 6s ease-in-out;
}

/* Add your green/nature images here */
.zen-slide:nth-child(1) {
    background-image: url("../images/slide2.jpg");
}
.zen-slide:nth-child(2) {
    background-image: url("../images/slide4.jpg");
}
.zen-slide:nth-child(3) {
    background-image: url("../images/slide3.jpg");
}
.zen-slide:nth-child(4) {
    background-image: url("../images/slide1.jpg");
}

.zen-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== DARK OVERLAY FOR READABILITY ===== */

.zen-hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    z-index: 2;
}

/* ===== CONTENT ===== */

.zen-hero-content {
    position: relative;
    z-index: 3;
    max-width: 905px;
    margin-right: 120px;   /* Space from right edge */
    text-align: right;     /* Align text to right */
    color: white;
}

.zen-hero-content h1 {
     font-size: 60px;
    font-weight: 700;
    color: var(--primary); /* Golden */
}

.zen-hero-content p {
    margin: 20px 10px;
    line-height: 1.7;
    color: #f1f1f1;
    text-align: justify;
}

/* ===== BUTTON ===== */

.zen-btn-main {
     background: var(--primary);
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.zen-btn-main:hover {
    background: var(--secondary);
}
@media(max-width: 900px){
    .zen-hero {
    height: 70vh;
   }
   .zen-hero-content h1 {
    font-size: 40px;
    }
   .zen-hero-content {
    margin-right: 20px;
    }
}
/* ===== BUTTON ===== */

.btn-main {
    background: var(--primary);
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-main:hover {
    background: var(--secondary);
}

/* ===== RESPONSIVE ===== */

@media(max-width: 900px){
     
    .hero{
        flex-direction: column;
    }

    .hero-content,
    .hero-video{
        width: 100%;
        height: 50vh;
    }

    .hero-content{
        justify-content: center;
        padding: 40px;
    }

    .hero h1{
        font-size: 38px;
    }
}

/* ===== SECTION ===== */

.section {
    padding: 80px 0;
}

.section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    
    font-size: 3rem;
}
.blogtitle_section {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 40px;
    
    font-size: 3rem;
}

/* ===== SERVICES ===== */
/* ===== SERVICES CAROUSEL ===== */

.services-section {
    padding: 80px 0;
   background: linear-gradient(180deg, #185888, #fff) !important;
}

.services-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* CARD DESIGN */
.service-card {
    min-width: 33.333%;
    padding: 15px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.card-content {
    background: var(--secondary);
    padding: 20px;
    border-radius: 0 0 12px 12px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h4 {
    color: white;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    color: #ffffff;
    flex-grow: 1;
    text-align: justify;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    background: white;
    margin: 0px 120px 2px 120px;
    text-align: center;
    padding: 5px 0px 5px 0px;
    border-radius: 8px;
}


/* ARROWS */
.carousel-btn {
    background: var(--primary);
    border: none;
    color: var(--secondary);
    font-size: 22px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 5;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: white;
}

.prev {
    left: -45px;
}

.next {
    right: -45px;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .service-card {
        min-width: 50%;
    }
    .read-more {
    margin: 0px 60px 0px 60px;
}
}

/* Mobile */
@media (max-width: 576px) {
    .service-card {
        min-width: 100%;
    }

    .carousel-btn {
        display: none;
    }
}

/* ===== BLOG ===== */
.blogs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover {
    transform: scale(1.03);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card h5 {
    color: white;
}

.insights-btn {
    text-align: center;
    margin-top: 30px;
}
.blog-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Tablet */
@media (max-width: 992px) {
    .blogs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .blogs {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA ===== */

.cta {
    background: linear-gradient(45deg, white, var(--secondary));
    text-align: center;
    padding: 70px 20px;
}

.cta h2 {
    color: var(--secondary);
    text-shadow: 0 0 20px white;
    font-size: 3rem;
}

/* ===== FOOTER ===== */

footer {
    background: black;
    padding: 30px;
    text-align: center;
    color: gray;
}
