@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Cinzel:wght@400;500;600;700&display=swap');
*{
   margin: 0px;
   padding: 0px; 
}

{
    margin: 0px;
    padding: 0px;
    outline: none;
    line-height: inherit;
    box-sizing: border-box;
}

:root {
  --font-heading: "Cinzel", serif;   
  --font-body: "Poppins", sans-serif;     
  --color-primary: #c56b86;   
  --color-accent: #d9a441;    
  --color-dark: #2b1b22;
  --color-light: #fff8f9;
}
a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none;
}

body {
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--color-dark);
}

section.about-sec .section-wrap {
    text-align: left;
}

section.about-sec .section-wrap h2.section-title {
    text-align: left;
}

section.about-sec .section-wrap figure.border-img {text-align: left;}
.section-title {
  font-family: var(--font-heading);
  font-size: 30px;
  color: #000000;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

textarea {
    overflow: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

li {
    list-style: none;
}

figure {
    margin-bottom: 0;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

button {
    outline: none;
    cursor: pointer;
}

p {
    margin: 0px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 30px;
}
.container {
    max-width: 1366px;
}
html {
  scroll-behavior: smooth;
}
.btn-primary {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  background: linear-gradient(135deg, #c56b86, #d9a441);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.btn-outline {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 36px;
  background: #edbc79;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  border-radius: 4px;
  font-weight: 500;
}

.btn-outline:hover {
  background: #ffffff;
  color: #d8a259;
}


/* ----------------------------------------
header css start here
---------------------------------------- */
.top-header {
    position: absolute;
    top: 0;
    width: 100%;
    /* background: #000; */
    z-index: 1;
}

.top-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0px;
}

.top-left ul {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.top-right ul {
    display: flex;
    justify-content: end;
    gap: 16px;
}

.top-left ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.top-right ul li a {
    display: block;
    width: 42px;
    height: 42px;
    background: #edbc79;
    text-align: center;
    line-height: 46px;
    border-radius: 50px;
    font-size: 20px;
}

.top-right ul li a i {
    color: #fff;
}


.top-left ul,
.top-right ul {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0;
    padding: 0;
}
.top-left ul {
    gap: 50px;
}
.top-left ul li,
.top-right ul li {
    list-style: none;
}
.top-left ul li a:hover {
    color: #edbc79;
}
.logo img {width: 200px;/* filter: drop-shadow(0 2px 6px #ffffff3b); */}


/* ----------------------------------------
header css end here
---------------------------------------- */


/* -----------------------------------
banner section css start here
-------------------------------------- */
section.hero-section {
    width: 100%;
    background-size: cover !important;
    padding: 250px 0px;
    position: relative;
    background-position: 50% 0% !important;
}
/* section.hero-section:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000066;
} */


.banner-text {
    padding: 0px;
    text-align: center;
    border-radius: 0px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}
.banner-text h1 {
    font-weight: 600;
    font-size: 56px;
    color: #ffffff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 70px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.banner-text p {
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 25px;
}
.pt-60{
    padding-top: 60px;
}
.pb-60{
    padding-bottom: 60px;
}
/* -----------------------------------
banner section css end here
-------------------------------------- */

/* ---------------------------------
about us section css start here
--------------------------------- */
.border-img {
    display: block;
    text-align: center;
}
.section-wrap {
    margin-bottom: 35px;
}

.about-text {
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    text-align: left;
}
/* ---------------------------------
about us section css end here
--------------------------------- */


/* ---------------------------------
services section css start here
--------------------------------- */
.services-sec {
    background: #f1f0ec;
    background-size: cover !important;
    position: relative;
    overflow: hidden;
}

.services-carousel .owl-nav button {
    margin: 0px !important;
    border: transparent !important;
    transform: scale(1);
    transition: none;
}

.services-carousel .owl-nav button:hover {
    transform: scale(1) !important;
}
.service-minimal-card {
    background: #fff;
    padding: 10px;
}
.shape-left {
    position: absolute;
    top: 0;
    left: -22px;
    width: 230px;
    transform: rotate(15deg);
}

.shape-right {
    position: absolute;
    bottom: 0;
    right: -22px;
    width: 230px;
    transform: rotate(7deg);
}

============================ */
.service-minimal-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 15px;
    text-align: center;
    transition: 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* IMAGE CONTAINER */
.service-minimal-card figure {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 0px;
}

.service-minimal-card figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    transition: 0.3s ease;
}
.service-minimal-card:hover figure img {
    transform: scale(1.08);
}

.service-minimal-card:hover {
    border-color: #d5d5d5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.service-minimal-card h3 {
    font-family: 'Poppins';
    font-size: 20px;
    font-weight: 500;
    color: #222;
    margin: 0;

    /* Equal height title block */
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-carousel .owl-stage,
.services-carousel .owl-item {
    /* display: flex; */
}

.services-carousel .owl-item .item {
    height: 100%;
}
.services-carousel .owl-prev-custom, .owl-next-custom {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 2px solid #e7d9c9;
    cursor: pointer !important;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 0px !important;
}

.services-carousel .owl-prev-custom:hover, .owl-next-custom:hover {
    background: #f9f3ec !important;
    border-color: #d4b89c !important;
    transform: scale(1) !important;
}


.services-carousel .w-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-top: 2px solid #c2a384;
    border-right: 2px solid #c2a384;
    transform: rotate(45deg);
    transition: 0.3s;
}

.services-carousel .w-arrow.left {
    transform: rotate(-135deg);
}

.services-carousel .w-arrow.right {
    transform: rotate(45deg);
}
.services-carousel .owl-prev-custom:hover .w-arrow,
.owl-next-custom:hover .w-arrow {
    border-color: #a8815f; 
}
.services-carousel .owl-nav {display: flex;justify-content: center;align-items: center;margin-top: 30px !important;gap: 24px;}
.services-carousel .owl-nav button.owl-prev span.owl-prev-custom i.w-arrow.left {
    margin-left: 6px;
}

.services-carousel .owl-nav button.owl-next span.owl-next-custom i.w-arrow.right {
    margin-right: 4px;
}
/* ---------------------------------
services section css end here
--------------------------------- */

.why-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 25px;
    text-align: center;
    border: 1px solid #e8e0d8;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

/* elegant wedding shape behind card */
.why-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: url('../images/wedding-shape.png') no-repeat center/contain;
    opacity: 0.10;
    right: -20px;
    top: -20px;
}

.why-icon img {
    width: 80px;
}

.why-card h3 {
    font-size: 20px;
    margin-top: 15px;
    color: #000000;
    font-family: 'Poppins';
    font-weight: 500;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 16px;
    color: #000;
    margin-top: 8px;
    line-height: 25px;
}

.why-card:hover {
    border-color: #c9b28a;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

@media (max-width: 991px) {
    .why-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .why-card-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------
destination-sec section start here
---------------------------------- */
section.destination-sec {
    background-size: cover !important;
}
section.destination-sec {
    padding: 0px;
}
.destination-box {
    box-shadow: rgb(0 0 0 / 18%) 0px 3px 8px;
    padding: 0px;
    position: relative;
}

.destination-wrap .item {
    margin: 10px;
}

.destination-box h3 {
    position: absolute;
    bottom: 0;
    z-index: 1;
    background: #000000ed;
    width: 100%;
    color: #fff;
}

.destination-box h3 i {
    margin-right: 10px;
    font-size: 17px;
}

.destination-box figure {
    height: 400px;
}
section {
    padding: 80px 0px;
}

/* --------------------------------
destination-sec section end here
---------------------------------- */
section.credentials-sec .section-wrap {
    text-align: left;
}

section.credentials-sec .section-wrap h2 {
    color: #edbc79;
    text-align: left;
    letter-spacing: 5px;
}

section.credentials-sec .section-wrap p {
    color: #fff;
}
section.credentials-sec {
    background-size: cover !important;
    background-position: 32% 10% !important;
    position: relative;
}


section.credentials-sec .section-wrap {
    margin-bottom: 0px;
}

.rank-item img {
    width: 350px !important;
    margin: 0 auto;
    bottom: 0;
}

.rank-item {
    text-align: center;
    display: block;
    margin-left: 100px;
    margin-top: 0;
    position: relative;
}


.gallery-section {
    padding: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0; 
}

.gallery-grid a {
    display: block;
    width: 100%;
    height: 300px; 
    overflow: hidden;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    transition: 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.06);
}


.call-wrap {
    text-align: center;
    position: relative;
}

.call-wrap h5 {
    font-size: 36px;
    color: #fff;
    font-family: 'Great Vibes';
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 46px;
    margin-bottom: 15px;
}
.cta-text {
    position: absolute;
    right: 0;
    max-width: 800px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.call-wrap figure img {
    border-radius: 10px;
}




.contact-wedding-section {
    background: #f1f0ec;
}

.contact-subtitle {
    letter-spacing: 2px;
    font-size: 14px;
    color: #9a7b7b;
}

.contact-title {
    font-family: "Georgia", serif;
    font-size: 32px;
    color: #2d2d2d;
    line-height: 1.3;
}

.wedding-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.wedding-form input,
.wedding-form textarea {
    border: none !important;
    border-bottom: 1px solid #d8c8c8 !important;
    border-radius: 0;
    font-size: 16px !important;
    background: transparent;
    padding: 16px 0px !important;
    text-transform: capitalize;
    font-weight: 400 !important;
}

.wedding-form input:focus,
.wedding-form textarea:focus {
    box-shadow: none;
    border-bottom: 1px solid #b28b8b;
    background: transparent;
}

.cta-send-btn {
    background: #edbc79;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: 0.3s;
    font-weight: 500;
    display: inline-block;
}

.cta-send-btn:hover {
    background: #ffffff;
    color: #080808;
}
.wedding-img-left {
    border-bottom-left-radius: 50px;
}

.wedding-img-right {
    border-bottom-right-radius: 50px;
}
.wedding-form input::placeholder, .wedding-form textarea::placeholder {
    color: #3c3b3b;
}



.faq-section {
    background: #fff;
}

.faq-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #c98c65;
    font-weight: 500;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.faq-desc {
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
}

.faq-btn {
    background: #00796b;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.faq-btn:hover {
    background: #005f52;
}

/* Accordion Styling */
.faq-accordion .accordion-item {
    border: 1px solid #edbc79;
    border-radius: 12px;
    margin-bottom: 15px;
}
.faq-accordion .accordion-item:last-child {
    margin: 0px;
}
.faq-accordion .accordion-button {
    font-size: 20px;
    font-weight: 500;
    padding: 18px 20px;
    background: #fff;
    color: #000;
    border-radius: 12px !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #000000;
    background: #fae2c1;
    border-radius: 12px;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 15px 20px;
    font-size: 16px;
    color: #000000;
    line-height: 26px;
    font-weight: 300;
}
.faq-accordion .accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}


section.faq-section .section-wrap h2 {
    text-align: left;
}

section.faq-section .section-wrap h3 {
    font-size: 30px;
    margin: 15px 0px;
    font-weight: 300;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0);
}



.wedding-footer {
    background: url('../images/bg5.png') no-repeat center/cover;
    position: relative;
    background-position: center;
}

.footer-overlay {
    background: rgb(0 0 0 / 94%); 
    width: 100%;
    height: 100%;
    padding: 80px 0px;
}

.footer-title {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-heading {
    color: #fff;
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 400;
}

footer p {
    color: #ffffff;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 400;
}

.footer-border {
    border-left: 1px solid rgb(255 255 255 / 68%);
    padding-left: 20px;
}

.footer-social a {
    color: #fff;
    margin-right: 18px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #d6b56a; 
}
.footer-logo figure img {
    width: 250px;
    filter: brightness(0) invert(1);
}
footer p a {
    color: #fff;
}

footer p a:hover {
    color: #fff;
}


.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-block;
    border: 2px solid #ffffff;
    text-align: center;
    line-height: 42px;
    border-radius: 50px;
}

.footer-social a:hover {
    background: #edbc79;
    border-color: #edbc79;
    color: #fff;
}

footer p:hover a {
    color: #edbc79;
}

.hero-section{
    background: url("..//images/banner3.png") no-repeat center;
    background-size: cover;
    min-height: 100vh;
}

@media (max-width: 993px){
    .hero-section{
        background: url("..//images/banner3-mobile.png") no-repeat center;
        background-size: cover;
    }
}


/* whats app css */
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #5f5d5d;
  font-size: 13px;
}
/* whats app css */
section.gallery-sec a.btn-outline {
    text-align: center;
    display: table;
    margin: 30px auto 0px;
}

section.gallery-sec a.btn-outline:hover {
    background: #000;
    color: #fff;
}

.wedding-form .wpcf7-submit button.butn-dark {
    background: #edbc79;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: 0.3s;
    font-weight: 500;
    display: inline-block;
}

.wedding-form .wpcf7-submit button.butn-dark:hover {
    background: #080808;
}
.wedding-form textarea {
    height: 86px !important;
}

.contact-wedding-section .dscf7-captcha-container {
    width: 100%;
    margin-bottom: 20px;
}
.wedding-form input, .wedding-form textarea {
    margin: 0px !important;
}

.wpcf7-not-valid-tip {
    color: #dc3232 !important;
    font-size: 15px !important;
    padding: 0px !important;
}