.header-wrap.style2 .header-bottom {
    padding: 3px 0;
    background-color: #222126;
}



@media only screen and (min-width: 992px) {
    .header-wrap .navbar .navbar-nav .nav-item a {
        color: #ffffff;
        font-weight: 400;
        padding: 30px 0;
        transition: 0.4s;
        position: relative;
    }
}

.hero-subtitle {
    display: inline-block;
    color: #c59d5f;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
    margin-bottom: 28px;
    max-width: 90%;
}

/* Form Box */
.hero-contact-box {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    max-width: 620px;
}

.hero-form-heading {
    margin-bottom: 18px;
}

.hero-form-heading h4 {
    font-size: 24px;
    margin-bottom: 3px;
    font-weight: 700;
}

.hero-form-heading span {
    color: #777;
    font-size: 14px;
}

/* Inputs */
.hero-contact-box .form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e4e4e4;
    padding: 10px 18px;
    font-size: 15px;
    box-shadow: none;
    transition: 0.3s;
}

.hero-contact-box .form-control:focus {
    border-color: #c59d5f;
}

/* Button */
.submit-btn {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
}

/* Mobile */
@media only screen and (max-width: 767px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-contact-box {
        padding: 18px;
    }

}

.pb-75 {
    padding-bottom: 0px;
}

.pt-100 {
    padding-top: 31px;
}


.reel-box {
    overflow: hidden;
    border-radius: 12px;
}

.reel-box video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    background: #eee;
}

@media(max-width:767px) {

    .reel-box video {
        height: 220px;
    }

}




.process-wrapper {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

}


.process-card {

    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    width: 260px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);

    transition: .4s;

    overflow: hidden;

}


.process-card:hover {

    transform:
        translateY(-12px);

}


.process-card:hover .icon {

    transform: scale(1.2) rotate(10deg);

}



.step {

    position: absolute;

    top: 15px;
    right: 20px;

    font-size: 45px;

    font-weight: 700;

    opacity: .08;

}



.icon {

    font-size: 40px;

    margin-bottom: 20px;

    transition: .4s;

}



.process-card h4 {

    margin-bottom: 15px;

    font-size: 22px;

}



.process-card p {

    font-size: 15px;

    color: #666;

}



.arrow {

    position: absolute;

    right: -20px;

    top: 50%;

    transform: translateY(-50%);

    font-size: 38px;

    color: #d9b38c;

}



.process-card:last-child .arrow {

    display: none;

}



/* Mobile */

@media(max-width:991px) {

    .arrow {

        display: none;

    }


    .process-card {

        width: 100%;

    }

}

/* Tablet */
@media (max-width:991px) {

    .process-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .process-card {
        width: 48%;
        min-height: 260px;
    }

    .arrow {
        display: none;
    }

}



/* Mobile */
@media (max-width:767px) {

    .process-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-between;
    }

    .process-card {

        width: 48%;
        padding: 25px 15px;
        min-height: 240px;

    }

    .step {

        font-size: 28px;

    }

    .icon {

        font-size: 28px;
        margin-bottom: 12px;

    }

    .process-card h4 {

        font-size: 16px;

    }

    .process-card p {

        font-size: 13px;
        line-height: 1.6;

    }

}



/* Extra small */
@media (max-width:480px) {

    .process-card {

        width: 45%;
        padding: 15px 13px;

    }

    .process-card h4 {

        font-size: 15px;

    }

    .process-card p {

        font-size: 12px;

    }

}

.service-card {
    background: #fff;
    padding: 25px 10px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .4s ease;
    height: 90%;
    position: relative;
    overflow: hidden;
    border: 1px solid #f2f2f2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

/* Image Design */
.service-card img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: .4s;
    padding: 12px;
    background: #faf7ff;
    border-radius: 50%;
    border: 1px solid #eee;
}

.service-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Heading */
.service-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

/* Text */
.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Tablet */
@media(max-width:991px) {

    .service-card {
        padding: 25px 18px;
    }

    .service-card img {
        width: 75px;
        height: 75px;
    }

    .service-card h4 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

}


/* Mobile */
@media(max-width:767px) {

    .service-card {
        padding: 20px 12px;
        min-height: 230px;
        border-radius: 15px;
    }

    .service-card img {
        width: 150px;
        height: 150px;
        padding: 10px;
        margin-bottom: 15px;
    }

    .service-card h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 12px;
        line-height: 1.5;
    }

}


@media only screen and (min-width: 1400px) {
    .counter-card-wrap.style2 {
        padding: 30px 0 30px;
        margin-top: -95px;
    }
}

.ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.sticky-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

.sticky-contact a {
    flex: 1;
    text-align: center;
    padding: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.call-btn {
    background: #000;
}

.whatsapp-btn {
    background: #25D366;
}

.sticky-contact i {
    margin-right: 8px;
    font-size: 20px;
}


/* Hide on desktop */

@media(min-width:768px) {

    .sticky-contact {
        display: none;
    }

}



/* Desktop Right Sticky */

.start-wedding-btn {

    position: fixed;
    right: -50px;
    top: 50%;

    transform:
        translateY(-50%) rotate(-90deg);

    background: #25D366;

    color: #fff;

    padding: 14px 25px;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    border-radius:
        12px 12px 0 0;

    z-index: 9999;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .2);

}


.start-wedding-btn:hover {

    background: #1ebe5d;
    color: #fff;

}



/* Mobile Bottom Button */

.sticky-contact {

    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

}


.whatsapp-btn {

    display: block;

    text-align: center;

    padding: 15px;

    background: #25D366;

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    text-decoration: none;

}


.whatsapp-btn i {

    margin-right: 8px;

}



/* Mobile */

@media(max-width:767px) {

    .start-wedding-btn {

        display: none;
        /* Hide right sticky */

    }

}



/* Desktop */

@media(min-width:768px) {

    .sticky-contact {

        display: none;
        /* Hide bottom button */

    }


    .header-wrap.style2 .header-bottom {
        padding: 3px 0;
        background-color: #222126;
    }

}

#eventPopup .modal-content {

    border-radius: 20px;

}


#eventPopup .form-control {

    height: 52px;
    border-radius: 12px;
    border: 1px solid #eee;

}


.popup-btn {

    background: #eab95d;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;

}


.popup-btn:hover {

    background: #eab95d;

}
 /* ======================
HERO VIDEO SECTION
====================== */

.hero-video-section{
    position:relative;
 
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:180px 0 100px;
}

.bg-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:-1;
}

.hero-content{
    width:100%;
    align-items:center;
    color:#fff;
}

.hero-text{
    padding-left:40px;
}

.hero-text span{
    color:#fff;
    font-size:15px;
    letter-spacing:1px;
}

.hero-text h1{
    font-size:58px;
    line-height:1.2;
    margin:15px 0;
    color:#fff;
}

.hero-text p{
    font-size:17px;
    line-height:30px;
    color:#f5f5f5;
    margin-bottom:30px;
    max-width:550px;
}

/* FORM */

.hero-form{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);

    margin-top:40px;     /* REMOVE EXTRA SPACE */
}

.hero-form .form-control{
    height:52px;
    margin-bottom:15px;
}

.hero-form button{
    width:100%;
    height:52px;
}

/* MOBILE */
/* Tablet */

@media(max-width:991px){

.hero-video-section{
    padding-top:140px; /* space below header */
    padding-bottom:60px;
    min-height:auto;
}

.hero-text{
    text-align:center;
    padding:0;
    margin-top:30px;
}

.hero-text h1{
    font-size:42px;
    line-height:1.2;
}

.hero-text p{
    font-size:16px;
    line-height:28px;
    max-width:100%;
    margin:auto;
}

.hero-text .btn{
    margin-top:20px;
}

}


/* Mobile */

@media(max-width:767px){

.hero-video-section{
    padding-top:160px; /* IMPORTANT */
    padding-bottom:50px;
}

.hero-text{
    margin-top:121px;
}

.hero-text span{
    font-size:13px;
}

.hero-text h1{
    font-size:30px;
    line-height:40px;
    margin-bottom:15px;
}

.hero-text p{
    font-size:15px;
    line-height:25px;
    padding:0 10px;
}

.hero-text .btn{
    width:100%;
    max-width:250px;
}

}
