@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Headland+One&family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap");
body {
  font-family: "Istok Web", sans-serif;
}

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  font-family: "Istok Web", sans-serif;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
  font-size: 14px;
  color: #4a4a4a;
}

h1,
h2,
h3,
h4 {
  color: #6B0606;
  font-family: "Headland One", serif;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 992px) {
  h1 {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 992px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 992px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 992px) {
  h4 {
    font-size: 16px;
  }
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

.p-20 {
  padding: 20px 0;
}

.p-30 {
  padding: 30px 0;
}

.p-60 {
  padding: 60px 0;
}

.headingGrid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .headingGrid {
    gap: 0.8rem;
    padding-bottom: 20px;
  }
}
.headingGrid .sub-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .headingGrid .sub-title {
    font-size: 14px;
  }
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.section-padding {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 2rem 0;
  }
}

.flexCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innerPageCont {
  background-color: #F3E2D5;
}
.innerPageCont article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.innerPageCont .text {
  padding: 4rem 0;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.innerPageCont .text h1 {
  color: #4a4a4a;
}
.innerPageCont .text ul li {
  padding: 1rem;
  text-align: left;
  color: #4a4a4a;
}

.page-banner {
  min-height: 200px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner h1 {
  color: black;
  padding: 0 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 0px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Headland One", serif;
}
@media (max-width: 768px) {
  .btn {
    font-size: 14px;
  }
}

.bg-primary {
  background-color: #6B0606;
}

.text-primary {
  color: #6B0606;
}

.border-primary {
  border-color: #6B0606;
}

.bg-beige {
  background-color: #DFBFA8;
}

.text-beige {
  color: #DFBFA8;
}

.border-beige {
  border-color: #DFBFA8;
}

.bg-peach {
  background-color: #F3E2D5;
}

.text-peach {
  color: #F3E2D5;
}

.border-peach {
  border-color: #F3E2D5;
}

.bg-white {
  background-color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.border-white {
  border-color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.text-black {
  color: #000000;
}

.border-black {
  border-color: #000000;
}

.bg-green {
  background-color: green;
}

.text-green {
  color: green;
}

.border-green {
  border-color: green;
}

.btn.bg-primary {
  color: #ffffff;
}
.btn.bg-primary:hover {
  background-color: rgb(58.7079646018, 3.2920353982, 3.2920353982);
}
.btn.bg-beige, .btn.bg-peach {
  color: #000000;
}
.btn.bg-beige:hover, .btn.bg-peach:hover {
  filter: brightness(0.95);
}
.btn.bg-black {
  color: #ffffff;
}
.btn.bg-white {
  color: #000000;
  border: 1px solid #ddd;
}
.btn.bg-green {
  color: #ffffff;
  border: 1px solid #ddd;
}
.btn.bg-green:hover {
  background-color: #004d00;
}

.btn-outline {
  background: transparent;
}
.btn-outline.border-primary {
  color: #6B0606;
}
.btn-outline.border-primary:hover {
  background: #6B0606;
  color: #ffffff;
}

.btn-sm {
  padding: 6px 12px;
}

.btn-lg {
  padding: 14px 28px;
}

.text-xs {
  font-size: 12px;
  font-family: "Istok Web", sans-serif;
}

.text-sm {
  font-size: 14px;
  font-family: "Istok Web", sans-serif;
}

.text-base {
  font-size: 16px;
  font-family: "Istok Web", sans-serif;
}

.text-md {
  font-size: 18px;
  font-family: "Istok Web", sans-serif;
}

.text-lg {
  font-size: 20px;
  font-family: "Istok Web", sans-serif;
}

.text-xl {
  font-size: 24px;
  font-family: "Istok Web", sans-serif;
}

.text-xxl {
  font-size: 32px;
  font-family: "Istok Web", sans-serif;
}

.fw-thin {
  font-weight: 100;
}

.fw-light {
  font-weight: 300;
}

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-black {
  font-weight: 900;
}

.top-bar-wrapper {
  background-color: #6B0606;
  padding: 0.7rem;
  text-align: center;
  color: #ffffff;
}
.top-bar-wrapper .offer-active,
.top-bar-wrapper .contact-details,
.top-bar-wrapper span {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.offer-banner {
  background-color: #6B0606;
}
.offer-banner p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
}
.offer-banner p a {
  color: #DFBFA8;
  font-weight: 700;
  text-decoration: none;
  padding: 0 10px;
}
.offer-banner p a:hover {
  color: #F3E2D5;
}

.main-header {
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
}
.main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 120px;
  height: auto;
}
@media (max-width: 900px) {
  .logo img {
    width: 100px;
  }
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.desktop-nav ul li.current-menu-item a {
  font-weight: 700;
  color: #6B0606;
}
.desktop-nav ul li a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}
.desktop-nav ul li a:hover {
  color: #6B0606;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.mobile-menu-toggle:hover span {
  background-color: #6B0606;
}
.mobile-menu-toggle span {
  width: 5px;
  height: 5px;
  background-color: #6B0606;
  border-radius: 50%;
}

.mobile-dropdown {
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.mobile-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-dropdown ul li.current-menu-item a {
  color: #6B0606;
}
.mobile-dropdown ul a {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #000;
}
.mobile-dropdown.open {
  display: block;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: grid;
  }
}
.renu-social-icons-box {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}
.renu-social-icons-box .s-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  color: #6B0606;
}
.renu-social-icons-box .s-icon:hover {
  background-color: var(--hover-color);
  color: #ffffff;
}
.renu-social-icons-box .s-icon:hover.snap {
  color: #000;
}

.hero-ticker-container {
  background-color: #6B0606;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-ticker-container .hero-ticker-wrapper {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.hero-ticker-container .hero-ticker-content {
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
}
.hero-ticker-container .hero-ticker-content span {
  display: inline-block;
  padding: 0 100px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .hero-ticker-container {
    padding: 8px 0;
  }
  .hero-ticker-container .hero-ticker-content span {
    padding: 0 50px;
    font-size: 13px;
    letter-spacing: 1px;
  }
}
.banner-card {
  display: flex;
  background: #F3E2D5;
  overflow: hidden;
}
@media (max-width: 768px) {
  .banner-card {
    flex-direction: column;
  }
}

.banner-image {
  flex: 1;
}
.banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.banner-content {
  flex: 1.2;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .banner-content {
    padding: 1rem;
  }
}
.banner-content .studio-label {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000000;
}
@media (max-width: 768px) {
  .banner-content .studio-label {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 20px;
  }
}
.banner-content .description {
  font-size: 16px;
  color: #000000;
}
.banner-content .hero-top-label {
  font-weight: 600;
  font-size: 15px;
  color: #6B0606;
}
.banner-content .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 480px) {
  .banner-content .cta-buttons {
    flex-direction: column;
  }
}

.home-about-sync-section {
  background-color: #F3E2D5;
}

.about-sync {
  display: flex;
  max-width: 992px;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .about-sync {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
.about-sync .about-left {
  flex: 1;
}
.about-sync .about-left img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 10px 10px 0px #6B0606;
}
.about-sync .about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.where-we-work-section {
  background: #F3E2D5;
}
.where-we-work-section .location-intro {
  max-width: 700px;
}
.where-we-work-section .location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .where-we-work-section .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .where-we-work-section .location-grid {
    grid-template-columns: 1fr;
  }
}
.where-we-work-section .location-grid .location-item {
  background: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 0.1rem solid rgba(0, 0, 0, 0.05);
}
.where-we-work-section .location-grid .location-item:hover {
  transform: translateX(10px);
  background: #6B0606;
  color: #fff;
  border-left-color: #222;
}
.where-we-work-section .location-grid .location-item:hover i {
  color: #fff;
}
.where-we-work-section .location-grid .location-item i {
  color: #6B0606;
  font-size: 20px;
}
@media (max-width: 768px) {
  .where-we-work-section .location-grid .location-item i {
    font-size: 16px;
  }
}
.where-we-work-section .location-grid .location-item span {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .where-we-work-section .location-grid .location-item span {
    font-size: 16px;
  }
}

.full-gallery-page .rms-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.rms-ba-grid .rms-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 992px) {
  .rms-ba-grid .rms-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .rms-ba-grid .rms-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.rms-ba-grid .rms-row .ba-card .ba-split {
  min-height: 600px;
}
@media (max-width: 768px) {
  .rms-ba-grid .rms-row .ba-card .ba-split {
    min-height: 300px;
  }
}
.rms-ba-grid .ba-card .ba-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 300px;
}
@media (max-width: 992px) {
  .rms-ba-grid .ba-card .ba-split {
    min-height: 200px;
  }
}
.rms-ba-grid .ba-card .ba-split .side {
  text-align: left;
  background-size: cover;
  background-position: center;
}
.rms-ba-grid .ba-card .ba-split .side span {
  background-color: #6B0606;
  display: inline-block;
  padding: 0.5rem;
  color: #ffffff;
  margin: 1rem;
  font-weight: 700;
}

.btnGp {
  text-align: center;
}
.btnGp a {
  margin-top: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services-grid .serviceItem {
  position: relative;
  display: flex;
  justify-content: center;
}
.services-grid .serviceItem img {
  width: 100%;
}
.services-grid .serviceItem h4 {
  position: absolute;
  bottom: 0.4rem;
  left: auto;
  right: auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-grid .serviceItem h4 i {
  padding: 0.6rem;
  background-color: #6B0606;
  font-size: 1.6rem;
  margin-right: 0.8rem;
  color: white;
}

.renu-info-wrapper {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .renu-info-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 576px) {
  .renu-info-wrapper {
    grid-template-columns: 1fr;
  }
}
.renu-info-wrapper .info-item-card {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 1rem;
  background-color: #6B0606;
}
.renu-info-wrapper .info-item-card img {
  margin: 0.5rem;
}
.renu-info-wrapper .info-item-card .info-body {
  display: grid;
  align-items: center;
  align-content: center;
  gap: 1rem;
  padding: 1rem;
}
.renu-info-wrapper .info-item-card .info-body h3 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-content: center;
  align-items: center;
  color: #ffffff;
}
.renu-info-wrapper .info-item-card .info-body p {
  color: #ffffff;
}

.PackagesContanet {
  background-color: #F3E2D5;
}

.packages-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.packages-wrapper .package-card {
  background-color: #ffffff;
}
.packages-wrapper .package-card .price {
  font-weight: 700;
  color: black;
  margin-bottom: 1rem;
}
.packages-wrapper .package-content {
  padding: 2rem;
  display: grid;
  text-align: center;
  gap: 1rem;
  grid-auto-flow: row;
}
.packages-wrapper .package-features {
  padding: 0rem;
  text-align: left;
  padding-top: 1rem;
}
.packages-wrapper .package-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.4rem;
  margin: 1rem 0;
  padding-left: 0;
}
.packages-wrapper .package-features ul li {
  padding: 0.2rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  color: #4a4a4a;
}
.packages-wrapper .package-features ul li::before {
  content: "\f058";
  font-family: FontAwesome;
}
.packages-wrapper {
  /* 992px से 1439px के बीच - 2 Columns */
}
@media (max-width: 1440px) and (min-width: 1200px) {
  .packages-wrapper .package-card {
    flex: 0 0 calc(33.33% - 20px);
    /* 2 columns */
  }
}
.packages-wrapper {
  /* 576px से 991px के बीच - आप चाहें तो यहाँ भी 2 रख सकते हैं या 1 */
}
@media (max-width: 1200) and (min-width: 576px) {
  .packages-wrapper .package-card {
    flex: 0 0 100%;
    /* Tablet पर भी 1 columns */
  }
}

/* ग्रिड सेटिंग (1440px max) */
.renu-home-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto;
}

/* कार्ड डिजाइन */
.blog-card {
  flex: 0 0 100%;
  /* मोबाइल पर 1 */
  background: #fff;
  transition: 0.3s;
}

@media (min-width: 992px) {
  .blog-card {
    flex: 0 0 calc(50% - 30px);
  }
}
/* टैबलेट पर 2 */
@media (min-width: 1440px) {
  .blog-card {
    flex: 0 0 calc(33.33% - 30px);
  }
}
/* डेस्कटॉप पर 3 */
/* इमेज और डेट बॉक्स */
.blog-thumb {
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.date-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 10px 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.date-badge .day {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #800000;
  /* डिजाइन के हिसाब से गहरा लाल रंग */
  line-height: 1;
}

.date-badge .month {
  display: block;
  font-size: 14px;
  text-transform: capitalize;
  color: #333;
}

/* कंटेंट स्टाइलिंग */
.blog-content {
  padding: 20px;
  text-align: left;
  display: grid;
  gap: 0.6rem;
  background-color: #F3E2D5;
}
.blog-content span a {
  font-size: 12px;
  text-transform: uppercase;
  color: #4a4a4a;
  font-weight: 600;
}
.blog-content a {
  text-decoration: none;
}
.blog-content .blog-title a {
  color: #000000;
}
.blog-content .link {
  color: #6B0606;
}
.blog-content .link:hover {
  color: #4a4a4a;
}
.blog-content p {
  color: #4a4a4a;
}

.appointment-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 992px) {
  .appointment-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 1rem 0;
  }
}
.appointment-container .appointment-img {
  background-size: cover;
  background-position: center;
  min-height: 200px;
}
.appointment-container .appointment-form {
  padding: 3rem 0;
}
@media (max-width: 576px) {
  .appointment-container .appointment-form {
    padding: 0;
  }
}
.appointment-container .appointment-form .headingGrid {
  align-items: flex-start;
  gap: 0.6rem;
}
.appointment-container .appointment-form form {
  display: grid;
  gap: 1rem;
}
.appointment-container .appointment-form form div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 576px) {
  .appointment-container .appointment-form form div {
    grid-template-columns: repeat(1, 1fr);
  }
}
.appointment-container .appointment-form form select,
.appointment-container .appointment-form form .btn {
  width: 100%;
}
.appointment-container .appointment-form form input,
.appointment-container .appointment-form form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eee;
  font-size: 15px;
  outline: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  color: #333;
}
@media (max-width: 576px) {
  .appointment-container .appointment-form form input,
  .appointment-container .appointment-form form select {
    padding: 10px 18px;
  }
}
.appointment-container .appointment-form form input:hover,
.appointment-container .appointment-form form select:hover {
  border-color: #DFBFA8;
  /* Golden-ish Border */
  background: #F3E2D5;
}
.appointment-container .appointment-form form input:focus,
.appointment-container .appointment-form form select:focus {
  border-color: #6B0606;
  /* Deep Red */
  box-shadow: 0 0 12px rgba(128, 0, 0, 0.15);
  transform: translateY(-2px);
}

.contact-info-wrapper {
  display: grid;
  gap: 2rem;
}
.contact-info-wrapper .contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
  align-items: center;
}
@media (max-width: 992px) {
  .contact-info-wrapper .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .contact-info-wrapper .contact-details {
    grid-template-columns: repeat(1, 1fr);
    gap: 0rem;
  }
}
.contact-info-wrapper .contact-details .contact-item {
  padding: 1rem;
  text-align: center;
}
.contact-info-wrapper .contact-details .contact-item strong {
  color: #6B0606;
  font-size: 20px;
}
.contact-info-wrapper .contact-details .contact-item a {
  color: #4a4a4a;
  text-decoration: none;
}
.contact-info-wrapper .contact-details .contact-item a:hover {
  color: #6B0606;
}
.contact-info-wrapper .contact-details .contact-item p {
  font-size: 18px;
}

.site-footer {
  background: #6B0606;
  text-align: center;
  padding: 20px;
  display: grid;
  gap: 1rem;
}
.site-footer .renu-svg-display {
  display: grid;
  justify-content: center;
}
.site-footer .renu-social-icons-box {
  justify-content: center;
}
.site-footer .renu-social-icons-box .s-icon {
  color: #ffffff;
}
.site-footer p,
.site-footer h2 {
  color: #ffffff;
}
.site-footer p a,
.site-footer h2 a {
  color: #ffffff;
}
.site-footer p a:hover,
.site-footer h2 a:hover {
  color: #DFBFA8;
}

.renu-svg-container svg {
  width: 30px;
  /* Apne hisab se badal lein */
  height: auto;
}

body {
  font-family: "Istok Web", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Ngetic Modern";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}/*# sourceMappingURL=main.css.map */