:root {
    --dark-brown: #3b2554;
    --light-bg: #e6e5e5;
    --gold-icon: rgba(92, 61, 46, 0.2); 
}
@font-face {
    font-family: 'GeneralSans-Light';
    src: url('fonts/GeneralSans-Light.woff2') format('woff2'),
         url('fonts/GeneralSans-Light.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'SangBleuSunrise-Regular';
    src: url('fonts/SangBleuSunrise-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'dmc5';
    src: url('fonts/dmc5-thin.woff2') format('woff2');
    font-weight: 100;
}
 
body{
margin:0;
font-family: 'SangBleuSunrise-Regular', serif; 
font-weight: 400;
line-height: 21px;
}
h1, h2, h3, h4, h5, h6, p, a, li{
    font-family: 'SangBleuSunrise-Regular', serif; 
    font-weight: 400;
    margin:0;
} 
a{
    color: #fff;
    list-style: none;
    text-decoration: none;
}
header{
position:absolute;
width:100%;
top:0;
left:0;
background: #00000061;
z-index:999;
transition:0.4s;
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
padding:20px 0;
}

.nav-menu{
display:flex;
gap:15px;
list-style:none;
padding:0;
margin:0;
}

.nav-menu a{
text-decoration:none;
color:white;
font-size:10px;
letter-spacing:2px;
}

.nav-menu a.active{
color:#d4a02f;
}

.logo img{
height:70px;
}

.header-right{
display:flex;
align-items:center;
gap:25px;
}

.phone{
color:white;
font-size:14px;
letter-spacing:2px;
}

.visit-btn{
border:1px solid white;
padding:10px 25px;
border-radius:30px;
color:white;
text-decoration:none;
font-size:13px;
letter-spacing:2px;
}

.mobile-toggle{
display:none;
color:white;
font-size:28px;
cursor:pointer;
}

/* Sticky Header */

header.sticky{
position:fixed;
background:#20002e;
}

header.sticky .nav-menu a,
header.sticky .phone{
color:white;
}

/* Hero Dummy */

.hero{
height:80vh;

background:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(https://blanchedalmond-dolphin-803788.hostingersite.com/uploads/overview/1773139820430-368225643.jpg) center/cover no-repeat;

display:flex;
align-items:center;
justify-content:center;

text-align:center;
color:white;
}

.banner-content{
max-width:800px;
}

.updated{
    padding: 2rem 0;
    color: #111;
    text-align: center;
}
.update-card {
    margin-top: 12px;
    width: 350px;
    height: 350px;
    background-color: var(--light-bg);
    border-radius: 15px;
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden; 
    background-image: url('./line.png'); 
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 50%; 
}

/* Text Styles */
.card-header {
    text-align: right;
}

.card-header h3 {
    margin: 0; 
    font-size: 22px;
    color: var(--dark-brown);
    font-weight: 600;
}

.card-date {
    text-align: right;
    color: var(--dark-brown);
    font-size: 16px;
    margin-top: 15px;
}

.read-more {
    text-align: right;
    display: block;
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    font-size: 18px;
    margin-top: auto;
} 

.update-card:hover {
    background-color: var(--dark-brown);
    /* Hover par dome image ka color change karne ke liye filter use kar sakte hain 
       agar image black/dark hai */
    filter: none; 
}

.update-card:hover .card-header h3,
.update-card:hover .card-date,
.update-card:hover .read-more {
    color: #ffffff; 
}
 
.update-card:hover {
    background-image: url('./line-white.png'); 
   
} 
.video{
    margin: 12px auto;
    
}

.center-video{
    width:70%;
    display:block;
    margin:auto;
}
@media (max-width:768px){
    .center-video{
        width:100%;
    }
}

.construction-section{
    background:#f7f3f0;
    padding:40px 0;
}

/* Title */
.title-box h2{
    background:#3b2554;
    color:#fff;
    padding:10px 20px;
    font-weight:700;
    letter-spacing:2px;
    margin:0;
}

.title-box span{
    background:#000;
    color:#fff;
    padding:8px 20px;
    display:inline-block;
    font-size:22px;
    font-weight:600;
}

/* Left content */
.left-content{
    padding-left:60px;
}

.construction-list{
    margin-top:40px;
    list-style:none;
    padding:0;
}

.construction-list li{
    margin-bottom:10px;
    font-size:18px;
    color:#333;
}

/* Right image */
.right-image img{
    width:100%;
    height:auto;
    object-fit:cover;
}
/* Image Layout */
.image-grid{
    padding-right:40px;
}

.top-img img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.bottom-img{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.bottom-img img{
    width:50%;
    height:220px;
    object-fit:cover;
}
/* Mobile Menu */

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:320px;
height:100%;
background:white;
transition:0.4s;
z-index:1000;
padding:40px;
}

.mobile-menu.active{
right:0;
}

.mobile-menu ul{
list-style:none;
padding:0;
}

.mobile-menu li{
margin-bottom:25px;
}

.mobile-menu a{
text-decoration:none;
color:#111;
font-size:18px;
letter-spacing:2px;
}

.close-menu{
position:absolute;
top:20px;
right:25px;
font-size:25px;
cursor:pointer;
}

/* Responsive */

@media(max-width:992px){

.nav-menu,
.phone,
.visit-btn{
display:none;
}

.mobile-toggle{
display:block;
}

.logo img{
height:55px;
}

}

:root {
    --bg-dark: #1a1622;
    --accent: #D49B0B;
    --font-main: 'SangBleuSunrise-Regular', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.footer-main {
    background-color: var(--bg-dark);
    color: #fff; 
    position: relative;
    letter-spacing: 0.05em;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-flex-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
}

/* Brand Area */
.f-logo { height: 60px; margin-bottom: 25px; }
.f-tagline { color: #fff; font-size: 15px; line-height: 1.7; max-width: 320px; margin-bottom: 25px; }

.f-socials { display: flex; gap: 12px; }
.f-socials a {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.f-socials a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-5px); }

/* Typography & Links */
.f-title { color: var(--accent); font-size: 14px; text-transform: uppercase; margin-bottom: 30px; letter-spacing: 2px; }
.f-links { list-style: none; padding: 0; }
.f-links li { margin-bottom: 15px; }
.f-links a { color: #fff; text-decoration: none; font-size: 13px; transition: 0.3s; }
.f-links a:hover { letter-spacing: 1px; }

/* Contact Area */
.f-addr { color: #fff; font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.f-phone { font-size: 22px; color: var(--accent); font-weight: 400; }

/* Bottom Bar */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
}

.b-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.legal a { color: #fff; text-decoration: none; margin-left: 20px; }

/* --- FIXED BUTTONS --- */
.whatsapp-fixed-btn {
    position: fixed; right: 30px; bottom: 100px;
    background: #25d366; width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    z-index: 1000; box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: f-pulse 2s infinite;
}

@keyframes f-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.side-enquire {
    position: fixed; right: -5px; top: 35%;
    background: #2c1b3d; color: #fff; padding: 12px 25px;
    transform: rotate(-90deg); transform-origin: right bottom;
    z-index: 999; font-size: 12px; letter-spacing: 2px;
    text-decoration: none; border-radius: 5px 5px 0 0;
}

.external-dir-link { color: #ccc; text-decoration: none; font-size: 13px; transition: 0.3s; text-transform: uppercase; }
.external-dir-link:hover { color: #fff; }

.mobile-stick { display: none; position: fixed; bottom: 0; width: 100%; height: 48px; z-index: 2000; }
.m-side { flex: 1; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; text-decoration: none; letter-spacing: 1px; font-weight: bold;}
.bar-purple { background: #2c1b3d; }
.bar-black { background: #000; }

/* --- MOBILE LAYOUT FIX --- */
@media (max-width: 992px) {
    .footer-flex-grid { grid-template-columns: 1fr; text-align: start; gap: 40px; }
    .f-socials { justify-content: start; }
    .f-tagline { margin: 0 0 25px; }
    .side-enquire { display: none; }
    .mobile-stick { display: flex; }
    
    /* WhatsApp thoda upar mobile bar se */
    .whatsapp-fixed-btn { bottom: 70px; width: 55px; height: 55px; right: 20px; }
    
    .footer-bottom {
        padding: 20px 20px 65px 0px;
        text-align: start;
    }
    .b-flex { align-items: start; }
    .legal { margin-top: 10px; display: grid;}
    .legal a { margin-left: 0; margin-right: 20px; }
}


 

 

.sh-main-footer {
    background-color: #1a1625; /* Dark purple/black shade from image */
    color: #ffffff;
    padding: 60px 120px;
    font-family: 'SangBleuSunrise-Regular', serif;
}

/* Logo & Tagline */
.sh-footer-logo {
    max-width: 130px;
}

.sh-tagline {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;
}

/* Social Icons */
.sh-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.sh-social-links a:hover {
    background-color: #b58e3e;
    border-color: #b58e3e;
}

/* Titles */
.sh-footer-title {
    color: #b58e3e; /* Gold color */
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Menu Links */
.sh-footer-menu {
    list-style: none;
    padding: 0;
}

.sh-footer-menu li {
    margin-bottom: 12px;
}

.sh-footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.sh-footer-menu a:hover {
    color: #b58e3e;
}

.sh-footer-menu a.highlight-gold {
    color: #b58e3e;
}

/* Contact Section */
.sh-contact-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #ffffff;
}

.sh-phone-number {
    color: #b58e3e;
    margin-top: 15px;
    font-size: 22px;
}

/* Map Styling */
.sh-map-container {
    border: 2px solid #333;
    border-radius: 5px;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sh-main-footer {
        text-align: start;
        padding: 12px;
    }
    .sh-social-links {
        justify-content: start;
        display: flex;
    }
    .sh-footer-logo {
        max-width: 100px;
    }   
}