body {
    font-family: 'Poppins', sans-serif;
    background-color: #0e0e0e;
    color: #ffffff;
    scroll-behavior: smooth;
}

.navbar {
    background: rgba(0,0,0,0.9) !important;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

.progress-bar-scroll {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg,#c8a96a,#f5d78e);
    width: 0%;
    z-index: 9999;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
}

.btn-gold {
    background: linear-gradient(45deg,#c8a96a,#f5d78e);
    border: none;
    color: black;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    color: #f5d78e;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #c8a96a;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #f5d78e;
    border-radius: 50%;
}

.card-dark {
    background: #1a1a1a;
    border: 1px solid #333;
    transition: 0.4s;
}

.card-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(200,169,106,0.3);
}

footer {
    background: #000;
    padding: 20px;
    text-align: center;
}
.form-control:focus{
background:#111;
color:white;
border-color:#c8a96a;
box-shadow:none;
}

::placeholder{
color:#aaa !important;
}

.social-icons{
display:flex;
gap:15px;
}

.social-icon{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
background:#111;
border:1px solid #c8a96a;
color:#c8a96a;
border-radius:50%;
font-size:18px;
transition:0.3s;
text-decoration:none;
}

.social-icon:hover{
background:#c8a96a;
color:#000;
transform:translateY(-5px);
box-shadow:0 0 15px rgba(200,169,106,0.6);
}

/* home page gallery css start */
.gallery-section{
background:#0a0a0a;
}

.section-title{
color:#c8a96a;
font-size:36px;
font-weight:bold;
}

.section-subtitle{
color:#aaa;
}

.gallery-card{
position:relative;
overflow:hidden;
border-radius:12px;
}

.gallery-img{
width:100%;
height:260px;
object-fit:cover;
transition:0.4s;
}

.gallery-card:hover .gallery-img{
transform:scale(1.1);
}

.gallery-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.4s;
}

.gallery-card:hover .gallery-overlay{
opacity:1;
}

.view-btn{
background:#c8a96a;
border:none;
padding:10px 25px;
color:black;
font-weight:bold;
border-radius:20px;
}


/* Lightbox */

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:9999;
}

.lightbox img{
max-width:90%;
max-height:90%;
}

.close-btn{
position:absolute;
top:20px;
right:30px;
font-size:40px;
color:white;
cursor:pointer;
}

/* home page gallery css end */