
.hero-video-only {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;

}

.hero-video-only video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 100px;
}

.approach-item {
    position: relative;
    overflow: hidden;
}

/* Content box */
.approach-item-content {
    position: relative;
    padding: 20px;
}

/* h3 → normal me niche */
.approach-item-content h3 {
    transform: translateY(150px);
    transition: transform 0.4s ease;
}

/* p → normal me hidden */
.approach-item-content p {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

/* Hover par h3 upar jaye */
.approach-item:hover .approach-item-content h3 {
    transform: translateY(40px);
}

/* Hover par p show ho */
.approach-item:hover .approach-item-content p {
    opacity: 1;
    visibility: visible;
    transform: translateY(40px);
}
.approach-item:hover .approach-item-content p {
    transition-delay: 0.1s;
}

.approach-item {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: 
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.approach-item:hover {
    border-color: #c9a24d; /* brand / gold */
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.approach-item:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}
.logo{
    height: 50px;
    margin-left: 35px;
}
/* Navbar height FIX rahe */
.main-header .navbar {
    height: 100px;          /* jo bhi aapki current height hai */
    padding: 0;
}

/* Logo wrapper ko navbar ke andar constrain karo */
.navbar-brand {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    overflow: hidden;      /* 🔥 important */
}

/* Logo image – yahi height badhao */
.navbar-brand img.logo {
       height: 85px;
    width: auto;
    display: block;
    margin-top: 0px;
}
.footer-logo-gold{
    max-width: 130px;
    margin-left: 70px;
}

 
.enquiry-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.enquiry-box {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    position: relative;
    animation: popupFade 0.3s ease;
}

.enquiry-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.enquiry-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.enquiry-box button {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.close-popup {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

@keyframes popupFade {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* privacy-policy start */
.privacy-policy {
        max-width: 900px;
        margin: 0px auto;
        padding: 20px 20px;
    }

    /* Headings */
    .privacy-policy h3 {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        font-weight: 700;
        color: #bfa06e; /* Soft gold */
        margin-bottom: 20px;
        text-align: center;
    }

   

    .privacy-policy h4 {
        font-family: 'Playfair Display', serif;
        color: #bfa06e;
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* Paragraphs */
     .privacy-policy p {
        font-size: 16px;
        color: #ffffff;
        margin-bottom: 15px;
    }

    /* Lists */
    .privacy-policy ul {
        margin-left: 25px;
        margin-bottom: 15px;
        list-style-type: disc;
        color: #ffffff;
    }

    .privacy-policy li {
        margin-bottom: 10px;
    }

    /* Contact Info */
    .privacy-policy .contact-info {
        margin-top: 25px;
        background-color: #434343;
        padding: 20px;
        border-left: 4px solid #bfa06e;
        border-radius: 5px;
    }

    .privacy-policy .contact-info p {
        margin: 5px 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
         .privacy-policy h3 {
            font-size: 24px;
        }
    }
    /* privacy-policy End */

    /* Container */
    .terms-section {
        max-width: 900px;
        margin: 0px auto;
        padding: 20px 20px;
    }

    /* Main heading */
    .terms-section h3 {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        font-weight: 700;
        color: #bfa06e; /* Soft gold */
        text-align: center;
        margin-bottom: 25px;
    }

    /* Sub-headings */
    .terms-section h4 {
        font-family: 'Playfair Display', serif;
        color: #bfa06e;
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* Paragraphs */
    .terms-section p {
        font-size: 16px;
        color: #fff;
        margin-bottom: 15px;
    }

    /* Lists */
    .terms-section ul {
        margin-left: 25px;
        margin-bottom: 15px;
        list-style-type: disc;
        color: #fff;
    }

    .terms-section li {
        margin-bottom: 10px;
    }

    /* Contact info box */
    .terms-section .contact-info {
        margin-top: 25px;
        background-color: #434343;
        padding: 20px;
        border-left: 4px solid #bfa06e;
        border-radius: 5px;
    }

    .terms-section .contact-info p {
        margin: 5px 0;
    }
    .clrfff{
        color:#fff;
    }
    .live-event{
        padding: 20px 0;
    }
    
    .text-justify{
        text-align: justify;
        
    }
     .th-container1320
    {
        max-width: 1093px !important;
    }
    
    .clrh{
        color: #d1ac66 !important;
    font-weight: 800;
    font-size: 20px;
    }
    
    .faqh2{
       font-size: 30px !important; 
       margin-top: 50px;
    }
    
    .flrd3d3d3{
        color: #d3d3d3 !important;
    }
    
    .clrd1ac66{
       color: #d1ac66;
    }
    
     .video_main_div{
        object-fit: cover !important;
        display: block;
          width: 100%;
           overflow: hidden;
           position: relative;

    }
    .video_main_div_phn{
        object-fit: cover !important;
        display: none;
          width: 100%;
           overflow: hidden;
           position: relative;
    }
    .wedding-section{
        padding: 40px;
        color: #cbcbcb;
    }
    .wedding-section h2{
       margin-bottom: 15px;
        color: #fff;
    }
    .wedding-section ul li{
       margin-bottom: 10px;
       
    }
    .wedding-section h3{
       margin-bottom: 15px;
        color: #fff;
        margin-top: 20px;
    }
    .wedding-p-mb8{
        margin-bottom: 8px !important;
    }

    .wedding-p-ml15{
        margin-left: 15px;
    }
    
    a {
    color: rgb(209 172 102);
    }
    
    .bold {
        color: #fff;
        font-weight: 700;
    } 
    .pageheadh1{
        font-size: 35px !important;
        color: #fff;
    }
        
        
        

    /* Responsive */
    @media (max-width: 768px) {
        .terms-section h3 {
            font-size: 24px;
        }
        .terms-section h4 {
            font-size: 18px;
        }
    }



 @media only screen and (max-width: 767px){
     
     .video_main_div{
        object-fit: cover !important;
        display: none;

        }
        .video_main_div_phn{
            object-fit: cover !important;
            display: block;
        }
        
    
    .hero-video-only video{
        width: 101%;
        margin-left: -0.5%;}

.approach-item-content h3 {
    transform: translateY(100px);
    
}
.hero-video-only video{
    margin-top: 100px;
}

.intro-video-box {
    height: 100%;
}

}
