    /*====================================
        SINGLE SERVICE HERO
=====================================*/

.single-service-hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 180px 0 120px;

    background:
        linear-gradient(rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .45)),
        url("../../images/about.jpeg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    overflow: hidden;
}

/* Left Dark Overlay */

.single-service-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to right,
            rgba(0, 0, 0, .92) 0%,
            rgba(0, 0, 0, .78) 30%,
            rgba(0, 0, 0, .45) 60%,
            rgba(0, 0, 0, .15) 85%,
            transparent 100%);

    z-index: 1;
}

/* Decorative pattern */

.single-service-hero::after {

    content: "";

    position: absolute;

    left: -100px;

    top: 0;

    width: 500px;

    height: 100%;

    opacity: .06;

    background-size: contain;

    background-repeat: no-repeat;

    z-index: 1;
}

/* Content */

.service-hero-content {

    position: relative;

    z-index: 2;

    max-width: 700px;
}

/* Capsule */

.service-hero-tag {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

    color: #0E6B68;

    font-size: 25px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.service-hero-tag::before,
.service-hero-tag::after {

    content: "";

    width: 35px;

    height: 1px;

    background: #D8486C;
}

/* Main Heading */

.service-hero-title {
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
}

.service-hero-title span {

    color: #D8486C;
}

/* Divider */

.service-divider {

    width: 220px;

    height: 2px;

    background:
        linear-gradient(to right,
            #0E6B68,
            #D8486C);

    margin-bottom: 35px;
}

/* Description */

.service-hero-desc {

    color: rgba(255, 255, 255, .85);

    font-size: 19px;

    line-height: 1.9;

    max-width: 600px;

    margin-bottom: 45px;
}

/* Buttons */

.service-hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}

/* Primary */

.service-btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 190px;

    height: 60px;

    padding: 0 35px;

    border-radius: 50px;

    background: #0E6B68;

    color: #fff;

    font-weight: 600;

    transition: .4s;
}

.service-btn-primary:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(14, 107, 104, .35);
}

/* Outline */

.service-btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 190px;

    height: 60px;

    padding: 0 35px;

    border: 2px solid #D8486C;

    border-radius: 50px;

    color: #fff;

    transition: .4s;
}

.service-btn-outline:hover {

    background: #D8486C;

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(216, 72, 108, .35);
}

/* Floating animation */

@keyframes heroFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.service-hero-content {

    animation:
        heroFloat 6s ease-in-out infinite;
}

/*====================================
        WEDDING SERVICES
=====================================*/

.wedding-services {

    padding: 120px 0;

    background: #F8F5EF;

    position: relative;
}

.service-heading {

    text-align: center;

    margin-bottom: 70px;
}

.section-badge {

    color: #0E6B68;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.section-badge span {

    display: inline-block;

    width: 35px;

    height: 1px;

    background: #D8486C;

    vertical-align: middle;

    margin: 0 10px;
}

.service-heading h2 {

    font-size: 52px;

    color: #0E6B68;

    margin-bottom: 20px;
}

.service-heading h2 span {

    color: #D8486C;
}

.heading-divider {

    width: 150px;

    height: 2px;

    margin: auto;

    background:
        linear-gradient(to right,
            #0E6B68,
            #D8486C,
            #C9A14A);
}

.wedding-service-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.wedding-service-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #ECECEC;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.wedding-service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.service-image{

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.wedding-service-card:hover .service-image img{

    transform:scale(1.08);

}

.service-content{

    padding:28px 24px 32px;

    text-align:center;

}

.service-content h3{

   color: #D8486C;

    font-size: 25px;

    margin-bottom: 18px;

    line-height: 1.3;

}

.service-content p{

    color: #555;

    line-height: 1.8;

    font-size: 17px;

}

/*====================================
        WHY CHOOSE US
=====================================*/

.why-us {

    background: #070707;

    padding: 0;

    overflow: hidden;
}

.why-us .container {

    display: grid;

    grid-template-columns: 40% 60%;

    min-height: 420px;
    /* was 650px */
}

/* IMAGE */

.why-image {
    position: relative;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

/* CONTENT */

.why-content {

    padding: 45px 50px;

    color: #fff;
}

.why-badge {

    color: #0E6B68;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.why-badge span {

    width: 35px;

    height: 1px;

    background: #D8486C;

    display: inline-block;

    vertical-align: middle;

    margin: 0 10px;
}

.why-content h2 {

    font-size: 42px;

    line-height: 1.15;

    margin-bottom: 20px;

    color: #fff;
}

.why-content h2 span {

    color: #D8486C;
}

.why-divider {

    width: 120px;

    margin-bottom: 35px;

    background:
        linear-gradient(to right,
            #0E6B68,
            #D8486C,
            #C9A14A);

    margin-bottom: 50px;
}

/* GRID */

.why-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

/* ITEM */

.why-item {

    display: flex;

    gap: 16px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(216, 72, 108, .25);
}

/* ICON */

.why-icon {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    border:
        2px solid rgba(14, 107, 104, .6);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;
}

.why-icon svg {

    width: 24px;

    height: 24px;

    fill: #D8486C;

    stroke: #D8486C;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.why-item h3 {

    color: #D8486C;

    font-size: 16px;

    line-height: 1.4;

    margin-bottom: 8px;
}

.why-item p {

    color: #ddd;

    font-size: 14px;

    line-height: 1.7;
}

/* HOVER */

.why-item:hover .why-icon {

    background: #0E6B68;

    transform: translateY(-5px);
}

.why-item:hover svg {

    stroke: #fff;
}

/*====================================
        OUR PROCESS
=====================================*/

.service-process {
    padding: 120px 0;
    background: #f8f5f0;
    position: relative;
    overflow: hidden;
}

.service-process .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-process .section-tag {
    color: #0a6b68;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

.service-process h2 {
    font-size: 58px;
    margin: 20px 0;
    color: #0a6b68;
}

.service-process h2 span {
    color: #d84c6c;
}

.section-divider {
    width: 180px;
    height: 2px;
    margin: auto;
    background:
        linear-gradient(to right,
            #0a6b68,
            #d84c6c,
            #c9a14a);
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    position: relative;
}

.process-wrapper::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 12%;
    width: 76%;
    border-top: 2px dashed rgba(216, 76, 108, .4);
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-icon {
    width: 95px;
    height: 95px;
    margin: auto;
    border: 2px solid rgba(10, 107, 104, .3);
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a6b68;
    transition: .4s;
}

.process-icon svg {
    width: 42px;
    height: 42px;
}

.process-item:hover .process-icon {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(201, 161, 74, .15);
}

.process-number {
    width: 34px;
    height: 34px;
    margin: 20px auto;
    border-radius: 50%;
    border: 2px solid rgba(10, 107, 104, .25);
    background: #fff;
    color: #0a6b68;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #d84c6c;
}

.process-item p {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    max-width: 260px;
    margin: auto;
}

/*====================================
            GALLERY
=====================================*/

.service-gallery {

    padding: 70px 0;

    background: #050505;

    position: relative;

    overflow: hidden;
}

/* decorative flowers */

.service-gallery::before {

    content: "";

    position: absolute;

    left: -120px;

    bottom: -80px;

    width: 300px;

    height: 300px;

    opacity: .06;

    background: url("../../images/services/haldi.jpeg") no-repeat center/contain;
}

.service-gallery::after {

    content: "";

    position: absolute;

    right: -120px;

    top: -80px;

    width: 300px;

    height: 300px;

    opacity: .06;

    background: url("../../images/services/mandap.jpeg") no-repeat center/contain;
}

/* heading */

.gallery-header {

    text-align: center;

    margin-bottom: 40px;
}

.gallery-tag {

    color: #0A6B68;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;
}

.gallery-header h2 {

    margin: 15px 0;

    font-size: 52px;

    color: #fff;
}

.gallery-header h2 span {

    color: #D84C6C;
}

.gallery-divider {

    width: 140px;

    height: 2px;

    margin: auto;

    background:
        linear-gradient(to right,
            #0A6B68,
            #D84C6C,
            #C9A14A);
}

/* cards */

.gallery-wrapper {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.gallery-card {

    height: 160px;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid rgba(10, 107, 104, .4);

    transition: .4s;

    cursor: pointer;
}

.gallery-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(201, 161, 74, .15);
}

.gallery-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.gallery-card:hover img {

    transform: scale(1.1);
}

/* button */

.gallery-btn-wrap {

    margin-top: 35px;

    text-align: center;
}

.gallery-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 55px;

    padding: 0 40px;

    border-radius: 40px;

    border: 1px solid rgba(255, 255, 255, .2);

    background:
        rgba(255, 255, 255, .05);

    color: #fff;

    backdrop-filter: blur(15px);

    transition: .4s;
}

.gallery-btn:hover {

    background: #C9A14A;

    color: #111;

    border-color: #C9A14A;
}

/*====================================
            CTA
=====================================*/

.service-cta {

    padding: 60px 0;

    background: #f8f5f0;
}

.service-cta-box {

    position: relative;

    max-width: 1000px;

    margin: auto;

    padding: 40px 30px;

    border-radius: 24px;

    text-align: center;

    background: #fff;

    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .08);
}

/* floral decoration */

.service-cta-box::before {

    content: "";

    position: absolute;

    left: -30px;
    bottom: -30px;

    width: 220px;
    height: 220px;

    opacity: .18;

    background:
        radial-gradient(#c9a14a 2px, transparent 2px);
}

.service-cta-box::after {

    content: "";

    position: absolute;

    right: -30px;
    top: -30px;

    width: 220px;
    height: 220px;

    opacity: .18;

    background:
        radial-gradient(#d84c6c 2px, transparent 2px);
}

.service-cta h2 {

    font-size: 48px;

    color: #0a6b68;

    margin-bottom: 15px;
}

.service-cta h2 span {

    color: #d84c6c;
}

.service-cta p {

    color: #666;

    font-size: 18px;

    margin-bottom: 30px;
}

.service-cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;
}

.service-cta-buttons a {

    display: flex;

    align-items: center;

    gap: 10px;

    height: 55px;

    padding: 0 35px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;
}

.service-cta-buttons svg {

    width: 20px;

    height: 20px;
}

/* call button */

.cta-primary {

    background: #0a6b68;

    color: #fff;
}

.cta-primary:hover {

    background: #084f4d;

    transform: translateY(-3px);
}

/* whatsapp button */

.cta-outline {

    border: 2px solid #d84c6c;

    color: #d84c6c;

    background: #fff;
}

.cta-outline:hover {

    background: #d84c6c;

    color: #fff;

    transform: translateY(-3px);
}

.cta-outline svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cta-primary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
@media(max-width: 767px){
 .wedding-service-grid {
   
    grid-template-columns: repeat(1, 1fr);
}  
.why-us .container {
    display: block;
}
.process-wrapper {
    grid-template-columns: repeat(1, 1fr);
}
.why-grid {
    display: block;
    text-align: center;
}
.why-item {
    display: block;
    width: 100% !important;
}
.gallery-wrapper {
   
    grid-template-columns: repeat(1, 1fr);
}
.service-cta h2 {
    font-size: 25px;
}
.gallery-header h2 {
    font-size: 30px;
}
.service-process h2 {
    font-size: 30px;
}
.service-process .section-tag {
    margin: 0;
}
.why-content h2 {
    text-align: center;
    font-size: 30px;
}
.why-content {
    padding: 45px 20px;
    color: #fff;
}
.service-content h3 {
    font-size: 20px;
}
.service-heading h2 {
    font-size: 30px;
}
.service-hero-title {
    font-size: 35px;
}
.single-service-hero {
    padding: 60px 0 60px;
}
.service-text h2 {
    font-size: 30px;
}
.single-service-hero {
    min-height: auto;
}
.service-hero-buttons {
    display: block !important;
}

.service-hero-buttons a {
    display: inline-block !important;
    height: auto  !important;
    padding: 15px 25px;
    width: 49% !important;
    text-align: center;
}

.service-hero-buttons {
    flex-direction: initial;
}
.service-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: auto !important;
}
.service-btn-outline {
    min-width: auto !important;
}
}
.service-hero-desc {
    display: none;
}