body,
html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    overflow-x: hidden;
    /* Remove hidden y-scrolling */
    scroll-behavior: smooth;

}

img {
    height: unset;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #190d20b3;

}

::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
    cursor: pointer;
}


::-webkit-scrollbar-track {
    background-image: linear-gradient(to bottom, #dc2f67, #b02a6a, #842864, #592456, #331d41);

}





h1.main-heading {
    color: #fff;
    font-size: clamp(30px, 5vw, 65px);
    font-family: "Playfair Display", serif;
    font-weight: 400;
    line-height: clamp(44px, 8vw, 66px);
    text-transform: uppercase;
}

h1.main-heading span {background-color: #331d41;padding: 8px;display: inline-flex;border-radius: 10px;}

h2.sub-heading {
    color: #000;
    font-size: clamp(18px, 4vw, 50px);
    line-height: clamp(32px, 4vw, 56px);
    font-family: 'Playfair Display';
    text-transform: uppercase;
    font-weight: 700;
}

h2.sub-heading span {
    color: #000;
}

h5.sub-text {
   font-family: "Playfair Display", serif;
   font-size: clamp(20px, 4vw, 35px);
   color: #331d41;
   font-weight: 600;
   text-transform: uppercase;
}

h6.mini-heading {
    color: #dc2f67;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 5px;
}

p.paragraph {
    color: #505050;
    font-family: poppins;
    font-size: clamp(14px, 4vw, 18px);
    line-height: clamp(26px, 4vw, 29px);
    font-weight: 400;
}


section.banner {
    background-image: url(../images/banner-img.webp);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 865px;
    padding: 0rem 0 0;
}




header .nav-col a {
    font-family: Roboto;
    font-size: 18px;
    color: #fff;
    text-decoration: unset;
    text-transform: uppercase;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    transition: all 0.5s;
}

header li.nav-item {
    list-style: none;
}

header {
    position: absolute;
    width: 100%;
    max-width: 100%;
}


.getintouch {
    background-color: #dc2f67 !important;
}

.logo-col .nav-link {
    position: relative;
}

.logo-col a {
    position: absolute;
    top: 25px;
}

.nav-link {
    height: 130px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}



header .container-fluid {
    padding: 0;
}


.nav-col {
    padding: 0 !important;
    border-bottom: 1px solid #ffffff3b;
    border-right: 1px solid #ffffff3b;
}

header .nav-grid {
    gap: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 0.7fr 1fr 0.65fr 0.7fr 0.7fr;
    grid-auto-flow: column;
  }



.logo-col {
    border-bottom-color: transparent !important;
    position: relative;
}

.logo-col a img {
    width: 280px;
}

.logo-col::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #ffffff3b;
    width: 70px;
    height: 1px;
    transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 1s;
}

.logo-col::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    background-color: #ffffff3b;
    width: 70px;
    height: 1px;
    transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 1s;
}


/* For screens larger than mobile (assuming mobile is 768px or less) */
@media (min-width: 769px) {
  .nav-grid {
    display: grid;
    grid-template-columns: repeat(6, 200px);
    justify-content: center;
    gap: 10px;
  }
  
  .logo-col {
    grid-column: span 2; /* Make logo column take up 2 columns */
    width: 400px; /* Double width for logo column */
  }
  
  .nav-col {
    width: 200px;
  }
}

/* For mobile screens */
@media (max-width: 768px) {
  .nav-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .nav-col {
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }
}

section.banner .inner {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.banner .container {
    height: 100%;
}

section.banner .inner .d-flex a {
    width: 230px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #7b6769;
    border-radius: 10px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    color: #fff;
    text-decoration: unset;
    font-size: 18px;
    transition: all 0.5s;
}

section.banner .inner .d-flex a:first-child {background-color: #331d41;}

section.banner .inner .d-flex a:last-child {
    background-color: #dc2f67;
}

section.banner .inner .d-flex {
    gap: 0 40px;
    margin-top: 2rem;
}

section.banner .inner .d-flex a:hover {
    backdrop-filter: blur(6px);
    background-color: transparent;
    color: #000;
    border-color: #000;
}

section.about-section .img img {
    width: 100%;
}

section.about-section {
    padding: 5rem 0 0 0;
}

section.about-section .text {
    padding-left: 1rem;
}

section.about-section .text a {
    width: 288px;
    display: inline-flex;
    height: 60px;
    justify-content: center;
    align-items: center;
    border: 1px solid #dc2f67;
    border-radius: 10px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    color: #dc2f67;
    text-decoration: unset;
    font-size: 18px;
    transition: all 0.5s;
    font-weight: 500;
}

section.service-section {
    background-color: #331d41;
    padding: 5rem 0;
    margin-top: 7rem;
}

section.service-section h2.sub-heading span {
    color: #dc2f67;
}

section.service-section h2.sub-heading {
    color: #fff;
    width: 77%;
    margin: 0 auto;
}

section.service-section h6.mini-heading {
    color: #fff;
}

section.service-section .text-center a {
    display: inline-flex;
    width: 218px;
    height: 68px;
    justify-content: center;
    align-items: center;
    border: 1px solid #443051;
    border-radius: 10px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    color: #fff;
    text-decoration: unset;
    font-size: 18px;
    transition: all 0.5s;
    font-weight: 500;
}

section.service-section .text-center a:hover {
    background-color: #ffffff;
    color: #dc2f67;
}

section.signifies-section {
    padding: 5rem 0;
}

section.signifies-section .title {
    margin-bottom: 3rem;
}

section.signifies-section .inner {
    height: 300px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    border-bottom-color: #e4a8bc;
    transition: all cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.5s;
}

section.signifies-section .inner img {
    width: 80px;
    margin: 0 0 1rem;
}

section.signifies-section .inner h5 {
    font-family: 'Playfair Display';
    font-size: 24px;
}

section.signifies-section .inner h4 {font-weight: 800;font-family: 'Playfair Display';font-size: 40px;color: #dc2f67;}

section.signifies-section .inner::after {
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #dc2f6714;
    content: '';
    transition: all cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.5s;
    z-index: -1;
}

section.signifies-section .inner:hover::after {
    transform: scale(9);
    width: 50px;
    height: 50px;
}



section.signifies-section .inner:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

section.signifies-section .outer span.arrow {
    position: absolute;
    top: 0;
    right: -35px;
    align-items: center;
    bottom: 0;
    background-color: #dc2f67;
    width: 50px;
    height: 50px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    border: 7px solid #f9f6f6;
}

section.section-why-choose-us {
    padding: 4rem 0;
    height: 860px;
    position: relative;
    z-index: 9;
    margin-top: 7rem;
}

section.section-why-choose-us .img img {
    width: 100%;
    border: 7px solid #fff;
    border-radius: 40px;
    height: 850px;
    object-fit: cover;
}

section.section-why-choose-us .text h2 {
    color: #fff;
}

section.section-why-choose-us .text {
    padding-left: 2rem;
}

section.section-why-choose-us ul li {
    color: #fff;
    font-family: poppins;
    font-size: clamp(14px, 4vw, 18px);
    line-height: clamp(26px, 4vw, 29px);
    font-weight: 400;
    gap: 0 30px;
}

section.section-why-choose-us ul {
    gap: 22px 0;
    margin-top: 3rem;
}

section.section-why-choose-us .text-left img {
    width: 70%;
}


section.section-why-choose-us .img {
    position: relative;
    z-index: 1;
}

section.section-why-choose-us .img::after {
    z-index: -1;
    position: absolute;
    content: '';
    top: -20px;
    left: -20px;
    background-color: #ffffff24;
    width: 100%;
    height: 100%;
    border-radius: 40px 40px 40px 0;
}

section.section-why-choose-us::after {
    content: '';
    position: absolute;
    left: 0;
    width: 93%;
    height: 100%;
    background-color: #331d41;
    z-index: -1;
    top: 0;
    border-radius: 0 0 40px 0;
}

footer {
    background-color: #190d20;
    margin-top: 10rem;
    padding: 8rem 0 0;
}


.footer-logo ul li:first-child {
    font-family: poppins;
    color: #fff;
    font-size: 18px;
    opacity: 80%;
    margin-right: 10px;
    background-color: unset;
    width: unset;
    height: unset;
}

.footer-logo ul li a {
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: #dc2f67;
    transition: all cubic-bezier(0.18, 0.89, 0.32, 1.28) 1s;
}

.footer-logo ul {
    margin-top: 1rem;
    gap: 0 10px;
    align-items: center;
}

.footer-logo ul li svg {
    color: #fff;
}

.footer-logo ul li {
    list-style: none;
}

.footer-logo ul li a:hover {
    transform: translate(0, -8px) rotateY(360deg);
    filter: drop-shadow(0 4px 5px #ffffff46);
}

.footer-nav {}

.footer-nav ul {
    gap: 0 8rem;
    margin: 0;
}

.footer-nav ul li a {
    color: #fff;
    font-family: poppins;
    font-weight: 300;
    text-decoration: unset;
    opacity: 90%;
    text-transform: uppercase;
    font-size: 18px;
}

.footer-nav ul li {
    list-style: none;
}

.footer-nav .text-end {
    margin-top: 4rem;
}

.footer-nav .text-end a {
    display: inline-flex;
    width: 218px;
    height: 68px;
    justify-content: center;
    align-items: center;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    color: #fff;
    text-decoration: unset;
    font-size: 18px;
    transition: all 0.5s;
    font-weight: 500;
    background-color: #dc2f67;
}

.footer-nav .text-end a:hover {
    background-color: #331d41;
}

.copyright {
    margin-top: 5rem;
    border-top: 1px solid #ffffff24;
    padding: 30px 0;
}

.copyright p {
    margin: 0;
    color: #fff;
    font-weight: 200;
}

.copyright p span {
    color: #dc2f67;
}

.copyright a {
    color: #fff;
    font-weight: 200;
    font-family: poppins;
    text-decoration: unset;
}

.copyright span {
    color: #fff;
}

.copyright div:nth-child(2) {
    display: flex;align-items: center;gap: 0 20px;
}


a.whatsapp-button {
    bottom: 40px;
    right: 40px;
    overflow: hidden;
    animation: whatsappPulse 2s infinite;
    border-radius: 50%;
    z-index: 99999;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


a.whatsapp-button img {
    width: 60px;
}

.service-slides img {
    width: 100%;
    height: 465px;
    object-fit: cover;
    transition: all 0.5s;
}

.service-slides {
    border: 1px solid #fff;
    margin: 0 10px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.service-slides .text img {
    height: unset;
    width: 20px;
}

.service-slides .text {
    display: flex;
    align-items: center;
    padding: 26px;
    gap: 0 20px;
}


.service-slides .text h5 {
    color: #000;
    text-transform: uppercase;
    font-size: clamp(17px, 4vw, 22px);
    margin: 0;
}

.service-slides a {
    text-decoration: unset;
}

.service-slides .img {
    overflow: hidden;
}

.service-slides:hover img {
    transform: scale(1.1);
}

section.service-section .text-center {
    margin-top: 4rem;
}


section.inner-banner {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 621px;
    padding-top: 8rem;
}

section.inner-banner.printing {
    background-image: url(../images/printing-bg.webp);
}

section.inner-banner.bridal-couture {
    background-image: url(../images/bridal-couture-bg.webp);
}

section.inner-banner.bridal-couture.cmt {
    background-image: url(../images/cmt-bg.webp);
}


section.inner-banner.bridal-couture.cmt.dyeing {
    background-image: url(../images/dyeing-bg.webp);
}


section.inner-banner.embriodery {
    background-image: url(../images/embriodery-bg.webp);
}

section.inner-banner .container, section.inner-banner .content{
    height: 100%;
}


section.about-section.printing .text ul {
    margin-top: 2rem;
    gap: 14px 0;
}

section.about-section.printing .text ul li {
    color: #737373;
    font-family: poppins;
    line-height: clamp(26px, 4vw, 27px);
    font-weight: 400;
    gap: 0 14px;
    font-size: clamp(14px, 4vw, 18px);
}

section.about-section.printing .text ul li span.bold {
    color: #000;
    font-weight: 500;
    display: contents;
}

section.about-section.printing .text ul li img {
    width: 22px;
}

section.about-section.printing .mt-5 .text {
    padding-left: 0;
    padding-right: 1rem;
}

section.section-why-choose-us.printing {
    height: 740px;
    margin-top: 7rem;
}

section.section-why-choose-us.printing .img img {
    height: 740px;
}

section.about-section.digital-printing {
    padding: 8rem 0 0;
}

p.paragraph.pink {
    color: #dc2f67;
    font-weight: 500;
}

.dropdown-menu.show {
    display: none;
}

.nav-link .dropdown-toggle:hover {
    color: #fff;
}
/*NEW CSS*/

section.inner-banner.about {
    background-image: url(../images/About-Banner-img.webp);
}

section.inner-banner.about h1.main-heading span {
    background-color: #dc2f67;
}

section.inner-banner.contact {
    background-image: url(../images/contact-banner.webp);
}

section.visit-info .info {
    border: 1px solid #e2e2e2;
    gap: 0 10px;
    padding: 16px;
    border-radius: 10px;
    align-items: center;
}

.info-cotent h4 {
    font-family: 'Playfair Display';
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.info-cotent h6 a {
    font-family: 'Poppins';
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    color: #636363;
    text-decoration: unset;
}

section.visit-info {
    padding: 5rem 0;
}

section.get-in-touch .title {
    margin-bottom: 3rem;
}
.contact-form {
    margin: 0 auto;
    padding: 62px 80px;
    background-color: #331d41;
    border-radius: 60px;
  }
  
  .form-row {
    display: flex;
    gap: 70px;
  }
  
  .form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px 0;
  }
  
  section.get-in-touch label {
    font-weight: 300;
    color: #fff;
    font-family: 'Poppins';
    font-size: 15px;
    position: relative;
    margin-left: 22px;
  }
  
  section.get-in-touch input {
    border-radius: 18px;
    border: unset;
    outline: unset;
    font-family: 'Poppins';
    padding: 0 24px;
    height: 70px;
    color: #000;
    font-size: 16px;
  }

section.get-in-touch textarea{
    padding: 24px 0 0 24px;
    border-radius: 30px;
    border: unset;
    outline: unset;
    font-family: 'Poppins';
    resize: none;
    font-size: 16px;
  }

section.get-in-touch textarea::placeholder{
    color: #000000ad;
}

section.get-in-touch input::placeholder{
    color: #000000ad;
}
 
section.get-in-touch h5.sub-text {
    color: #FFF;
}

section.get-in-touch label:after {
    content: '';
    position: absolute;
    height: 7px;
    width: 7px;
    background-color: #dc2f67;
    left: -15px;
    top: 6px;
    border-radius: 35px;
}

.textarea {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    margin: 2rem 0;
}

.textarea textarea {
    resize: none;
    height: 200px;
    border-radius: 22px;
}


.submit-btn button {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-family: 'Playfair Display';
    font-size: 22px;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dc2f67;
    height: 70px;
    border-radius: 20px;
    transition: all 0.5s;
    border: 1px solid transparent;
}

section.get-in-touch {
    padding: 2rem 0 0;
}

.submit-btn button:hover {
    background-color: #331d41;
    border-color: #fff;
}

.getintouch:hover {
    background-color: #dc2f678a !important;
}

.nav-link:focus, .nav-link:hover {
    color: #fff !important;
}

.dropdown-menu.show {
    background-color: transparent;
    gap: 8px 0;
    display: flex !important;
    flex-direction: column;
    backdrop-filter: blur(4px);
    border: unset;
    box-shadow: rgb(17 12 46 / 23%) 0px 48px 100px 0px;
}

.dropdown-menu li a {justify-content: start;padding: 7px;font-size: 15px;}

ul.dropdown-menu {
    background-color: transparent !important;
    border: unset;
}

.pinkshadow {
    background-image: linear-gradient(to left, #dc2f67a8, #a12950ad, #bd2c5b40, #36162000, #d3d3d300);
    border-radius: 10px;
    padding-right: 12px;
    padding-bottom: 8px;
}

section.visit-info .title {
    margin: 0 0 3rem;
}

.form-column .d-flex.flex-column {
    gap: 10px 0;
}

.footer-nav li.dropdown .dropdown-menu.show {
    border: 1px solid #ffffff17;
}

.footer-nav li.dropdown a{
    height: unset;
}

.info-cotent h6 {margin: 0;font-family: 'Poppins';font-size: 14px;margin: 0;font-weight: 400;color: #636363;}

.footer-logo img {
    width: 245px;
}

section.service-section .title {
    margin-bottom: 4rem;
}
section.about-section.dyeing {
    padding-bottom: 0;
}
section.section-why-choose-us.embriodery p.paragraph {
    color: #fff;
}

  section.section-why-choose-us a {
    display: inline-flex;
    width: 218px;
    height: 68px;
    justify-content: center;
    align-items: center;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    color: #fff;
    text-decoration: unset;
    font-size: 18px;
    transition: all 0.5s;
    font-weight: 500;
    background-color: #dc2f67;
    margin-top: 2rem;
}

section.section-why-choose-us a:hover {
    background-color: #331d41;
}

/* Sidebar base */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -150%; /* hidden by default */
  width: 350px;
  height: 100%;
  background: #331d41;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  z-index: 9999;
  padding-top: 60px;
}

.mobile-sidebar.open {
  left: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 9998;
}

/* Show overlay when sidebar is open */
.sidebar-overlay.show {
  display: block;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  padding: 0;
}

/* Sidebar menu styles */
.sidebar-menu a {
  display: block;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  font-family: poppins;
  font-size: 19px;
}

.sidebar-menu a:hover {
  font-weight: bold;
}

/* Optional */
.submenu a {
  font-size: 0.9rem;
}


.mobile-header{
    display: none;
}


header.mobile-header button.mobile-menu-toggle {
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 0;
    border: unset;
    background-color: transparent;
    color: #fff;
    font-size: 28px;
}

.mobile-sidebar li.getintouch {
    padding: 0 20px;
}