section { padding: 100px 8%; content-visibility: auto; contain-intrinsic-size: 800px; }#about { background-color: #fff; border-bottom: 1px solid #f0f0f0; } section:nth-of-type(3) { background-color: var(--bg-light); } section:nth-of-type(4) { background-color: #ffffff; } .section-title { font-family: 'Playfair Display', serif; font-size: 3rem; text-align: center; margin-bottom: 70px; color: var(--primary); position: relative; }.section-title::after { content:''; display:block; width: 60px; height: 3px; background: var(--accent); margin: 15px auto 0; }.cards-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 30px; margin-top: 40px; }@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }.flip-card { height: 500px; perspective: 1000px; cursor: pointer; }@media (max-width: 768px) { .flip-card { height: 380px; } }.flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; border-radius: 4px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); }@media (min-width: 1025px) { .flip-card:hover .flip-card-inner { transform: rotateY(180deg); } }.flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }.flip-card-front, .flip-card-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; }.flip-card-front { color: white; }.flip-card-front h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-top: 20px; letter-spacing: 1px; }.flip-card-back { background: #fff; color: #333; transform: rotateY(180deg); border: 1px solid #eee; text-align: left; align-items: flex-start; padding: 30px; }.flip-card-back h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--primary); margin-bottom: 15px; border-bottom: 2px solid var(--accent); padding-bottom: 10px; width: 100%; }.flip-card-back ul { list-style: none; padding: 0; margin-bottom: 20px; width: 100%; }.flip-card-back li { font-size: 0.9rem; margin-bottom: 8px; padding-left: 20px; position: relative; font-weight: 600; }.flip-card-back li::before { content: "✓"; position: absolute; left: 0; color: var(--cta-green); }.card-btn { padding: 12px 30px; background: var(--primary); color: white; border: none; font-weight: 700; cursor: pointer; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; width: 100%; text-align: center; margin-top: auto; transition:0.3s; text-decoration:none; display:inline-block; }.card-btn:hover { background: var(--accent); }.secondary-btn { background: transparent; border: 1px solid var(--primary); color: var(--primary); margin-top: 10px; }.secondary-btn:hover { background: var(--bg-light); color: var(--primary); }.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }.card-container { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; background: #eee; cursor: pointer; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }.card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }.card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: white; transform: translateY(100%); transition: transform 0.4s; }.card-container:hover .card-image { transform: scale(1.05); }.card-container:hover .card-content { transform: translateY(0); }.play-icon { position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 60px; height: 60px; background: rgba(0,0,0,0.6); border: 2px solid white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; pointer-events: none; z-index: 10; padding-left: 5px; }.hidden-project { display: none !important; }.btn-show-more { display: block; margin: 40px auto 0; padding: 15px 40px; border: 2px solid var(--primary); background: transparent; color: var(--primary); font-weight: 700; text-transform: uppercase; cursor: pointer; transition: 0.3s; letter-spacing: 1px; }.btn-show-more:hover { background: var(--primary); color: white; }.marquee-wrapper { width: 100%; height: 350px; display: flex; align-items: center; overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%); }.marquee-track { display: flex; gap: 40px; will-change: transform; animation: scroll 80s linear infinite; }.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }.review-card { width: 400px; flex-shrink: 0; background: white; padding: 40px; border-radius: 8px; text-align: left; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; transition: transform 0.3s; }.review-card:hover { transform: scale(1.05); z-index: 10; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }.faq-item { border-bottom: 1px solid #eee; margin-bottom: 10px; }.faq-question { width: 100%; text-align: left; padding: 20px 10px; background: none; border: none; font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Outfit', sans-serif; color: #333; transition: 0.3s; }.faq-question:hover { color: var(--accent); }.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--accent); font-weight: 300; transition: transform 0.3s; }.faq-item[open] .faq-question::after { content: '-'; transform: rotate(180deg); }.faq-answer { padding: 0 10px; opacity: 0.8; }.faq-answer p { padding-bottom: 25px; color: #666; line-height: 1.6; }.carousel-stage { position: relative; width: 100%; height: 100vh; display: flex; align-items: center; justify-content: center; perspective: 1200px; }.c-slide { position: absolute; width: 90%; max-width: 1600px; height: 100%; transition: transform 0.6s, opacity 0.6s, filter 0.6s; display: flex; align-items: center; justify-content: center; transform-style: preserve-3d; }.c-slide img, .c-slide video { width: 100%; height: 100%; max-height: 80vh; object-fit: contain; box-shadow: 0 40px 80px rgba(0,0,0,0.8); background: #000; }.c-slide.active { transform: translateX(0) scale(1); z-index: 10; opacity: 1; filter: brightness(1); }.c-slide.prev { transform: translateX(-65%) scale(0.8) rotateY(20deg); z-index: 5; opacity: 0.4; filter: brightness(0.4); cursor: pointer; }.c-slide.next { transform: translateX(65%) scale(0.8) rotateY(-20deg); z-index: 5; opacity: 0.4; filter: brightness(0.4); cursor: pointer; }.c-slide.hidden { opacity: 0; pointer-events: none; }.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); font-size: 5rem; color: rgba(255,255,255,0.5); cursor: pointer; z-index: 3000; padding: 20px; transition: 0.3s; pointer-events: auto; }.nav-arrow:hover { color: var(--accent); transform: translateY(-50%) scale(1.1); }.nav-prev { left: 20px; } .nav-next { right: 20px; }.gallery-footer-container { position: fixed; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, black 20%, transparent); z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 40px; pointer-events: none; }.gallery-text { text-align: center; margin-bottom: 20px; text-shadow: 0 2px 10px black; }.g-caption { color: white; font-size: 2rem; letter-spacing: -1px; margin-bottom: 5px; }.g-desc { color: var(--accent); font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 2px; }.btn-gallery-enquire { pointer-events: auto; width: 100%; max-width: 600px; padding: 20px; background: white; color: black; font-weight: 700; text-transform: uppercase; border: none; cursor: pointer; letter-spacing: 2px; font-size: 1rem; box-shadow: 0 0 20px rgba(0,0,0,0.5); transition: 0.3s; }.btn-gallery-enquire:hover { background: var(--accent); color: white; }.loader { border: 5px solid rgba(255,255,255,0.1); border-top: 5px solid var(--accent); border-radius: 50%; width: 50px; height: 50px; animation: spin 1s linear infinite; margin: 0 auto; }@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }/* NEPALI COLORS FOOTER + MIDDLE SOCIAL LOGIC */footer { background: linear-gradient(135deg, var(--nepali-blue), var(--nepali-red)); color: #fff; padding: 80px 8% 40px 8%; position: relative; border-top: 4px solid var(--accent); }.footer-container { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; max-width: 1200px; margin: 0 auto; }.footer-left { flex: 1; min-width: 250px; }.footer-middle { flex: 1; min-width: 250px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }.footer-right { flex: 1; min-width: 250px; text-align: right; }.social-icons { display: flex; gap: 20px; justify-content: center; }.social-icon svg { width: 30px; height: 30px; fill: white; transition: 0.3s; }.social-icon:hover svg { fill: var(--accent); transform: translateY(-3px); }.sticky-contact-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(250, 249, 246, 0.98); backdrop-filter: blur(20px); border-top: 1px solid rgba(0, 0, 0, 0.1); display: flex; justify-content: space-around; padding: 12px 0 25px 0; z-index: 9999; box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05); }.sticky-btn { background: transparent; color: var(--primary); text-decoration: none; padding: 0; font-weight: 600; font-size: 0.75rem; display: flex; flex-direction: column; align-items: center; gap: 5px; border: none; cursor: pointer; }/* BLENDED HUB SECTION FOR DESKTOP */.hub-section { background: transparent; padding: 80px 5%; text-align: center; border-top: 1px solid #eee; }.hub-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; color: var(--primary); }.hub-desc { font-size: 1.1rem; color: #555; max-width: 800px; margin: 0 auto 30px auto; }.hub-links { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-top: 20px;}.hub-link { padding: 12px 25px; border: 1px solid var(--primary); color: var(--primary); text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s; border-radius: 4px; }.hub-link:hover { background: var(--primary); color: white; }@media(min-width: 1025px) { .sticky-contact-bar { display: none; } }@media(max-width: 1024px) { .nav-links { display: none; } .hamburger { display: block; } .hero { display: flex; flex-direction: column-reverse; padding: 100px 5% 60px 5%; height: auto; gap: 40px; } .hero-visual { width: 100%; height: 350px; border-radius: 20px; animation: none; } .hero-content { text-align: center; padding: 0; } }@media(max-width: 768px) {     .area-checker { flex-direction: column; gap: 15px; } .area-input { width: 100%; text-align: center; } .area-btn { width: 100%; padding: 18px; } .suggestions-box { width: 100%; left: 0; } .area-actions { flex-direction: column; gap: 10px; } .area-action-btn { width: 100%; display: block; text-align: center; }     .section-title { font-size: 2.5rem; } .c-slide { width: 95%; } .nav-arrow { font-size: 3rem; padding: 10px; }     /* FOOTER MOBILE FIX */    .footer-container { flex-direction: column; text-align: center; }     .footer-right, .footer-left, .footer-middle { text-align: center; }    /* MOBILE SHRINK FIX FOR HUB */    .hub-section { padding: 40px 5%; }    .hub-title { font-size: 1.8rem; }    .hub-desc { font-size: 0.95rem; margin-bottom: 20px; }    .hub-link { padding: 10px 15px; font-size: 0.75rem; width: 100%; box-sizing: border-box; text-align: center; }}/* Guide Pages CSS */.comparison-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; font-size: 0.95rem; }.comparison-table th, .comparison-table td { border: 1px solid #eee; padding: 15px 20px; text-align: left; }.comparison-table th { background: var(--primary); color: white; font-family: 'Playfair Display', serif; font-size: 1.1rem; }.comparison-table tr:nth-child(even) { background: #fff; }.guide-h3 { color: var(--primary); font-family: 'Playfair Display', serif; margin: 40px 0 15px 0; border-bottom: 2px solid var(--accent); padding-bottom: 10px; display: inline-block;}.guide-text { margin-bottom: 20px; color: #444; line-height: 1.8; }.guide-list { margin-bottom: 20px; padding-left: 20px; color: #444; line-height: 1.6;}.guide-list li { margin-bottom: 10px; }.source-link { color: var(--nepali-blue); text-decoration: none; font-weight: 600; font-size: 0.9rem; }.source-link:hover { text-decoration: underline; }