/********** Template CSS **********/
:root {
    --primary: #6A2D76;
    --light: #F1F8FF;
    --dark: #0F172B;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 20px;
    /* padding: 25px 0; */
    color: #FFFFFF;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    outline: none;
}

/*** Navbar ***/
.page-description {
    /* padding: 25px 0; */
    color: #1E1E1E;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--light);
    border-top : 1px solid;
    border-bottom : 1px solid;
    border-radius : 10px;
    background : #ffffff2e
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(15, 23, 43, .7); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    /* margin-top: -110px; */
    /* padding-top: 180px; */
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.search-container {
    max-width: 1000px;
    width: 90%;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #000;
  }

  .search-container h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
  }

  .search-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
  }

  label {
    text-align: start;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size : 15px
  }

  input, select {
    height: 45px;
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 15px;
    color: #333;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .search-button {
    margin-top: 40px;
    background: #6b207e;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    width: 100%;
    padding: 15px 0;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .search-button:hover {
    background: #571866;
  }

  @media (max-width: 768px) {
    .search-grid {
      grid-template-columns: 1fr;
    }
    input, select {
      font-size: 14px;
    }
  }

  .popular-locations {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-top: 30px;
  }
  
  .popular-locations h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
  }
  
  .location-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .location-buttons button {
    background-color: #f4edf7;
    color: #6b217e;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .location-buttons button:hover {
    background-color: #6b217e;
    color: #fff;
  }
  
  .features {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 15px;
    color: #000;
    flex-wrap: wrap;
  }

  .features-options {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #1E1E1E;
  }

  .emi-section {
    background: linear-gradient(180deg, #AB53C0, #7054DC);
    text-align: center;
    color: white;
    padding: 30px 10px;
    font-family: "Bona Nova SC", sans-serif;
    margin-top: 20px;
  }
  
  .emi-badge {
    display: inline-block;
    background: #ffffff;
    color: #6A2D76;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .emi-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
  }
  
  .emi-section h2 span {
    color: #13254D; /* darker blue or black tone for “Book Now” */
  }
  
  .emi-section p {
    font-size: 13px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
  }

  .partner-section {
    background-color: #ead9ff; /* soft lavender background */
    text-align: center;
    padding: 20px 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    border-radius: 10px;
  }
  
  .partner-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1b0b23; /* dark text */
    margin-bottom: 20px;
  }
  
  .partner-section h2 span {
    color: #6b217e; /* purple for 'Wedven' */
  }
  
  .partner-section p {
    font-size: 13px;
    color: #1E1E1E;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.6;
  }
  
  .partner-btn {
    background-color: #6b217e;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .partner-btn:hover {
    background-color: #551566;
  }

  .choose-wedven {
    text-align: center;
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    background-color: #fff;
  }
  
  .choose-wedven h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1b0b23;
  }
  
  .choose-wedven h2 span {
    color: #6b217e;
  }
  
  .choose-wedven p {
    font-size: 17px;
    color: #444;
    margin-bottom: 50px;
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-items: center;
  }
  
  .feature-card {
    color: #fff;
    border-radius: 12px;
    padding: 10px 20px;
    text-align: left;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }
  
  .icon {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .feature-card .icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
  }
  
  .feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
  }
  
  .feature-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #f8f8f8;
  }
  
  /* Card Colors */
  .violet { background-color: #9E54FF; }
  .blue { background-color: #32BEF9; }
  .green { background-color: #41C954; }
  .orange { background-color: #FF8551; }
  .pink { background-color: #FF4D9A; }
  .yellow { background-color: #FDC63A; color: #333; }
  .yellow p { color: #333; }

  .newsletter-section {
    background-color: #6a1b9a; /* Deep purple */
    color: white;
    padding: 30px 20px;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
  }
  
  .newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .newsletter-text {
    flex: 1 1 45%;
  }
  
  .newsletter-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
  }
  
  .newsletter-text p {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.5;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align button to the right */
    gap: 12px;
    flex: 1 1 45%;
  }
  
  .newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
  }
  
  .newsletter-form button {
    background-color: white;
    color: #6a1b9a;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #f3e5f5;
  }


  .my-bookings {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .my-bookings h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .my-bookings p {
    color: #666;
    margin-bottom: 20px;
  }
  
  .booking-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .booking-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 48%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: 0.3s;
  }
  
  .booking-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .card-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }
  
  .status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    color: #fff;
    font-weight: 500;
  }
  
  .status.upcoming {
    background-color: #2ecc71;
  }
  
  .status.past {
    background-color: #b3b3b3;
  }
  
  .booking-card p {
    font-size: 14px;
    color: #555;
    margin: 4px 0;
  }
  
  .card-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .primary-btn {
    background-color: #5a187e;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .primary-btn:hover {
    background-color: #6e1b9a;
  }
  
  .secondary-btn {
    border: 1px solid #5a187e;
    background: transparent;
    color: #5a187e;
    border-radius: 25px;
    padding: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .secondary-btn:hover {
    background-color: #f5ebfa;
  }

  body {
    font-family: "Poppins", sans-serif;
    background: #fff;
    color: #333;
  }
  
  .offers-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .offers-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
  }
  
  .offers-section p {
    color: #777;
    margin-bottom: 25px;
  }
  
  .offers-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .offer-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 48%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
    transition: all 0.3s ease;
  }
  
  .offer-card:hover {
    border-color: #6f42c1;
    transform: translateY(-2px);
  }
  
  .offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .offer-header h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
  }
  
  .badge {
    font-size: 12px;
    color: #c47cff;
    background: #fff5e6;
    border: 1px solid #ffe0b3;
    border-radius: 10px;
    padding: 3px 8px;
  }
  
  .price {
    margin: 15px 0;
  }
  
  .price .current {
    font-size: 22px;
    font-weight: 700;
    margin-right: 10px;
  }
  
  .price .original {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
  }
  
  .offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .validity {
    font-size: 13px;
    color: #666;
  }
  
  .explore-btn {
    background: #6f42c1;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .explore-btn:hover {
    background: #5b34a8;
  }
  
  .featured {
    border: 1px solid #eee;
    background: #faf9ff;
  }

  body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #333;
    background: #fff;
  }

  /* Header Section */
  .privacy-header {
    background: #5b1a72;
    color: #fff;
    text-align: center;
    padding: 80px 20px 50px;
    position: relative;
  }

  .back-arrow {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 20px;
    color: #000;
    background: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  }

  .icon-container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .icon-container i {
    font-size: 28px;
    color: #fff;
  }

  .privacy-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px;
  }

  .privacy-header p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #e8e8e8;
  }

  /* Content Section */
  .privacy-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 25px;
  }

  .privacy-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 40px;
    color: #000;
  }

  .privacy-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
  }

  .privacy-content ul {
    margin: 10px 0 20px 20px;
  }

  .privacy-content ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  em {
    font-style: italic;
    color: #555;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .privacy-header {
      padding: 60px 15px 40px;
    }

    .privacy-header h1 {
      font-size: 24px;
    }

    .privacy-content {
      margin: 40px auto;
      padding: 0 15px;
    }
  }

  .wedven-footer {
    background: #0b0f1a;
    font-size: 14px;
}

.footer-logo {
    width: 110px;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links {
    list-style-type: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bfc4ce;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons a {
    font-size: 16px;
    color: #fff;
}

.vendor-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: #762b8d;
    padding: 8px 18px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

.footer-policy a {
    text-decoration: none;
    color: #bfc4ce;
}

.footer-policy a:hover {
    color: #fff;
}

/* Back Button Bar */
.back-bar {
  background-color: #fff;
  padding: 12px 24px;
  display: flex;
  align-items: center;
}

.back-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.back-btn:hover {
  color: #6a2d76;
}

.banner {
  border-radius : 20px;
  margin : 40px;
  background: linear-gradient(to right, #6A2D76, #7054DC);
  padding: 20px;
  color: white;
}

.banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-text {
  max-width: 50%;
}

.banner .btn {
  font-size: 18px;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #fc5c7d;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

.banner .img-wrapper {
  max-width: 40%;
}

.img-wrapper img {
  width: 100%;
  border-radius: 10px;
}

.about-section {
  border-radius : 20px;
  margin : 40px;
  background-color: #f3dff5;
  padding: 20px;
  color: white;
}

.about-section h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.about-section h4 {
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.about-section p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about-section {
    padding: 25px;
  }

  .about-section h2 {
    font-size: 24px;
  }
}

.make-us-section {
  border-radius : 20px;
  margin-left : 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #6A2D76;
  padding: 20px;
  color: white;
}

.make-us-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.make-us-card {
  flex: 1;
  min-width: 200px;
  max-width: calc(20% - 20px); /* 5 equal items */
  background-color: #6A2D76;
  color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  font-family: "Poppins", sans-serif;
}
.make-us-card:hover {
  transform: translateY(-5px);
}
.make-us-card h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: white;
}
.make-us-card p {
  font-size: 12px;
  margin: 0;
}

/* Responsive stacking for smaller screens */
@media (max-width: 992px) {
  .feature-card {
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 576px) {
  .feature-card {
    max-width: 100%;
  }
}

.blog-section {
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
}

/* Banner container */
.blog-banner {
  position: relative;
  background-image: url('../img/blog_back.png');
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Dark overlay */
.blog-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Text content */
.blog-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 20px;
}

.blog-content h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: white;
  font-weight: 600px;
}

.blog-content p {
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: 400px;
}

@media (max-width: 768px) {
  .blog-content h2 {
    font-size: 1.8rem;
  }
  .blog-content p {
    font-size: 1rem;
  }
}

.blog-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-card img {
  width: 180px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 20px;
}

.blog-info h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.read-more {
  background: #6A2D76;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 0.9rem;
}

.badge-popular {
  background-color: #ffe5e5;
  color: #ff4d4d;
  border: 1px solid #ffb3b3;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 12px;
}

.blog-date {
  font-size: 0.8rem;
  color: #777;
  text-align: right;
}

/* Sidebar */
.sidebar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
}

.sidebar h6 {
  font-weight: 600;
  margin-bottom: 20px;
}

.sidebar-article {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sidebar-article img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 10px;
}

.sidebar-article h6 {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.3;
}

.sidebar-article small {
  color: #999;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    text-align: center;
  }

  .blog-card img {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

