@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap");

body {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

:root {
  --white: #fff;
  --black: #000;
  --gray: #ccc;
  --yellow: #ffdc74;
  --blue: #075c63;
  --lightblack: #797777eb;
  --lightgray: #f4f1f1;

  --success-color: #16a34a;
  --success-hover-color: #16a34a9c;
  --danger-color: #e22f2f;
  --danger-hover-color: #e22f2f9c;

  --font-color: #333;
  --logo-blue-color: #249ea4;
  --logo-yellow-color: #faa633;
  --secondary-color: #62301e;
  --shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.2), 0 12px 10px 0 rgba(0, 0, 0, 0.06);
}

/* utilities */
.bg-logo-blue {
  background-color: var(--logo-blue-color) !important;
}

.bg-logo-yellow {
  background-color: var(--logo-yellow-color);
}

.bg-gray {
  background-color: var(--lightgray) !important;
}

.color-logo-blue {
  color: var(--logo-blue-color);
}

.color-logo-yellow {
  color: var(--logo-yellow-color);
}

.box-shadow {
  box-shadow: var(--shadow);
}

.br-30 {
  border-radius: 30px;
}

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

.btn-gfe {
  color: var(--white) !important;
  background-color: var(--logo-blue-color) !important;
  transition: all 1s ease-in-out;
}

a.txt-none {
  text-decoration: none !important;
}

a.dec-none {
  color: var(--logo-yellow-color) !important;
  text-decoration: none !important;
}

a.f-none {
  color: inherit !important;
  text-decoration: none !important;
}
/* utilities - end */

.pimg img,
.popimg img {
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
}
/* slider arrows */
.custom-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.next-arrow,
.prev-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: var(--logo-yellow-color);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-arrow:hover,
.next-arrow:hover {
  background-color: var(--white);
  color: var(--logo-yellow-color);
}

.progress-div {
  width: 200px;
  height: 4px;
  background-color: var(--white);
  border-radius: 2px;
  overflow: hidden;
}

.progress-div .progress-bar {
  width: 0;
  height: 100%;
  background-color: var(--logo-yellow-color);
  transition: width 0.3s ease;
}

/* Navbar Styling */
.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: var(--font-color) !important;
  font-weight: 500 !important;
  padding: 8px 15px !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--logo-yellow-color) !important;
}

/* Dropdown Styling */
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.dropdown-item {
  font-weight: 500 !important;
  padding: 8px 20px;
  color: var(--font-color);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--logo-yellow-color) !important;
  padding-left: 25px;
}

/* Multi-level dropdown */
.dropdown-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
}

.dropend:hover > .dropdown-submenu {
  display: block;
}

/* hero section */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  color: var(--white);
  padding: 2rem 0;
}

.hero-content h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-cta {
  background-color: var(--logo-yellow-color) !important;
  color: var(--white) !important;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: transparent !important;
  color: var(--logo-yellow-color) !important;
  border: 1px solid var(--logo-yellow-color) !important;
  transform: translateY(-2px);
}

/* company info */
.company-info-section {
  padding: 40px 0;
  background-color: var(--white);
  position: relative;
}
.company-info-section .container {
  height: 500px;
}
.image-stack {
  width: 100%;
  position: relative;
}

.stack-img {
  position: absolute;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  width: 100%;
  object-fit: cover;
}

.stack-img:hover {
  scale: 1.1;
  z-index: 5;
}

.image-stack-2 {
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stack-img-2 {
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.stack-img-2:hover {
  scale: 1.1;
  z-index: 5;
}

.img-1 {
  top: 0;
  left: 0;
  z-index: 1;
}

.img-2 {
  top: 90px;
  left: 100px;
  z-index: 2;
}

.img-3 {
  top: 194px;
  left: 190px;
  z-index: 3;
}

.info-content {
  height: 500px;
  display: flex;
  flex-direction: column;
}

.company-content {
  height: 70%;
  background-color: var(--blue);
  border-radius: 40px 40px 40px 0;
  position: relative;
}

.company-content-2 {
  border-radius: 40px 40px 40px 40px;
}

.company-desc {
  color: var(--white);
  padding: 30px 60px 0 170px;
}

.company-desc-3 {
  color: var(--white);
  padding: 20px 30px;
}
.company-service-desc {
  padding: 60px 90px 0 190px;
}

.company-desc h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--white);
}

.company-desc p {
  font-size: 16px;
  color: var(--white);
}

.company-service-desc h2 {
  margin-bottom: 30px;
}
.company-service-desc p {
  font-size: 17px;
}

.company-desc-design {
  position: absolute;
  width: 330px;
  height: 80px;
  background: var(--white);
  left: 0;
  bottom: 0;
  border-radius: 0 15px 0 0;
}

.company-desc-design:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  height: 40px;
  width: 40px;
  border-bottom-left-radius: 50%;
  background-color: transparent;
  box-shadow: 0 20px 0 0 var(--white);
}

.company-desc-design:after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 0;
  height: 40px;
  width: 40px;
  border-bottom-left-radius: 50%;
  background-color: transparent;
  box-shadow: -20px 0 0 0 var(--white);
}

.team-highlights-content {
  height: 30%;
  background-color: var(--yellow);
  display: flex;
  border-radius: 0 40px 40px;
}

.team-highlights-design {
  position: relative;
  width: 80%;
  height: 80px;
  background: var(--white);
  left: 0;
  bottom: 0;
  border-radius: 0 0 15px 0;
}

.team-highlights-design:before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  height: 40px;
  width: 40px;
  border-top-left-radius: 50%;
  background-color: transparent;
  box-shadow: 0 -20px 0 0 var(--white);
}

.team-highlights-design:after {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  height: 40px;
  width: 40px;
  border-top-left-radius: 50%;
  background-color: transparent;
  box-shadow: -20px 0 0 0 var(--white);
}

.team-highlights {
  padding: 10px 30px 10px 10px;
}

.team-highlights h3 {
  color: var(--font-color);
  font-size: 28px;
  margin-bottom: 15px;
}

.team-highlights p {
  color: var(--font-color);
  font-size: 16px;
}

/* service section */
.services-section {
  background-color: var(--blue);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  border-bottom-left-radius: 0px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.services-header p {
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
}

.services-slider {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-slider::-webkit-scrollbar {
  display: none;
}

.service-card {
  transition: transform 0.3s ease;
  margin: 0 15px;
  position: relative;
  background: transparent;
  border: 2px solid var(--logo-yellow-color);
  border-radius: 30px;
  overflow: hidden;

  height: 100%;
}

.service-img-wrapper {
  height: 180px;
}

.service-img {
  border-radius: 30px 30px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-content {
  padding: 10px;
}

.service-content p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 15px;
}

.service-title {
  border-top: 2px solid var(--logo-yellow-color);
  padding: 5px 0;
}

.service-title h3 {
  text-align: center;
  font-size: 24px;
  color: var(--logo-yellow-color);
  margin: 0;
}

.services-section-design {
  position: absolute;
  width: 20%;
  height: 20%;
  background: var(--white);
  left: 0;
  bottom: 0;
  border-radius: 0 30px 0 0;
}

.services-section-design:before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  height: 60px;
  width: 60px;
  border-bottom-left-radius: 50%;
  background-color: transparent;
  box-shadow: 0 30px 0 0 var(--white);
}

.services-section-design:after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: 0;
  height: 60px;
  width: 60px;
  border-bottom-left-radius: 50%;
  background-color: transparent;
  box-shadow: 0 30px 0 0 var(--white);
}

/* explore Section */
.design-categories {
  padding: 20px 0;
  position: relative;
}

.design-categories h2 {
  color: var(--font-color);
  font-size: 38px;
  margin-bottom: 20px;
}

.design-categories p {
  color: var(--font-color);
  font-size: 18px;
}

.three-bhk .design-categories,
.two-bhk .design-categories {
  background-color: var(--logo-blue-color);
}
.three-bhk .design-categories h2,
.two-bhk .design-categories h2 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 20px;
}

.design-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.design-card:hover {
  transform: translateY(-5px);
}

.design-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.design-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.design-content h3 {
  text-align: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

/* revamp you sapce */
.interior-categories {
  background-color: var(--blue);
  padding: 20px 0;
  margin-top: 60px;
  position: relative;
}

.interior-categories .section-header {
  margin-bottom: 30px;
}

.interior-categories h2 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 15px;
}

.interior-categories p {
  color: var(--white);
  font-size: 17px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.category-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.category-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #8b2801;
  padding: 15px 20px;
  border-radius: 10px;
}

.category-title h3 {
  color: var(--white);
  font-size: 20px;
  margin: 0;
}

.interior-categories-design {
  position: absolute;
  width: 30%;
  height: 20%;
  background: var(--white);
  right: 0;
  bottom: 0;
  border-radius: 30px 0 0 0;
}

.interior-categories-design:before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: 0;
  height: 60px;
  width: 60px;
  border-bottom-right-radius: 50%;
  background-color: transparent;
  box-shadow: 0 30px 0 0 var(--white);
}

.interior-categories-design:after {
  content: "";
  position: absolute;
  top: -60px;
  right: 0;
  height: 60px;
  width: 60px;
  border-bottom-right-radius: 50%;
  background-color: transparent;
  box-shadow: 0 30px 0 0 var(--white);
}

/* our approach */
.approach-section {
  padding: 40px 0;
  background-color: var(--white);
}

.approach-section h2 {
  color: var(--font-color);
  margin: 0;
  font-size: 38px;
}

.three-bhk .approach-section h2,
.two-bhk .approach-section h2 {
  color: var(--font-color);
  margin: 20px;
  font-size: 38px;
}

.approach-card {
  padding: 10px;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper i {
  font-size: 48px;
  color: var(--logo-blue-color);
}

.approach-card h3 {
  min-height: 50px;
  color: var(--font-color);
  font-size: 20px;
  font-weight: 600;
}

.approach-card p {
  color: #666666;
  font-size: 16px;
  margin: 0;
}

/* why choose us */
.why-choose-section {
  background-color: var(--blue);
  padding: 30px 0;
}

.why-choose-section h2 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 15px;
}

.why-choose-section p {
  color: var(--white);
  font-size: 18px;
}

.features-wrapper {
  margin-top: 10px;
}

.features-top,
.features-middle,
.features-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.feature-pill {
  background-color: var(--logo-blue-color);
  border-radius: 50px;
  padding: 15px 35px;
  display: inline-block;
}

.feature-pill:hover {
  background-color: var(--white);
}

.feature-pill h3 {
  color: var(--white);
  font-size: 18px;
  margin: 0;
  white-space: nowrap;
}

.feature-pill:hover h3 {
  color: var(--logo-blue-color);
}

/* testimonial section */
.testimonials-section {
  padding: 40px 0;
  background-color: var(--white);
}

.testimonials-section h2 {
  color: var(--font-color);
  font-size: 38px;
}

.testimonial-card {
  background-color: var(--white);
  border: 2px solid var(--logo-yellow-color);
  border-radius: 30px;
  padding: 30px;
  position: relative;
  margin: 20px 15px;
}

.quote-icon {
  color: #666666;
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  color: var(--font-color);
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  font-size: 18px;
  color: var(--font-color);
  margin: 0;
}

.author-info p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider .owl-stage-outer {
  padding: 20px 0;
}

.testimonial-card {
  margin: 0 15px;
  transition: transform 0.3s ease;
}

.testimonial-progress {
  background-color: var(--gray);
}

/* video testimonials section */
.video-testimonials {
  padding: 40px 0;
  background-color: var(--blue);
}

.video-testimonials h2 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 15px;
}

.video-testimonials p {
  color: var(--white);
  font-size: 18px;
}

.video-slider-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.video-item {
  padding: 0 15px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-progress {
  background-color: var(--white);
}

/* video testimonials section 2 */
.video-testimonials2 {
  padding: 40px 0;
  background-color: var(--lightgray);
}

.video-testimonials2 h2 {
  color: var(--blue);
  font-size: 38px;
  margin-bottom: 15px;
}

.video-testimonials2 p {
  color: var(--blue);
  font-size: 18px;
}

.video-testimonials2 .video-slider-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.video-testimonials2 .video-item {
  padding: 0 15px;
}

.video-testimonials2 .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
}

.video-testimonials2 .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-testimonials2 .video-progress {
  background-color: var(--white);
}

/* faq section */
.faq-section {
  padding: 40px 0;
  background-color: var(--white);
}

.faq-section h2 {
  color: var(--font-color);
  font-size: 38px;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--logo-yellow-color);
}

.faq-button {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  color: var(--logo-blue-color);
  font-size: 18px;
}

.faq-button i {
  color: var(--logo-blue-color);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-button i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 0 25px 0;
  max-height: 370px;
}
.faq-item.active .faq-answer ul {
  margin-top: 10px;
}

.faq-answer p {
  color: var(--black);
  font-size: 16px;
  margin: 0;
}

/* footer section */
.footer-section {
  background-color: var(--secondary-color);
  padding: 60px 0 20px;
  color: var(--white);
}

.footer-logo {
  height: 40px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--logo-blue-color);
}

.social-section h4 {
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.social-links svg {
  fill: var(--secondary-color);
}

.social-link:hover {
  background-color: var(--logo-blue-color);
  color: var(--logo-yellow-color);
}

.social-link:hover svg {
  fill: var(--logo-yellow-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}

.footer-bottom p {
  color: var(--white);
  font-size: 14px;
  margin: 0;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------ */
/* service page */
/* service section */
.services-section2 {
  background-color: var(--white);
  padding: 40px 0;
}

.section-title {
  font-size: 38px;
  color: var(--font-color);
  margin-bottom: 20px;
  text-align: center;
}

.section-description {
  color: #666;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 18px;
}

.service-card2 {
  background: var(--white);
  border: 1px solid var(--yellow);
  border-radius: 30px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card2:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
}

.service-card2:hover .service-icon {
  border: 2px solid #f0f0f0;
}
.service-card2:hover .service-icon i {
  color: var(--logo-yellow-color);
}

.service-card2 h3 {
  font-size: 18px;
  color: var(--font-color);
  margin-bottom: 0;
}

.service-card2 p {
  color: #666;
  font-size: 16px;
  margin-bottom: 0;
}

.row.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
  padding: 40px 0;
  background-color: var(--white);
}

.feature-card {
  padding: 25px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 28px;
  color: var(--blue);
}

.feature-card:hover .feature-icon {
  background-color: var(--blue);
}

.feature-card:hover .feature-icon i {
  color: #f8f9fa;
}

.feature-card h3 {
  font-size: 18px;
  color: var(--font-color);
  margin-bottom: 12px;
  min-height: 40px;
}

.feature-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 0;
}

/* Call To Action Section Styles */
.cta-section .container {
  background-color: var(--logo-blue-color);
  background-image: url("../images/cta-bg.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.three-bhk .cta-section .container {
  background-image: none;
}

.cta-content-div {
  padding: 40px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
}

.three-bhk .cta-content-div {
  padding: 40px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.cta-content {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--logo-blue-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  color: var(--logo-yellow-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(5px);
}

/* Unique Approach Section Styles */
.approach-section {
  padding: 40px 0;
  background-color: var(--white);
}

.approach-timeline {
  position: relative;
  padding: 40px 0 0;
}

.approach-timeline::before {
  content: "";
  position: absolute;
  left: 85px;
  top: 70px;
  bottom: 0;
  width: 2px;
  background: var(--logo-yellow-color);
}

.approach-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}

.approach-item:last-child {
  margin-bottom: 0;
}

.approach-item::before {
  content: "";
  position: absolute;
  left: 81px;
  top: 30px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--logo-blue-color);
  z-index: 1;
}

.approach-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--logo-blue-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
  position: relative;
  z-index: 2;
}

.approach-icon i {
  font-size: 24px;
  color: var(--white);
}

.approach-content {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  flex: 1;
  position: relative;
}

.approach-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 25px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-left: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  transform: rotate(45deg);
}

.approach-content h3 {
  color: var(--font-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.approach-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.approach-item:hover .approach-icon {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(64, 224, 208, 0.3);
}

.approach-item:hover .approach-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Locations Section Styles */
.locations-section {
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../images/img.webp");
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  position: relative;
}

.locations-section .section-title {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 30px;
  text-align: center;
}

.location-card {
  padding: 20px;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #8880809c;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.location-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 20px;
  margin: 0;
  text-align: center;
}

.map-container {
  padding: 0;
  height: 280px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container iframe {
  height: 100%;
  border: none;
}

.address {
  width: 80%;
  padding: 20px 0 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #8880809c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-link i {
  font-size: 1.3rem;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* custom styles */
.services-section .owl-stage {
  height: 400px;
}

.services-section3 .owl-stage {
  height: 420px;
}

.owl-item {
  height: 100%;
}

.category-card-wrapper {
  position: relative;
  cursor: pointer;
}

.category-description {
  margin: 0px;
  position: absolute;
  bottom: 18%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 10px;

  opacity: 0;
  line-height: 20px;
}

.category-card-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000bd;
  opacity: 0; /* Initially hidden */
}

.category-card-wrapper:hover::before {
  opacity: 1; /* Show gradient on hover */
}

.category-card-wrapper:hover .category-description {
  opacity: 1; /* Show text on hover */
}

.testimonials-section .owl-stage {
  height: 500px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* terms & condition - start */
.tandc {
  padding: 25px !important;
  background-color: var(--white);
  box-shadow: 0 0 5px var(--lightblack);
  border-radius: 15px;
  color: var(--lightblack);
}
.tandc table th,
.tandc table td {
  color: var(--lightblack);
}
/* terms & condition - end */

/* thank you page start */
.thimg {
  max-width: 100%;
}
.imgdiv {
  background-color: var(--white);
  border-radius: 5px;
}
/* thank you page end */

.top-bar {
  position: sticky;
  z-index: 1020;
}

.my-swal {
  z-index: 2000 !important;
}
div:where(.swal2-container) {
  z-index: 2000 !important;
}
.custom-blue-backround {
  background-color: var(--blue);
  border-radius: 30px;
}
.custom-lightblue-backround {
  background-color: var(--logo-blue-color);
}
.custom-blue-backround .approach-icon {
  background: var(--logo-yellow-color);
}
.custom-blue-backround .approach-item::before {
  background: var(--logo-yellow-color);
}

.cost-package {
  line-height: 1.6;
  background-color: var(--logo-blue-color);
  padding: 20px;
  border-radius: 30px;
}

/* Table Styles */
.cost-package .pricing-section {
  margin: 30px 0;
}

.cost-package .table-responsive {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cost-package .table {
  margin-bottom: 0;
}

.cost-package .table thead th {
  background: var(--logo-yellow-color);
  color: white;
  font-weight: 600;
  padding: 15px;
  border: none;
  white-space: nowrap;
}

.cost-package .table thead th i {
  margin-right: 8px;
}

.cost-package .table td {
  padding: 15px;
  vertical-align: middle;
}

.cost-package .package-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.cost-package .badge {
  padding: 6px 12px;
  font-weight: 500;
}

.cost-package .price-range {
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}

.cost-package .price-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.cost-package .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cost-package .feature-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.cost-package .feature-list li:last-child {
  margin-bottom: 0;
}

.cost-package .feature-list li i {
  margin-right: 10px;
  min-width: 14px;
}

.mobile-100 {
  width: 50%;
}
/* Responsive Design */
@media (max-width: 991px) {
  .cost-package .table td {
    padding: 12px;
  }

  .cost-package .feature-list {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .cost-package .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cost-package h1 {
    font-size: 1.75rem;
  }

  .cost-package .location {
    font-size: 1rem;
  }

  .cost-package .table thead th {
    padding: 12px 8px;
    font-size: 0.9rem;
  }

  .cost-package .table td {
    padding: 10px 8px;
  }

  .cost-package .package-title {
    font-size: 0.95rem;
    margin-bottom: 5px;
  }

  .cost-package .badge {
    padding: 4px 8px;
    font-size: 0.8rem;
  }

  .cost-package .price-range {
    font-size: 0.95rem;
  }

  .cost-package .price-note {
    font-size: 0.8rem;
  }

  .cost-package .feature-list {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .mobile-100 {
    width: 100%;
  }

  .cost-package .table {
    font-size: 0.85rem;
  }

  .cost-package .table td {
    padding: 8px 6px;
  }

  .cost-package .feature-list li {
    margin-bottom: 5px;
  }

  .cost-package .feature-list li i {
    margin-right: 6px;
  }
}

/* Room Services Section Styles */
.room-services {
  background-color: var(--blue);
  padding: 60px 0;
  position: relative;
  border-radius: 30px;
}

.room-services .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.room-services .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.room-services .section-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
}

.room-services .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.room-services .service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.room-services .service-icon {
  width: 80px;
  height: 80px;
  background: var(--logo-yellow-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-services .service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.room-services .service-content {
  flex: 1;
}

.room-services .service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
}

.room-services .service-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.room-services .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.room-services .feature-list li {
  /* display: flex;
  align-items: center; */
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.room-services .feature-list li:last-child {
  margin-bottom: 0;
}

.room-services .feature-list li i {
  color: var(--logo-yellow-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .room-services .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .room-services .section-header h2 {
    font-size: 2rem;
  }

  .room-services .service-card {
    padding: 25px;
  }

  .room-services .service-icon {
    width: 70px;
    height: 70px;
  }

  .room-services .service-icon i {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .room-services .room-services {
    padding: 40px 0;
  }

  .room-services .section-header h2 {
    font-size: 1.8rem;
  }

  .room-services .section-header p {
    font-size: 1rem;
  }

  .room-services .service-card {
    padding: 20px;
  }

  .room-services .service-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .room-services .section-header h2 {
    font-size: 1.5rem;
  }

  .room-services .service-icon {
    width: 60px;
    height: 60px;
  }

  .room-services .service-icon i {
    font-size: 1.5rem;
  }

  .room-services .service-content h3 {
    font-size: 1.2rem;
  }

  .room-services .service-content p {
    font-size: 0.9rem;
  }

  .room-services .feature-list li {
    font-size: 0.9rem;
  }
}

.custom-blue-approch .icon-wrapper i {
  color: var(--logo-yellow-color);
}
.custom-blue-approch .approach-card h3 {
  color: var(--white);
}

.custom-blue-approch .approach-card p {
  color: var(--gray);
}

/* Living Room Cost Section Styles */
.living-room-cost {
  background-color: var(--white);
  padding: 80px 0;
}

.living-room-cost .section-header h2 {
  color: var(--font-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.living-room-cost .section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.living-room-cost h3 {
  color: var(--font-color);
  font-size: 2rem;
  font-weight: 600;
}

.living-room-cost .factor-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.living-room-cost .factor-card:hover {
  transform: translateY(-5px);
}

.living-room-cost .factor-icon {
  width: 60px;
  height: 60px;
  background: var(--logo-yellow-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.living-room-cost .factor-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.living-room-cost .factor-card h4 {
  color: var(--font-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.living-room-cost .factor-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.living-room-cost .package-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.living-room-cost .package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.living-room-cost .package-header {
  text-align: center;
  margin-bottom: 5px;
}

.living-room-cost .package-header h4 {
  color: #333;
  font-size: 24px;
  margin-bottom: 10px;
}

.living-room-cost .price {
  color: var(--logo-yellow-color);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.living-room-cost .package-card p {
  color: #666;
  margin-bottom: 5px;
  text-align: center;
}

.living-room-cost .package-features {
  flex-grow: 1;
}

.living-room-cost .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.living-room-cost .feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #555;
  font-size: 14px;
}

.living-room-cost .feature-list li i {
  color: #28a745;
  margin-right: 10px;
  font-size: 16px;
}

.living-room-cost .cta-section {
  background: var(--logo-blue-color);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
}

.living-room-cost .cta-section h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.living-room-cost .cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.living-room-cost .cta-section .btn-primary {
  background: var(--logo-yellow-color);
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.living-room-cost .cta-section .btn-primary:hover {
  background: var(--white);
  color: var(--logo-yellow-color);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .living-room-cost {
    padding: 60px 0;
  }

  .living-room-cost .section-header h2 {
    font-size: 2rem;
  }

  .living-room-cost .factor-card,
  .package-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .living-room-cost .section-header h2 {
    font-size: 1.8rem;
  }

  .living-room-cost h3 {
    font-size: 1.6rem;
  }

  .living-room-cost .cta-section {
    padding: 30px;
  }

  .living-room-cost .cta-section h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .living-room-cost {
    padding: 40px 0;
  }

  .living-room-cost .section-header h2 {
    font-size: 1.5rem;
  }

  .living-room-cost .factor-card,
  .package-card {
    padding: 20px;
  }

  .living-room-cost .factor-icon {
    width: 50px;
    height: 50px;
  }

  .living-room-cost .factor-icon i {
    font-size: 1.2rem;
  }

  .living-room-cost .cta-section {
    padding: 25px;
  }

  .living-room-cost .cta-section h3 {
    font-size: 1.3rem;
  }

  .living-room-cost .cta-section p {
    font-size: 1rem;
  }
}

/* Statistics Section Styles */
.statistics-section {
  background-color: var(--white);
  padding: 30px 0 20px 0;
  border-radius: 0;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.statistics-section .stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  background-color: #fff5ea;
  border-radius: 15px;
  width: 100%;
}

.statistics-section .stat-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
}

.statistics-section .stat-icon {
  color: var(--logo-yellow-color);
  font-size: 2.2rem;
}

.statistics-section .stat-info {
  display: flex;
  flex-direction: column;
}

.statistics-section .stat-number {
  color: var(--font-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.statistics-section .stat-label {
  color: var(--font-color);
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive Styles for Statistics Section */
@media (max-width: 1200px) {
  .statistics-section .stats-row {
    justify-content: center;
    padding: 30px;
  }

  .statistics-section .stat-item {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .statistics-section .statistics-section {
    padding: 40px 0;
  }

  .statistics-section .stats-row {
    padding: 25px;
    gap: 20px;
  }

  .statistics-section .stat-item {
    min-width: 160px;
    padding: 12px;
    justify-content: center;
  }

  .statistics-section .stat-icon {
    font-size: 2rem;
  }

  .statistics-section .stat-number {
    font-size: 1.3rem;
    text-align: center;
  }

  .statistics-section .stat-label {
    font-size: 0.95rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .statistics-section {
    padding: 30px 0;
  }

  .statistics-section .stats-row {
    padding: 20px;
    gap: 25px;
  }

  .statistics-section .stat-item {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
  }

  .statistics-section .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .statistics-section .stat-info {
    align-items: center;
  }

  .statistics-section .stat-number {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .statistics-section .stat-label {
    font-size: 1rem;
    max-width: 150px;
  }
}

/* Careers Page Styles */
.page-careers .careers-hero {
  padding: 120px 0 80px;
  background-color: var(--white);
  position: relative;
}

.page-careers .careers-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--font-color);
  margin-bottom: 1.5rem;
}

.page-careers .careers-hero .lead {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.page-careers .careers-hero .btn-primary {
  background-color: var(--logo-blue-color);
  border-color: var(--logo-blue-color);
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.page-careers .careers-hero .btn-primary:hover {
  background-color: var(--logo-yellow-color);
  border-color: var(--logo-yellow-color);
  transform: translateY(-2px);
}

.page-careers .why-join-us {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-careers .why-join-us h2 {
  color: var(--font-color);
  font-size: 2.5rem;
  font-weight: 700;
}

.page-careers .benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.page-careers .benefit-card:hover {
  transform: translateY(-5px);
}

.page-careers .benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--logo-yellow-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.page-careers .benefit-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.page-careers .benefit-card h3 {
  color: var(--font-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.page-careers .benefit-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.page-careers .open-positions {
  padding: 80px 0;
  background-color: var(--white);
}

.page-careers .open-positions h2 {
  color: var(--font-color);
  font-size: 2.5rem;
  font-weight: 700;
}

.page-careers .position-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.page-careers .position-card:hover {
  transform: translateY(-5px);
}

.page-careers .position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.page-careers .position-header h3 {
  color: var(--font-color);
  font-size: 1.4rem;
  margin: 0;
}

.page-careers .position-header .badge {
  background-color: var(--logo-blue-color);
  padding: 8px 15px;
  font-size: 0.9rem;
}

.page-careers .position-details {
  margin-bottom: 20px;
}

.page-careers .position-details p {
  color: #666;
  margin-bottom: 8px;
}

.page-careers .position-details i {
  color: var(--logo-yellow-color);
  margin-right: 8px;
}

.page-careers .position-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-careers .position-card .btn-outline-primary {
  color: var(--logo-blue-color);
  border-color: var(--logo-blue-color);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.page-careers .position-card .btn-outline-primary:hover {
  background-color: var(--logo-blue-color);
  color: var(--white);
  transform: translateY(-2px);
}

.page-careers .application-process {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-careers .application-process h2 {
  color: var(--font-color);
  font-size: 2.5rem;
  font-weight: 700;
}

.page-careers .process-step {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.page-careers .step-number {
  width: 50px;
  height: 50px;
  background: var(--logo-yellow-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.page-careers .process-step h4 {
  color: var(--font-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.page-careers .process-step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.page-careers .careers-contact {
  padding: 80px 0;
  background-color: var(--white);
}

.page-careers .careers-contact h2 {
  color: var(--font-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-careers .careers-contact p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-careers .contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.page-careers .contact-info p {
  margin: 0;
  font-size: 1.1rem;
}

.page-careers .contact-info i {
  color: var(--logo-yellow-color);
  margin-right: 10px;
}

/* Responsive Styles for Careers Page */
@media (max-width: 991px) {
  .page-careers .careers-hero {
    padding: 100px 0 60px;
  }

  .page-careers .careers-hero h1 {
    font-size: 2.5rem;
  }

  .page-careers .benefit-card,
  .position-card,
  .process-step {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-careers .careers-hero {
    padding: 80px 0 40px;
  }

  .page-careers .careers-hero h1 {
    font-size: 2rem;
  }

  .page-careers .careers-hero .lead {
    font-size: 1.1rem;
  }

  .page-careers .why-join-us h2,
  .open-positions h2,
  .application-process h2,
  .careers-contact h2 {
    font-size: 2rem;
  }

  .page-careers .contact-info {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .page-careers .careers-hero h1 {
    font-size: 1.8rem;
  }

  .page-careers .benefit-icon,
  .step-number {
    width: 50px;
    height: 50px;
  }

  .page-careers .benefit-icon i {
    font-size: 1.3rem;
  }

  .page-careers .position-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .page-careers .position-header .badge {
    align-self: flex-start;
  }
}

.bg-color {
  background: var(--logo-blue-color) !important;
}

/* Popup Container */
.popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  overflow: hidden;
}

/* Popup Container */
.popupdiv {
  display: flex;
  flex-direction: row;
  width: 80%;
  max-width: 900px;
  height: auto;
  max-height: 90vh;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  align-items: center; /* ✅ Ensures content stays centered */
  overflow-y: auto; /* ✅ Allows scrolling if content overflows */
  animation: popup 1s ease-in-out;
}

@keyframes popup {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Left Side Image */
.popimg {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.popimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Side Form */
.formdiv {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  overflow-y: auto; /* ✅ Enables scrolling if needed */
  max-height: 90vh;
}

/* Form */
.formdiv form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto; /* ✅ Keeps form centered */
}

/* Form Fields */
.formdiv .input-custom,
.formdiv select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Close Button */
.clsbtn {
  position: absolute;
  top: 10px;
  right: 10px;
}

.clsbtn button {
  border: none;
  background: red;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 50%;
  cursor: pointer;
}

/* Responsive Adjustments */

@media (max-width: 980px) {
  .popimg {
    display: none;
  }
  .formdiv {
    width: 100%;
  }

  .formdiv div {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .popupdiv {
    flex-direction: column;
    width: 90%;
    height: 90vh;
    justify-content: center;
  }
}



.cta-extralinks-wrap{
  padding-top: 8px;
}


.cta-extralinks-wrap .cta-link-wrap a{
  text-decoration: none;
  color: var(--white);
  padding: 0 5px 0 0;

}


/* Owl Carousel Slider Custom Styles */
.slider-section { max-width: 100%; margin: 0 auto; padding: 0; max-height: 500px; }
.slider-section .owl-carousel { position: relative; width: 100%; }
.slider-section .owl-carousel .item { width: 100%; }
.slider-section .owl-carousel .item img { width: 100%; height: 100%; max-height: 500px; display: block; object-fit: cover; margin: 0 auto;}
.slider-section .owl-dots {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.slider-section .owl-dot span {
    width: 14px;
    height: 14px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s;
}
.slider-section .owl-dot.active span {
    background: #333;
}


/* Card Section Styles */
.design-ideas-listing { max-width: 1200px; margin: 40px auto; padding: 0 16px; }

.design-ideas-listing .card-header { display: flex; justify-content: center; align-items: center; margin-bottom: 20px; }

.design-ideas-listing .card-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }

.design-ideas-listing .tab { background: none; border: none; padding: 8px 18px; font-size: 16px; color: #222; border-radius: 6px; cursor: pointer; transition: background 0.2s, color 0.2s; }

.design-ideas-listing .tab.active { background: #ffb300; color: #fff; font-weight: 600; }

.design-ideas-listing .card-result { color: #888; font-size: 15px;  margin-bottom: 20px;}

.design-ideas-listing .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 370px)); gap: 24px; }

.design-ideas-listing .card { background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.07); overflow: hidden; transition: box-shadow 0.2s; position: relative; }

.design-ideas-listing .card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.13); }

.design-ideas-listing .card-img { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; }

.design-ideas-listing .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }



.design-ideas-listing .card-body { padding: 18px 16px 14px 16px; }
.design-ideas-listing .card-title { font-size: 17px; font-weight: 500; color: #222; margin-bottom: 8px; min-height: 44px; }
.design-ideas-listing .card-rating { color: #ffb300; font-size: 15px; margin-bottom: 6px; }
.design-ideas-listing .card-size { color: #888; font-size: 14px; margin-bottom: 10px; }
.design-ideas-listing .card-link { color: #1e88e5; font-size: 15px; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.design-ideas-listing .card-link:hover { color: #1565c0; text-decoration: underline; }
.design-ideas-listing .pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin: 32px 0 0 0; }
.design-ideas-listing .page-btn { background: none; border: none; border-radius: 6px; padding: 7px 15px; font-size: 16px; color: #222; cursor: pointer; transition: background 0.2s, color 0.2s; }
.design-ideas-listing .page-btn.active, .page-btn:hover { background: #ffb300; color: #fff; font-weight: 600; }
.design-ideas-listing .page-ellipsis { color: #bbb; font-size: 18px; padding: 0 6px; }
@media (max-width: 700px) {
	.design-ideas-listing  .card-grid { grid-template-columns: 1fr; }
	.design-ideas-listing  .design-ideas-listing { padding: 0 4px; }
	.card-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		gap: 4px;
		padding-bottom: 6px;
		margin: 0 -8px;
	}
	.card-tabs .tab {
		flex: 0 0 auto;
		min-width: 110px;
		font-size: 15px;
		padding: 8px 10px;
	}
}

.design-ideas-listing .fav { position: absolute; top: 14px; right: 14px; background: #fff; border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 20px; color: #ff0000; box-shadow: 0 2px 6px rgba(0,0,0,0.08); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; z-index: 2; }

.design-ideas-listing .fav.active, .fav:hover { background: #ff0000; color: #fff; }






/* careers page modal css */

/* Modal Styles */
#applyModal .modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#applyModal .modal-body {
  padding: 0 !important;
}

#applyModal .btn-close {
  background-color: white;
  padding: 8px;
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
}

#applyModal .btn-close:hover {
  opacity: 1;
}

/* Image Styles */
#applyModal  .img-fluid {
  height: 100%;
  object-fit: cover;
  border-radius: 15px 0 0 15px;
}

/* Form Styles */
#applyModal .col-md-7 {
  background: #fff;
  padding: 2.5rem !important;
}

#applyModal  h3 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

#applyModal .form-label {
  color: #555;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

#applyModal .form-control {
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#applyModal .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

#applyModal .form-control::placeholder {
  color: #999;
}

/* File Upload Styles */
#applyModal input[type="file"] {
  padding: 0.5rem;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
}

#applyModal input[type="file"]:hover {
  border-color: #007bff;
}

/* Button Styles */
#applyModal .btn-primary {
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
  transition: all 0.3s ease;
}

#applyModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}



/* Animation */
#applyModal .modal.fade .modal-dialog {
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
}

#applyModal .modal.show .modal-dialog {
  transform: scale(1);
}

.form-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.error-message {
  font-size: 0.875rem;
  color: #dc3545;
  margin-top: 0.25rem;
}



.card-bottom{
  display: flex;
  justify-content: space-between;
}

.card-button-outline{
  background: var(--white);
    border: 1px solid var(--logo-blue-color);
    border-radius: 30px;
    padding: 5px 18px;
    color: var(--logo-blue-color);
}

.card-button{
  background: var(--logo-yellow-color);
    border: 1px solid var(--logo-yellow-color);
    border-radius: 30px;
    padding: 5px 18px;
    color: var(--white);
}

.card-button a{
  color: var(--white);
  text-decoration: none;
}
.form-confirm-text{
  font-size: 12px;
  cursor: pointer;
}

.cursor-pointer{
  cursor: pointer;
}

.footer-address{
padding: 15px 15px 5px 15px;
}

.footer-address a {
  color: var(--white);
  text-decoration: none;
}

/* Portfolio Slider Styles */

.portfolio-section{
  background: var(--white);
   padding: 40px 0;
}


.portfolio-wrapper{
  max-width: 1320px;
   margin: 0 auto;
}
.portfolio-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.portfolio-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 32px;
}
.portfolio-slider {
  background: var(--white);;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}
.portfolio-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  min-height: 420px;
  background: var(--white);;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}
.portfolio-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  box-shadow: none;
}
.portfolio-slide-content {
  padding: 28px 32px 24px 32px;
  background: var(--white);;
  border-radius: 0 0 18px 18px;
  box-shadow: none;
}
.portfolio-slide-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--font-color);
}
.portfolio-slide-content p {
  font-size: 1rem;
  color: var(--font-color);
  margin-bottom: 18px;
}
.portfolio-btn {
  background: var(--logo-blue-color);
  color: var(--white);;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(30,194,139,0.08);
}
.portfolio-btn:hover {
  background: var(--logo-yellow-color);
}
.portfolio-section .owl-dot.active span{
  background-color: var(--logo-yellow-color) !important;

}
@media (max-width: 700px) {
  .portfolio-slider {
    border-radius: 10px;
  }
  .portfolio-image {
    height: 180px;
    border-radius: 10px 10px 0 0;
  }
  .portfolio-slide-content {
    padding: 18px 12px 16px 12px;
    border-radius: 0 0 10px 10px;
  }
  .portfolio-title {
    font-size: 1.5rem;
  }
}


/* Project Gallery Section Styles */
.project-gallery-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.gallery-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 32px;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #ddd;
  color: #444;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--logo-blue-color);
  color: white;
  border-color: var(--logo-blue-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: relative;
  height: 300px;
}

.gallery-image {
  height: 100%;
  width: 100%;
  position: relative;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  transition-delay: 0.1s;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.overlay-content h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.overlay-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.view-project {
  display: inline-block;
  background: var(--logo-yellow-color);
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-project:hover {
  background: white;
  color: var(--logo-yellow-color);
}

.view-more-container {
  text-align: center;
}

.view-more-btn {
  display: inline-block;
  background: var(--logo-blue-color);
  color: white;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.view-more-btn:hover {
  background: var(--logo-yellow-color);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 2rem;
  }
  
  .gallery-filter {
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 250px;
  }
}

/* Gallery Card Grid Styles (Reference Image) */
.gallery-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.gallery-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  position: relative;
}
.gallery-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.gallery-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #eee;
}
.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-card:hover .gallery-card-image img {
  transform: scale(1.04);
}
.gallery-card-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  z-index: 2;
}
.gallery-card-image:hover .gallery-card-btn,
.gallery-card:hover .gallery-card-btn {
  opacity: 1;
}
.gallery-card-btn:hover {
  background: var(--logo-blue-color);
  color: #fff;
}
.gallery-card-body {
  padding: 22px 18px 18px 18px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.gallery-card-body h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}
.gallery-card-body p {
  font-size: 0.98rem;
  color: #666;
  margin: 0;
}
@media (max-width: 992px) {
  .gallery-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .gallery-card-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card-image {
    height: 140px;
  }
}
/* Remove old gallery grid/filter styles for clarity */
.gallery-filter, .gallery-grid, .gallery-item, .gallery-image, .gallery-overlay, .overlay-content, .view-project, .view-more-container, .view-more-btn {
  display: none !important;
}




.style-box {
  border: 1px solid #ccc;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: #f9f9f9;
}