  @import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Rokkitt:ital,wght@0,100..900;1,100..900&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Rokkitt:ital,wght@0,100..900;1,100..900&display=swap');

  :root {
      --bg: hsl(220 20% 6%);
      --surface: hsl(220 25% 12% / 0.7);
      --card: hsl(220 22% 14% / 0.8);
      --text: hsl(0 0% 98%);
      --muted: hsl(220 10% 70%);
      --brand: hsl(265 85% 62%);
      --brand-2: hsl(195 100% 50%);
      --ring: hsl(265 90% 70% / 0.6);
      --shadow: 0 10px 30px hsl(220 40% 2% / 0.5);
      --radius: 16px;
      --transition: 200ms ease;
      --container: 1200px;
    }

    @media (prefers-color-scheme: light) {
      :root {
        --bg: hsl(0 0% 99%);
        --surface: hsl(0 0% 100% / 0.75);
        --card: hsl(0 0% 100% / 0.9);
        --text: hsl(240 10% 8%);
        --muted: hsl(240 5% 45%);
        --brand: hsl(265 75% 45%);
        --brand-2: hsl(195 100% 40%);
        --ring: hsl(265 85% 60% / 0.35);
        --shadow: 0 10px 30px hsl(220 20% 50% / 0.15);
      }
    }

    * { box-sizing: border-box; 
    }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      color: var(--text);
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      /*background:
        radial-gradient(60% 80% at 10% 0%, hsl(265 90% 60% / .15), transparent 60%),
        radial-gradient(80% 60% at 100% 10%, hsl(195 100% 50% / .15), transparent 60%),
        var(--bg);*/
    }
/*----------navbar start----------*/
    .container { max-width: var(--container); margin-inline: auto; padding-inline: 16px; }

    /* Header Shell */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: saturate(140%) blur(10px);
      -webkit-backdrop-filter: saturate(140%) blur(10px);
      box-shadow: var(--shadow);
    }

    .glass { background: #fff; border: 1px solid hsla(0, 0%, 0%, 0.06); }

    /* Top line: logo + icons */
    .topbar-container {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 16px;
      padding: 10px;
    }
    .topbar {
     background: #fff;
      border-bottom: 1px solid rgba(128, 0, 0, 0.2) ;
    }
    .logo {
      display: inline-flex; align-items: center; gap: 10px;
      text-decoration: none; color: var(--text);
      font-weight: 800; letter-spacing: 0.5px; font-size: 1.2rem;
    }
    .logo-mark { width: 28px; 
        height: 28px;
        display: grid; 
        place-items: center; 
        border-radius: 8px;
        /* background: linear-gradient(135deg, var(--brand), var(--brand-2)); 
         box-shadow: 0 6px 20px hsl(265 90% 55% / .5); */}
    .logo-text { font-variation-settings: "wght" 800; }

    .actions { display: inline-flex; align-items: center; gap: 4px; }

    .icon-btn {
      border: 0; background: transparent; color:black;
      padding: 10px; border-radius: 14px; cursor: pointer;
      transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    }
    .icon-btn:hover { background: hsl(0 0% 100% / 0.06); }
    .icon-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }
    .icon { width: 22px; height: 22px; display: block; }

    .icon-group { 
        display: block;

     }
     @media screen and (max-width: 500px) {
      .icon-group { 
        display: none;}
       .icon-groups { 
        display: block !important;}
     }
     .icon-groups { 
        display: none ;}
      

    /* Hamburger shows on small screens */
    .menu-toggle { display: none; }

    /* Second line: primary menu */
    .menubar {
      overflow: hidden;
      transition: grid-template-rows var(--transition), height var(--transition);
    }
    .menubar-inner {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
      padding: 4px 0 12px 0;
    }

    .menu { list-style: none; display: flex; gap: 6px; padding: 0; margin: 0; }
    .menu > li { position: relative; }
    .menu-link {
      --pad-x: 14px;
      --pad-y: 10px;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; color: black;
      padding: var(--pad-y) var(--pad-x);
      border-radius: 12px;
      font-weight: 600; letter-spacing: .2px;
      position: relative;
    }
    .menu-link:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }

    /* Fancy underline on hover/active */
    .menu-link::after {
      content: "";
      position: absolute; left: 10px; right: 10px; bottom: 6px;
      height: 2px; border-radius: 2px;
      background-color: rgba(128, 0, 0, 0.2);
      transform: scaleX(0); transform-origin: left;
      transition: transform 180ms ease;
    }
    .menu-link:hover::after, .menu-link[aria-current="page"]::after { transform: scaleX(1); }

    /* Chip-like background on hover */
    .menu-link:hover { background: hsl(0 0% 100% / .05); }
    .menu-link[aria-current="page"] { background: linear-gradient(180deg, hsl(0 0% 100% / .06), hsl(0 0% 100% / .02)); }

    /* Search (optional quick filter) */
    .search-wrap { position: relative; flex: 1; max-width: 300px; }
    .search-input {
      width: 100%;
      background: #fff;
      border: 1px solid hsl(0 0% 100% / .08);
      color: var(--text);
      border-radius: 14px;
      padding: 10px 14px 10px 36px;
      outline: none;
      transition: box-shadow var(--transition), border-color var(--transition);
    }
    .search-input:focus { box-shadow: 0 0 0 3px var(--ring); border-color: transparent; }
    .search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; opacity: .7; }

    /* Responsive */
    @media (max-width: 860px) {
      .menubar-collapsible { height: 0; }
      .menu-toggle { display: inline-flex; }
      .menubar.open { height: var(--menuHeight, auto); }
      .menubar-inner { padding: 8px 0 12px; }
      .menu { flex-direction: column; gap: 2px; padding: 8px; background: #fff; border-radius: 16px; border: 1px solid hsl(0 0% 100% / .06); }
      .search-wrap { order: -1; width: 100%; max-width: none; }
      .menu-link { width: 100%; }
    }

    @media (min-width: 861px) {
      .menubar { height: auto !important; }
      .menu-toggle { display: none !important; }
    }

    /* Scroll style when header shrinks */
    .scrolled .topbar { padding: 6px 0; }

    /* Demo content */
    .demo {
      padding: 40px 16px 120px;
      max-width: var(--container);
      margin: 0 40px;
      line-height: 1.65;
      color: var(--muted);
    }
    .demo h1 { color: var(--text); letter-spacing: .3px; }
    /*----------Navbar end----------*/

   
/*----------banner section start----------*/


.banner {
position: relative;
display: flex;
align-items: center;
justify-content: flex-start;
background: url('../img/ce2a1c0cc2852d05651f36740c3f3b97bc85659c.jpg') no-repeat center center/cover;
height: 100vh;
color: #fff;
padding: 20px 8%;
background-repeat: no-repeat;
background-position: top;
}


.banner-content {
max-width: 1200px;
padding: 20px;
border-radius: 8px;
font-family: 'Inria Serif', serif;
font-size: 1.2rem;
transition: transform 0.3s ease;
transform: translateY(0);
font-weight: 700;
font-style: bold;

}


.banner h1 {
font-size: 3rem;
line-height: 1.2;
margin-bottom: 20px;
}


.banner .banner-p {
font-size: 1.1rem;
margin-bottom: 20px;
}

.btn-groups {
    display: block;
}
 @media screen and (max-width: 400px) {
      .btn-groups { 
        display: none;}
     }

.btn-group {
display: flex;
gap: 15px;
}


.banner-btn  {
background: #8c2ba7;
color: #fff;
border: none;
padding: 12px 24px;
font-size: 1rem;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;

font-family: 'Inria Sans', sans-serif;
}
.banner-btn:hover {
background: #6a1c82;
}


@media (max-width: 768px) {
.banner h1 {
font-size: 2rem;
}


.banner-content {
max-width: 90%;
margin-left: -20px;
}


.btn-group {
flex-direction: column;
}
}
.arrow-icon {
margin-left: 10px;
}
.r-arrow-icon {
    width: 16px;
    height: 16px;
    fill: #fff;
    transition: transform 0.3s ease;
    margin-left: 5px;
    
}
/*----------banner section end----------*/ 

/*----------about section start----------*/ 
.about-section {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
padding: 80px 8%;
background: #fff;
}


.about-text {
   font-family: 'Inria Serif', serif;
flex: 1 1 296px;
padding-right: 40px;
margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
.about-text {
    padding-right: 0;
    }
  
}

.about-text h5 {
  font-family: 'Inria Serif', serif;
font-size: 1rem;
margin: 0 0 10px;
color: #444;
}


.about-text h2 {
font-size: 2.2rem;
margin: 0 0 20px;
color: #8c2ba7; /* brand color */
}


.about-text p {
font-size: 1rem;
color: #444;
}


.about-images {
flex: 1 1 500px;
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
}


.about-images img {
width: 161px;
height: auto;
border-radius: 5px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 425px) {
.about-images img {
    width: 168px;
    }
  
}
@media screen and (max-width: 400px) {
.about-images img {
    width: 124px;
    }
  
}


    /* Diamond line */

    .diamond-line {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0px 0px 15px 0;
    }

    .diamond-line::before,
    .diamond-line::after {
      content: "";
      width: 8px;
      height: 8px;
      background: orange;
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    .diamond-line span {
      flex-grow: 1;
      height: 4px;
      background: orange;
    }

    .diamond-lines {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 15px 0px 0px 0;
    }

    .diamond-lines::before,
    .diamond-lines::after {
      content: "";
      width: 8px;
      height: 8px;
      background: orange;
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    .diamond-lines span {
      flex-grow: 1;
      height: 4px;
      background: orange;
    }
    .image-4 {
    display: block;
}
 @media screen and (max-width: 1024px) {
      .image-4 { 
        display: none;}
     }

         .image-3 {
    display: block;
}
 @media screen and (max-width: 600px) {
      .image-3 { 
        display: none;}
     }

/*----------about section end----------*/

/*----------collections section start----------*/

    .collections {
       font-family: 'Inria Serif', serif;
      text-align: center;
      padding: 50px 8%;
      background: rgba(163, 36, 143, 0.05); /* Purple background */
      color: rgba(154, 35, 125, 1); /* Dark text color */
    }

    .collections h2 {
      font-family: 'Inria Serif', serif;
      font-size: 2.2rem;
      margin-bottom: 15px;
      color: rgba(154, 35, 125, 1); /* Dark text color */
      font-weight: bold;
    }

    /* Diamond line */
    .collections-diamond-line {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 10px auto 20px;
      width: 200px;
    }
    .collections-diamond-line::before,
    .collections-diamond-line::after {
      content: "";
      width: 10px;
      height: 10px;
      background: orange;
      transform: rotate(45deg);
      flex-shrink: 0;
    }
    .collections-diamond-line span {
      flex-grow: 1;
      height: 3px;
      background: orange;
    }

    .collections .collections-p {
      font-size: 1rem;
      max-width: 600px;
      margin: 0 auto 40px;
      color: #000;
    }

    /* Cards grid */
    .collection-grid {
      display: grid ;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }
   @media screen and (max-width: 500px) {
       .collection-grid {
           display:flex;
       }
   }

    .card {
      text-align: left;
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      background: #fff;
      color: #000;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      
      height: 400px;
    }
    @media screen and (max-width: 1024px) {
    .card {
        
      height: 350px;}
      
    }
    @media screen and (max-width: 768px) {
    .card {
      
      height: 320px;}
      
    }

    .card .img {
     
      display: block;
    }

    .card .info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 15px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
      color: #fff;
    }

    .card .info .h3 {
      margin: 0 0 10px;
      font-size: 1rem;
    }

    .card .info .btn {
      display: inline-block;
      
      background: #9C2780;
      color: #fff;
      font-size: 0.9rem;
      text-decoration: none;
      border-radius: 3px;
      transition: background 0.3s;
    }

    .card .info .btn:hover {
      background: #7d1f67;

    }

    .card:hover {
      transform: translateY(-15px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    .cards-4 {
    display: block;
}
 @media screen and (max-width: 1025px) {
      .cards-4 { 
        display: none;}
     }
   .cards-3 {
    display: block;
}
 @media screen and (max-width: 750px) {
      .cards-3 { 
        display: none;}
     }

    

         .collections-p {
    display: block;
}
 @media screen and (max-width: 600px) {
      .collections-p { 
        display: none;}
     }
/*----------collections section end----------*/


/*----------Wedding section start----------*/

    .Wedding-collections {
      text-align: center;
      padding: 60px 8%;
    }

    .Wedding-collections .w-h2 {
      font-family: 'Inria Serif', serif;
      font-size: 2rem;
      margin-bottom: 15px;
      color: #9C2780; /* Purple heading */
      font-weight: bold;
    }

    /* Diamond line */
    .w-diamond-line {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 10px auto 20px;
      width: 220px;
    }
    .w-diamond-line::before,
    .w-diamond-line::after {
      content: "";
      width: 10px;
      height: 10px;
      background: orange;
      transform: rotate(45deg);
      flex-shrink: 0;
    }
    .w-diamond-line span {
      flex-grow: 1;
      height: 3px;
      background: orange;
    }

    .w-collections .w-p {
      font-size: 1rem;
      max-width: 700px;
      margin: 0 auto 40px;
      color: #333;
    }
    .w-p {
      margin-bottom: 1.5rem;
    }
      .w-p {
    display: block;
}
 @media screen and (max-width: 600px) {
      .w-p { 
        display: none;}
     }

    /* Image Grid */
    .w-collection-grid {
      display: flex;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
     
    }

    .w-card {
      overflow: hidden;
      border-radius: 6px;
      background: #fff;
      width:100%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .w-card .w-img {
      width:100%;
      display: block;
      border-radius: 6px;
    }

    .w-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    
/*----------Wedding section end----------*/


/*----------gallery section start----------*/

    .g-wedding-section {
      text-align: center;
      padding: 50px 0px;
    }

    .g-wedding-section .g-h2 {
     font-family: 'Inria Serif', serif;
      font-size: 2rem;
      margin-bottom: 15px;
      color: #8A2E74; /* Purple heading */
      font-weight: bold;
    }

    /* Diamond line */
    .g-diamond-line {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 15px auto 30px;
      width: 260px;
    }
    .g-diamond-line::before,
    .g-diamond-line::after {
      content: "";
      width: 12px;
      height: 12px;
      background: orange;
      transform: rotate(45deg);
      flex-shrink: 0;
    }
    .g-diamond-line span {
      flex-grow: 1;
      height: 3px;
      background: orange;
    }

    /* Image Row 
    .g-wedding-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0px;
      padding: 0 0px;
    }

    .g-wedding-gallery .g-img {
      width: 100%;
      height: auto;
      border-radius: 0px;
      display: block;
    }

          .g-g {
    display: block;
}
 @media screen and (max-width: 1024px) {
      .g-g { 
        display: none;}
     }*/
     .slider {
  display: flex;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 2.5rem;
}
.item {
  animation: animate 25s linear infinite;
}
.item .item-img
  {
    min-width: 200px;
    padding: 0 0px;
  }
.slider:hover .item {
  animation-play-state: paused;
}
@keyframes animate {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1800px, 0, 0);
  }
}

/*----------gallery section end----------*/


/*----------brands section start----------*/
    .brands-section {
      background: rgba(163, 36, 143, 0.05); /* Purple background */
      padding: 40px 20px;
      text-align: center;
    }

    .brands-logos {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;

    }
    
     @media screen and (max-width: 426px) {
      .brands-logos {
       gap: 10px;
      
      }
      
    }

    .brands-logos .brands-img {
      max-width: 180px;
      height: auto;
      object-fit: contain;    
      border-radius: 6px;
      padding: 10px;
    }
 
    @media screen and (max-width: 768px) {
      .brands-logos .brands-img {
       max-width: 120px;
       padding: 0%;
      } 
    }
     @media screen and (max-width: 425px) {
      .brands-logos .brands-img {
       max-width: 90px;
       padding: 0%;
      }
      
    }

    .brands-img {
      transition: transform 0.3s ease;
      filter: grayscale(100%);
      width: 113px;
     
    }
    .brands-img:hover {
      filter: grayscale(0%);
    }
    @media screen and (max-width: 768px) {
      .brands-img {
       width: 100px;
      }
      
    }
     @media screen and (max-width: 426px) {
      .brands-img {
       width: 68px;
      }
      
    }
    @media screen and (max-width: 376px) {
      .brands-img {
       width: 49px;
      }
      
    }
    @media screen and (max-width: 322px) {
      .brands-img {
       width: 40px;
      }
      
    }

    .brands-logos .brands-img:hover {
      transform: scale(1.05);
    }
    /*----------brands section end----------*/


/*----------.testimonial section start----------*/

    .testimonial-section {
      padding: 60px 15%;
      text-align: center;
    }
    @media screen and (max-width: 1024px) {
      .testimonial-section {
       padding: 60px 7%;
      }
      
    }
    @media screen and (max-width: 768px) {
      .testimonial-section {
       padding: 60px 5%;
      }
      
    }
    .testimonial-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      padding: 40px 20px;
      flex-wrap: wrap;
    }

    .testimonial-header .testimonial-h2 {
      font-family: 'Inria Serif', serif;
      font-size: 32px;
      font-weight: bold;
      color: #9C2780; /* purple */
      margin: 0;
      white-space: nowrap;
    }

    .divider {
      display: flex;
      align-items: center;
      flex: 1;
      max-width: 300px;
    }

    .divider-line {
      flex: 1;
      height: 2px;
      background: orange;
    }

    .testimonial-diamond {
      width: 10px;
      height: 10px;
      background: orange;
      transform: rotate(45deg);
    }

    .add-yours {
      font-size: 16px;
      font-weight: bold;
      color: #000;
      white-space: nowrap;
    }

    .testimonial-header input {
      border: 1px solid #9C2780;
      padding: 8px 12px;
      outline: none;
      font-size: 14px;
      min-width: 180px;
    }


    .testimonial-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

   .testimonial-card {
      background: #9C2780;
      color: #fff;
      padding: 20px;
      border-radius: 4px;
      text-align: left;
    }

  .testimonial-card-header {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .card-header .testimonial-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .testimo-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .testimonial-card .testimonial-strong {
      font-size: 16px;
      display: block;
    }

    .testimonial-card .testimonial-h4 {
      margin: 5px 0;
      font-size: 18px;
      font-weight: bold;
    }

    .testimonial-card .testimonial-.testimonial-p {
      font-size: 14px;
      line-height: 1.5;
    }

    .testimonial-card:hover {
      background: #7d1f67;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .testimonial-card:active {
      transform: scale(0.98);
    }
    /*----------.testimonial section end----------*/

    /* Hero Image */
    .hero {
      width: 100%;
      height: 100%;
      background: url('../img/Frame\ 127.png') no-repeat center center/cover;
    }

    

 /*----------Branch section start----------*/

     .branches {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 50px 20px;
      flex-wrap: wrap;
    }

    .branch-card {
      background: #fbefff; /* Light pink */
      border-radius: 10px;
      padding: 20px;
      width: 280px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: left;
    }

    .branch-card .branch-h3 {
      display: flex;
      align-items: center;
      font-size: 1.2rem;
      margin: 0 0 15px 0;
      font-weight: bold;
    }

    .branch-card .branch-h3::before {
      margin-right: 8px;
      font-size: 1.3rem;
    }

    .branch-info {
      display: flex;
      align-items: center;
      margin: 8px 0;
      font-size: 0.95rem;
    }
    .branch-location {
      margin-right: 7px;
      margin-left: 7px;
    }

    .branch-info .branch-span {
      margin-left: 5px;
    }

    .map-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 15px;
      border: 1px solid rgba(128, 0, 0, 0.5);
      color: black;
      font-weight: bold;
      text-decoration: none;
      padding: 10px;
      border-radius: 6px;
      transition: 0.3s;
    }

    .map-btn:hover {
      background: rgba(163, 36, 143, 0.05);
      ;
    }

    .map-btn::after {
      
      margin-left: 8px;
    }

    /* Responsive */
    @media(max-width: 900px) {
      .branches {
        flex-direction: column;
        align-items: center;
      }
    }
    .branch-call {
      margin-left: 7px;
    }
    /*----------Branch section end----------*/
/*----------footer section start----------*/ /* 


    .footer-col */.footer-h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
    }


    /* Quick links */
    .quick-links .footer-a {
      display: block;
      margin-bottom: 10px;
      text-decoration: none;
      color: #fff;
      font-size: 0.95rem;
      transition: 0.3s;
    }

    .quick-links .footer-a:hover {
      color: #ffcc00;
    }

    /* Contact */
    .contact-info {
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .contact-info .footer-i {
      margin-right: 10px;
      color: #ffcc00;
    }

    .social-icons {
      float: right;
      margin-top: 40px;
    }

    .social-icons .social-a {
      display: inline-block;
      margin-right: 15px;
      font-size: 1.4rem;
      color: #fff;
     
      border-radius: 5px;
      padding: 6px 8px;
      transition: 0.3s;
    }

    .social-icons .social-a:hover {
      background: #fff;
      color: #92278f;
    }

   


     .frame {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #92278f;  /* Purple background */
      color: #fff;
      padding: 50px 80px;
      
}


.frame .div {
  display: flex;
  width: 1271px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -21.00px;
  margin-bottom: -21.00px;
  margin-left: -12.00px;
  margin-right: -12.00px;
}

 .div-2 {
  display: flex;
  width: 318px;
  align-items: center;
  position: relative;
  margin-left: -151.56px;
  transform: rotate(-90.00deg);
}

.frame .div-3 {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #ffa60e;
  border-radius: 2px;
  transform: rotate(47.67deg);
}

.frame .line {
  position: relative;
  width: 2px;
  height: 300px;
  margin-top: -142.94px;
  margin-bottom: -142.94px;
  margin-left: -5px;
  transform: rotate(90.00deg);
}

.frame .div-4 {
  position: relative;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background-color: #ffa60e;
  border-radius: 2px;
  transform: rotate(47.67deg);
}

.frame .frame-wrapper {
  display: flex;
  width: 1174px;
  align-items: center;
  gap: 180px;
  position: relative;
}

.frame .div-5 {
  display: flex;
  flex-direction: column;
  width: 1174px;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.frame .div-6 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .div-wrapper {
  display: flex;
  flex-direction: column;
  width: 368px;
  align-items: flex-start;
  gap: 39px;
  position: relative;
}

.frame .div-7 {
  display: flex;
  flex-direction: column;
  width: 311px;
  align-items: flex-start;
  gap: 21px;
  position: relative;
  flex: 0 0 auto;
}

.frame .div-8 {
    display: inline-flex
;
    height: 45px;
    align-items: center;
    justify-content: center;
    /* gap: 10px; */
    /* padding: 10px; */
    position: relative;
    /* background-color: #ffffff;*/
}

.frame .image-wrapper {
     display: flex
;
    /* width: 37px; */
    /* height: 36px; */
    align-items: center;
    justify-content: center;
    /* gap: 10px; */
    /* padding: 10px; */
    position: relative;
    margin-top: -5.50px;
    margin-bottom: -5.50px;
    /* background-color: #9a237d; */
    border-radius: 100px;
}

.frame .image {
  position: relative;

}

.frame .text-wrapper {
  position: relative;
  width: 152px;
  height: 35px;
  margin-top: -6.00px;
  margin-bottom: -4.00px;
  font-family: var(--b-1-font-family);
  font-weight: var(--b-1-font-weight);
  color: #9a237d;
  font-size: var(--b-1-font-size);
  letter-spacing: var(--b-1-letter-spacing);
  line-height: var(--b-1-line-height);
  font-style: var(--b-1-font-style);
}

.frame .frame-p {
  position: relative;
  align-self: stretch;
  font-family: "Inria Sans-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 30px;
}

.frame .div-9 {
  display: flex;
  flex-direction: column;
  width: 121px;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.frame .text-wrapper-2 {
  position: relative;
  width: 121px;
  margin-top: -1.00px;
  font-family: "Inria Sans-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .div-10 {
  display: flex;
  flex-direction: column;
  width: 93px;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.frame .text-wrapper-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inria Sans-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .text-wrapper-4 {
  position: relative;
  align-self: stretch;
  font-family: "Inria Sans-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .div-11 {
  display: flex;
  flex-direction: column;
  width: 300px;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.frame .text-wrapper-5 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inria Sans-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .div-12 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .div-13 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.frame .frame-img {
  position: relative;
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  object-fit: cover;
}

.frame .text-wrapper-6 {
  position: relative;
  width: 106px;
  font-family: "Inria Sans-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .div-14 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .text-wrapper-7 {
  position: relative;
  width: 260px;
  margin-top: -1.00px;
  font-family: "Inria Sans-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .div-15 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .frame .div-15 {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}


.frame .div-18 {
  display: flex;
  
  align-items: center;
  gap: 10px;
  position: relative;
}

.frame .div-19 {
  display: flex;
  width: 318px;
  align-items: center;
  position: relative;
  margin-right: -151.56px;
  transform: rotate(-90.00deg);
}

/* ...existing code... */

/* Responsive styles */
@media (max-width: 1200px) {
  .frame,
  .frame .div,
  .frame .frame-wrapper,
  .frame .div-5 {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }
  .frame .frame-wrapper {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  
  .frame .frame-wrapper,
  .frame .div-5,
  .frame .div {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;}
  }

@media (max-width: 768px) {
  .frame
 {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }
  .frame .frame-wrapper {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .frame {
    padding: 40px 0px;
    height: auto;
  }
  .frame .div {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin: 0;
    align-items: stretch;
  }
  .frame .frame-wrapper,
  .frame .div-5 {
    width: 100%;
    gap: 24px;
  }
  .frame .div-6 {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .frame .div-wrapper,
  .frame .div-7,
  .frame .div-9,
  .frame .div-11 {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .frame .div-16 {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  .frame .div-17 {
    gap: 24px;
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
  .frame .div-18 {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .frame {
    padding: 16px 4px;
  }
  .frame .div-16,
  .frame .div-17 {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }
  .frame .div-17 {
    padding: 8px 8px;
  }
  .frame .text-wrapper,
  .frame .text-wrapper-2,
  .frame .text-wrapper-5,
  .frame .text-wrapper-8 {
    font-size: 1rem;
  }
  .frame .frame-p,
  .frame .text-wrapper-3,
  .frame .text-wrapper-4,
  .frame .text-wrapper-6,
  .frame .text-wrapper-7,
  .frame .text-wrapper-9 {
    font-size: 16px;
  }
  .frame .div-2,
  .frame .div-19 {
    display: none;
  }
}

/* Make images responsive */
.frame .frame-img,
.frame .image,
.frame .frame-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ...existing code...*/

/* Vertical Divider with diamonds */
    .footer-divider {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 2px;
      background: #ffcc00;
      margin: auto;
    }

    .footer-divider::before,
    .footer-divider::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px;
      height: 12px;
      background: #ffcc00;
    }

    .footer-divider::before { top: -6px; }
    .footer-divider::after { bottom: -6px; }

    .footer-divider.left { right: 100%; }
    .footer-divider.right { left: 100%; }


    .footer-divider {
    display: block;
}
 @media screen and (max-width: 768px) {
      .footer-divider { 
        display: none;}
     }

     

    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 3.5rem;
      padding: 60px;
}
.row {
      display: flex;
      flex-wrap: wrap;
      
      
}
.rows {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 3.5rem;
      
}
/* Newsletter */
    .newsletterr {
      column-gap: 10px;
      display: flex;
      align-items: center;
      font-weight: bold;
      font-size: 1rem;
    }
@media screen and (max-width: 768px) {
      .newsletterr { 
        display: grid;}
  
}
    .newsletter-box {
      margin-top: 10px;
      display: flex;
      align-items: center;
    }

    .newsletter-box .footer-input {
      padding: 12px;
      border: none;
      outline: none;
      flex: 1;
      font-size: 0.95rem;
    }

    .newsletter-box .footer-button {
      background: #fff;
      border: none;
      padding: 11px 15px;
      cursor: pointer;
      font-size: 1rem;
      color: #800000; /* dark red arrow */
    }
    /*----------footer section end----------*/
    /*----------contact section start ----------*/


    
    .contact-banner {
      position: relative;
      background: url("../img/contact\ banner.png") no-repeat center center/cover;
      height: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      color: white;
      padding-left: 8%;
      background-repeat: no-repeat;
      background-position: top;
      padding-bottom: 10%;
    }

    .contact-banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.3); /* dark overlay */
    }

    .banner-content {
      position: relative;
      z-index: 2;
      
      padding: 20px;
      font-family: 'Inria Serif', serif;
    }

    .banner-content .contact-h1 {
      font-family: 'Inria Serif', serif;
      left: 0;
      bottom: 20px;
      font-size: 38px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .contact-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
    }

    .contact-breadcrumb .contact-a {
      color: #fff;
      text-decoration: none;
      transition: 0.3s;
    }

    .contact-breadcrumb .contact-a:hover {
      color: #8b007d; /* orange hover */
    }

    .contact-breadcrumb .contact-span {
      color: #8b007d; /* arrow color */
    }
    /* Contact Form Section */
    
    /* Left content */
        .contact-container {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 40px;
      padding: 60px 160px;
    }
    .contact-left .contact-h2 {
      font-family: 'Inria Serif', serif;
      font-size: 32px;
      color: #8b007d;
      margin-bottom: 10px;
    }

    .contact-left .contact-p {
       font-family: 'Inria Serif', serif;
      font-size: 16px;
      margin-bottom: 25px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .text-input, .tex-textarea {
      width: 100%;
      padding: 15px;
      border: none;
      background: #fdf6fa;
      font-size: 16px;
      border-radius: 4px;
      outline: none;
    }

    .input-row {
      display: flex;
      gap: 15px;
    }

    .textarea {
      min-height: 120px;
      resize: none;
    }

    /* Divider with diamonds */
    .contact-divider {
      position: relative;
      width: 2px;
      background: #ff9900;
      height: 80%;
      margin-left: 50px;
    }

    .contact-divider::before,
    .contact-divider::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 10px;
      height: 10px;
      background: #ff9900;
    }

    .contact-divider::before {
      top: -12px;
    }

    .contact-divider::after {
      bottom: -12px;
    }

    /* Right side image */
    .contact-right .contact-img {
      width: 100%;
      max-width: 400px;
      border-radius: 4px;
      margin-left: 70px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
      }
      .contact-divider {
        display: none;
      }
      .contact-right {
        text-align: center;
      }
      .contact-right .contact-img {
        max-width: 80%;
        margin-left: 0;
      }
    }

/*----------contact section end----------*/



/*----------product section start----------*/

    .women-banner {
      position: relative;
      background: url("../img/women/banner.jpg") no-repeat center center/cover;
      height: 100%;
      display: flex;
    align-items: end;
          justify-content: flex-start;
      color: white;
      padding-left: 8%;
      background-repeat: no-repeat;
      background-position: top;
      padding-bottom: 10%;
    }
    .women-content{
      position: relative;
      bottom: 0;
    }

    .women-banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
    }

    .banner-content {
      position: relative;
      z-index: 2;
     
    }

    .women-h1 {
      font-family: 'Inria Serif', serif;
font-weight: 700;
font-size: 48px;
line-height: 100%;
color: white;
    }

    .women-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
    }

    .women-breadcrumb .women-a {
      color: #fff;
      text-decoration: none;
      transition: 0.3s;
    }

    .slick-section {
      margin-bottom: 40px;
    }
    .slick-controls {
      display: flex;
      justify-content: space-between;
      padding: 16px 20px;
    }
    .controls-btn {
      /*background: rgba(255,255,255,0.8);*/
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: bold;
      /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
      cursor: pointer;
      color: #444;
      transition: background 0.3s;
    }
    .controls-btn:hover {
      background: rgba(220,220,220,0.9);
    }
    .slick {
      display: flex;
      overflow-x: auto;
      padding: 16px;
      scroll-behavior: smooth;
    }
    .slick::-webkit-scrollbar {
      display: none;
    }
    .slickimg img {
      width: 250px;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
      margin: 0 10px;
      cursor: pointer;
      transition: transform 0.25s;
    }
    .slickimg img:hover {
      transform: scale(1.05);
      box-shadow: 10px 10px 10px rgba(0,0,0,0.15);
    }
    .slickimg img.zoomed {
      width: 500px;
      height: 600px;
      position: fixed;
      top: 0;
      left: 25%;
      z-index: 1000;
      transform: none !important;
    }

    .slickimg {
  position: relative;
  display: inline-block;
}

.slick-caption {
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  padding: 8px 12px;
/*  background: rgba(0, 0, 0, 0.55);*/
  color: #fff;
  border-radius: 5px;
  pointer-events: none;
  font-family: 'Inria Serif', serif;
font-weight: 400;
font-size: 20px;
line-height: 30px;
letter-spacing: 0%;

}

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,.45);
      display: none;
      z-index: 999;
    }
    .overlay.active {
      display: block;
    }


    /*women  Diamond line */
    .wo-diamond-line {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .wo-diamond-line::before,
    .wo-diamond-line::after {
      content: "";
      width: 12px;
      height: 12px;
      background: orange;
      transform: rotate(45deg);
      flex-shrink: 0;
    }
    .wo-diamond-line span {
      flex-grow: 1;
      height: 3px;
      background: orange;
    }
    .wo-h1{
      font-family: 'Inria Serif', serif;
font-weight: 700;
font-size: 36px;
line-height: 100%;
color: #9A237D;

    }
    .wo-pad{
      padding-top: 150px;
      padding-bottom: 50px;
    }

      /* men page */

  .men-banner {
    position: relative;
    background: url("../img/men/banner.png") no-repeat center center/cover;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    color: white;
    padding-left: 8%;
    background-repeat: no-repeat;
    background-position: top;
    padding-bottom: 10%;
  }

  .men-content {
    position: relative;
    bottom: 0;
  }

  .men-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .men-h1 {
    font-family: 'Inria Serif', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    color: white;
  }

  .men-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
  }

  .men-breadcrumb .men-a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }



  /* Bridal page */

  .bridal-banner {
    position: relative;
    background: url("../img/bridal/banner.png") no-repeat center center/cover;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    color: white;
    padding-left: 8%;
    background-repeat: no-repeat;
    background-position: top;
    padding-bottom: 10%;
  }

  .bridal-content {
    position: relative;
    bottom: 0;
  }

  .bridal-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .bridal-h1 {
    font-family: 'Inria Serif', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    color: white;
  }

  .bridal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
  }

  .bridal-breadcrumb .bridal-a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }

   /* kids page */

  .kids-banner {
    position: relative;
    background: url("../img/kids/banner.png") no-repeat center center/cover;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    color: white;
    padding-left: 8%;
    background-repeat: no-repeat;
    background-position: top;
    padding-bottom: 10%;
  }

  .kids-content {
    position: relative;
    bottom: 0;
  }

  .kids-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .kids-h1 {
    font-family: 'Inria Serif', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    color: white;
  }

  .kids-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
  }

  .kids-breadcrumb .kids-a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
/*----------product section end----------*/

/*----------offer section start----------*/

.offer-banner {
      position: relative;
      background: url("../img/offer.png") no-repeat center center/cover;
      height: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      color: white;
      padding-left: 8%;
      background-repeat: no-repeat;
      background-position: top;
      padding-bottom: 10%;

    }

    .offer-banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
     /* background: rgba(0,0,0,0.3);  dark overlay */
    }

    .banner-content {
      position: relative;
      z-index: 2;
    
      padding: 20px;
      font-family: 'Inria Serif', serif;
    }

    .banner-content .offer-h1 {
      font-family: 'Inria Serif', serif;
      left: 0;
      bottom: 10%;
      font-size: 38px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .offer-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
    }

    .offer-breadcrumb .offer-a {
      color: #fff;
      text-decoration: none;
      transition: 0.3s;
    }

    .offer-breadcrumb .offer-a:hover {
      color: #8b007d; /* orange hover */
    }

    .offer-breadcrumb .offer-span {
      color: #8b007d; /* arrow color */
    }


        .festive-section {
          font-family: 'inria Serif', serif;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .festive-banner {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 8px;
    }

    .festive-banner .festive-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      object-fit: cover;
    }

    .festive-box {
      position: absolute;
      bottom: 20px;
      right: 20px;

      padding: 25px 35px;
      border-radius: 6px;
      color: #ffff;
      max-width: 320px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);

    }

    .festive-box .festive-h2 {
      font-size: 28px;
      font-weight: bold;
      margin: 0 0 15px;
      color: 8e1f63;
      line-height: 1.2;
    }

    .festive-box .festive-a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #8e1f63;
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      padding: 10px 18px;
      border-radius: 4px;
      transition: 0.3s ease;
      font-weight: bold;
    }

    .festive-box .festive-a:hover {
      background: #ff6600;
      color: #fff;
    }

    .festive-box .festive-a::after {
      content: "→";
      margin-left: 8px;
      font-size: 18px;
    }

    /* Responsive */
    @media (max-width: 426px) {
      .festive-box {
        position: static;
        margin: 15px auto 0;
        text-align: center;
        color: #000;
      }
    }


    
    /* Heading */
    .section-heading {
      display: flex;
      align-items: center;
      gap: 20px;
      margin: 40px auto 20px;
      max-width: 1200px;
      padding: 0 20px;
    }

    .section-heading .sales-h2 {
      font-size: 28px;
      font-weight: bold;
      color: #8e1f63;
      margin: 0;
      white-space: nowrap;
    }

    .heading-line {
      flex: 1;
      height: 2px;
      background: linear-gradient(to right, #f59e0b, #fbbf24);
      position: relative;
    }

    .heading-line::before,
    .heading-line::after {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 10px;
      height: 10px;
      background: #f59e0b;
    }

    .heading-line::before { left: 0; }
    .heading-line::after { right: 0; }

    /* Banner Section */
    .sales-banner {
      display: flex;
      justify-content: center;
      align-items: center;
 
      margin: 20px auto;
      max-width: 1200px;
      padding: 20px;
    }

    .sales-banner .sales-img {
      width: 33%;
      border-radius: 6px;
      object-fit: cover;
    }

    .center-box {
      background: #fdf3f8;
      padding: 40px 30px;
      text-align: center;
      font-size: 28px;
      font-weight: bold;
      color: #8e1f63;
      width: 33%;
      position: relative;
    }

    .center-box .line {
      height: 2px;
      background: linear-gradient(to right, #f59e0b, #fbbf24);
      margin: 15px 0;
      position: relative;
    }

    .center-box .line::before,
    .center-box .line::after {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 10px;
      height: 10px;
      background: #f59e0b;
    }

    .center-box .line::before { left: 0; }
    .center-box .line::after { right: 0; }

    .star {
      display: block;
      font-size: 20px;
      margin: 10px 0;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .sales-banner {
        flex-direction: column;
      }
      .sales-banner .sales-img,
      .center-box {
        width: 100%;
      }
    }


      /* Banner Section */
    .sherwani-banner {
      display: flex;
      justify-content: center;
      align-items: stretch;
      
      margin: 20px auto;
      max-width: 1200px;
    }

    .sherwani-banner .sherwani-img {
      width: 33.3%;
      object-fit: cover;
    }

    .offerr-box {
      width: 33.3%;
      background: linear-gradient(to bottom, #722633, #3f5445);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
      font-size: 26px;
      font-weight: bold;
      position: relative;
    }

    /* Orange line with diamonds */
    .sherwani-line {
      height: 2px;
      width: 80%;
      background: linear-gradient(to right, #f59e0b, #fbbf24);
      margin: 15px 0;
      position: relative;
    }

    .sherwani-line::before,
    .sherwani-line::after {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 10px;
      height: 10px;
      background: #f59e0b;
    }

    .sherwani-line::before { left: -15px; }
    .sherwani-line::after { right: -15px; }

    /* Responsive */
    @media (max-width: 900px) {
      .sherwani-banner {
        flex-direction: column;
      }
      .sherwani-banner .sherwani-img,
      .offerr-box {
        width: 100%;
      }
    }
/*----------offer section end----------*/

 .new-banner {
      position: relative;
      background: url("../img/Frame\ 325.png") no-repeat center center/cover;
      height: 100%;
      display: flex;
    align-items: end;
          justify-content: flex-start;
      color: white;
      padding-left: 8%;
      background-repeat: no-repeat;
      background-position: top;
      padding-bottom: 10%;
    }
    