:root {
  --black: #101010;
  --white: #ffffff;
  --primary: #a88357;
  --text: #6f6f6f;
  --soft-white: #fcfaf8;
  --off-white: #ffffff66;
  --linen-white: #f6f2ed;
  --text-dark: #363636;
}
::selection {
    background: var(--primary);
    color: var(--white);
}
@font-face {
  font-family: "Inter18pt-Light";
  src:
    url("../fonts/Inter18pt-Light.woff2") format("woff2"),
    url("../fonts/Inter18pt-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter18pt-Regular";
  src:
    url("../fonts/Inter18pt-Regular.woff2") format("woff2"),
    url("../fonts/Inter18pt-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter18pt-SemiBold";
  src:
    url("../fonts/Inter18pt-SemiBold.woff2") format("woff2"),
    url("../fonts/Inter18pt-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter18pt-Medium";
  src:
    url("../fonts/Inter18pt-Medium.woff2") format("woff2"),
    url("../fonts/Inter18pt-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

span,a{
  display: inline-block;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h3,
h6,
p,
ul,
li {
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.4;
  font-style: normal;
  font-size: 18px;
  font-family: "Inter18pt-Regular", serif;
  font-weight: 400;
  color: var(--text);
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  cursor: pointer;
}
button {
  all: unset;
  display: inline-block;
  cursor: pointer;
}
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  overflow-wrap: break-word;
  margin-bottom: 0;
}

textarea {
  resize: vertical;
}

:focus-visible {
  outline: 2px solid;
  outline-offset: 2px;
}

.primary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 13px 28px;
  font-size: 18px;
  font-weight: 400;
  background: var(--primary);
  color: var(--white);
  z-index: 1;
  transition: color 0.45s ease;
}

.primary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.45s ease;
  z-index: -1;
}

.primary-btn:hover::before {
  transform: scale(1);
}
.primary-btn:hover {
  color: var(--white);
}

.secondary-btn {
  background: var(--white);
  color: var(--black);
}
.secondary-btn::before {
  background: var(--black);
}
.secondary-btn:hover {
  color: var(--white);
}

.padding-block {
  padding-block: 100px;
}
.sec-title {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.sec-title .tag {
  padding-left: 34px;
  position: relative;
}

.sec-title .tag::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 1px;
  background: var(--text);
}

.sec-title h2 {
  color: var(--black);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}



@media screen and (min-width: 1800px) {
  .container {
    max-width: 1480px;
  }
}

@media screen and (max-width: 1800px) {
  .container {
    max-width: 1500px;
  }
}
@media screen and (max-width: 1600px) {
  .container {
    max-width: 1320px;
  }
  .sec-title {
    gap: 20px;
    margin-bottom: 30px;
  }
  .padding-block {
    padding-block: 80px;
  }
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
  .sec-title {
    gap: 20px;
    margin-bottom: 20px;
  }
  .padding-block {
    padding-block: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  .primary-btn {
    padding: 13px 24px;
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .container {
    max-width: 421px;
  }
}
@media screen and (max-width: 430px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 320px) {
}

/* =========================
   Heading Responsive
========================= */

h1,
.h1 {
  font-size: 62px;
  font-weight: 600;
  font-family: "Inter18pt-SemiBold", serif;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 42px;
  font-weight: 600;
  font-family: "Inter18pt-SemiBold", serif;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Inter18pt-SemiBold", serif;
  line-height: 1.2;
}

/* =========================
   1800px
========================= */
@media screen and (max-width: 1800px) {
  h1,
  .h1 {
    font-size: 58px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }

  h3,
  .h3 {
    font-size: 21px;
  }
}

/* =========================
   1600px
========================= */
@media screen and (max-width: 1600px) {
  h1,
  .h1 {
    font-size: 54px;
  }

  h2,
  .h2 {
    font-size: 38px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }
}

/* =========================
   1440px
========================= */
@media screen and (max-width: 1440px) {
  h1,
  .h1 {
    font-size: 50px;
  }

  h2,
  .h2 {
    font-size: 36px;
  }

  h3,
  .h3 {
    font-size: 19px;
  }
  body {
    font-size: 16px;
  }
}

/* =========================
   1199px
========================= */
@media screen and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 44px;
  }

  h2,
  .h2 {
    font-size: 32px;
  }

  h3,
  .h3 {
    font-size: 18px;
  }
}

/* =========================
   991px
========================= */
@media screen and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 38px;
  }

  h2,
  .h2 {
    font-size: 28px;
  }

  h3,
  .h3 {
    font-size: 17px;
  }
}

/* =========================
   767px
========================= */
@media screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 32px;
  }

  h2,
  .h2 {
    font-size: 26px;
  }

  h3,
  .h3 {
    font-size: 16px;
  }
}

/* =========================
   575px
========================= */
@media screen and (max-width: 575px) {
  h1,
  .h1 {
    font-size: 28px;
  }

  h2,
  .h2 {
    font-size: 22px;
  }

  h3,
  .h3 {
    font-size: 15px;
  }
}

/* =========================
   430px
========================= */
@media screen and (max-width: 430px) {
  h1,
  .h1 {
    font-size: 24px;
  }

  h2,
  .h2 {
    font-size: 20px;
  }

  h3,
  .h3 {
    font-size: 14px;
  }
}

/* =========================
   320px
========================= */
@media screen and (max-width: 320px) {
  h1,
  .h1 {
    font-size: 22px;
  }

  h2,
  .h2 {
    font-size: 18px;
  }

  h3,
  .h3 {
    font-size: 13px;
  }
   body {
    font-size: 14px;
  }
}

/* ============ Header ============ */
.site-header {
  background-color: var(--white);
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  padding: 10px 0;
}

.site-header.is-sticky {
  box-shadow: 0 4px 14px rgba(16, 16, 16, 0.08);
}

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

/* ============ Logo ============ */
.site-logo a {
  display: inline-block;
  text-decoration: none;
}

.site-logo img {
  display: block;
  height: auto;
  max-width: 160px;
}

/* ============ Desktop Navigation ============ */
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: end;
}

.nav-mobile-header {
  display: none;
}

.nav-close {
  display: none;
}

#primary-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

#primary-menu li {
  margin: 0;
}

#primary-menu li a {
  display: inline-block;
  color: var(--black);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.25s ease;
}

#primary-menu li a:hover,
#primary-menu li.current-menu-item a {
  color: var(--primary);
}

#primary-menu li:last-child a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 13px 28px;
  font-size: 18px;
  font-weight: 400;
  background: var(--primary);
  color: var(--white);
  z-index: 1;
  transition: color 0.45s ease;
}

#primary-menu li:last-child a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.45s ease;
  z-index: -1;
}

#primary-menu li:last-child a:hover::before {
  transform: scale(1);
}

#primary-menu li:last-child a:hover {
  color: var(--white);
}

/* ============ Mobile Toggle Button ============ */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black);
}

/* ============ Overlay ============ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(16, 16, 16, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  z-index: 998;
}

.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1199px) {
  #primary-menu {
    gap: 26px;
  }
}

/* ---- Mobile sidebar kicks in below 991px ---- */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 320px;
    max-width: 85%;
    background-color: var(--white);
    box-shadow: 2px 0 20px rgba(16, 16, 16, 0.15);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 999;
    padding: 24px;
    overflow-y: auto;
    display: block;
  }

  .main-navigation.is-open {
    transform: translateX(0);
  }

  .nav-overlay {
    display: block;
  }

  .nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--primary);
  }

  .nav-close {
    display: block;
    position: relative;
    width: 26px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .nav-close span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--black);
  }

  .nav-close span:first-child {
    transform: rotate(45deg);
  }

  .nav-close span:last-child {
    transform: rotate(-45deg);
  }

  #primary-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  #primary-menu li {
    width: 100%;
    border-bottom: 1px solid #ececec;
  }

  #primary-menu li a {
    width: 100%;
    padding: 14px 0;
  }

  #primary-menu li:last-child {
    border-bottom: none;
    margin-top: 16px;
  }

  #primary-menu li:last-child a {
    display: inline-block;
    width: auto;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .main-navigation {
    width: 100%;
    max-width: 100%;
  }
}

/* ------hero-banner---- */
.hero-banner {
  background: url(../images/hero-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 226px 0;
}
.hero-banner-content {
  width: 100%;
  max-width: 760px;
  color: var(--white);
}

.hero-banner-content .tag {
  margin-bottom: 16px;
  padding-left: 34px;
  position: relative;
}

.hero-banner-content .tag::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 1px;
  background: var(--white);
}
.hero-banner-content h1 {
  margin-bottom: 16px;
}

.hero-banner-content .desc {
  padding-bottom: 60px;
  margin-bottom: 60px;
  color: var(--white);
  border-bottom: 1px solid #ffffff66;
}

.hero-banner-content .achivement-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero-banner-content .achivement-col p {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff99;
  margin-bottom: 3px;
}

@media screen and (max-width: 1800px) {
  .hero-banner {
    padding: 200px 0;
  }
}
@media screen and (max-width: 1600px) {
  .hero-banner {
    padding: 180px 0;
  }
}
@media screen and (max-width: 1440px) {
  .hero-banner {
    padding: 160px 0;
  }
  .hero-banner-content .desc {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  
}
@media screen and (max-width: 1199px) {
  .hero-banner {
    padding: 140px 0;
  }

  .hero-banner-content .desc {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .hero-banner {
    padding: 120px 0;
  }
}
@media screen and (max-width: 767px) {
  .hero-banner {
    padding: 100px 0;
  }
}
@media screen and (max-width: 575px) {
  .hero-banner {
    padding: 80px 0;
  }

  .hero-banner-content .desc br {
    display: none;
  }
  .hero-banner-content .desc {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 430px) {
  .hero-banner {
    padding: 60px 0;
  }
  .hero-banner-content .achivement-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 320px) {
  .hero-banner {
    padding: 40px 0;
  }
  
}

/* ------marquee----- */

/* ============ Marquee ============ */
.marquee {
  position: relative;
  background-color: var(--black);
  overflow: hidden;
  padding: 40px 0;
}

.marquee-arrow {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: linear-gradient(to right, var(--black) 55%, transparent);
  z-index: 2;
}

.marquee-arrow img {
  width: 100%;
  max-width: 44px;
  height: 44px;
  display: block;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.marquee-list li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-list li span {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.marquee-icon {
  width: 100%;
  max-width: 44px;
  height: 44px;
  margin: 0 40px;
  display: block;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1440px) {
  .marquee {
    padding: 30px 0;
  }
}
@media screen and (max-width: 1199px) {
  .marquee {
    padding: 20px 0;
  }
  .marquee-icon {
    max-width: 40px;
    height: 40px;
    margin: 0 20px;
  }
}
@media screen and (max-width: 991px) {
  .marquee-icon {
    max-width: 32px;
    height: 32px;
  }
  .marquee-list li span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .marquee-icon {
    max-width: 32px;
    height: 32px;
  }
  .marquee-list li span {
    font-size: 18px;
  }
      .marquee {
        padding: 16px 0;
    }
}
@media screen and (max-width: 575px) {
  .marquee-list li span {
    font-size: 16px;
  }
  .marquee-icon {
    max-width: 28px;
    height: 28px;
  }
}

/* ----about-us-- */
.about-us {
  background-color: var(--linen-white);
  position: relative;
  overflow: hidden;
}
.about-us .sec-title .tag {
  color: var(--primary);
}
.about-us .sec-title .tag::after {
  background-color: var(--primary);
}
.about-us-pattern {
  position: absolute;
  top: 0;
  left: 0;
}
.about-us-pattern img {
  width: 100%;
  max-width: 982px;
}

.about-us .about-vector {
  position: absolute;
  top: 0;
  right: 0;
}

.about-us .about-vector img {
  width: 100%;
  max-width: 365px;
}
.about-us .about-us-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 120px;
  z-index: 1;
  position: relative;
}

.about-us .about-us-row .about-us-img {
  width: 100%;
  max-width: 708px;
}

.about-us .about-us-row .about-us-col {
  width: 100%;
  max-width: 612px;
}

.about-us .about-us-row .about-us-col .desc p {
  margin-bottom: 40px;
  font-weight: 300;
  font-family: "Inter18pt-Light", serif;
}

@media screen and (max-width: 1800px) {
  .about-us .about-us-row {
    gap: 80px;
  }
}
@media screen and (max-width: 1600px) {
  .about-us .about-us-row {
    gap: 60px;
  }
  .about-us .about-us-row .about-us-img {
    max-width: 680px;
  }
  .about-us .about-us-row .about-us-col {
    max-width: 580px;
  }
  .about-us .about-us-row .about-us-col .desc p {
    margin-bottom: 30px;
  }
  .about-us-pattern img {
    max-width: 900px;
  }
}
@media screen and (max-width: 1440px) {
  .about-us .about-us-row {
    gap: 40px;
  }
  .about-us .about-us-row .about-us-img {
    max-width: 680px;
  }
  .about-us .about-us-row .about-us-col {
    max-width: 580px;
  }
  .about-us .about-us-row .about-us-img img {
    aspect-ratio: 1/1;
  }
  .about-us .about-us-row .about-us-col .desc p {
    margin-bottom: 20px;
  }
  .about-us-pattern img {
    max-width: 600px;
  }
  .about-us .about-vector img {
    max-width: 190px;
  }
}
@media screen and (max-width: 1199px) {
  .about-us .about-us-row {
    gap: 30px;
  }
  .about-us-pattern img {
    max-width: 500px;
  }

  .about-us .about-vector img {
    max-width: 170px;
  }
}
@media screen and (max-width: 991px) {
  .about-us .about-us-row {
    gap: 20px;
    flex-direction: column;
  }
  .about-us .about-us-row .about-us-img {
    max-width: 100%;
  }
  .about-us .about-us-row .about-us-col {
    max-width: 100%;
  }
  .about-us .about-us-row .about-us-img img {
    aspect-ratio: initial;
    width: 100%;
  }
  .about-us-pattern img {
    max-width: 400px;
  }
  .about-us .about-vector img {
    max-width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .about-us-pattern img {
    width: 100%;
    max-width: 350px;
  }
}
@media screen and (max-width: 575px) {
  .about-us .about-us-row .about-us-col .desc p {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 430px) {
}

/* ------services----- */
.services {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}
.services .services-col p{
width:100%;
max-width:488px;
}
.services .services-vector img{
   width: 100%;
   max-width: 269px;
}
.services .services-vector {
  position: absolute;
  top: 0;
  left: 0;
}
.services .services-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}

.services .services-row .sec-title {
  margin-bottom: 0;
  width:100%;
max-width:600px;
}

.services .services-row .sec-title .tag {
  color: var(--primary);
}

.services .services-row .sec-title .tag::after {
  background: var(--primary);
}

.services .weddings-row {
  display: flex;
  justify-content: space-between;
  background-color: var(--soft-white);
  padding: 20px;
  gap: 32px;
  border: 1px solid #a8835730;
  backdrop-filter: blur(147.5px);
  margin-bottom: 72px;
}

.services .weddings-row .number {
  color: var(--primary);
}
.services .title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services .weddings-row h2 {
  color: var(--black);
}
.services .weddings-col:nth-child(1) {
  width: 100%;
  max-width: 40px;
}

.services .weddings-col:nth-child(2) {
  width: 100%;
  max-width: 391px;
}

.services .weddings-col:nth-child(3) {
  width: 100%;
  max-width: 391px;
}

.services .weddings-col:nth-child(4) {
  width: 100%;
  max-width: 483px;
}

.services .weddings-col a {
  color: var(--primary);
}

.services .btn {
  text-align: center;
}

/* ------what-we-do----- */
.what-we-do {
  background-color: var(--black);
  position: relative;
}

.what-we-do-vector {
  position: absolute;
  right: 49px;
  top: 0;
}
.what-we-do-vector img {
  width: 100%;
  max-width: 106px;
}
.what-we-do .what-we-do-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
.what-we-do .what-we-do-row .title {
  width: 100%;
  max-width: 594px;
}
.what-we-do .what-we-do-row .sec-title {
  margin-bottom: 0;
}
.what-we-do .what-we-do-row .sec-title h2 {
  color: var(--white);
}
.what-we-do .what-we-do-row .sec-title .tag {
  color: var(--primary);
}
.what-we-do .what-we-do-row .sec-title .tag::after {
  background: var(--primary);
}
.what-we-do .what-we-do-row .what-we-do-content {
  width: 100%;
  max-width: 488px;
}

.what-we-do-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 120px;
  row-gap: 84px;
}

.what-we-do-card-col {
  position: relative;
  border-color: rgba(255, 255, 255, 0.12);
  border-style: solid;
  border-width: 0;
}

.what-we-do-card-col:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 0;
  /* bottom: 0; */
  right: -60px;
  width: 1px;

  height: 175px;
  background: rgba(255, 255, 255, 0.12);
}
.what-we-do-card-col:nth-child(-n + 3)::before {
  content: "";
  position: absolute;
  bottom: -42px;
  left: 0;
  width: 400px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* .what-we-do-card-col:nth-child(n + 4) {
  margin-top: 16px;
} */

.what-we-do-card-col img {
  margin-bottom: 24px;
  width: 32px;
  height: 32px;
}
.what-we-do-card-col h3 {
  margin-bottom: 16px;
  color: var(--white);
}
.what-we-do-card-col p {
  color: var(--text);
  font-weight: 300;
  line-height: 1.2;
  font-size: 18px;
  font-family: "Inter18pt-Light", serif;
}
.what-we-do-card-col .meta {
  display: block;
  margin-top: 16px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 1800px) {
  .what-we-do .what-we-do-row {
    margin-bottom: 40px;
  }
  .what-we-do-card-row {
    column-gap: 80px;
    row-gap: 60px;
  }
  .what-we-do-card-col:not(:nth-child(3n))::after {
    right: -40px;
  }
  .what-we-do-card-col:nth-child(-n + 3)::before {
    bottom: -30px;
  }

  .services .services-vector img {
    max-width: 90px;
}

.services .weddings-row {
    margin-bottom: 60px;
}
.what-we-do-vector img {
    max-width: 58px;
}
}
@media screen and (max-width: 1600px) {
  .what-we-do .what-we-do-row {
    margin-bottom: 30px;
  }
  .what-we-do-card-col:nth-child(-n + 3)::before {
    width: 376px;
  }
  .what-we-do-card-col:not(:nth-child(3n))::after {
    height: 156px;
  }
  
.services .weddings-row {
    margin-bottom: 40px;
}
    .what-we-do-vector img {
        max-width: 50px;
    }
}
@media screen and (max-width: 1440px) {
  .what-we-do .what-we-do-row .title {
    width: 100%;
    max-width: 541px;
  }
  .what-we-do .what-we-do-row .what-we-do-content {
    width: 100%;
    max-width: 298px;
  }
 

  .what-we-do-card-col p {
    font-size: 16px;
  }
  .what-we-do-card-col img {
    margin-bottom: 20px;
  }
  .what-we-do-card-col .meta {
    font-size: 16px;
    margin-top: 10px;
  }
  .what-we-do-card-row {
    column-gap: 60px;
    row-gap: 40px;
  }
  .what-we-do-card-col:nth-child(-n + 3)::before {
    bottom: -20px;
    width: 315px;
  }
  .what-we-do-card-col:not(:nth-child(3n))::after {
    right: -30px;
  }
  .services .services-vector img {
    max-width: 78px;
}
.services .weddings-row {
    margin-bottom: 30px;
}
.what-we-do-vector img {
        max-width: 44px;
    }

}
@media screen and (max-width: 1199px) {
  .what-we-do-vector img {
    max-width: 36px;
  }
  .what-we-do-card-col:nth-child(-n + 3)::before {
    width: 264px;
  }
  .what-we-do-card-col img {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 991px) {
  .what-we-do-row {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 100%;
    max-width: 600px;
  }
  .what-we-do .what-we-do-row .title {
    max-width: 100%;
  }
  .what-we-do .what-we-do-row .what-we-do-content {
    max-width: 100%;
  }
  .what-we-do-card-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .what-we-do-card-col:not(:nth-child(3n))::after {
    display: none;
  }
  .what-we-do-card-col:nth-child(-n + 3)::before {
    display: none;
  }
  .what-we-do-card-col:nth-child(even)::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    display: block;
  }
  .what-we-do-card-col:nth-child(-n + 4)::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .what-we-do-vector img {
    max-width: 45px;
  }
  .client-testimonials-vector img {
    max-width: 84px;
  }
  .services {
    padding-bottom: 40px;
  }
  .services .services-vector img {
    width: 100%;
    max-width: 60px;
}
}
@media screen and (max-width: 575px) {
  .what-we-do-vector img {
    max-width: 32px;
  }
  .what-we-do-vector {
    right: 14px;
  }
  .what-we-do-card-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .what-we-do-card-col:nth-child(even)::after {
    display: none;
  }
  .what-we-do-card-col:nth-child(-n + 4)::before {
    display: none;
  }
  .what-we-do-card-col:nth-child(-n + 5)::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .what-we-do-vector img {
    max-width: 26px;
  }
  .about-us .about-vector img {
    max-width: 78px;
  }
}

/* --------client-testimonials-------- */
.client-testimonials {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.client-testimonials-vector {
  position: absolute;
  top: 0;
  left: 0;
}
.client-testimonials-vector img {
  width: 100%;
  max-width: 380px;
}
.client-testimonials-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  z-index: 1;
  position: relative;
}
.client-testimonials-title-col {
  width: 100%;
  max-width: 800px;
}
.client-testimonials-title-content {
  width: 100%;
  max-width: 488px;
}
.client-testimonials-title-row .sec-title {
  margin-bottom: 0;
}
.client-testimonials-title-row .sec-title .tag {
  color: var(--primary);
}
.client-testimonials-title-row .sec-title .tag::after {
  background: var(--primary);
}

.client-testimonials-slider-outer {
  width: 100%;

  /* overflow: hidden; */
}
.client-testimonials-slider {
  width: 100%;
  overflow: visible;
}
/* .client-testimonials-slider .swiper-wrapper {
  padding-left: calc((100% - 1440px) / 2);
} */

.client-testimonials .client-testimonials-card {
  background-color: var(--linen-white);
  padding: 20px;
  display: flex;
  gap: 32px;
  border: 1px solid #a8835730;
  backdrop-filter: blur(147.5px);
  position: relative;
  height: auto;
}
.client-testimonials .client-testimonials-card .pattern {
  position: absolute;
  right: 10px;
  top: 10px;
}
.client-testimonials .client-testimonials-card .pattern img {
  width: 100%;
  max-width: 98px;
}
.client-testimonials .client-testimonials-card .user {
  width: 100%;
  max-width: 247px;
}
.client-testimonials .client-testimonials-card .client-testimonials-text {
  width: 100%;
  max-width: 389px;
}
.client-testimonials-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.client-testimonials-text h3 {
  color: var(--black);
  margin-bottom: 8px;
}
.client-testimonials-text .location {
  color: var(--primary);
}
.client-testimonials-text .client-testimonials-body p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  font-family: "Inter18pt-Light", serif;
}

@media screen and (max-width: 1800px) {
  .client-testimonials-vector img {
    max-width: 214px;
  }
  .client-testimonials-title-row {
    margin-bottom: 40px;
  }
  .client-testimonials .client-testimonials-card .pattern img {
    max-width: 80px;
  }
}
@media screen and (max-width: 1600px) {
  .client-testimonials-vector img {
    max-width: 230px;
  }
  .client-testimonials-vector img {
    width: 100%;
    max-width: 210px;
  }
  .client-testimonials-title-row {
    margin-bottom: 30px;
  }
  /* .client-testimonials-slider .swiper-wrapper {
    padding-left: calc((100% - 1320px) / 2);
  } */
  .client-testimonials .client-testimonials-card .pattern img {
    max-width: 70px;
  }
}
    
@media screen and (max-width: 1440px) {
  /* .client-testimonials-slider .swiper-wrapper {
    padding-left: calc((100% - 1140px) / 2);
  } */

  .client-testimonials-text .client-testimonials-body p {
    font-size: 16px;
  }
  .client-testimonials .client-testimonials-card .pattern img {
    max-width: 60px;
  }
  .client-testimonials .client-testimonials-card .user {
    max-width: 215px;
  }
  .client-testimonials .client-testimonials-card {
    gap: 20px;
  }
      .client-testimonials-vector img {
        width: 100%;
        max-width: 147px;
    }
}
@media screen and (max-width: 1199px) {
  /* .client-testimonials-slider .swiper-wrapper {
    padding-left: calc((100% - 940px) / 2);
  } */
  .client-testimonials-text .client-testimonials-body p {
    font-size: 14px;
  }
  .client-testimonials .client-testimonials-card .user {
    max-width: 170px;
  }
  .client-testimonials-vector img {
        width: 100%;
        max-width: 136px;
    }
}
@media screen and (max-width: 991px) {
  /* .client-testimonials-slider .swiper-wrapper {
    padding-left: calc((100% - 720px) / 2);
  } */
  .client-testimonials-vector img {
    max-width: 114px;
  }
}
@media screen and (max-width: 767px) {
  .client-testimonials-title-row {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
  .client-testimonials-slider-outer {
     padding: 0 20px;
    box-sizing: border-box;
  }
  /* .client-testimonials-slider .swiper-wrapper {
    padding-left: calc((100% - 540px) / 2);
  } */
  
  .client-testimonials .client-testimonials-card .client-testimonials-text {
    max-width: 100%;
  }
  .client-testimonials .client-testimonials-card .user {
    max-width: 100%;
  }
  .client-testimonials .client-testimonials-card .user img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .client-testimonials .client-testimonials-card .pattern {
    right: 30px;
    top: 30px;
  }
  .client-testimonials .client-testimonials-card .pattern img {
    max-width: 40px;
  }
}
@media screen and (max-width: 575px) {
  .client-testimonials .client-testimonials-card {
    flex-direction: column;
    align-items: start;
  }
  
}
@media screen and (max-width: 430px) {
  
  /* .client-testimonials-slider .swiper-wrapper {
    padding-left: 0;
  } */
}
/* -----cta------ */

.cta {
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}
.cta::before {
  position: absolute;
  content: "";
  inset: 0;
  background: url(../images/cta-pattern.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.cta .cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta .cta-col {
  width: 100%;
  max-width: 1000px;
}

.cta .cta-col h2 {
  color: var(--white);
}

@media screen and (max-width: 1800px) {
  .cta .cta-col {
    max-width: 900px;
  }
}
@media screen and (max-width: 1600px) {
  .cta .cta-col {
    max-width: 856px;
  }
}
@media screen and (max-width: 1440px) {
  .cta .cta-col {
    max-width: 799px;
  }
}
@media screen and (max-width: 1199px) {
  .cta .cta-col {
    max-width: 665px;
  }
}
@media screen and (max-width: 991px) {
  .cta .cta-col {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .cta .cta-row {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .cta {
    padding: 40px 0;
  }
}
@media screen and (max-width: 430px) {
}
/* ----footer----- */

.footer {
  background-color: var(--black);
}

.footer .address p {
  color: var(--white);
}
.footer .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer .footer-col {
  width: 100%;
  max-width: 391px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer .footer-col img {
  width: 100%;
  max-width: 100px;
  height: auto;
  margin-bottom: 120px;
}
.footer .footer-col p {
  width: 100%;
  max-width: 277px;
}

.footer .footer-menu-row {
  width: 100%;
  max-width: 998px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--text-dark);
}
.footer .footer-menu-col {
  padding: 32px;
  border-right: 1px solid var(--text-dark);
}

.footer .footer-menu-col:last-child {
  border-right: none;
}

.footer-menu-col h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--primary);
  margin-bottom: 16px;
}
.footer-menu-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-menu-col ul li a {
  color: var(--white);
}
.footer-menu-col ul li a:hover {
  color: var(--white);
}

.footer .footer-second-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer .footer-second-row p {
  width: 100%;
  max-width: 419px;
  color: var(--white);
}

.footer .footer-second-row .social-icon {
  display: flex;
  gap: 32px;
}

.footer .footer-second-row .social-icon a {
  color: var(--white);
}

@media screen and (max-width: 1800px) {
  .footer .footer-row {
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer .footer-menu-col {
    padding: 28px;
  }
}
@media screen and (max-width: 1600px) {
  .footer .footer-row {
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer .footer-menu-col {
    padding: 24px;
  }
  .footer .footer-second-row {
    gap: 28px;
  }
}
@media screen and (max-width: 1440px) {
  .footer .footer-menu-col {
    padding: 20px;
  }
  .footer-menu-col ul {
    gap: 12px;
  }
  .footer-menu-col ul li a {
    font-size: 16px;
  }
  .footer .footer-col {
    max-width: 300px;
  }
  .footer .footer-second-row p {
    max-width: 300px;
  }
  .footer .footer-second-row {
    gap: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .footer .footer-col {
    max-width: 230px;
  }
  .footer .footer-col img {
    margin-bottom: 60px;
  }
  .footer .footer-second-row p {
    max-width: 230px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer-row {
    flex-direction: column;
    align-items: start;
  }
  .footer .footer-col {
    max-width: 869px;
    display: flex;
    align-items: end;
    gap: 20px;
    flex-direction: row;
    justify-content: start;
  }
  .footer .footer-col img {
    margin-bottom: 0px;
  }
  .footer .footer-col p {
    max-width: 401px;
  }
  .footer .footer-second-row {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-menu-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .footer-menu-col {
    border-right: 1px solid var(--text-dark);
    border-bottom: 1px solid var(--text-dark);
  }

  .footer .footer-menu-col:last-child {
    border-right: none;
    border-bottom: none;
  }
}
@media screen and (max-width: 575px) {
  .footer .footer-menu-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .footer-menu-col {
    border-right: none;
    border-bottom: 1px solid var(--text-dark);
  }
  .footer .footer-col {
    flex-direction: column;
    align-items: start;
  }
  .footer .footer-second-row {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .footer .footer-second-row p {
    max-width: 100%;
  }
  .footer {
    padding: 40px 0;
  }
}
@media screen and (max-width: 430px) {
}

.whatsappicon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    display: inline-block;
}
/* -------about-us-page------ */

.header-banner {
  background-color: var(--black);
  position: relative;
}

.header-banner .header-banner-vector {
  position: absolute;
  bottom: 0;
  left: 0;
}

.header-banner .header-banner-vector img {
  width: 100%;
  max-width: 502px;
}
.header-banner .header-banner-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.header-banner .header-banner-content h1 {
  color: var(--white);
}

.header-banner .header-banner-content span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--primary);
}

.header-banner .header-banner-content span::before,
.header-banner .header-banner-content span::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--primary);
}

.secondary-marquee {
  background-color: var(--primary);
}

.secondary-marquee .marquee-list li span {
  color: var(--white);
}

.secondary-about-us .about-us-row .about-us-img {
  width: 100%;
  max-width: 603px;
}
.secondary-about-us .about-us-row .about-us-col {
  width: 100%;
  max-width: 659px;
}

.secondary-about-us .about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.secondary-about-us .about-list li {
  position: relative;
  padding-left: 24px;
  color: var(--black);
  line-height: 1.5;
}

.secondary-about-us .about-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../images/union.svg") no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
}
.our-goal {
  background-color: var(--black);
}
.our-goal .our-goal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px;
}
.our-goal .our-goal-row .our-goal-col {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.our-goal .our-goal-row .our-goal-col:nth-child(2)::before,
.our-goal .our-goal-row .our-goal-col:nth-child(3)::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 175px;
  background: var(--text-dark);
}

.our-goal .our-goal-col img {
  margin-bottom: 60px;
}

.our-goal .our-goal-col h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.our-approach .our-approach-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}

.our-approach .our-approach-row .title {
  width: 100%;
  max-width: 900px;
}
.our-approach .our-approach-row .title .sec-title{
   margin-bottom:0;
}
.our-approach .our-approach-row .our-approach-content {
  width: 100%;
  max-width: 488px;
}
.our-approach .our-approach-row .sec-title .tag {
  color: var(--primary);
}
.our-approach .our-approach-row .sec-title .tag::after {
  background-color: var(--primary);
}

.our-approach .our-approach-img {
  width: 100%;
}
.our-approach .our-approach-img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1800px) {
  .our-goal .our-goal-col img {
    margin-bottom: 40px;
  }
  .our-goal .our-goal-row {
    gap: 80px;
  }
  .our-goal .our-goal-row .our-goal-col:nth-child(2)::before,
  .our-goal .our-goal-row .our-goal-col:nth-child(3)::before {
    left: -40px;
  }
  .our-approach .our-approach-row {
    margin-bottom: 40px;
  }
  .our-approach .our-approach-row .title {
    max-width: 780px;
  }
}
@media screen and (max-width: 1600px) {
  .header-banner .header-banner-vector img {
    max-width: 300px;
  }
  .header-banner .header-banner-content {
    max-width: 1152px;
  }
  .our-goal .our-goal-col img {
    margin-bottom: 30px;
  }
  .our-goal .our-goal-row {
    gap: 60px;
  }
  .our-goal .our-goal-row .our-goal-col:nth-child(2)::before,
  .our-goal .our-goal-row .our-goal-col:nth-child(3)::before {
    left: -30px;
  }
  .our-approach .our-approach-row {
    margin-bottom: 30px;
  }
  .our-approach .our-approach-row .title {
    width: 100%;
    max-width: 650px;
  }
}
@media screen and (max-width: 1440px) {
  .header-banner .header-banner-content {
    max-width: 976px;
  }
  .our-goal .our-goal-col img {
    margin-bottom: 20px;
  }
  .our-goal .our-goal-row {
    gap: 40px;
  }
  .our-goal .our-goal-row .our-goal-col:nth-child(2)::before,
  .our-goal .our-goal-row .our-goal-col:nth-child(3)::before {
    left: -20px;
  }
  .our-approach .our-approach-row .title {
    max-width: 552px;
  }
  .our-approach .our-approach-row .our-approach-content {
    max-width: 410px;
  }
}
@media screen and (max-width: 1199px) {
  .header-banner .header-banner-vector img {
    max-width: 270px;
  }
  .header-banner .header-banner-vector img {
    max-width: 230px;
  }
  .our-approach .our-approach-row .title {
    max-width: 470px;
  }
  .our-approach .our-approach-row .our-approach-content {
    max-width: 350px;
  }
}
@media screen and (max-width: 991px) {
  .header-banner .header-banner-content {
    max-width: 490px;
  }
  .secondary-about-us .about-us-row .about-us-img {
    max-width: 100%;
  }
  .our-goal .our-goal-row {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .our-goal .our-goal-row .our-goal-col:last-child {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .our-goal .our-goal-row .our-goal-col:nth-child(3)::before {
    display: none;
  }

  .our-approach .our-approach-row {
    flex-direction: column;
    align-items: start;
  }
  .our-approach .our-approach-row .title {
    max-width: 100%;
  }
  .our-approach .our-approach-row .our-approach-content {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header-banner .header-banner-vector img {
    max-width: 200px;
  }
  .header-banner .header-banner-content {
    gap: 16px;
  }
  .secondary-about-us {
    padding: 40px 0;
  }
  .secondary-about-us .about-list {
    gap: 16px;
  }
  .our-goal {
    padding: 40px 0;
  }
  .our-goal .our-goal-row {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .our-goal .our-goal-row .our-goal-col:nth-child(2)::before,
  .our-goal .our-goal-row .our-goal-col:nth-child(3)::before {
    display: none;
  }
  .our-goal .our-goal-row .our-goal-col:last-child {
    max-width: 100%;
  }
  .our-goal .our-goal-row .our-goal-col:not(:last-child) {
    border-bottom: 1px solid var(--text);
    padding-bottom: 40px;
  }
  .our-approach {
    padding: 40px 0;
  }
}
@media screen and (max-width: 575px) {
  .header-banner .header-banner-vector img {
    max-width: 170px;
  }
  .our-goal .our-goal-row .our-goal-col:not(:last-child) {
    padding-bottom: 20px;
  }
  .our-goal .our-goal-row {
    gap: 20px;
  }
  .secondary-about-us .about-list li::before {
    top: 29%;
    width: 14px;
    height: 14px;
}
}

/* ------services page----- */

.secondary-header-banner .header-banner-vector {
  position: absolute;
  left: initial;
  bottom: 16px;
  right: 0;
}

.secondary-header-banner .header-banner-vector img {
  width: 100%;
  max-width: 307px;
}

.secondary-services {
  position: relative;
}
.secondary-services .services-vector {
  position: absolute;
  top: 0;
  right: 0;
  left: initial;
}

.secondary-services .services-vector img{
  width: 100%;
  max-width: 269px;
}
.secondary-services .weddings-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.secondary-services .weddings-wrapper .weddings-row {
  margin-bottom: 0;
}
.why-vinayak-light {
  background-color: var(--linen-white);
  position: relative;
}
.why-vinayak-light .tag {
  color: var(--primary);
}
.why-vinayak-light .tag::after {
  background-color: var(--primary);
}
.why-vinayak-light-vector {
  position: absolute;
  left: 0;
  bottom: 0;
}
.why-vinayak-light-vector img{
  width: 100%;
  max-width: 365px;
}
.why-vinayak-light .why-vinayak-light-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
  align-items: center;
}

.mobile-view{
  display: none;
}
@media screen and (max-width: 1800px) {
  .services .services-row {
    margin-bottom: 40px;
}
.why-vinayak-light .why-vinayak-light-row {
    gap: 80px;
}
.why-vinayak-light-vector img {
    max-width: 315px;
}

}
@media screen and (max-width: 1600px) {
   .services .services-row {
    margin-bottom: 30px;
}
.secondary-services .services-vector img {
    max-width: 170px;
}
.why-vinayak-light .why-vinayak-light-row {
    gap: 60px;
}

.why-vinayak-light-vector img {
    max-width: 260px;
}
}
@media screen and (max-width: 1440px) {
      .secondary-services .services-vector img {
        max-width: 150px;
    }
    .why-vinayak-light-vector img {
        max-width: 200px;
    }
}
@media screen and (max-width: 1199px) {
      .secondary-services .services-vector img {
        max-width: 135px;
    }
    .services .weddings-row {
    gap: 28px;
}
.why-vinayak-light .why-vinayak-light-row {
    gap: 40px;
}
    .why-vinayak-light-vector img {
        max-width: 180px;
    }

}
@media screen and (max-width: 991px) {
.services .services-row {
    flex-direction: column;
    align-items: start;
    gap: 20px;
}


.secondary-services .services-vector img {
        max-width: 100px;
    }
    .services .weddings-row {
    gap: 24px;
}
.why-vinayak-light .why-vinayak-light-row {
       grid-template-columns: 1fr;
    }

    .why-vinayak-light-vector img {
        max-width: 150px;
    }
}
@media screen and (max-width: 767px) {
 .secondary-services .services-vector img {
        max-width: 80px;
    }
    .services .weddings-row {
    gap: 20px;
}
.weddings-row {
  flex-direction: column;
}
.services .weddings-col:nth-child(1) {
   display: none;
}


.weddings-col.number {
    order: 1;
}

.weddings-col.title {
    order: 2;
}

.weddings-col:nth-child(3) {
    order: 3;
}

.weddings-col:nth-child(4) {
    order: 1;
}
.desktop-view{
  display: none;
}
.mobile-view{
  display: block;
  padding-top: 20px;
}

    .why-vinayak-light-vector img {
        max-width: 136px;
    }
    .why-vinayak-light .why-vinayak-light-row {
        gap: 20px;
    }
        .why-vinayak-light .sec-title {
        margin-bottom: 0px;
    }
}
@media screen and (max-width: 575px) {
 .services .weddings-col:nth-child(2) {
    width: 100%;
    max-width: 310px;
}

    .why-vinayak-light .why-vinayak-light-row {
      margin-bottom: 20px;
    }
}
@media screen and (max-width: 430px) {
  
}

/* ------contact us page---- */

.contact-us-banner .header-banner-vector {
  top: 0;
  left: 0;
  right: initial;
  bottom: initial;
}

.contact-us-banner .header-banner-content {
  max-width: 720px;
}

.contact-us .contact-us-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
}
.contact-us .sec-title {
  margin-bottom: 40px;
}

.contact-us .sec-title .tag {
  color: var(--primary);
}
.contact-us .sec-title .tag::after {
  background-color: var(--primary);
}

.contact-us .information .desc {
  margin-bottom: 40px;
}

.contact-us .information .information-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  row-gap: 60px;
  position: relative;
}
.contact-us .information .information-row .information-col {
  position: relative;
}
.contact-us .information .information-row .information-col:nth-child(1)::after,
.contact-us .information .information-row .information-col:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 70px;
  background: #a8835730;
}

.contact-us
  .information
  .information-row
  .information-col:nth-child(1)::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 280px;
  height: 1px;
  background: #a8835730;
}

.contact-us
  .information
  .information-row
  .information-col:nth-child(2)::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 280px;
  height: 1px;
  background: #a8835730;
}
.contact-us .information .information-row .label {
  color: var(--primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 4px;
}
.contact-us .information .information-row .field {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Inter18pt-Medium", serif;
  display: block;
}

.input-field,
.textarea-field {
  border: 1px solid #a8835730;
  background-color: var(--soft-white);
  padding: 13px 20px;
  outline: none;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
}

.textarea-field {
  height: 136px;
}

label {
  margin-bottom: 8px;
  color: var(--primary);
  display: block;
}

.contact-us-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact-us-form-col {
  margin-bottom: 24px;
}

input[type="submit"] {
  border: none;
  outline: none;
}
.contact-us {
  position: relative;
}
.contact-us .services-vector {
  position: absolute;
  top: 0;
  right: 0;
}
.contact-us .services-vector img{
  width: 100%;
  max-width: 269px;
}

.contact-us-form-col br {
  display: none;
}
/* CF7 */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-spinner {
  margin-left: 10px;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
  font-size: 13px;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
}

@media screen and (max-width: 1800px) {
  .contact-us .contact-us-row {
    gap: 80px;
  }
  .contact-us .sec-title {
    margin-bottom: 30px;
  }
  .contact-us .information .desc {
    margin-bottom: 30px;
  }
  .contact-us .services-vector img {
    max-width: 136px;
}
}
@media screen and (max-width: 1600px) {
  .contact-us .contact-us-row {
    gap: 60px;
  }
  .contact-us .sec-title {
    margin-bottom: 20px;
  }
  .contact-us .information .desc {
    margin-bottom: 20px;
  }
      .contact-us .services-vector img {
        max-width: 116px;
    }
}
@media screen and (max-width: 1440px) {
  .contact-us-banner .header-banner-content {
    max-width: 660px;
  }
  .secondary-header-banner .header-banner-vector img {
    max-width: 256px;
  }
  .contact-us .contact-us-row {
    gap: 40px;
  }

  .contact-us .information .information-row {
    gap: 30px;
    row-gap: 30px;
  }
  .contact-us
    .information
    .information-row
    .information-col:nth-child(1)::before {
    bottom: -15px;
    width: 250px;
  }
  .contact-us
    .information
    .information-row
    .information-col:nth-child(1)::after,
  .contact-us
    .information
    .information-row
    .information-col:nth-child(3)::after {
    right: -15px;
  }
  .contact-us .information .information-row .information-col:nth-child(2)::before {
    bottom: -15px;
    width: 250px;
}
.input-field, .textarea-field {
    padding: 11px 20px;
}
.textarea-field {
    height: 100px;
}
.contact-us .services-vector img {
        max-width: 90px;
    }
}
@media screen and (max-width: 1199px) {
  .contact-us-banner .header-banner-content {
    max-width: 572px;
  }
  .contact-us .information .information-row .field {
    font-size: 15px;
}
    .contact-us .contact-us-row {
        gap: 20px;
    }
        .contact-us .information .information-row .information-col:nth-child(2)::before {
        width: 200px;
    }
        .contact-us .information .information-row .information-col:nth-child(1)::before {
        bottom: -15px;
        width: 200px;
    }

}
@media screen and (max-width: 991px) {
  .contact-us-banner .header-banner-content {
    max-width: 500px;
  }
  .secondary-header-banner .header-banner-vector img {
    max-width: 190px;
  }
  .contact-us .contact-us-row {
    grid-template-columns:1fr;
    gap: 40px;
}
.contact-us .information .information-row .information-col:nth-child(1)::before {
        width: 316px;
    }
        .contact-us .information .information-row .information-col:nth-child(2)::before {
        width: 316px;
    }
    
}
@media screen and (max-width: 767px) {
  .contact-us-banner .header-banner-content {
    max-width: 410px;
  }
  .secondary-header-banner .header-banner-vector img {
    max-width: 146px;
  }

      .contact-us .information .information-row .information-col:nth-child(1)::before {
        width: 234px;
    }
    .contact-us .information .information-row .information-col:nth-child(2)::before {
        width: 234px;
    }
        .contact-us .services-vector img {
        max-width: 88px;
    }
    .contact-us {
      padding: 40px 0;
    }
}
@media screen and (max-width: 575px) {
  .contact-us-banner .header-banner-content {
    max-width: 318px;
  }
  .secondary-header-banner .header-banner-vector img {
    max-width: 120px;
  }
  .contact-us .information .information-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-us .information .information-row .information-col:nth-child(1)::before {
        display: none;
    }
        .contact-us .information .information-row .information-col:nth-child(1)::after, .contact-us .information .information-row .information-col:nth-child(3)::after {
       display: none;
    }
        .contact-us .information .information-row .information-col:nth-child(2)::before {
        display: none;
    }
    .contact-us .information .information-row .information-col:not(:last-child) {
    border-bottom: 1px solid #A8835730;
    padding-bottom: 20px;
}
    .contact-us .services-vector img {
        max-width: 68px;
    }
    .contact-us-form-row {
    grid-template-columns:1fr;
    gap:0;
}
.contact-us-form-col {
    margin-bottom: 16px;
}
   

}
@media screen and (max-width: 430px) {
}
.service-image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-image-gallery .gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.service-image-gallery .gallery-item a {
    display: block;
}

.service-image-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform .3s ease;
}

.service-image-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

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

/* Mobile */
@media (max-width: 767px) {
    .service-image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-image-gallery {
        grid-template-columns: 1fr;
    }
}

.gslide-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gslide-image img {
    width: 100%;
  
    height: auto;
    object-fit: contain;
}


.gslide-media {
  padding: 20px;
}
.gslide-image img {
     
        border-radius: 20px !important;
    }

    .glightbox-clean .gslide-media{
     box-shadow: initial !important;
    }
@media (min-width: 769px) {
    .glightbox-clean .gslide-media {
       width: 100% !important;
       max-width: 900px !important;
       height: 500px !important;
    }
    .gslide-image img {
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 991px) {
    .gslide-image img {
        max-width: 600px;
        max-height: 400px;
    }
}

@media (max-width: 767px) {
    .gslide-image img {
        max-width: 90vw;
        max-height: 70vh;
    }
} 




/*==============================
404 PAGE
===============================*/

.error-page{
    background: var(--linen-white);
    min-height: calc(100vh - 180px);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}

.error-page::before{
    content:"404";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:18vw;
    font-family:"Inter18pt-SemiBold", serif;
    color:rgba(168,131,87,.08);
    line-height:1;
    user-select:none;
    pointer-events:none;
}

.error-content{
    position:relative;
    z-index:2;
    max-width:720px;
    margin:auto;
    text-align:center;
}

.error-content .tag{
    color:var(--primary);
    position:relative;
    padding-left:34px;
    margin-bottom:20px;
}

.error-content .tag::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:22px;
    height:1px;
    background:var(--primary);
}

.error-content h1{
    color:var(--black);
    margin-bottom:24px;
}

.error-content p{
    max-width:560px;
    margin:0 auto 40px;
    line-height:1.8;
}

.error-btn{
    display:flex;
    justify-content:center;
}

@media(max-width:767px){

    .error-page{
        min-height:70vh;
    }

    .error-page::before{
        font-size:34vw;
    }

    .error-content p{
        margin-bottom:30px;
    }

}