
/* RESET & GLOBAL */
* { margin:0; padding:0; box-sizing:border-box; font-family:"Poppins",sans-serif; }
body { background:#e9f6fc; color:#3d2a1c; }
a { text-decoration:none !important; cursor:pointer !important; }

/* HEADER */
header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 14px 25px; 
    background: #005434;  /* header background */
    position: sticky; 
    top: 0; 
    z-index: 9999; 
    gap: 15px; 
    margin-bottom: 15px; /* header खाली space */
}

/* LOGO */
.header-logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.header-logo img { width: 75px; border-radius: 10px; }
.header-logo h2 { font-size: 25px; color: #fff; }

/* RATING */
.header-rating { 
    background: #bcd1e1; 
    color: #fff; 
    padding: 4px 10px; 
    border-radius: 20px; 
    font-weight: 700; 
    display: inline-block; 
}

/* MARQUEE */
marquee { 
    display: block; 
    margin-top: 10px; /* header नंतर spacing */
    margin-bottom: 30px; /* marquee खाली spacing */
    padding: 8px; 
    font-size: 20px; 
    background: #006837; 
    color: white; 
    border-radius: 6px; /* optional, rounded marquee */
}


/* DESKTOP NAV */
.desktop-nav ul { display:flex; list-style:none; gap:30px; }
.desktop-nav ul li { position:relative; }
.desktop-nav ul li a { display:flex; align-items:center; gap:6px; padding:10px; font-weight:600; color:#bbb7b7; border-radius:6px; transition:0.3s; }
.desktop-nav ul li a:hover { background:#4ed157; color:#1d3d18; }

/* DROPDOWN MENU */
.dropdown-menu { display:none; position:absolute; top:100%; left:0; background:#fff; min-width:180px; list-style:none; box-shadow:0 5px 15px rgba(0,0,0,0.2); z-index:100; opacity:0; transform:translateY(10px); transition:all 0.3s ease; }
.dropdown-menu li a { padding:10px 15px; display:block; color:#333; }
.dropdown:hover .dropdown-menu { display:block; opacity:1; transform:translateY(0); }

/* HAMBURGER MENU */
.menu-toggle { display:none; font-size:28px; background:none; border:none; cursor:pointer; color:#2d2b2b; z-index:1001; }

/* MOBILE NAV */
.mobile-nav { position:fixed; top:70px; right:-100%; width:260px; height:100vh; background:#fff; padding:20px; transition:0.3s; box-shadow:-5px 0 15px rgba(0,0,0,0.2); z-index:1000; overflow-y:auto; }
.mobile-nav.active { right:0; }
.mobile-nav ul { list-style:none; padding:0; margin:0; }
.mobile-nav ul li { position:relative; }
.mobile-nav a { display:block; padding:12px 0; font-weight:bold; color:#333; border-bottom:1px solid #eee; }
.mobile-nav ul li:last-child a { border-bottom:none; }
.mobile-submenu { display:none; list-style:none; padding-left:15px; }
.mobile-submenu li a { padding:8px 0; display:block; font-weight:normal; }
.mobile-dropdown.active > .mobile-submenu { display:block; }

/* BANNER */
.banner { position:relative; width:90%; margin:50px auto 0 auto; }
.banner-slide img { width:100%; height:500px; object-fit:cover; border-radius:10px; }
.banner-text { position:absolute; bottom:30px; right:30px; background:rgba(0,0,0,0.55); padding:15px 20px; border-radius:10px; color:white; text-align:right; }
.banner-text h2 { font-size:26px; margin:0; }
.banner-text p { margin:5px 0; }
.banner-btn { padding:8px 15px; background:#ff6600; color:white; border-radius:5px; cursor:pointer; }

/* POPUP BOX */
.popup-bg { position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.55); display:none; justify-content:center; align-items:center; z-index:999; }
.popup-box { width:90%; max-width:400px; background:white; padding:20px; border-radius:10px; text-align:center; }
.popup-box h3 { margin-bottom:10px; }
.close-popup { margin-top:15px; padding:8px 15px; background:#333; color:white; border-radius:5px; cursor:pointer; }

/* SECTION / BOXES */
.section { padding:25px 6%; }
.box { display:flex; flex-wrap:wrap; gap:15px; align-items:center; margin-bottom:25px; }
.imgbox, .textbox { flex:1; min-width:240px; }
.imgbox img { width:100%; height:460px; object-fit:cover; border-radius:8px; }
.textbox h2 { font-size:22px; margin-bottom:8px; color:#222; }
.textbox p { font-size:15px; line-height:1.4; margin-bottom:10px; }
.right { flex-direction:row-reverse; }
@media(max-width:768px){ .right { flex-direction:column; } }

/* ALBUMS */
.album-section { padding:50px 6%; background:#f5f5f5; }
.album-title { text-align:center; font-size:32px; font-weight:700; margin-bottom:25px; }
.album-container { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px; }
.album-box { background:#fff; border-radius:15px; overflow:hidden; box-shadow:0 0 12px rgba(0,0,0,0.2); cursor:pointer; transition:.3s; }
.album-box:hover { transform:translateY(-7px); }
.album-box img { width:100%; height:180px; object-fit:cover; }
.album-box h3 { text-align:center; padding:15px; font-size:20px; }
.photo-view { display:none; padding:40px 6%; }
.back-btn { display:inline-block; background:#222; color:#fff; padding:10px 15px; border-radius:5px; cursor:pointer; margin-bottom:20px; }
.photo-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:15px; }
.photo-grid img { width:100%; height:180px; object-fit:cover; border-radius:10px; cursor:pointer; transition:.3s; }
.photo-grid img:hover { transform:scale(1.1); }
.lightbox { position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.9); display:none; justify-content:center; align-items:center; z-index:999999; }
.lightbox img { max-width:90%; max-height:90%; border-radius:10px; }

/* FOOTER */
.footer { background:#ded3c5; padding:40px 20px 15px; margin-top:40px; color:#322f28; }
.footer-container { display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:10px; }
.footer-box { flex:1; min-width:200px; }
.footer-box iframe { width:100%; height:200px; border-radius:10px; }
.footer-box h3 { font-size:20px; color:#322f28; margin-bottom:10px; }
.footer-box p, .footer-box a { color:#575247; font-size:14px; }
.footer-bottom { text-align:center; background:#005434; padding:12px; color:#fce9c5; margin-top:20px; font-size:14px; }

/* STAR RATING */
.star-rating i { font-size:22px; cursor:pointer; color:#ccc; transition:0.3s; }
.star-rating i.active { color:#ff9800; }
#feedbackForm input,#feedbackForm textarea { width:100%; padding:10px; margin:6px 0; border-radius:6px; border:1px solid #ccc; }
#feedbackForm textarea { height:90px; resize:none; }
.submit-btn { width:100%; padding:10px; background:#1dd633; color:#fff; border:none; border-radius:6px; cursor:pointer; }
.submit-btn:hover { background:#e68900; }

/* WHATSAPP ICON */
.whatsapp-icon { position:fixed; bottom:20px; right:20px; background:#25d366; border-radius:50%; padding:15px; box-shadow:0 4px 10px rgba(0,0,0,0.2); z-index:1000; font-size:30px; color:#fff; display:flex; align-items:center; justify-content:center; transition: transform 0.3s; border:5px solid transparent; animation:borderAnimation 2s infinite ease-in-out; }
@keyframes borderAnimation { 0%{border-color:transparent;}50%{border-color:#3d8535;}100%{border-color:transparent;} }
.whatsapp-icon:hover { transform:scale(1.2); box-shadow:0 8px 20px rgba(0,0,0,0.3); }

/* RESPONSIVE */
@media(max-width:992px){ .desktop-nav{display:none;} .menu-toggle{display:block;} .header-rating{display:none;} }

/* FEATURES */
.features { margin-top: 40px; width: 95%; margin: auto; }
.features h2 { text-align: center; color: #6d512c; margin-bottom: 15px; }
.feature-boxes { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.feature-box { flex: 1; min-width: 250px; background: #fff6e5; padding: 20px; border-radius: 10px; text-align: center; }
.feature-box i { font-size: 32px; color: #4dca51; margin-bottom: 10px; }

/* INFO & CONTACT */
.row-box { display: flex; gap: 20px; width: 90%; max-width: 1200px; margin: 30px auto; }
.info-section { flex: 1; background: #f5f5f5; padding: 25px; border-radius: 12px; box-shadow: 0 0 10px rgba(0,0,0,0.1); text-align: justify; box-sizing: border-box; }
.info-section h2 { margin-bottom: 10px; color: #222; font-size: 24px; }
.info-section p { font-size: 16px; line-height: 1.5; color: #444; }
@media (max-width: 768px) { .row-box { flex-direction: column; } }



/* CONTAINER ANIMATIONS */
.container { display: flex; justify-content: center; align-items: center; max-width: 1200px; margin: 50px auto; gap: 50px; flex-wrap: nowrap; }
.left, .right { opacity: 0; transform: translateX(-50px); animation-fill-mode: forwards; animation-duration: 1s; animation-timing-function: ease-out; }
.left { position: relative; width: 45%; display: flex; justify-content: center; align-items: center; background: #f3f1e9; border-radius: 100px 0 0 100px; padding: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); animation-name: slideFromLeft; }
.circle-img { width: 300px; height: 300px; border-radius: 50%; overflow: hidden; position: relative; box-shadow: 0 8px 20px rgba(0,0,0,0.1); animation: float 3s ease-in-out infinite; }
.circle-img img { width: 100%; height: 100%; object-fit: cover; }
.play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: #FF4B3E; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: transform 0.3s, box-shadow 0.3s; }
.play-button:hover { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 6px 25px rgba(0,0,0,0.25); }
.play-button::before { content: ''; display: block; width: 0; height: 0; border-left: 20px solid white; border-top: 12px solid transparent; border-bottom: 12px solid transparent; }
.right { width: 55%; animation-name: slideFromRight; }
.right h2 { font-size: 28px; font-weight: 700; margin-bottom: 15px; color: #222; }
.right p { font-size: 16px; line-height: 1.7; color: #555; }
.quote-box { background: #f0f9f0; border-left: 4px solid #4CAF50; padding: 15px; margin: 20px 0; display: flex; align-items: center; gap: 15px; border-radius: 10px; box-shadow: 0 3px 15px rgba(0,0,0,0.05); }
.quote-box img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.quote-box div { font-size: 14px; color: #333; }
.quote-box strong { color: #4CAF50; }
.discover-btn { background: #4CAF50; color: white; padding: 12px 25px; border: none; border-radius: 5px; cursor: pointer; margin-top: 20px; transition: background 0.3s, box-shadow 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.discover-btn:hover { background: #45a049; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
@keyframes slideFromLeft { 0% { opacity: 0; transform: translateX(-50px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes slideFromRight { 0% { opacity: 0; transform: translateX(50px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@media(max-width: 900px){ .container { flex-direction: column-reverse; gap: 30px; } .left, .right { width: 100%; border-radius: 30px; padding: 30px; animation-name: none; opacity: 1; transform: none; } .circle-img { width: 250px; height: 250px; } }




/* Pre_Loader */


    #preloader {
    backdrop-filter: blur(3px);
}
  /* PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0.85); /* 👈 थोडा transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* hide state */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* Logo animation */
#preloader img {
    width: 160px;
    animation: zoomFade 2s ease-in-out;
}

/* Keyframes */
@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/*-------------------------------------------------------------
-----------------Slider----------------------------------------
-------------------------------------------------------------*/
/* BANNER SLIDER */
.banner {
    position: relative;
}

/* OWL ARROWS */
.banner .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.banner .owl-nav button {
    background: rgba(0,0,0,0.5) !important;
    color: #fff !important;
    font-size: 35px !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    pointer-events: all;
    transition: 0.3s;
}

.banner .owl-nav button:hover {
    background: #005434 !important;
}

.banner .owl-prev {
    margin-left: 15px;
}

.banner .owl-next {
    margin-right: 15px;
}

/* MOBILE */
@media(max-width:768px){
    .banner .owl-nav button{
        width: 40px;
        height: 40px;
        font-size: 25px !important;
    }
}





    /* ===============================
   GLOBAL DIV / SECTION ANIMATION
================================ */

/* initial hidden state */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-in-out;
}

/* visible state */
.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* optional variations */
.from-left {
    transform: translateX(-60px);
}
.from-right {
    transform: translateX(60px);
}

.from-left.show,
.from-right.show {
    transform: translateX(0);
}

/* smooth on mobile */
@media (max-width: 768px) {
    .animate {
        transition: all 0.7s ease-in-out;
    }
}


