/* ================= GLOBAL ================= */
:root {
    --green: #0b3d2e;
    --green-dark: #06261c;
    --gold: #caa343;
    --gold-light: #e8c873;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

body {
  font-family: 'Playfair Display', serif;
} */
/* @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&display=swap');

body {
  font-family: 'Cinzel', serif;
} */

/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&display=swap');

body {
  font-family: 'Cormorant Garamond', serif;
}  */

h1, h2, h3, .signature-title {
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    scroll-behavior: smooth;
    background-color: #01130d;
}
.new-font{
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* ===============================
   HERO SECTION
=================================*/
.hero-section {
    width: 100%;
    position: relative;
    background-image: url('../images/T&B\ banner.webp');
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 12.8 / 6;
}
@media (max-width: 768px){
    .hero-section{
        background-image: url(../images/Threads\ &\ Beads\ hero\ banner\ for\ mobile.webp);
        aspect-ratio: 9 / 11.2;
    }
}
/* Dark overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.date-text {
    letter-spacing: 3px;
    color: #d4af37;
    font-size: 14px;
}
.main-title {
    font-size: 60px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
    font-family: Georgia, 'Times New Roman', Times, serif;

    background: linear-gradient(
        90deg,
        #d4af37,
        #f5e6a5,
        #d4af37
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: none;
    -webkit-text-fill-color: transparent;
    animation: goldShine 4s linear infinite;
}

@keyframes goldShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.sub-text {
    font-size: 16px;
    color:#00ffd5;
    font-weight: 1000;
}



/* ===============================
   SECOND SECTION
=================================*/
.about-section {
    background: #01291c;
    padding: 10px !important;
}

.section-title {
    color: #fff6d8;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}



.section-desc {
    max-width: 600px;
    margin: auto;
    color: #ddd;
    font-size: 16px;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 768px) {

    .main-title {
        font-size: 40px;
    }

    .card-box {
        padding: 20px;
    }

}

@media (max-width: 480px) {

    .main-title {
        font-size: 32px;
    }

}


/* ===============================
   TOP HEADER
=================================*/

.top-header {
    height: 110px;
    background: linear-gradient(180deg, #021B17 0%, #03322b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.6);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1200;
    border-bottom: 1px solid rgba(212,175,55,0.3);
}

.couple-name {
    font-family: 'Cinzel', serif;
    color: #ffd700;
    font-size: 32px;
    margin: 0;
    letter-spacing: 2px;
}

.wedding-date {
    color: #f8d568;
    font-size: 14px;
    margin: 0;
}

.logo-0 {
    width: 200px;
    height: auto;
    transition: 0.4s ease;
}

.logo-0:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px #d4af37);
}



@media (max-width: 992px) {

    .main-title {
        font-size: 45px;
    }

}

@media (max-width: 768px) {

    .main-title {
        font-size: 36px;
    }

    .hero-section {
        height: auto;
        padding: 100px 20px;
    }

    .card-box {
        padding: 25px;
    }

    .logo-0 {
        width: 150px;
    }

}

@media (max-width: 480px) {

    .main-title {
        font-size: 28px;
    }

}

/* ===============================
   SIMPLE CLICK DROPDOWN
=================================*/

.simple-dropdown {
    position: relative;
    width: 100%;
    text-align: left;
}

.dropdown-header {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #d4af37;
    padding: 14px;
    border-radius: 12px;
    color: #d4af37;
    cursor: pointer;
}

.dropdown-body {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #d4af37;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.dropdown-item {
    padding: 12px;
    color: #fff;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    cursor: pointer;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #d4af37;
    color: #0f2e23;
}

/* ================= SECTIONS ================= */
.section-padding {
    padding: 100px 0;
}

.dark-section {
    color: #fff;
}

.dark-section .section-title {
    color: var(--gold);
}

/* ================= COLLECTION CARDS ================= */
.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 450px;  
}
.collection-card img {
    width: 100%;
    border-radius: 15px;
    transition: 0.4s;
    display: block;
}

/* Position second image on top */
.collection-card .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Show second image on hover */
.collection-card:hover .hover-img {
    opacity: 1;
}

/* Optional zoom effect */
.collection-card:hover .main-img,
.collection-card:hover .hover-img {
    transform: scale(1.1);
}

.collection-card h3 {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: #caa343;
    font-size: larger;
    background: rgba(0,0,0,0.5);
    padding: 6px 12px;
    border-radius: 5px;
}

.collection-card img {
    width: 100%;
    height: 100%;          
    object-fit: cover;     
    border-radius: 15px;
    transition: 0.4s;
    display: block;
}

/* Gsap animation for backgroud of card  */

/* --=================== Premium Signature Background ===================-- */

.signature-section {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    background-color: transparent;
}

/* Keep content above animation */
.signature-content-wrapper {
    position: relative;
    z-index: 5;
}

/* --================ Golden Mist Layer =================-- */
.mist-layer {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(255,215,0,0.15), transparent 50%);
    filter: blur(120px);
    z-index: 1;
}

/* --============== Stars Layer ==============-- */   
.stars-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* Twinkling Stars */
.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 8px #ffd700;
    opacity: 0.8;
}

.dust {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ffd700, #ffecb3);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    opacity: 0.6;
}


/* --=================== Bridel lehengas detail section ==================-- */
.bridal-details-section {
    background: linear-gradient(135deg, #0f2e23, #012316);
    padding: 80px 20px;
    color: #f5f5f5;
}

.bridal-heading {
    font-size: 42px;
    font-weight: 700;
    color: #fff6d8; /* Gold */
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bridal-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.bridal-text h3 {
    color: #fff6d8; /* Light gold */
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.bridal-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Subtle Gold Divider Effect */
.bridal-text h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 10px auto 0;
}

/* Responsive */
@media (max-width: 768px) {
    .bridal-heading {
        font-size: 30px;
    }

    .bridal-text h3 {
        font-size: 20px;
    }

    .bridal-text p {
        font-size: 15px;
    }

    .bridal-details-section {
        padding: 50px 15px;
    }
}

/* ====================== Premium Bridal Gallery Section ==================== */

.bridal-gallery-section {
    background-color: transparent;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.gallery-heading {
    text-align: center;
    color: #fff6d8;
    font-size: 38px;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    animation: revealSection 1s ease forwards;
}

/* Grid Layout */
.bridal-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Gallery Items */
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: revealSection 1s ease forwards;
}

/* Delay animation for stagger effect */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10){ animation-delay: 1s; }

/* Image Styling */
.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px;
}

/* Hover Zoom */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gold Border Hover Effect */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: 0.4s;
}

.gallery-item:hover::after {
    border-color: #d4af37;
}

.card-price{
    position: absolute;
    bottom: 5px;
    left: 15px;
    color: #caa343;
    font-size: larger;
    background: rgba(1, 15, 2, 0.5);
    padding: 6px 12px;
    border-radius: 5px;
}

/* Reveal Animation */
@keyframes revealSection {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

/* Tablet */
@media (max-width: 992px) {
    .bridal-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .bridal-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-heading {
        font-size: 26px;
    }

    .gallery-item img {
        height: 200px;
    }
}



/* ============== Bridal Blouse Section ================ */

.blouse-details-section {
    /* background: linear-gradient(135deg, #163d2f, #0f2e23); */
    background: linear-gradient(135deg, #0f2e23, #012316);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blouse-heading {
    font-size: 40px;
    font-weight: 700;
    color: #fff6d8;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(40px);
    animation: revealBlouse 1s ease forwards;
}

.blouse-content {
    max-width: 900px;
    margin: auto;
}

.blouse-text h3 {
    color: #fff6d8;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;

    opacity: 0;
    transform: translateY(40px);
    animation: revealBlouse 1s ease forwards;
}

.blouse-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #e0e0e0;

    opacity: 0;
    transform: translateY(40px);
    animation: revealBlouse 1s ease forwards;
}

/* Stagger Animation Delay */
.blouse-text h3:nth-of-type(1) { animation-delay: 0.2s; }
.blouse-text p:nth-of-type(1)  { animation-delay: 0.4s; }
.blouse-text h3:nth-of-type(2) { animation-delay: 0.6s; }
.blouse-text p:nth-of-type(2)  { animation-delay: 0.8s; }

/* Gold Divider */
.blouse-text h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 10px auto 0;
}

/* Reveal Animation */
@keyframes revealBlouse {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .blouse-heading {
        font-size: 28px;
    }

    .blouse-text h3 {
        font-size: 20px;
    }

    .blouse-text p {
        font-size: 15px;
    }

    .blouse-details-section {
        padding: 60px 15px;
    }
}

/*=============== about sections of threads & beads ================ */
/* ===== Signature Creations Section ===== */

.signature-section {
    padding: 100px 20px;
    text-align: center;
    color: #f5f5f5;
    overflow: hidden;
    position: relative;
}

/* Gold Glow Divider Top */
.signature-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #d4af37;
}

/* Section Title */
.signature-title {
    font-size: 42px;
    color: #fff6d8;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeReveal 1s ease forwards;
}

/* Content Wrapper */
.signature-content {
    max-width: 950px;
    margin: auto;
}

/* Paragraph Styling */
.signature-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #e6e6e6;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeReveal 1s ease forwards;
}

/* Highlight Brand Name */
.signature-intro span {
    color: #e6c76b;
    font-weight: 600;
}

/* Premium List */
.signature-list ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.signature-list li {
    font-size: 17px;
    margin: 12px 0;
    color: #f0f0f0;
    position: relative;
    padding-left: 25px;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeReveal 1s ease forwards;
}

/* Golden Bullet */
.signature-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 14px;
}

/* Closing Paragraph Slight Highlight */
.signature-closing {
    font-style: italic;
    color: #e6c76b;
}

/* Stagger Animation */
.signature-content p:nth-of-type(1) { animation-delay: 0.2s; }
.signature-content p:nth-of-type(2) { animation-delay: 0.4s; }
.signature-list li:nth-child(1) { animation-delay: 0.6s; }
.signature-list li:nth-child(2) { animation-delay: 0.7s; }
.signature-list li:nth-child(3) { animation-delay: 0.8s; }
.signature-list li:nth-child(4) { animation-delay: 0.9s; }
.signature-list li:nth-child(5) { animation-delay: 1s; }
.signature-list li:nth-child(6) { animation-delay: 1.1s; }
.signature-closing { animation-delay: 1.2s; }

/* Animation */
@keyframes fadeReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .signature-title {
        font-size: 28px;
    }

    .signature-content p {
        font-size: 15px;
    }

    .signature-list li {
        font-size: 15px;
    }

    .signature-section {
        padding: 70px 15px;
    }
}

/*======================== Buttons after the about sections ========================*/
/* ===== Premium Golden Buttons ===== */

.signature-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.gold-btn {
    position: relative;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0f2e23;
    background: linear-gradient(45deg, #ffd700, #f5c542, #ffea8a);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    overflow: hidden;
}

/* Glow Animation */
.gold-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: 0.7s;
}

/* Hover Shine Effect */
.gold-btn:hover::before {
    left: 130%;
}

.gold-btn:hover {
    box-shadow: 0 0 25px rgba(255, 223, 0, 0.9);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 576px) {
    .gold-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* ============ Gsap backgroud ============ */

/* ===== Background Wrapper Fix ===== */

.bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Remove background from main section safely */
.signature-section2 {
    background: none !important;
}

/* New Center Glow Background */
.signature-section2::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #1e5a45 0%, #0f2e23 70%);
    z-index: -1;
}

/* Keep content above */
.signature-content-wrapper2 {
    position: relative;
    z-index: 5;
}

/* ===== Golden Mist ===== */
.mist-layer2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    top: 50%;
    left: 50%;
}

/* ===== Stars Layer ===== */
.stars-layer2 {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Stars */
.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 8px #ffd700;
    opacity: 0.8;
}

/* ==================================================
   CONTACT SECTION
================================================== */

#contact {
    position: relative;
    padding: 120px 20px;
    background: transparent;
}

#contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================================================
   SECTION TITLE
================================================== */

#contact .section-title {
    color: #d4af37;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* ==================================================
   FORM WRAPPER
================================================== */

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
}

/* ==================================================
   FORM GROUP
================================================== */

.form-group {
    margin-bottom: 25px;
}

/* ==================================================
   INPUT FIELDS
================================================== */

.luxury-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid #d4af37;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}
.label{
    color:#caa343;
}

/* Placeholder */
.luxury-input::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Focus Effect */
.luxury-input:focus {
    border-color: #f5e6a5;
    box-shadow: 0 0 12px rgba(212,175,55,0.6);
    background: rgba(0, 0, 0, 0.85);
}

/* Textarea */
.luxury-textarea {
    resize: none;
    min-height: 120px;
}

/* ==================================================
   DROPDOWN STYLING
================================================== */

select.luxury-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23d4af37' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
}

/* Dropdown Options */
select.luxury-input option {
    background-color: #0f2e23;
    color: #ffffff;
}

/* ==================================================
   BUTTON
================================================== */

.btn-gold {
    display: inline-block;
    width: 100%;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: linear-gradient(45deg, #d4af37, #f5e6a5);
    color: #0f2e23;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(212,175,55,0.7);
}

/* ==================================================
   FORM SUBMITTED MESSAGE
================================================== */
.form-message {
  display: none;
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  background: linear-gradient(135deg, #0f2e23, #123d2f);
  color: #d4af37; /* gold */
  border: 1px solid #d4af37;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-message {
    font-size: 14px;
    padding: 12px;
  }
}
/* ==================================================
   RESPONSIVE DESIGN
================================================== */

@media (max-width: 992px) {

    #contact {
        padding: 100px 20px;
    }

    #contact .section-title {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    #contact {
        padding: 80px 15px;
    }

    #contact .section-title {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
        border-radius: 16px;
    }

    .luxury-input {
        padding: 12px 14px;
    }

    .btn-gold {
        padding: 12px;
    }
}

@media (max-width: 480px) {

    #contact .section-title {
        font-size: 24px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* ================= FOOTER ================= */
.footer-section {
    /* background: linear-gradient(135deg, #0f2e23, #1b4a3a); */
    background: linear-gradient(135deg, #0f2e23, #012316);
    color: #f5f5f5;
    padding: 60px 0 25px;
    font-family: 'Poppins', sans-serif;
}

.footer-section p {
    font-size: 15px;
}

.footer-heading {
    font-weight: 600;
    letter-spacing: 1px;
    color: #d4af37;
}

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

.footer-links a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(212, 175, 55, 0.3);
}

.social-icons {
    display: inline-flex;
    gap: 18px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    font-size: 20px;
    transition: 0.4s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #d4af37;
    color: #0f2e23;
    transform: translateY(-5px);
}
.odea{
    text-decoration: none;
    color: #f6554d;
}
@media (min-width: 992px) {
  .footer-section .container {
    max-width: 1000px;  
  }
}
.quick-links-wrapper {
    max-width: 300px;
    margin: 0 auto;  
}
.quick-links{
    text-align: center;
    font-family:Georgia, 'Times New Roman', Times, serif;
}
/* ================= HOVER EFFECTS ================= */
.product-img:hover {
    transform: scale(1.03);
    transition: 0.4s;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }

    .carousel-caption {
        bottom: 25%;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 28px;
    }

    .product-img {
        height: 320px;
    }

    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .carousel-caption p {
        font-size: 14px;
    }
}





.product-img {
    transition: transform 0.6s ease, filter 0.6s;
}

.product-img:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}
/* ===== PRODUCT COVERFLOW ===== */
.productSwiper {
    width: 100%;
    padding: 80px 0;
    position: relative;
}

/* normal slides */
.productSwiper .swiper-slide {
    width: 240px;
    height: 360px;
    opacity: 0.4;
    transition: all 0.4s ease;
}

/* image */
.productSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* CENTER SLIDE */
.productSwiper .swiper-slide-active {
    transform: scale(1.35);
    opacity: 1;
    z-index: 10;
}

/* SIDE SLIDES */
.productSwiper .swiper-slide-prev,
.productSwiper .swiper-slide-next {
    opacity: 0.8;
}

/* arrows */
.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
    color: #caa343;
}

/* mobile */
@media(max-width:768px){
    .productSwiper .swiper-slide {
        width: 160px;
        height: 230px;
    }
}


.logo{
    width: 150px;
    height: 80px;
}

/* ===============================
   LUXURY WEDDING INTRO
=================================*/

.wedding-intro {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #043C33, #021B17);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.intro-logo {
    width: 700px;
    height: 400px;
}

.intro-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(2, 53, 1, 0.8), transparent 70%);
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(50px);
}
@media (max-width: 768px) {
    .intro-logo {
        width: 500px;
        height: 200px;
    }
}

/* ===============================
   PARTICLE BACKGROUND
=================================*/

/* #particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    pointer-events: none;
} */

/* ===============================
   TYPEWRITER EFFECT
=================================*/
.typing-text {
    display: inline-flex;
    align-items: center;
}

.typing-text span {
    font-size: inherit;
}

.typing-cursor {
    margin-left: 5px;
    color: #d4af37;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}


/* ================= POPUP STYLE ================= */

.collection-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 30, 20, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.collection-popup.active {
    display: flex;
}

.popup-content {
    background: #0f2e23;
    width: 40%;
    max-width: 900px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 2px solid #caa343;
}

.close-popup {
    position: absolute;
    top: 0px;
    right: 12px;
    font-size: 28px;
    color: #caa343;
    cursor: pointer;
}

.or{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: large;
    font-weight: 700;
    color: #caa343;
}

.swiper {
    width: 100%;
    height: 450px;
}

.swiper-slide {
    text-align: center;
}

.swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.slide-btn {
    margin-top: 15px;
    background: #caa343;
    color: #0f2e23;
    padding: 8px 20px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.slide-btn:hover {
    background: #e6c065;
}

.popup-bottom {
    text-align: center;
    margin-top: 20px;
}

.popup-bottom p {
    color: #fff;
    margin-bottom: 10px;
}

.reference-btn {
    background: transparent;
    border: 2px solid #caa343;
    color: #caa343;
    padding: 8px 25px;
    border-radius: 30px;
    text-decoration: none;
}

.reference-btn:hover {
    background: #caa343;
    color: #0f2e23;
}

/* ================= SWIPER ARROWS ================= */

.custom-arrow {
    color: #caa343 !important;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    -webkit-backdrop-filter:blur(6px) ;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
    
}

.custom-arrow::after {
    font-size: 18px !important;
    font-weight: bold;
}

.custom-arrow:hover {
    background: #caa343;
    color: #0f2e23 !important;
    transform: scale(1.1);
}
.swiper-button-prev,
.swiper-button-next {
    color: #caa343 !important;
    display: flex !important;
    z-index: 9999;
}

/* Responsive */
@media (max-width: 768px) {
    .swiper {
        height: 350px;
    }
    .swiper-slide img {
        height: 250px;
    }
    .popup-content{
        width: 95%;
    }
}


/* ================= GET US SECTION ================= */

.get-us-section {
    background: #01291c;
    padding: 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.get-us-title {
    color: #fff6d8;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Button Style */
.get-us-btn {
    display: inline-block;
    padding: 14px 45px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;

    background: linear-gradient(45deg, #d4af37, #f5e6a5, #d4af37);
    background-size: 200% auto;
    color: #0f2e23;

    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Hover Effect */
.get-us-btn:hover {
    background-position: right center;
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.9);
}

@media (max-width: 768px) {

    .get-us-title {
        font-size: 24px;
    }

    .get-us-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .get-us-btn {
        width: 80%;
    }
}




/* ================= TESTIMONIALS ================= */

.testimonials-section {
    background: linear-gradient(135deg, #01291c, #0f2e23);
    overflow: hidden;
    padding: 100px  20px;
}
.testimonialSwiper {
    width: 100%;
    padding: 80px 0;
}

.testimonial-card {
    background: rgba(0,0,0,0.6);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(120px);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.4s ease;
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #d4af37;
}

.testimonial-card p {
    font-size: 14px;
    color: #e6e6e6;
    margin-bottom: 10px;
}

.stars {
    color: #d4af37;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Coverflow scaling */
.testimonialSwiper .swiper-slide {
    width: 260px;
    opacity: 0.5;
    transition: 0.4s;
}

.testimonialSwiper .swiper-slide-active {
    opacity: 1;
}

.testimonialSwiper .swiper-slide-active .testimonial-card {
    border: 1px solid #d4af37;
    box-shadow: 0 0 30px rgba(212,175,55,0.6);
    transform: scale(1.05);
}
.testimonialSwiper {
    overflow: visible !important;  /* allow depth effect */
}

@media (max-width: 768px) {

  .testimonialSwiper {
      padding: 40px 0;
  }

  .testimonial-card {
      padding: 20px;
      border-radius: 18px;
  }

  .testimonial-card img {
      width: 75px;
      height: 75px;
  }

  .testimonial-card p {
      font-size: 13px;
  }

}

/* ================= TESTIMONIAL BUTTON ================= */

.testimonial-btn-wrapper {
    margin-top: 40px;
}

.testimonial-btn {
    display: inline-block;
    padding: 14px 45px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;

    background: linear-gradient(45deg, #d4af37, #f5e6a5, #d4af37);
    background-size: 200% auto;
    color: #0f2e23;

    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.testimonial-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.9);
}

@media (max-width: 768px) {

    .testimonial-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

}

@media (max-width: 480px) {

    .testimonial-btn {
        width: 80%;
    }

}