/*!
Theme Name: Blocksy
Theme URI: https://creativethemes.com/blocksy/
Author: CreativeThemes
Author URI: https://creativethemes.com
Description: Blocksy is a fast, modern WordPress theme with advanced WooCommerce support and full compatibility with the block editor.
Version: 2.1.40
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Copyright: (c) 2019 CreativeThemes.
Requires at least: 6.5
Requires PHP: 7.0
Tested up to: 7.0
Text Domain: blocksy
Blocksy Minimum Companion Version: 2.1.36-dev1
Tags: accessibility-ready, blog, block-patterns, e-commerce, wide-blocks, block-styles, grid-layout, one-column, two-columns, three-columns, four-columns, right-sidebar, left-sidebar, translation-ready, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments
*/
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* \\\\\\HOME-PAGE\\\\\\ */
* {
  font-family: "inter", serif;
}

.kalyani-banner-container {
  /* background-color: #BA2525; */
  position: relative;
  height: 710px;
  /* display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center; */
}

.kalyani-navbar-container {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.kalyani-navbar {
  position: relative;
  width: 100% !important;
  height: 90px;
  border-bottom: #dcb34f;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

#slider {
  position: relative;
  width: 100%;
  z-index: 0;
}

.carousel-banner {
  position: relative;
  height: 710px;
  width: 100%;
}

.banner-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kalyani-banner-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  z-index: 2;
  /* above image */
  text-align: center;
}

.kalyani-banner-heading,
.kalyani-banner-txt,
.kalyani-banner-btn {
  position: relative;
  z-index: 3;
}

.kalyani-navbar-links {
  color: #fff;
  padding: 0 !important;
  display: flex;
  gap: 32px;
  list-style: none;
  margin-bottom: 0px;
}

.kalyani-navbar-links li {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  cursor: pointer;
}

.kalyani-navbar-links a {
  color: #fff;
  text-decoration: none;
}

.kalyani-navbar-links li a:hover {
  color: #dcb34f;
  cursor: pointer;
}

.kalyani-navbar-btn {
    padding: 12px 24px;
    position: relative;
    background-color: transparent;
    border: 1px solid #dcb34f;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
}

/* Text Styling */
.kalyani-navbar-btn-txt {
    color: #dcb34f;
    padding: 0 !important;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 6px;
    position: relative;
    z-index: 2;
    transition: color 0.35s ease;
}

/* Button Hover */
.kalyani-navbar-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(220, 179, 79, 0.25);
}

/* Golden Background Fill Animation */
.kalyani-navbar-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #dcb34f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.kalyani-navbar-btn:hover::before {
    transform: scaleX(1);
}

/* Text Color Change */
.kalyani-navbar-btn:hover .kalyani-navbar-btn-txt {
    color: #000;
}

/* Arrow Animation */
.navbar-arrow {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.kalyani-navbar-btn:hover .navbar-arrow {
    transform: translateX(5px);
    filter: brightness(0);
}

.banner-btn-arrow {
  /* width: 4px;
  height: 4px;
} */
}
/* /////// */

/* ===== ARROWS ===== */

#slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 45px;
  height: 45px;
  font-size: 20px;
  transition: 0.3s;
}

/* left arrow */
#slider .owl-nav .owl-prev {
  left: 20px;
  outline: none;
}

/* right arrow */
#slider .owl-nav .owl-next {
  right: 20px;
  outline: none;
}

/* hover effect */
#slider .owl-nav button:hover {
  background: #dcb34f !important;
  color: #000 !important;
}

/* ===== DOTS ===== */
/* DOT CONTAINER */
#slider .owl-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* DEFAULT DOT */
#slider .owl-dots .owl-dot span {
  width: 5px;
  height: 5px;
  background: #fff;
  display: inline-block;
  margin: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}

/* ACTIVE DOT (outer ring) */
#slider .owl-dots .owl-dot.active span {
  width: 27px;
  height: 27px;
  background: transparent;
  border: 1px solid #fff;
}

/* INNER DOT (center small dot) */
#slider .owl-dots .owl-dot.active span::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;

  /* center perfectly */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kalyani-banner-heading {
  font-family: "Cinzel", serif;
  color: #ffff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-size: 56px;
  line-height: 66px;
}

.kalyani-banner-txt {
  color: #ffff;
  /* max-width: 587px; */
  font-weight: 300;
  padding-bottom: 28px;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

.kalyani-banner-btn {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.Explore-Portfolio-btn,
.Book-Consultation-btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
}

/* Existing Styles */
.Explore-Portfolio-btn {
    border: none;
    padding: 12px 30px;
    background-color: #d4af37;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 8px;
}

.Book-Consultation-btn {
    border: 1px solid #fff;
    padding: 12px 30px;
    background-color: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 8px;
}

/* Hover Animation */
.Explore-Portfolio-btn:hover,
.Book-Consultation-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Arrow Animation */
.Explore-Portfolio-btn img,
.Book-Consultation-btn img {
    transition: transform 0.35s ease;
}

.Explore-Portfolio-btn:hover img,
.Book-Consultation-btn:hover img {
    transform: translateX(6px);
}

/* Shine Effect */
.Explore-Portfolio-btn::before,
.Book-Consultation-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.Explore-Portfolio-btn:hover::before,
.Book-Consultation-btn:hover::before {
    left: 130%;
}

/* Optional Color Change */
.Explore-Portfolio-btn:hover {
    background-color: #c59a1f;
}

.Book-Consultation-btn:hover {
    background-color: #fff;
    color: #000;
}

.Book-Consultation-btn:hover img {
    filter: brightness(0);
}

.white-banner-arrow {
  width: 4px;
  height: 4px;
}

/* /////// */
/* =======part1======== */
.about-kalyani-container {
  width: 100%;
  padding: 100px 0;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.about-kalyani-section {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}

.about-kalyani-img-setion {
  width: 50%;
}

.about-kalyani-img {
  background-color: #ba2525;
  width: 100%;
  height: 100%;
}

.about-kalyani-content {
  width: 50%;
  align-self: start;
  margin-top: 20px;
}

.about-kalyani-heading {
  font-family: "Cinzel", serif;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #000000;
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
}

.about-kalyani-txt {
  margin: 0;
  color: #575757;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
}

.about-kalyani-btn {
    border: none;
    position: relative;
    padding: 12px 24px;
    background-color: #000000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
}

/* Hover Effect */
.about-kalyani-btn:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25) !important;
    background-color: #000 !important;
}

/* Arrow Animation */
.about-kalyani-btn img {
    transition: transform 0.35s ease;
}

.about-kalyani-btn:hover img {
    transform: translateX(6px) !important;
}

/* Shine Sweep Animation */
.about-kalyani-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.about-kalyani-btn:hover::before {
    left: 130%;
}

.white-arrow {
  width: 8px !important;
  height: 8px !important;
}

/* ///////// */
.our-interior-design-services-container {
  width: 100%;
  padding-bottom: 100px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.our-interior-design-services-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.our-interior-design-services-heading {
  font-family: "Cinzel", serif;
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500 !important;
  font-size: 36px;
  font-weight: 500;
}

.our-interior-design-services-card-container {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

.our-interior-design-services-cards {
  padding: 16px;
  width: 100%;
  border: 1px solid #0000001a;
  background-color: #fff;
}

.our-interior-design-services-img {
  width: 100%;
  height: 100%;
}

.our-interior-design-services-card-heading {
  text-align: center;
  padding-top: 29px;
  font-size: 22px;
  font-weight: 500;
}

.our-interior-design-services-card-txt {
  color: #626262;
  text-align: center;
  padding-top: 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

/* ////////// */

.recent-project-heading {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 24px;
  padding-bottom: 38px;
  text-transform: uppercase;
  text-align: center;
}


.recent-project-img-section .item {
  height: 430px !important;
}

.recent-project-img-section .item img {
  width: 100%;
  height: 430px !important;
  object-fit: cover;
}

 @media (max-width: 991px) {

	.recent-project-img-section .item,
	.recent-project-img-section .item img {
	  height: 320px;
	}
}

@media (max-width: 767px) {

            -.recent-project-img-section .item,
            .recent-project-img-section .item img {
                height: 220px;
            }
        }

.about-us-in-numbers-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  justify-content: space-around;
}

.about-us-in-number-content {
  border-right: 1px solid #4e4e4e;
}

.about-us-in-numbers {
  font-family: "Cinzel", serif;
  text-align: center;
  color: #d4af37;
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
}

.about-us-txt {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

/* /////// */
.why-choose-kalyani-container {
  width: 100%;
  padding: 100px 0;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.why-choose-kalyani-section {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

.why-choose-kalyani-img-setion {
  width: 50%;
}

.why-choose-kalyani-img {
  width: 100%;
  height: 100%;
}

.why-choose-kalyani-content {
  width: 50%;
  align-self: start;
}

.why-choose-kalyani-heading {
  font-family: "Cinzel", serif;
  max-width: 644px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #000000;
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
}

.why-choose-kalyani-txt {
  margin: 0;
  color: #575757;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
}

.why-choose-kalyani-ul {
  margin-left: 15px;
  padding: 0 !important;
  color: #575757;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 33px !important;
}

.why-choose-kalyani-btn {
    border: none;
    padding: 12px 24px;
    position: relative;
    background-color: #000000;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
}

/* Hover Effect */
.why-choose-kalyani-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
/*     background-color: #d4af37; */
}

/* Arrow Animation */
.why-choose-kalyani-btn img {
    transition: transform 0.35s ease;
}

.why-choose-kalyani-btn:hover img {
    transform: translateX(6px);
}

/* Shine Sweep Animation */
.why-choose-kalyani-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.why-choose-kalyani-btn:hover::before {
    left: 130%;
}

.white-choose-kalyani-arrow {
  width: 10px;
  height: 10px;
}

/* ////// */

.about-us-in-numbers-container {
  background-color: #000000;
  width: 100%;
  padding: 55px 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* //////// */
.what-our-client-says-container {
  width: 100%;
  padding: 100px 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.what-our-client-says-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.what-our-client-says-heading {
  font-family: "Cinzel", serif;
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 36px;
  font-weight: 500;
}

.what-our-client-says-card-container {
  width: 100%;
}

/* ===== TESTIMONIALS OWL DOTS ===== */
.what-our-client-says-card-container .owl-dots {
  margin-top: 40px !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.what-our-client-says-card-container .owl-dots .owl-dot span {
  width: 6px !important;
  height: 6px !important;
  background: #dcb34f !important;
  display: inline-block !important;
  margin: 10px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative !important;
}

.what-our-client-says-card-container .owl-dots .owl-dot.active span {
  width: 24px !important;
  height: 24px !important;
  background: transparent !important;
  border: 1px solid #dcb34f !important;
}

.what-our-client-says-card-container .owl-dots .owl-dot.active span::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #dcb34f;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.what-our-client-says-cards {
  padding: 40px 30px 20px 30px;
  width: 100%;
  border-radius: 0px;
  border: 1px solid #e5e7eb;
  background-color: #fff;
}

.star-rating-flex {
  display: flex;
  gap: 4px;
}

.what-our-client-says-card-logo-img {
  width: 20px !important;
  height: 20px !important;
}

.what-our-client-says-card-txt {
  color: #1a1a1a;
  font-style: italic;
  text-align: start;
  max-width: 100%;
  padding-top: 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.what-our-client-says-content {
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.what-our-client-says-txt {
  display: flex;
  flex-direction: column;
}

.what-our-client-says-profile-name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

/* Footer Styling */
.floating-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.floating-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.floating-icon img:hover {
    transform: scale(1.1);
}

.kalyani-footer-container {
  background-color: #000000;
  color: #fff;
  padding: 80px 0 40px 0;
}

/* Container */
.kalyani-footer-section {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Columns */
.left-footer-col {
  flex: 1;
  min-width: 250px;
}

/* Logo */
.kalyani-logo {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 10px;
}

/* Description */
.kalyani-footer-description {
    max-width: 352px;
    margin: 10px 0;
    font-size: 15px;
    line-height: 26px;
    color: #C7C7C7;
    font-family: Inter;
}

/* Social Icons */
.kalyani-footer-social-icons {
  margin-top: 15px;
}

.kalyani-footer-social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
  background: #222;
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #d4af37;
  color: #000;
}

.whatsapp-icon {
	color: red;
}

/* Headings */
.middle-footer-col {
  flex: 1;
  min-width: 250px;
}

.middle-footer-col h3 {
  margin-bottom: 15px;
  color: #fff;
}

/* Links */
.middle-footer-col ul {
  list-style: none;
  padding: 0;
}

.middle-footer-col ul li {
  margin-bottom: 10px;
}

.middle-footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.middle-footer-col ul li a:hover {
  color: #d4af37;
}

/* Contact */
.right-footer-col p {
    margin: 10px 0;
    color: #C7C7C7;
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 33px;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom-txt {
  color: #d4af37;
  margin: 0 !important;
}

@media only screen and (max-width: 990px) {
  .kalyani-navbar-links {
    color: #fff;
    display: flex;
    gap: 15px;
    list-style: none;
  }

  /* .kalyani-banner-section {

        width: 100%;
        padding: 80px 0;
    } */

  .kalyani-banner-heading {
    color: #ffff;
    font-weight: 500;
    font-size: 45px;
    line-height: 55px;
  }

  .kalyani-banner-txt {
    color: #ffff;
    font-weight: 200;
    padding-bottom: 20px;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  /* /////// */
  .about-kalyani-container {
    width: 100%;
    padding-top: 80px;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
  }

  .about-kalyani-section {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
  }

  .about-kalyani-heading {
    padding-bottom: 10px;
    text-transform: uppercase;
    color: #000000;
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
  }

  .about-kalyani-txt {
    margin: 0;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
  }

  .our-interior-design-services-heading {
    margin-bottom: 28px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 30px;
    font-weight: 500;
  }

  .our-interior-design-services-card-container {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .recent-project-heading {
    font-weight: 500;
    font-size: 30px;
    line-height: 24px;
    padding-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
  }

  .why-choose-kalyani-section {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
  }

  .why-choose-kalyani-heading {
    padding-bottom: 10px;
    text-transform: uppercase;
    color: #000000;
    font-size: 25px;
    font-weight: 500;
    line-height: 32px;
  }

  .why-choose-kalyani-txt {
    margin: 0;
    color: #575757;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
  }

  .what-our-client-says-heading {
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 30px;
    font-weight: 500;
  }

  .what-our-client-says-card-container {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr;
  }

  .our-interior-design-services-card-heading {
    text-align: center;
    padding-top: 25px;
    font-size: 20px;
    font-weight: 500;
  }

  .our-interior-design-services-cards {
    padding: 25px;
    width: 100%;
    border: 1px solid #0000001a;
    background-color: #fff;
  }

  .our-interior-design-services-card-txt {
    color: #626262;
    text-align: center;
    padding-top: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
  }

  .about-us-in-numbers-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
    justify-content: space-around;
  }
}

@media only screen and (max-width: 650px) {
  .kalyani-navbar {
    width: 100%;
    height: 90px;
    border-bottom: #dcb34f;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .kalyani-navbar-btn {
    padding: 5px 10px;
    position: relative;
    background-color: #000000;
    border: 1px solid #dcb34f;
  }

  .navbar-arrow {
    width: 10px;
    height: 10px;
    z-index: 1;
    position: absolute;
    top: 5px;
    right: 1px;
  }

  .kalyani-navbar-links li {
    font-size: 10px;
    font-weight: 400;
    line-height: 24px;
    /* color: #DCB34F; */
    cursor: pointer;
  }

  .navbar-logo {
    width: 35px;
  }

  /* .kalyani-banner-section {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    } */

  .about-us-in-numbers-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 55px;
    justify-content: space-around;
  }

  .about-us-in-number-content {
    /* padding: 0 28px; */
    border-right: none;
  }

  .kalyani-navbar-btn-txt {
    color: #dcb34f;
    padding: 0 !important;
    font-size: 8px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .kalyani-navbar-links {
    color: #fff;
    display: flex;
    gap: 10px;
    /* list-style: none; */
    /* align-items: center; */
  }

  .about-kalyani-section {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .why-choose-kalyani-section {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .why-choose-kalyani-img-setion {
    width: 100%;
  }

  .why-choose-kalyani-content {
    width: 100%;
  }

  .about-kalyani-img-setion {
    width: 100%;
  }

  .about-kalyani-content {
    width: 100%;
  }

  .kalyani-banner-heading {
    color: #ffff;
    font-weight: 400;
    text-align: center;
    font-size: 25px;
    line-height: 35px;
  }

  .kalyani-banner-txt {
    color: #ffff;
    font-weight: 200;
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
  }

  .Explore-Portfolio-btn {
    padding: 10px 12px;
    position: relative;
    background-color: #dcb34f;
    border: 1px solid #dcb34f;
  }



  .Book-Consultation-btn {
    padding: 10px 12px;
    position: relative;
    background: transparent;
    border: 1px solid #fff;
  }



  .banner-btn-arrow {
    width: 7px;
    height: 7px;
    z-index: 1;
    position: absolute;
    top: 13px;
    right: 4px;
  }

  .banner-gt-symbol {
    padding-right: 10px;
    position: absolute;
    top: 50%;
    right: 0;
  }

  .banner-lt-symbol {
    padding-left: 15px;
    position: absolute;
    top: 50%;
    left: 0;
  }

  .what-our-client-says-card-container {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr;
  }
}

/* \\\\\\\\\HOME-PAGE-END\\\\\\\ */

/* /////////about-page///////// */
.about-banner-container {
  position: relative;
  /* height: 710px; */
}

.about-section-img {
  width: 100%;
  height: 518px;
  object-fit: cover;
  display: block;
}

.about-banner-section {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  text-align: center;
}

.kalyani-navbar-links {
  color: #fff;
  padding: 0 !important;
  display: flex;
  gap: 32px;
  list-style: none;
}

/* /////// */
.about-banner-heading {
  font-family: "Cinzel", serif;
  color: #ffff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}

/* /////// */
/* =======part1======== */
.raksh-interiors-container {
  width: 100%;
  padding: 100px 0;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.raksh-interiors-section {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

.raksh-interiors-img-setion {
  width: 50%;
}

.raksh-interiors-img {
  background-color: #ba2525;
  width: 100%;
  height: 100%;
}

.raksh-interiors-content {
  width: 50%;
}

.raksh-interiors-heading {
  font-family: "Cinzel", serif;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #000000;
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
}

.raksh-interiors-txt {
  margin: 0;
  color: #575757;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
}

.our-process-container {
  padding: 100px 0;
  background-image: url(/wp-content/uploads/2026/05/our-process-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 540px; */
  width: 100%;
}

.our-process-section {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.our-process-heading {
  font-family: "Cinzel", serif;
  margin-bottom: 36px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500 !important;
  font-size: 36px;
  line-height: 48px;
}

.our-process-logo-section {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

.our-process-logo-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.our-process-logo-heading {
  font-weight: 500;
  font-size: 22px;
  padding-top: 24px;
  text-align: center;
}
.our-process-logo-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  position: relative;
}
.our-process-logo-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.our-process-logo-content::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -60%;
  width: 100%;
  height: 10px;
  background: url("/wp-content/uploads/2026/05/about-arrow-img.png") no-repeat center;
  background-size: contain;
}

.our-process-logo-content:last-child::after {
  display: none;
}
.our-process-logo-text {
  max-width: 208px;
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

/* ///////// */

/* Footer Styling */
.footer {
  background-color: #000000;
  color: #fff;
  padding: 100px 0;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Columns */
.footer-col {
  flex: 1;
  min-width: 250px;
}

/* Logo */
.logo {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 10px;
}

/* Description */
.description {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
  background: #222;
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s;
}

/* Headings */
.footer-col h3 {
  margin-bottom: 15px;
  color: #fff;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #d4af37;
}

/* Contact */
.footer-col p {
  margin: 10px 0;
  color: #ccc;
}

/* Bottom Section */

@media only screen and (max-width: 990px) {
  .our-process-logo-content:after {
    display: none;
  }
  .kalyani-banner-section {
    width: 100%;
    padding: 80px 0;
  }

  /* /////// */
  .raksh-interiors-heading {
    font-family: "Cinzel", serif;
    padding-bottom: 10px;
    text-transform: uppercase;
    color: #000000;
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
  }

  .raksh-interiors-txt {
    margin: 0;
    color: #575757;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
  }

  /* /////// */
  .our-process-container {
    padding: 80px 0;
  }

  .our-process-logo-section {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 650px) {
  .kalyani-navbar-links {
    color: #fff;
    padding: 0 !important;
    display: flex;
    gap: 10px;
    list-style: none;
  }

  .kalyani-banner-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
	
	.about-section-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

  .about-banner-heading {
    font-family: "Cinzel", serif;
    color: #ffff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
  }

  .kalyani-banner-heading {
    color: #ffff;
    font-weight: 400;
    text-align: center;
    font-size: 30px;
    line-height: 40px;
  }

  .kalyani-banner-txt {
    color: #ffff;
    font-weight: 200;
    padding-bottom: 15px;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
	padding-left: 10px;
	padding-right: 10px;
  }

  .raksh-interiors-section {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .raksh-interiors-img-setion {
    width: 100%;
  }

  .raksh-interiors-content {
    width: 100%;
  }

  .our-interior-design-services-card-container {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr !important;
  }
}

/* ////////aboutpg-end//////// */

/* /////// */
/* =======part1======== */
.service-banner-container {
  position: relative;
}

.service-section-img {
    width: 100%;
    height: 518px;
    object-fit: cover;
    display: block;
}

.service-banner-section {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  text-align: center;
}

.service-banner-heading {
  font-family: "Cinzel", serif;
  color: #ffff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}

.service-banner-img {
  width: 100%;
  height: 518px;
  object-fit: cover;
  display: block;
}

.service-paragraph-container {
  width: 100%;
  padding: 100px 0;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.service-paragraph-section {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

.service-paragraph-txt {
  text-align: center;
  color: #575757;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

/* ///////// */

/* ////////// */

/* /////// */
.our-app-visual-container {
  width: 100%;
  padding: 100px 0;
}

.our-app-visual-card-container {
  padding-bottom: 100px;
  display: flex;
  gap: 24px;
}

.our-app-visual-card {
  border: 1px solid black;
  padding: 30px;
}

.our-app-visual-card-heading {
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
}

.our-app-visual-card-txt {
  color: #575757;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
}

.footer-img {
  width: 100%;
}

/* ////// */

/* Footer Styling */

/* Container */

/* Columns */

/* Logo */

/* Description */

/* Social Icons */

/* Headings */

/* Links */

/* Contact */

/* Bottom Section */

@media only screen and (max-width: 990px) {
  

  /* /////// */

  .our-interior-design-services-card-container {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .recent-project-heading {
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    padding-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
  }

  .our-app-visual-card-container {
    padding-bottom: 100px;
    display: flex;
    gap: 24px;
    flex-direction: column;
  }
}

@media only screen and (max-width: 650px) {
  .service-banner-heading {
    font-family: "Cinzel", serif;
    color: #ffff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
}
	
	
}

/* \\\\\\\\\SERVICE-PAGE-END\\\\\\\\\\ */

/* //////////project-2//////// */
.project-banner-container {
  position: relative;
}

.project-section-img {
    width: 100%;
    height: 518px;
    object-fit: cover;
    display: block;
}

.project-banner-section {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  text-align: center;
}

.project-banner-heading {
  font-family: "Cinzel", serif;
  color: #ffff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}

.project-banner-img {
  width: 100%;
  height: 518px;
  object-fit: cover;
  display: block;
}

.container-img-nav {
  padding-bottom: 46px;
}

.img-section-nav {
  text-align: center;
  padding-bottom: 40px !important;
  display: flex;
  justify-content: center;
  gap: 36px;
  list-style: none;
}

.container-img-nav li {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
}

.container-img-nav li:hover {
  color: #dcb34f;
  cursor: pointer;
}

.projects-img-container {
  padding: 100px 0;
  width: 100%;
}

.project-img-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.project-img-section-other {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

body {
  background: #f5f5f5;
}

/* Images */
.card-box {
  overflow: hidden;
  border-radius: 8px;
}

.project-imgs {
  width: 100%;
  /* height: 250px; */
  object-fit: cover;
  transition: 0.4s;
}

.card-box:hover img {
  transform: scale(1.05);
}

/* Tabs styling */
.nav-link {
  padding: 0 !important;
  color: black !important;
  font-weight: 500;
  background-color: #fff;
  border: none;
}

.nav-link:hover {
  color: #dcb34f !important;
  cursor: pointer;
}

.nav-link.active {
  color: #dcb34f !important;
  cursor: pointer;
}

.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.gallery-item-other img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* Hidden items */
.hidden {
  display: none;
}

.load-more-btn-section {
  padding-top: 60px;
  display: flex;
  justify-content: center;
}

.load-more-btn {
  border: none;
  position: relative;
  padding: 12px 24px;
  background-color: #000000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  gap: 8px;
}

@media only screen and (max-width: 650px) {
  .project-banner-heading {
    font-family: "Cinzel", serif;
    color: #ffff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
  }

  .img-section-nav {
    text-align: center;
    padding-bottom: 30 !important;
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
  }

  .projects-img-container {
    padding: 80px 0;
    width: 100%;
  }

  .project-img-section-other {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .project-img-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* /////////project-2 end////// */

/* //////////project-details/////////// */

.project-detail-banner-container {
  position: relative;
}

.project-detail-section {
  position: absolute;
  top: 45px ;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  text-align: center;
}

.project-detail-banner-heading {
    font-family: "Cinzel", serif;
    color: #ffff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
}

.project-banner-img {
  width: 100%;
  height: 518px;
  object-fit: cover;
  display: block;
}

/* //// */
.project-overview-container {
  padding-top: 100px;
  display: flex;
  gap: 100px;
}

.sidebar-project-overview {
  width: 40%;
}

.project-overview-content {
  width: 80%;
}

.project-overview-detail-section {
  display: flex;
  gap: 16px;
}

.sidebar-project-overview-icons {
  width: 20px;
  height: 20px;
}

.sidebar-txt {
  font-weight: 400;
  font-size: 14px;
  color: #575757;
}

.sidebar-txt-no {
  color: #343434;
  font-weight: 500;
  font-size: 15px;
}

.project-overview-heading {
  font-family: "Cinzel", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
  margin-bottom: 12px;
}

.project-overview-txt {
  color: #575757;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.projects-img-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.project-detail-btn-section {
  padding-top: 60px;
  display: flex;
  gap: 70px;
  justify-content: center;
}

.project-detail-btn {
  border: none;
  position: relative;
  padding: 12px 24px;
  background-color: transparent;
}

.left-arrow {
  position: absolute;
  top: 18px;
  left: 11px;
  width: 10px;
  height: 10px;
}

.right-arrow {
  position: absolute;
  top: 18px;
  right: 10px;
  width: 10px;
  height: 10px;
}

.project-detail-btn-txt {
  color: black;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

/* //// 
*/
.project-detail-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.all-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
/* Hide all tabs */
.tab-content-detail {
  display: none;
}

/* Show active tab */
#tab1:checked ~ .tabs #content1,
#tab2:checked ~ .tabs #content2,
#tab3:checked ~ .tabs #content3 {
  display: block;
}

/* Hide radio buttons */
input[type="radio"] {
  display: none;
}

.controls {
  padding-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-top: 20px;
}

label {
  cursor: pointer;
}

/* ///// */

.about-our-team-container {
  padding-top: 100px;
}

.service-paragraph-content {
  max-width: 840px;
}

@media only screen and (max-width: 990px) {
  .project-overview-heading {
    font-size: 30px;
    font-weight: 500;
    line-height: 48px;
    padding-bottom: 10px;
  }

  .projects-img-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
  }

  
}

@media only screen and (max-width: 650px) {
	.service-section-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
	.project-section-img {
		width: 100%;
		height: 400px;
		object-fit: cover;
		display: block;
	}
	
	.project-detail-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
	}
  .project-detail-banner-heading {
    font-family: "Cinzel", serif;
    color: #ffff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
  }
	
  .project-banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
 

  .project-overview-container {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .sidebar-project-overview {
    width: 100%;
  }

  .project-overview-content {
    width: 100%;
  }

  .all-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
  }
}
/* Project Card Hover Styles */
.gallery-item,
.gallery-item-other {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-item a,
.gallery-item-other a {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.project-hover-card {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: calc(100% - 30px);
  background-color: white;
  padding: 20px 15px;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

.gallery-item:hover .project-hover-card,
.gallery-item-other:hover .project-hover-card {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.project-card-title {
    color: rgb(0, 0, 0);
    margin: 0px 0px 5px !important;
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}

.project-card-subtitle {
    margin: 0 !important;
    color: #575757;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}

/* /////////project-details-end/////////// */


/* /////////contact-pg.////////// */

.contact-banner-container {
  position: relative;
}

.contact-banner-section {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  text-align: center;
}

.contact-banner-heading {
  font-family: "Cinzel", serif;
  color: #ffff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-size: 45px;
  line-height: normal;
  margin-bottom: 0px;
}

.contact-banner-img {
  width: 100%;
  height: 518px;
  object-fit: cover;
  display: block;
}

.get-in-touch-container {
  padding-top: 100px;
  display: flex;
  gap: 100px;
}
.get-in-touch-section{
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 80px;
}

/* ////// */
.get-in-touch-sidebar-heading {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  padding-bottom: 21px;
}

.get-in-touch-sidebar-section {
  width: 40%;
}


.get-in-touch-detail-section {
  display: flex;
  gap: 21px;
}

.get-in-touch-icons {
    width: 25px;
    height: 25px;
}
.get-in-touch-sidebar-txt {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

.get-in-touch-sidebar-txt-no {
    padding-bottom: 24px;
    color: #575757;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

/* ////// */
.get-in-touch-form-section {
  width: 80%;
}

.get-in-touch-form-section .wpcf7 {
  padding: 60px;
  width: 100%;
  margin: auto;
  background: #FBFBFB;
}


/* ///// */

.get-in-touch-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.get-in-touch-form-group {
  flex: 1;
}

.get-in-touch-form-group p {
	margin-bottom: 0px !important;
}

select, input:is([type=url],[type=tel],[type=text],[type=time],[type=date],[type=datetime],[type=datetime-local],[type=email],[type=number],[type=search],[type=password]) {
	width: 100%;
  padding: 10px 12px;
  border: 1px solid #e3e3e3;
  outline: none;
  font-size: 13px !important;
  background: #fff;
  color: #575757 !important;
	border-radius: 0px !important;
}

select option {
    color: #575757 !important;
	border-radius: 0px !important;
}

 .wpcf7-textarea {
	width: 100%;
  padding: 14px 12px;
  border: 1px solid #e3e3e3;
  outline: none;
  font-size: 13px;
  background: #fff;
  color: #575757 !important;
	 border-radius: 0px !important;
}

.wpcf7-form-control::placeholder,
.wpcf7-select::placeholder,
.wpcf7-textarea::placeholder {
	font-family: Inter;
	font-weight: 400;
	font-style: Regular;
	font-size: 13px;
	line-height: 24px;
	letter-spacing: 0px;
	vertical-align: middle;
	color: #575757;

}

.get-in-touch-contact-form .wpcf7-select {
	width: 100%;
  padding: 10px 12px;
  border: 1px solid #e3e3e3;
  outline: none;
  font-size: 14px !important;
  background: #fff;
  color: #333 !important;
	border-radius: 0px !important;
}

.get-in-touch-contact-form input,
.get-in-touch-contact-form select,
.get-in-touch-contact-form textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #e3e3e3;
  outline: none;
  font-size: 14px;
  background: #fff;
  color: #333;
}

.get-in-touch-contact-form input::placeholder,
.get-in-touch-contact-form textarea::placeholder {
  color: #777;
}

.get-in-touch-contact-form textarea {
  height: 140px;
  resize: none;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #222;
}
.send-message-btn-section{
  padding-top: 25px;
}
.map-img-container{
  padding-top: 100px;
  width: 100%;
}

.map-img{
  width: 100%;
}

/* /////// */
.our-expertise-promise-container {
  width: 100%;
  padding: 100px 0;
}

.our-expertise-promise-card-container {
  padding-bottom: 100px;
  display: flex;
  gap: 24px;
}
.our-expertise-promise-card {
    border: 1px solid #000000B2;
    padding: 30px;
}
.our-expertise-promise-card-heading {
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
}

.our-expertise-promise-card-txt {
  color: #575757;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
}

.footer-img {
  width: 100%;
}

@media only screen and (max-width: 990px) {
  

  /* /////// */

.get-in-touch-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.get-in-touch-sidebar-section {
    width: 100%;
}
.get-in-touch-form-section {
    width: 100%;
}
.our-expertise-promise-card-container {
    padding-bottom: 100px;
    display: flex;
    gap: 24px;
    flex-direction: column;
}
}

@media only screen and (max-width: 650px) {
	#slider .owl-nav {
		display: none;
	}
	.kalyani-banner-container {
    /* background-color: #BA2525; */
    position: relative;
    height: 550px;
}
	.carousel-banner {
    position: relative;
    height: 550px;
    width: 100%;
}
	.get-in-touch-form-section .wpcf7 {
    padding: 20px;
    width: 100%;
    margin: auto;
    background: #FBFBFB;
}
	
	.contact-banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
  .contact-banner-heading {
    font-family: "Cinzel", serif;
    color: #ffff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
  }
  .get-in-touch-contact-form input, .get-in-touch-contact-form select, .get-in-touch-contact-form textarea {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 12px;
    background: #fff;
    color: #333;
}
.get-in-touch-contact-form {
    padding: 20px;
    width: 100%;
    margin: auto;
    background: #FBFBFB;
}
.get-in-touch-form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.get-in-touch-sidebar-txt {
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
}
.get-in-touch-sidebar-txt-no {
    padding-bottom: 20px;
    color: #575757;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}
.get-in-touch-detail-section {
    display: flex;
    gap: 15px;
}
.map-img-container {
    padding-top: 80px;
    width: 100%;
}

.our-expertise-promise-card {
    border: 1px solid #000000B2;
    padding: 20px;
}
.get-in-touch-container {
    padding-top: 80px;
    display: flex;
    /* gap: 100px; */
}
}

/* ////////contact-pg-end//////// */

#header {
    position: absolute !important;
    width: 100% !important;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
}
 
.widget-menu .menu-item {
	margin-bottom: 10px;
}
 


.widget-menu li a {
    text-decoration: none !important;
    color: #C7C7C7;
    transition: 0.3s;
    cursor: pointer;
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
}

.widget-menu li a:hover {
  color: #dcb34f;
  cursor: pointer;
}
 
.widget-title {
    font-family: Inter;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 28px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #fff !important;
}
 
 
.right-footer-col h3 {
    font-family: Inter;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 28px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #fff !important;
}
 
@media (max-width: 600px) {
    .ct-footer .ct-container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 40px !important;
    }
}

/* Footer middle row container */
@media (min-width: 576px) {
    footer[data-id="type-1"] [data-row="middle"] .ct-container {
        max-width: 540px;
		--bs-gutter-x: 1.5rem;
		padding-right: calc(var(--bs-gutter-x) * .5);
    	padding-left: calc(var(--bs-gutter-x) * .5);
    }
}

@media (min-width: 768px) {
    footer[data-id="type-1"] [data-row="middle"] .ct-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    footer[data-id="type-1"] [data-row="middle"] .ct-container {
        max-width: 960px;
    }
}

@media (min-width: 1024px) {
.ct-footer [data-column="widget-area-2"] { 
		align-items: center;
	}
}

@media (min-width: 1200px) {
    footer[data-id="type-1"] [data-row="middle"] .ct-container {
        max-width: 1140px;
    }
	
	
}

@media (min-width: 1400px) {
    footer[data-id="type-1"] [data-row="middle"] .ct-container {
        max-width: 1320px;
    }
}


 /* ── SECTION ── */
    .approach-section {
/*       background: #fff; */
/*       padding: 80px 60px 90px; */
/*       max-width: 1200px; */
/*       margin: 0 auto; */
    }

    .section-heading {
      text-align: center;
      margin-bottom: 20px;
    }

    .section-heading h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 400;
      color: var(--gold);
      letter-spacing: 1px;
    }

    .section-tagline {
      text-align: center;
      font-size: 0.95rem;
      color: var(--dark);
      font-style: italic;
      margin-bottom: 60px;
    }

    /* ── GRID ── */
    .approach-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px 55px;
    }

    .approach-item {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .item-top {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .item-icon {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      opacity: 0.85;
    }

    .item-title {
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--dark);
      line-height: 1.4;
    }

    .item-body {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
      padding-left: 0;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .approach-grid { grid-template-columns: repeat(2, 1fr); }
      nav { padding: 0 24px; }
      .approach-section { padding: 60px 24px; }
    }

    @media (max-width: 560px) {
      .approach-grid { grid-template-columns: 1fr; }
      .section-heading h2 { font-size: 2rem; }
      .nav-links { display: none; }
    }