/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}

/* =========================
   DESKTOP HEADER
========================= */

.impress-header{
    max-width:1500px;
    margin:auto;
    background:#f8f6f1;
    padding:5px 200px;
    border-bottom:2px solid #c9a45a;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.logo-area{
    text-align:center;
}

.logo-img{
    width:180px;
    height:80px;
    object-fit:contain;
}

.header-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.nav-menu{
    list-style:none;
    display:flex;
    align-items:center;
    gap:25px;
    margin:0;
    padding:0;
}

.nav-menu li{
    position:relative;
}

.nav-menu a{
    text-decoration:none;
    color:#222;
    font-size:13px;
    font-weight:600;
}

.separator{
    width:1px;
    height:22px;
    background:#c9a45a;
}

.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:2px;
    background:#c9a45a;
}

.submenu{
    position:absolute;
    top:100%;
    left:0;
    min-width:180px;
    background:#fff;
    list-style:none;
    padding:10px 0;
    margin-top:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
    z-index:999;
}

.submenu a{
    display:block;
    padding:10px 20px;
}

.has-dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.consult-btn{
    background:#0d4a3e;
    color:#C9973A;
    text-decoration:none;
    padding:15px 25px;
    border-radius:10px;
}

/* =========================
   MOBILE HEADER
========================= */

.mobile-header{
    display:none;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .impress-header{
        display:none;
    }

    .mobile-header{
        display:block;
        width:100%;
        background:#fff;
        box-shadow:0 2px 10px rgba(0,0,0,.08);
        position:relative;
        z-index:9999;
    }

    .mobile-header-inner{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:15px 20px;
    }

    .mobile-logo img{
        height:55px;
    }

    .mobile-menu-btn{
        border:none;
        background:none;
        font-size:32px;
        cursor:pointer;
    }

    .mobile-menu{
        display:none;
        background:#fff;
        border-top:1px solid #eee;
    }

    .mobile-menu.active{
        display:block;
    }

    .mobile-menu ul{
        margin:0;
        padding:0;
        list-style:none;
    }

    .mobile-menu li{
        border-bottom:1px solid #eee;
    }

    .mobile-menu a,
    .submenu-toggle{
        width:100%;
        display:block;
        padding:15px 20px;
        text-decoration:none;
        color:#222;
        background:none;
        border:none;
        text-align:left;
        font-size:15px;
        cursor:pointer;
    }

    .mobile-submenu{
        display:none;
        background:#f7f7f7;
    }

    .mobile-submenu.active{
        display:block;
    }

    .mobile-submenu a{
        padding-left:40px;
    }

    .mobile-quote-btn{
        background:#0d4a3e;
        color:#fff !important;
        text-align:center !important;
    }
}















.footer-quick-links {
   
}

.footer-quick-links h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    position: relative;
}

.footer-quick-links h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #c89b3c;
    margin-top: 8px;
}

.footer-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-quick-links ul li {
    margin-bottom: 12px;
}

.footer-quick-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
    font-size: 13px;
}

.footer-quick-links ul li a:hover {
    color: #c89b3c;
    padding-left: 5px;
}




 footer {
  background: #1A3B2C;
  padding: 70px 60px 30px;
  border-top: 1px solid rgba(232,189,79,0.15);
}

.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:60px;
  align-items:flex-start;
}

.footer-brand{
  text-align:left;
  padding:0px 50px;
}

.logo-area2{
  margin-bottom:10px;
  margin-top:10px;
  text-align:left;
  
}

.main-logo{
  width:180px;
  max-width:100%;
  display:block;
}

.footer-tagline{
  max-width:380px;
  font-size:13px;
  line-height:2;
  color:#fff;
}

.footer-heading{
  color: #F2B41F;
  font-size:27px;
  margin-bottom:17px;
}

.footer-info-row{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:18px;
}

.footer-info-icon{
  
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;

 

  color:#fff;
  font-size:15px;
  margin-top: 5px;
}

.footer-info-text{
  color:#fff;
  line-height:1.8;
  font-size:14px;
}

.footer-info-text a{
  color:var(--gold);
  text-decoration:none;
  font-size:14px;
  font-weight:600;
}

.footer-links-column a{
  display:block;
  margin-bottom:16px;
  color:rgba(255,255,255,.70);
  text-decoration:none;
  transition:.3s;
}

.footer-links-column a:hover{
  color:var(--gold);
}

.gold-link{
  color:var(--gold) !important;
  font-weight:600;
}

.footer-bottom{
  margin-top:20px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,.08);

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.footer-copy{
  color:#fff;
  font-size:13px;
}

.footer-copy span{
  color:var(--gold);
}

.footer-links{
  display:flex;
  gap:25px;
}

.footer-links a{
  text-decoration:none;
  color:rgba(255,255,255,.45);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:1px;
}

.footer-links a:hover{
  color:var(--gold);
}
.footer-map {
    margin-top: 15px;
    overflow: hidden;
    border-radius: 12px;
}

/* =========================
   Tablet (1024px and below)
========================= */
@media (max-width: 1024px) {

  footer {
    padding: 60px 40px 25px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }

  .footer-tagline {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
}


/* =========================
   Mobile (768px and below)
========================= */
@media (max-width: 768px) {

  footer {
    padding: 50px 20px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .logo-area {
    display: flex;
    justify-content: center;
  }

  .main-logo2,
  .main-logo {
    width: 160px;
  }

  .footer-tagline {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
  }

  .footer-heading {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .footer-info-row {
    justify-content: center;
    text-align: left;
    gap: 12px;
    margin-bottom: 18px;
  }

  .footer-quick-links ul li {
    margin-bottom: 10px;
  }

  .footer-quick-links ul li a {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-copy {
    line-height: 1.8;
  }
}


/* =========================
   Small Mobile (480px)
========================= */
@media (max-width: 480px) {

  footer {
    padding: 40px 15px 20px;
  }

  .footer-heading {
    font-size: 24px;
  }

  .main-logo2,
  .main-logo {
    width: 140px;
  }

  .footer-tagline {
    font-size: 13px;
  }

  .footer-info-text,
  .footer-info-text a {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-copy {
    font-size: 12px;
  }
}
    
    
    .whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

.whatsapp-sticky img {
    width: 45px;
    height: 45px;
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 60px;
        height: 60px;
        left: 15px;
        bottom: 15px;
    }

    .whatsapp-sticky img {
        width: 34px;
        height: 34px;
    }
    
     footer {
  background:#0D4A3E;
  padding: 30px 20px 20px;
  border-top: 1px solid rgba(232,189,79,0.15);
}


}

/* =========================
   INNER BANNER
========================= */

.nlv2_bredcrumb_wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(
        -45deg,
        #0D4A3E,
        #14614f,
        #0D4A3E,
        #1b6f5c
    );
    background-size: 400% 400%;

    animation: gradientMove 12s ease infinite;
}

/* Gold Light Sweep */
.nlv2_bredcrumb_wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        120deg,
        transparent 25%,
        rgba(242, 180, 31, 0.15) 50%,
        transparent 75%
    );

    transform: translateX(-100%);
    animation: lightSweep 8s linear infinite;
}

/* Glow Circle */
.nlv2_bredcrumb_wrapper::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(242, 180, 31, 0.12) 0%,
        transparent 70%
    );

    top: -300px;
    right: -150px;

    animation: floatGlow 10s ease-in-out infinite;
}

/* Content */
.banner-content {
    position: relative;
    z-index: 5;
}

.banner-content h1 {
    color: #ffffff;
    font-size: 54px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Animated Gradient */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Light Sweep */
@keyframes lightSweep {
    0% {
        transform: translateX(-150%);
    }
    100% {
        transform: translateX(150%);
    }
}

/* Floating Glow */
@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nlv2_bredcrumb_wrapper {
        height: 220px;
    }

    .banner-content h1 {
        font-size: 34px;
    }
}


/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    background: #000; 
}

/* SLIDER CONTAINER */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
        margin-top: 0px;
}


/* IMAGES */
.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Top portion visible */
    opacity: 0;
    animation: heroSlider 24s infinite ease-in-out;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Slide Delays */
.hero-slider .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slider .slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-slider .slide:nth-child(3) {
    animation-delay: 12s;
}

.hero-slider .slide:nth-child(4) {
    animation-delay: 18s;
}

/* Smooth Cross Fade */
@keyframes heroSlider {

    0% {
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    28% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hero {
               height: calc(47vh - 84px);
        min-height: auto;
        margin-top: 0px;
    }

    .hero-slider .slide {
        object-fit: cover;
        object-position: center center;
    }

}

    /* ─── RIBBON ─────────────────────────────────────────────── */
    /* Logo Ribbon */
.ribbon {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 25px 0;
  position: relative;
}

.ribbon-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 20s linear infinite;
  opacity: 1 !important;
}


.ribbon-item {
  flex-shrink: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ribbon-logo {
  height: 90px;       /* Adjust as needed */
  width: 150px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}


/* Infinite Scroll Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .ribbon {
    padding: 18px 0;
  }

  .ribbon-item {
    padding: 0 25px;
  }

  .ribbon-logo {
    height: 100px;
  }
}






/* ==========================
   Welcome Section
========================== */
.welcome-section {
    padding: 30px 150px;
    background: #fff;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* Left Side */
.welcome-left {
    flex: 0 0 370px;
    padding-right: 40px;
    border-right: 2px solid #d9d9d9;
}

.welcome-left h2 {
    margin: 0;
    font-size: 35px;
    line-height: 1.3;
    font-weight: 600;
    color: #C9973A;
}

.welcome-left h2 span {
    color: #0D4A3E; /* Blue highlight */
    display: inline-block;
}

/* Right Side */
.welcome-right {
    flex: 1;
    padding-left: 10px;
}

.welcome-right p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.welcome-right p:last-child {
    margin-bottom: 0;
}

/* ==========================
   Tablet
========================== */
@media (max-width: 991px) {

    .welcome-container {
        gap: 35px;
    }

    .welcome-left {
        flex: 0 0 260px;
        padding-right: 30px;
    }

    .welcome-left h2 {
        font-size: 30px;
    }

    .welcome-right p {
        font-size: 15px;
    }
}

/* ==========================
   Mobile
========================== */
@media (max-width: 767px) {

    .welcome-container {
        flex-direction: column;
        gap: 25px;
    }

    .welcome-left {
        flex: 100%;
        border-right: none;
        border-bottom: 2px solid #d9d9d9;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .welcome-right {
        padding-left: 0;
    }

    .welcome-left h2 {
        font-size: 28px;
    }

    .welcome-right p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ==========================
   Small Mobile
========================== */
@media (max-width: 480px) {

    .welcome-section {
        padding: 60px 15px;
    }

    .welcome-left h2 {
        font-size: 24px;
    }

    .welcome-right p {
        font-size: 14px;
        line-height: 1.6;
    }
}



/* ─── SECTION WRAPPER ─── */
    .col-section {
      background-color: #f5ede0;
      background-image:
        radial-gradient(ellipse at 5% 10%, rgba(139,90,43,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 95% 90%, rgba(139,90,43,0.07) 0%, transparent 50%);
     
      padding: 0 0 80px;
      position: relative;
      overflow: hidden;
    }

    /* ─── FLORAL BACKGROUND ─── */
    .floral-bg {
      position: absolute; inset: 0;
      pointer-events: none; z-index: 0; overflow: hidden;
    }

    /* ─── TOP BORDER LINE ─── */
    .top-border-line {
      width: 100%; display: flex; align-items: center; justify-content: center;
      padding: 60px 24px 0; position: relative; z-index: 1;
    }
    .border-line-svg { width: 100%; max-width: 960px; height: 36px; }

    /* ─── HEADER ─── */
    .col-header {
      text-align: center;
      padding: 12px 24px 16px;
      position: relative; z-index: 1;
    }

    .col-header h1 {
     
      font-size: clamp(30px, 5.5vw, 52px);
      font-weight: 400;
      color: #1a3a1a;
      letter-spacing: 1px;
      line-height: 1.2;
    }
    .col-header h1 span { font-style: italic; color: #c9973a; }

    .col-subtitle {
     
      font-size: clamp(14px, 2.5vw, 19px);
      color: #5a4a2a;
      letter-spacing: 2.5px;
      margin: 10px 0 16px;
      font-weight: 500;
    }

    .divider-ornament {
      display: flex; align-items: center; justify-content: center;
      gap: 14px; margin: 0 auto 18px; max-width: 320px;
    }
    .divider-line {
      flex: 1; height: 1px;
      background: linear-gradient(to right, transparent, #c9973a, transparent);
    }
    .divider-diamond {
      width: 8px; height: 8px; background: #c9973a;
      transform: rotate(45deg); flex-shrink: 0;
    }

    .col-desc {
      font-size: 13px!important;
      color: #7a6a4a;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.85;
      font-weight: 300;
    }

    /* ─── CARDS GRID ─── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 28px;
      position: relative; z-index: 1;
    }

    /* ─── SINGLE CARD ─── */
    .col-card {
      background: #fdf6ec;
      border: 1.5px solid #d4a853;
      border-radius: 4px;
      overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform 0.38s cubic-bezier(.25,.8,.25,1),
                  box-shadow 0.38s ease,
                  border-color 0.3s;
      cursor: pointer;
      position: relative;
    }

    .col-card::after {
      content: '';
      position: absolute; inset: 0;
      border: 2px solid transparent;
      border-radius: 4px;
      transition: border-color 0.35s;
      pointer-events: none;
    }

    .col-card:hover {
      transform: translateY(-10px) scale(1.016);
      box-shadow: 0 22px 52px rgba(139,90,43,0.2);
      border-color: #c9973a;
    }
    .col-card:hover::after {
      border-color: rgba(201,151,58,0.22);
    }

    /* ─── CARD IMAGE ─── */
    .card-img-wrap {
      position: relative; overflow: hidden; height: 230px;
    }
    .card-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
      transition: transform 0.55s cubic-bezier(.25,.8,.25,1);
    }
    .col-card:hover .card-img-wrap img { transform: scale(1.08); }

    .card-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(26,18,5,0.38) 100%);
      opacity: 0;
      transition: opacity 0.38s;
    }
    .col-card:hover .card-img-overlay { opacity: 1; }

    /* ─── CARD BODY ─── */
    .card-body {
      padding: 14px 14px 18px;
      text-align: center;
      display: flex; flex-direction: column; align-items: center;
      flex: 1;
      border-top: 1px solid #e8d5a8;
    }

   .card-icon {
    margin-bottom: 5px;
    display: block;
    margin-top: -30px;
    z-index: 999;
}

.card-icon-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s;
}

.col-card:hover .card-icon-img {
    transform: scale(1.25) rotate(12deg);
}

    .card-title {
     
      font-size: clamp(18px, 2.5vw, 23px);
      letter-spacing: 5px;
      color: #1a3a1a;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .card-subtitle {
     
      font-size: clamp(13px, 1.8vw, 15.5px);
      color: #c9973a;
      font-style: italic;
      font-weight: 500;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    .card-rule {
      width: 50px; height: 1px;
      background: #d4a853;
      margin: 0 auto 14px;
    }

    .card-desc {
      font-size: clamp(12.5px, 1.6vw, 14px);
      color: #7a6a4a;
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 10px;
      flex: 1;
    }

    /* ─── BUTTON ─── */
    .card-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 16px 24px;
      background: #1A3B2C;
      color: #e8d5a8;
      border: 1.5px solid #1A3B2C;
      border-radius: 2px;
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
     
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s, color 0.3s, border-color 0.3s,
                  transform 0.22s, box-shadow 0.3s;
    }
    .card-btn:hover {
      background: #c9973a;
      border-color: #c9973a;
      color: #fff;
      transform: scale(1.05);
      box-shadow: 0 5px 18px rgba(201,151,58,0.38);
    }
    .card-btn i { font-size: 15px; transition: transform 0.3s; }
    .card-btn:hover i { transform: translateX(5px); }

    /* ─── ENTRANCE ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .col-card:nth-child(1) { animation: fadeUp 0.65s 0.1s both ease-out; }
    .col-card:nth-child(2) { animation: fadeUp 0.65s 0.28s both ease-out; }
    .col-card:nth-child(3) { animation: fadeUp 0.65s 0.46s both ease-out; }

    @keyframes headerFade {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .col-header { animation: headerFade 0.7s 0.05s both ease-out; }

    /* ─── RESPONSIVE: TABLET ─── */
    @media (max-width: 900px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
      }
      .col-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
      }
    }

    /* ─── RESPONSIVE: MOBILE ─── */
    @media (max-width: 600px) {
      .cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 16px;
      }
      .col-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
        margin: 0;
      }
      .card-img-wrap { height: 200px; }
      .col-header { padding: 8px 16px 24px; }
      .col-section { padding-bottom: 56px; }
    }
    
    






/* ─── SECTION ─────────────────────────────────────────── */
    .wedding-section {
      position: relative;
      display: flex;
      align-items: stretch;
      min-height: 600px;
      overflow: hidden;
      padding: 30px 100px;
      background-color: bisque;
    }

    /* ─── LEFT CONTENT CARD ───────────────────────────────── */
    .wedding-content {
      position: relative;
      z-index: 2;
      
      padding: 30px 50px 60px 30px;
      width: 44%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .wedding-content h2 {
  
      font-size: 30px;
      font-weight: 400;
      color: #1a1a1a;
      line-height: 1.1;
      margin-bottom: 10px;
       z-index:999;
    }
    .wedding-content h5 {
  
      font-size: 13px;
      color:#0D4A3E;
       z-index:999;
       margin-bottom: 5px;
    }

    .wedding-content p {
      font-size: 13px;
      line-height: 1.75;
      color: #444;
      margin-bottom: 5px;
       z-index:999;
    }

    .wedding-content2 p strong {
      font-weight: 600;
      color: #1a1a1a;
    }

    .wedding-content2 {
      position: relative;
      z-index: 2;
      padding: 10px 27px 7px 23px;
      width: 44%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .wedding-content2 h2 {
      font-size: 30px;
      font-weight: 400;
      color: #1a1a1a;
      line-height: 1.1;
      margin-bottom: 10px;
       z-index:999;
    }
     .wedding-content2 h5 {
      font-size: 13px;
      color:#0D4A3E;
       z-index:999;
       margin-bottom: 5px;
    }

    .wedding-content2 p {
     font-size: 13px;
      line-height: 1.75;
      color: #444;
      margin-bottom: 5px;
       z-index:999;
    }

    .wedding-content2 p strong {
      font-weight: 600;
      color: #1a1a1a;
    }

    .btn-gallery {
      display: inline-block;
      margin-top: 10px;
      padding: 14px 32px;
      background: #f0c020;
      color: #1a1a1a;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease;
       z-index:999;
      align-self: flex-start;
    }

    .btn-gallery:hover {
      background: #d9ac10;
    }

    /* ─── RIGHT IMAGE ─────────────────────────────────────── */
    .wedding-image {
      position: relative;
      flex: 1;
      overflow: hidden;
    }

    .wedding-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* Overlay blending the card with the image */
    .wedding-content::after {
      content: '';
      position: absolute;
      top: 10%;
      right: -80px;
      width: 550px;
      height: 80%;
      background: #f5f4f0;
      opacity: 0.55;
      z-index: 1;
      pointer-events: none;
    }

     .wedding-content2::after {
      content: '';
    position: absolute;
    top: 10%;
    right: -8px;
    width: 558px;
    height: 80%;
      background: #f5f4f0;
      opacity: 0.55;
      z-index: 1;
      pointer-events: none;
    }

    /* ─── TABLET  (max 1024px) ────────────────────────────── */
    @media screen and (max-width: 1024px) {
      .wedding-content {
        width: 50%;
        padding: 50px 40px;
      }

      .wedding-content h1 {
        font-size: 42px;
      }

      .wedding-content2 {
        width: 50%;
        padding: 50px 40px;
      }

      .wedding-content2 h1 {
        font-size: 42px;
      }


    }

    /* ─── SMALL TABLET (max 768px) ───────────────────────── */
    @media screen and (max-width: 768px) {
      .wedding-section {
        flex-direction: column;
        min-height: auto;
      }

      .wedding-image {
        width: 100%;
        height: 420px;
        order: -1;
      }

      .wedding-content {
        width: 100%;
        padding: 44px 36px;
      }

      .wedding-content::after {
        display: none;
      }

      .wedding-content h1 {
        font-size: 38px;
      }

      .wedding-content2 {
        width: 100%;
        padding: 44px 36px;
      }

      .wedding-content2::after {
        display: none;
      }

      .wedding-content2 h1 {
        font-size: 38px;
      }

    }

    /* ─── MOBILE (max 480px) ─────────────────────────────── */
    @media screen and (max-width: 480px) {
      .wedding-image {
        height: 280px;
      }

      .wedding-content {
        padding: 36px 24px;
      }

      .wedding-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
      }

      .wedding-content p {
        font-size: 14px;
      }

      .wedding-content2 {
        padding: 36px 24px;
      }

      .wedding-content2 h1 {
        font-size: 32px;
        margin-bottom: 20px;
      }

      .wedding-content2 p {
        font-size: 14px;
      }

      .btn-gallery {
        padding: 13px 28px;
        font-size: 12px;
      }
    }

    /* ─── VERY SMALL (max 360px) ─────────────────────────── */
    @media screen and (max-width: 360px) {
      .wedding-content h1 {
        font-size: 28px;
      }

      .wedding-content {
        padding: 28px 18px;
      }

      .wedding-content2 h1 {
        font-size: 28px;
      }

      .wedding-content2::after {
        padding: 28px 18px;
      }
    }
    
    
    
    
    
  /* ---- Shop Section Wrapper ---- */
    .shop-section {
      padding: 60px 20px;
      background: #f9f9f9;
    }

    .shop-wrap {
      display: flex;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: flex-start;
    }

    /* ---- Left Column (70%) ---- */
    .products-col {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .products-header {
      margin-bottom: 4px;
    }

    .section-title {
      font-size: 26px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 6px;
    }

    .section-sub {
      font-size: 14px;
      color: #666;
    }

    /* ---- Controls Bar ---- */
    .shop-controls {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .results-info {
      font-size: 13px;
      color: #555;
    }

    .ctrl-select {
      font-size: 13px;
      padding: 7px 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      background: #fff;
      cursor: pointer;
      transition: border-color 0.2s;
    }

    .ctrl-select:focus {
      border-color: #1a6fc4;
      outline: none;
    }

    .search-box {
      display: flex;
      margin-left: auto;
      border: 1px solid #ccc;
      border-radius: 6px;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .search-box:focus-within {
      border-color: #1a6fc4;
    }

    .search-box input {
      border: none;
      padding: 7px 12px;
      font-size: 13px;
      outline: none;
      width: 160px;
      background: #fff;
    }

    .search-box button {
      background: #1a6fc4;
      color: #fff;
      border: none;
      padding: 7px 13px;
      cursor: pointer;
      display: flex;
      align-items: center;
      transition: background 0.2s;
    }

    .search-box button:hover {
      background: #145aa0;
    }

    /* ---- Product Grid ---- */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* ---- Product Card ---- */
    .product-card {
      border: 1px solid #0D4A3E;
     
      overflow: hidden;
      background: #fff;
      display: flex;
      flex-direction: column;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .product-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
      border-color: #0D4A3E;
    }

    .product-img-wrap {
      height: 250px;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .product-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.35s ease;
    }

    .product-card:hover .product-img-wrap img {
      transform: scale(1.08);
    }

    .product-info {
      padding: 14px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .product-name {
      font-size: 14px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 6px;
    }

    .product-desc {
      font-size: 12.5px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 10px;
      flex: 1;
    }

    /* ---- Product Button ---- */
    .product-btn {
      display: block;
      background: #0D4A3E;
      color: #fff;
      text-align: center;
      padding: 15px 0;
      
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.15s;
    }

    .product-btn:hover {
      background: #F8B71E;
      transform: scale(1.03);
    }

    .product-btn:active {
      transform: scale(0.97);
    }

    /* ---- Pagination ---- */
    .pagination {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .page-btn {
      border: 1px solid #ddd;
      background: #fff;
      width: 36px;
      height: 36px;
      border-radius: 6px;
      font-size: 13px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .page-btn:hover,
    .page-btn.active {
      background: #F2B41F;
      color: #fff;
      border-color: #F2B41F;
    }

    /* ---- Right Sidebar (28%) ---- */
    .sidebar-col {
      width: 280px;
      flex-shrink: 0;
    }

    .sidebar-box {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 18px 20px;
      background: #fff;
      margin-bottom: 22px;
    }

    .sidebar-heading {
      font-size: 15px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid #0D4A3E;
    }

    /* ---- Category List ---- */
    .cat-list {
      list-style: none;
    }

    .cat-list li {
      padding: 9px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: padding-left 0.2s;
    }

    .cat-list li:last-child {
      border-bottom: none;
    }

    .cat-list li:hover {
      padding-left: 6px;
    }

    .cat-list li a {
      color: #444;
      text-decoration: none;
      transition: color 0.2s;
    }

    .cat-list li:hover a {
      color: #0D4A3E;
    }

    .cat-badge {
      background: #eef3fc;
      color: #0D4A3E;
      font-size: 11px;
      padding: 2px 9px;
      border-radius: 20px;
      font-weight: 600;
    }

    /* ---- Popular Posts ---- */
    .popular-post {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 8px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s;
      margin-bottom: 4px;
    }

    .popular-post:hover {
      background: #f4f8ff;
    }

    .post-thumb {
      width: 58px;
      height: 58px;
      border-radius: 7px;
      object-fit: cover;
      flex-shrink: 0;
      background: #eee;
    }

    .post-title {
      font-size: 12px;
      font-weight: 600;
      color: #1a1a1a;
      line-height: 1.5;
      margin-bottom: 3px;
    }

    .post-meta {
      font-size: 11px;
      color: #999;
    }

    /* ---- MEDIA QUERIES ---- */
    @media (max-width: 1024px) {
      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 900px) {
      .shop-wrap {
        flex-direction: column;
      }

      .products-col,
      .sidebar-col {
        width: 100%;
      }

      .sidebar-col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .sidebar-box {
        margin-bottom: 0;
      }

      .product-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 700px) {
      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .sidebar-col {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .product-grid {
        grid-template-columns: 1fr;
      }

      .shop-controls {
        flex-direction: column;
        align-items: flex-start;
      }

      .search-box {
        margin-left: 0;
        width: 100%;
      }

      .search-box input {
        flex: 1;
        width: auto;
      }

      .section-title {
        font-size: 20px;
      }
    }
    
    
    
    
    
    
/* =========================================================
   gallery.css  —  Impress Decors Gallery + Lightbox
   ========================================================= */

/* ── Section wrapper ──────────────────────────────────── */
.gallery-section {
   
    padding: 80px 60px;
}

/* ── Heading block ────────────────────────────────────── */
.gallery-heading-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.gallery-subtitle {
    font-size: 15px;
    color: #aaa;
    margin: 0 0 20px;
    letter-spacing: 1px;
}

.gallery-divider {
    width: 70px;
    height: 3px;
    background: #e8bd4f;   /* matches your brand gold */
    margin: 0 auto;
    border-radius: 2px;
}

/* ── Grid — 4 columns ─────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ── Individual item ──────────────────────────────────── */
.gallery-item {
    position: relative;
    overflow: hidden;
   
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: #1a1a1a;

    /* entry animation */
    opacity: 0;
    transform: translateY(30px);
    animation: galleryFadeIn 0.6s ease forwards;
}

/* staggered entry delay for each card */
.gallery-item:nth-child(1)  { animation-delay: 0.05s; }
.gallery-item:nth-child(2)  { animation-delay: 0.10s; }
.gallery-item:nth-child(3)  { animation-delay: 0.15s; }
.gallery-item:nth-child(4)  { animation-delay: 0.20s; }
.gallery-item:nth-child(5)  { animation-delay: 0.25s; }
.gallery-item:nth-child(6)  { animation-delay: 0.30s; }
.gallery-item:nth-child(7)  { animation-delay: 0.35s; }
.gallery-item:nth-child(8)  { animation-delay: 0.40s; }
.gallery-item:nth-child(9)  { animation-delay: 0.45s; }
.gallery-item:nth-child(10) { animation-delay: 0.50s; }
.gallery-item:nth-child(11) { animation-delay: 0.55s; }
.gallery-item:nth-child(12) { animation-delay: 0.60s; }

@keyframes galleryFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

/* ── Hover overlay (black opacity) ───────────────────── */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
}

.gallery-overlay i {
    font-size: 32px;
    color: #e8bd4f;
    opacity: 0;
    transform: scale(0.6) rotate(-10deg);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.50);
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* gold bottom-border reveal on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #e8bd4f;
    transition: width 0.4s ease;
}

.gallery-item:hover::after {
    width: 100%;
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

/* dark backdrop */
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* container holds everything above backdrop */
.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ── Image wrapper (draggable) ───────────────────────── */
.lightbox-img-wrap {
    position: relative;
    z-index: 2;
    cursor: grab;
    user-select: none;
    max-width: 90vw;
    max-height: 85vh;
    transition: transform 0.25s ease;
}

.lightbox-img-wrap.dragging {
    cursor: grabbing;
    transition: none;
}

.lightbox-img-wrap img {
    display: block;
    max-width: 90vw;
    max-height: 82vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transform-origin: center center;
    transition: transform 0.3s ease;
    pointer-events: none;
    /* entry pop */
    animation: lbImagePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes lbImagePop {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

/* ── Caption ─────────────────────────────────────────── */
.lightbox-caption {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(0,0,0,0.6);
    color: #e8bd4f;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid rgba(232, 189, 79, 0.4);
    white-space: nowrap;
}

/* ── Top control buttons ─────────────────────────────── */
.lightbox-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lb-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.lb-btn:hover {
    background: rgba(232, 189, 79, 0.2);
    border-color: #e8bd4f;
    color: #e8bd4f;
    transform: scale(1.1);
}

.lb-btn:active {
    transform: scale(0.95);
}

.lb-close {
    background: rgba(200, 30, 30, 0.2);
    border-color: rgba(200, 30, 30, 0.4);
}

.lb-close:hover {
    background: rgba(200, 30, 30, 0.5);
    border-color: #c81e1e;
    color: #fff;
}

/* ── Prev / Next arrows ──────────────────────────────── */
.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-arrow:hover {
    background: rgba(232, 189, 79, 0.25);
    border-color: #e8bd4f;
    color: #e8bd4f;
}

.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }

/* ── Counter ─────────────────────────────────────────── */
.lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    letter-spacing: 1px;
}


/* =========================================================
   RESPONSIVE — media queries
   ========================================================= */

/* Tablet landscape: 3 columns */
@media (max-width: 1024px) {
    .gallery-section {
        padding: 60px 30px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .gallery-title {
        font-size: 34px;
    }
}

/* Tablet portrait: 2 columns */
@media (max-width: 768px) {
    .gallery-section {
        padding: 50px 20px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-title {
        font-size: 28px;
    }
    .lb-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    .lb-prev { left: 12px; }
    .lb-next { right: 12px; }
    .lightbox-controls {
        top: 12px;
        right: 12px;
        gap: 8px;
    }
    .lb-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 14px;
    }
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
    .gallery-title {
        font-size: 24px;
    }
    .gallery-item {
        aspect-ratio: 16 / 9;
    }
    .lightbox-img-wrap img {
        max-width: 96vw;
        max-height: 70vh;
    }
    .lightbox-caption {
        font-size: 12px;
        bottom: 50px;
    }
}
