/* Naksha Fonts */

@font-face {
  font-family: NokshaFont;
  src: url(font/ACaslonPro-Regular.ttf);
}

@font-face {
  font-family: NokshaFontSecond;
  src: url(font/EuclidCircularARegular.ttf);
}

@font-face {
  font-family: NokshaThird;
  src: url(font/DidotTitle.otf);
}

/* Naksha custom container */
.container {
  max-width: 80%;
}

@media (max-width: 900px) {
  .container {
    max-width: 100%;
  }
}

/* Naksha Root Fonts */
:root {
  --default-font: NokshaFontSecond, sans-serif;
  --heading-font: NokshaFont, sans-serif;
  --nav-font: NokshaFontSecond, sans-serif;
}

/* Naksha Root Color */
:root {
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #000000;
  --naksha-color: #feb900;
  --nav-color: rgb(255, 255, 255);
  --nav-hover-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #d5ad36;
}

/* Smooth scroll */

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

h1 {
  font-family: var(--heading-font);
  /* Scales between 32px (mobile) and 50px (desktop) */
  font-size: clamp(32px, 5vw + 1rem, 50px);
  line-height: 1.1;
}

h2 {
  font-family: var(--heading-font);
  /* Scales between 26px and 36px */
  font-size: clamp(26px, 4vw + 1rem, 30px);
  line-height: 1.2;
}

h3 {
  font-family: var(--heading-font);
  font-size: clamp(22px, 3vw + 1rem, 28px);
  line-height: 1.2;
}

p {
  font-family: var(--default-font);
  line-height: 1.6;
  /* Paragraphs are usually best kept fixed or clamped tightly */
  font-size: clamp(16px, 2vw, 17px);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/

.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.95);
  --heading-color: #3c3c3c;
  --nav-color: #3c3c3c;
  --nav-hover-color: #3c3c3c;
}

@media (max-width: 778px) {
  .header .logo img {
    max-height: 50px;
    margin-right: 8px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    letter-spacing: 0.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--naksha-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: white;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--naksha-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--naksha-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--naksha-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgb(33, 37, 41);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 80px;
}

.footer .container {
  position: relative;
}

.footer:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer-about {
  border-right: 1px solid #979191;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 80px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--naksha-color);
  border-color: var(--naksha-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 22px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  font-size: 20px;
  font-family: var(--nav-font);
}

.footer .footer-links ul a:hover {
  color: var(--naksha-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 14px;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

@media (max-width: 991px) {
  .footer .footer-about .logo img {
    max-height: 60px;
    margin-right: 6px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--naksha-color) transparent var(--naksha-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--naksha-color);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--naksha-color), transparent 20%);
  color: var(--naksha-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.naksha_pp_floating-phone {
  position: fixed;
  bottom: 15px;
  right: 80px;
  background-color: var(--naksha-color);
  color: rgb(0, 0, 0);
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}

.naksha_pp_floating-phone:hover {
  transform: scale(1.1);
  color: white;
}

.naksha_pp_floating-phone i {
  font-size: 18px;
}

/* WhatsApp Floating Button Styles */
.naksha_home_video_whatsapp_float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 15px;
  right: 142px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.naksha_home_video_whatsapp_float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
    padding: 50px 0;
  }
}

.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section_top_design {
  margin-bottom: 70px;
}

.section_top_design p {
  font-size: 60px;
  color: #979191;
  line-height: 0;
  padding: 0;
  margin: 0;
  position: relative;
}

/* --- Animation Keyframes --- */

@keyframes expandLine {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* --- Default Line CSS (no animation) --- */

.section_top_design p::after {
  content: "";
  position: absolute;
  left: 50px;
  right: 0;
  top: 68%;
  height: 1px;
  width: 100%;
  background: #979191;
  display: block;
}

/* --- Animation Triggered CSS --- */

.section_top_design.is-visible p::after {
  animation: expandLine 1s ease-out forwards;
}

.section-title h2 {
  font-weight: 900;
  position: relative;
}

.section-title p {
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Home Hero Section
--------------------------------------------------------------*/

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* --- Slick Slider Specifics --- */
.hero-slider {
  width: 100%;
  height: 100%;
}

/* The individual slide container */
.hero-slide-item {
  position: relative;
  width: 100%;
  height: 100vh;
  outline: none;
}

.hero-slide-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-slide-item::before {
  content: "";
  background: linear-gradient(180deg,
      #00000091 0%,
      #ffffff00 50%,
      #000000ea 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* --- Content Styling (Your original styles) --- */
.hero_info {
  position: relative;
  z-index: 3;
  height: 100vh;
  /* Changed to match container */
  display: flex;
  /* Flex helps align content vertically */
  flex-direction: column;
  justify-content: center;
}

.hero_header {
  position: absolute;
  top: 15%;
  left: 0;
}

.hero_header h1 {
  font-family: var(--heading-font);
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
}

.hero_details {
  position: absolute;
  bottom: 15%;
  right: 0;
  width: 60%;
}

/* --- Glassmorphism Box --- */
.hero_details .hero_glass {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.1px);
  -webkit-backdrop-filter: blur(5.1px);
  border: 1px solid rgba(255, 255, 255, 0.51);
  padding: 25px 30px 25px 50px;
  transition: all 0.5s ease;
  border-radius: 15px;
}

.hero_details .hero_glass p {
  color: #ffffff;
  text-align: left;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 22px;
}

/* Shiny Effect */
.hero_details .hero_glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 0, 0, 0) 0%,
      rgba(221, 214, 214, 0.3) 50%,
      rgba(255, 0, 0, 0) 100%);
  transform: translateX(-100%);
  transition: transform 1s ease-in-out;
}

.hero_details .hero_glass:hover::before {
  transform: translateX(100%);
}

.hero_bottom_design {
  position: absolute;
  bottom: -1px;
  left: -1px;
  z-index: 10;
  width: 45%;
  pointer-events: none;
}

.hero_bottom_design .design_img {
  width: 100% !important;
  height: 66px !important;
  object-fit: fill !important;
}

/* Media Queries for Arrows */
@media (max-width: 991px) {
  .hero_details {
    width: 90%;
  }

  .slick-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .hero_header {
    width: 100%;
    top: 28%;
  }

  .hero_header h1 {
    text-align: center;
    width: 100%;
  }

  .hero_details {
    bottom: 35%;
    width: 100%;
  }

  .hero_details .hero_glass {
    width: 100%;
    padding: 15px 20px;
  }

  .hero_bottom_design {
    display: none;
  }

  .hero_details .hero_glass p {
    text-align: center;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/

.home_about_left_image-container {
  height: 650px;
  width: 100%;
}

.home_about_left_image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1s ease-in-out;
  transform: scale(1);
}

.home_about_left_image-container:hover img {
  transform: scale(1.1);
}

.naksha_home_about_text_container {
  width: 97%;
  padding-left: 1.5%;
}

.home_about_right_content {
  width: 100%;
}

.home_about_text h3 {
  line-height: 1;
  color: black;
  font-weight: bold;
  padding-bottom: 20px;
  font-family: var(--default-font);
}

.home_about_text p {
  line-height: 1.4;
  color: black;
  text-align: left;
}

/* Media Queries for Arrows */
@media (max-width: 991px) {
  .home_about_left_image-container {
    height: 420px;
    width: 100%;
  }

  .naksha_home_about_text_container {
    width: 100%;
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
# Home Service Section
--------------------------------------------------------------*/

.home_service_section {
  background-image: url("../img/home/home_service_background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(20, 20, 20, 0.774);
  height: 100%;
  width: 100%;
}

.home_service_left_box {
  padding: 10px;
  border-right: 1px solid #e6e4e4;
  border-bottom: 1px solid #e6e4e4;
  height: 100%;
}

.home_service_left_box h2 {
  color: rgb(255, 255, 255);
  text-transform: capitalize;
}

.home_service_left_box p {
  color: rgb(255, 255, 255);
  width: 100%;
}

.home_service_right_box {
  padding: 10px;
  border-bottom: 1px solid #e6e4e4;
  height: 100%;
}

.home_service_right_box h2 {
  color: rgb(221, 218, 218);
  text-align: right;
}

.home_service_right_box p {
  color: rgb(255, 255, 255);
  text-align: right;
  width: 100%;
}

.home_service_without_glass {
  padding: 25px 20px 25px 20px;
}

/* --- Glassmorphism Box CSS for service_glass --- */

.home_service_glass {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.1px);
  -webkit-backdrop-filter: blur(5.1px);
  border: 1px solid rgba(255, 255, 255, 0.51);
  padding: 25px 20px 25px 20px;
  width: 100%;
  transition: all 0.5s ease;
  border-radius: 5px;
}

/* --- Shiny Effect CSS for service_glass --- */

.home_service_glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 0, 0, 0) 0%,
      rgba(221, 214, 214, 0.3) 50%,
      rgba(255, 0, 0, 0) 100%);
  transform: translateX(-100%);
  transition: transform 1s ease-in-out;
}

.home_service_glass:hover::before {
  transform: translateX(100%);
}

.home_cta_button_design {
  font-family: NokshaFont;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgb(252, 252, 252);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  z-index: 2;
  color: rgb(255, 255, 255);
}

.home_cta_button_design::after {
  content: "";
  background-color: #143d29;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.home_cta_button_design:hover::after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .home_cta_button_design {
    padding: 14px 60px 14px;
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .home_service_left_box {
    border-right: 0;
    border-bottom: 0;
    padding: 0 0 10px 0;
  }

  .home_service_right_box {
    border-bottom: 0;
    padding: 0 0 10px 0;
  }

  .home_service_without_glass {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
    border: 1px solid rgba(255, 255, 255, 0.51);
    padding: 25px 20px 25px 20px;
    width: 100%;
    transition: all 0.5s ease;
    border-radius: 5px;
  }

  .home_service_without_glass::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        rgba(255, 0, 0, 0) 0%,
        rgba(221, 214, 214, 0.3) 50%,
        rgba(255, 0, 0, 0) 100%);
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
  }

  .home_service_without_glass:hover::before {
    transform: translateX(100%);
  }

  .home_service_right_box h2 {
    text-align: left;
  }

  .home_service_right_box p {
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Home Project Slider
--------------------------------------------------------------*/
.home_project_details_top {
  padding: 20px;
}

.home_project_details_top img {
  width: 100%;
  height: 581px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  /* Smooth transition */
  transform: scale(1);
  /* Initial state */
}

.home_project_details_top:hover img {
  transform: scale(1.06);
  /* Zoom state on hover */
}

.home_project_details_container {
  margin-top: 10px;
  border: 1px solid rgb(207, 207, 207);
  padding: 20px;
  height: 250px;
  box-shadow: 2px 2px 8px -2px rgba(145, 145, 145, 0.75);
  -webkit-box-shadow: 2px 2px 8px -2px rgba(145, 145, 145, 0.75);
  -moz-box-shadow: 2px 2px 8px -2px rgba(145, 145, 145, 0.75);
}

.home_project_details_container h2 {
  margin-top: 30px;
  font-weight: bold;
}

.home_project_details_container h3 {
  font-weight: normal;
}

.home_project_details_container p {
  font-weight: 500;
  margin-top: 15px;
}

@media (max-width: 991px) {
  .home_project_details_top {
    padding: 20px 0 0 0;
  }

  .home_project_details_top img {
    height: 420px;
  }

  .home_project_details_container {
    padding: 10px 0 10px 0;
    box-shadow: none;
    border: 0px;
    height: 150%;
  }

  .home_project_details_container h2 {
    margin-top: 10px;
  }

  .home_project_details_top:hover img {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Home Partnership Section
--------------------------------------------------------------*/

.partner_box {
  padding: 20px 0;
  border-top: 1px solid #979191;
  border-bottom: 1px solid #979191;
}

.swiper-slide {
  padding: 15px;
}

.partnership_box_content {
  height: 620px;
}

.partnership_box_content img {
  height: 540px;
  width: 100%;
  object-fit: cover;
}

.partnership_box_content h3 {
  font-weight: bold;
  color: #474545;
  margin-top: 20px;
  font-family: var(--heading-font);
  height: 120px;
}

@media (max-width: 1300px) {
  .partnership_box_content {
    height: 560px;
  }

  .partnership_box_content img {
    height: 440px;
  }

  .swiper-slide {
    padding: 10px;
  }
}

@media (max-width: 991px) {
  .partnership_box_content {
    height: 540px;
  }

  .swiper-slide {
    padding: 10px;
  }

  .partnership_box_content img {
    height: 420px;
  }
}

@media (max-width: 478px) {
  .partnership_box_content {
    height: 640px;
  }

  .swiper-slide {
    padding: 0px;
  }

  .partnership_box_content img {
    height: 520px;
  }
}

/*--------------------------------------------------------------
# Home Newsletter Section
--------------------------------------------------------------*/

.newsletter_section {
  height: 100%;
  background: url(../img/home/home_newsletter.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  overflow: visible;
  box-shadow: inset 0 0 0 2000px rgba(20, 20, 20, 0.486);
  position: relative;
}

.newsletter_design {
  height: 100%;
  width: 100%;
}

.newsletter_img1 {
  position: absolute;
  top: -10px;
  left: 0;
}

.newsletter_img1 img {
  height: 74px;
  width: 600px;
}

.newsletter_img2 {
  position: absolute;
  bottom: -10px;
  right: 0;
}

.newsletter_img2 img {
  height: 74px;
  width: 600px;
}

.newsletter_content {
  padding: 50px 0;
}

.newsletter_content h2 {
  text-align: center;
  font-weight: bold;
  color: white;
}

.newsletter_content hr {
  background-color: white;
  color: white;
}

.form_submit_box {
  width: 60%;
  margin-left: 20%;
}

.form_submit_box .form-control {
  padding: 15px 10px;
  background-color: transparent;
  color: white;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 2px solid white;
}

.form_submit_box .form-control::placeholder {
  color: white;
  opacity: 1;
}

.form_box {
  padding-top: 50px;
  text-align: center;
}

.form_box h3 {
  color: white;
}

.form_box p {
  font-size: 18px;
  width: 80%;
  margin-left: 10%;
  line-height: 1.4;
  color: rgb(240, 240, 240);
}

.hero_btn_design {
  font-family: var(--heading-font);
  font-size: 25px;
  border: 2px solid #aeaaaa;
  color: white;
  padding: 10px 40px 5px;
  letter-spacing: 4px;
}

.hero_btn_design:hover {
  font-family: var(--heading-font);
  font-size: 25px;
  border: 2px solid #aeaaaa;
  color: white;
  padding: 10px 40px 5px;
  letter-spacing: 4px;
}

@media (max-width: 991px) {
  .form_submit_box {
    width: 90%;
    margin-left: 5%;
  }

  .newsletter_img1 img {
    display: none;
  }

  .newsletter_img2 img {
    display: none;
  }
}

/*--------------------------------------------------------------
# Home Why Naksha Section
--------------------------------------------------------------*/

.why_naksha_left_image {
  height: 100%;
  padding-right: 5%;
  border-right: 1px solid #979191;
}

.why_naksha_left_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 2s ease-in-out;
  transform: scale(1);
}

.why_naksha_left_image:hover img {
  transform: scale(1.05);
  /* Zoom state on hover */
}

.why_naksha_right_text {
  height: 100%;
  padding-left: 5%;
}

.why_naksha_right_text h3 {
  color: black;
  font-weight: bold;
  padding-bottom: 20px;
}

.why_naksha_right_text p {
  font-weight: 400;
  text-align: left;
}

.why_naksha_right_text ul li {
  font-size: 28px;
  font-weight: normal;
  line-height: 1;
  text-align: left;
}

.why_naksha_right_text h4 {
  color: black;
  font-weight: bold;
  padding-bottom: 20px;
}

.why_naksha_right_box {
  padding: 6px 0;
  border-bottom: 1px solid #979191;
}

.why_naksha_right_box p {
  font-weight: 500;
  text-align: left;
}

.why_naksha_right_box:nth-child(1) {
  padding-top: 0px !important;
}

.why_naksha_right_box:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
}

@media (max-width: 991px) {
  .why_naksha_left_image {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 20px;
  }

  .why_naksha_right_text {
    padding-left: 0%;
  }
}

/*--------------------------------------------------------------
# Home FAQ Naksha Section
--------------------------------------------------------------*/

.faq_naksha .accordion {
  --bs-accordion-bg: var(--background-color);
  --bs-accordion-border-width: 0px;
}

.accordion-item {
  margin-bottom: 15px;
}

.accordion-button {
  font-size: clamp(18px, 4vw + 1rem, 26px);
  font-family: NokshaFontSecond;
  border-bottom: 1px solid #979191;
  line-height: 1.2;
  padding-left: 0;
}

.accordion-button:not(.collapsed) {
  background-color: var(--background-color);
  color: black;
}

.accordion-body {
  font-size: clamp(16px, 2vw, 17px);
  font-weight: normal;
  line-height: 1.4;
  padding: 10px 0;
}

.accordion-button:focus {
  box-shadow: none;
}

/*--------------------------------------------------------------
# Home Video Section
--------------------------------------------------------------*/
.naksha_home_video_background {
  /*background-image: url(../img/home/video_background.webp);*/
  /*background-repeat: no-repeat;*/
  /*background-size: cover;*/
  /*background-position: center;*/
  background-color: white;
  padding: 20px 0;
}

.naksha_home_video_banner_section {
  position: relative;
  width: 100%;
  height: 600px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/home/video_thumbnail.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
}

.naksha_about_video_banner_section {
  position: relative;
  width: 100%;
  height: 600px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/about/about_us_video.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
}

.naksha_home_video_play_wrapper {
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.naksha_home_video_play_wrapper:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.naksha_home_video_play_button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
  position: relative;
}

/* Pulse animation for the button */
.naksha_home_video_play_button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: naksha_home_video_pulse 2s infinite;
}

@keyframes naksha_home_video_pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.naksha_home_video_play_button i {
  font-size: 35px;
  color: #ff0000;
  /* YouTube Red */
  margin-left: 5px;
  /* Adjust for visual center of triangle */
}

.naksha_home_video_text {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Modal Customization */
.naksha_home_video_modal .modal-content {
  background-color: transparent;
  border: none;
}

.naksha_home_video_modal .btn-close {
  filter: invert(1);
  position: absolute;
  right: -30px;
  top: -30px;
  opacity: 0.8;
}

.naksha_home_video_iframe_container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.naksha_home_video_iframe_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .naksha_home_video_banner_section {
    height: 350px;
  }

  .naksha_about_video_banner_section {
    height: 350px;
  }

  .naksha_home_video_play_button {
    width: 60px;
    height: 60px;
  }

  .naksha_home_video_play_button i {
    font-size: 25px;
  }

  .naksha_home_video_modal .btn-close {
    right: 0;
    top: -40px;
  }
}

@media (max-width: 480px) {
  .naksha_home_video_banner_section {
    height: 250px;
  }

  .naksha_about_video_banner_section {
    height: 250px;
  }
}

/*--------------------------------------------------------------
# Naksha About Us Page design (Section 01 - Section 04)
--------------------------------------------------------------*/
/* Fixed Background Container */
#bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  background-color: #143d29;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

#bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f3d27;
  transition: background-color 0.1s linear;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.custom_section {
  height: 100vh;
  position: relative;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.section_1_content {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 3;
}

.section_1_left {
  position: absolute;
  left: 0;
  top: 40%;
}

.section_1_right {
  position: absolute;
  right: 12%;
  bottom: 28%;
}

.section_1_content h1 {
  font-size: clamp(32px, 5vw + 1rem, 60px);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgb(255, 255, 255);
}

.section_2_content {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 3;
}

.section_2_left {
  position: absolute;
  left: 0%;
  top: 20%;
}

.section_2_right {
  position: absolute;
  right: 0%;
  bottom: 10%;
}

.section_2_content h2 {
  font-size: clamp(32px, 5vw + 1rem, 60px);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgb(255, 255, 255);
}

.section_3_content {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 3;
}

.section_3_left {
  position: absolute;
  left: 0;
  top: 22%;
  width: 60%;
}

.section_3_left h2 {
  font-size: clamp(32px, 5vw + 1rem, 60px);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgb(0, 0, 0);
  position: relative;
  display: inline-block;
}

.section_3_left h2::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  /* spacing between text and line */
  width: 425px;
  height: 2px;
  background-color: black;
  transition: width 1s ease;
}

.section_3_right {
  position: absolute;
  right: 0;
  bottom: 18%;
  width: 35%;
}

.section_3_right ul {
  list-style: none;
}

.section_3_right ul li {
  color: black;
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 26px;
  padding-left: 15px;
}

/* Section 4 Styling - Magenta background initially transparent */
.section_4_content {
  padding: 100px 0;
  position: relative;
}

#section-4 {
  background-color: #000000;
  opacity: 0;
  visibility: hidden;
}

.section_4_content_box h2 {
  font-size: clamp(32px, 5vw + 1rem, 60px);
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.section_4_content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background-color: rgb(255, 255, 255);
}

.section_4_content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: rgb(255, 255, 255);
}

.section_4_content_box {
  height: 100%;
}

.section_4_content_box ul {
  list-style: none;
  padding-left: 0;
}

.section_4_content_box ul li::before {
  content: "\25AA";
  color: rgb(255, 255, 255);
  display: inline-block;
  width: 19px;
  margin-left: -0.9em;
  font-weight: bold;
  font-size: clamp(16px, 2vw, 22px);
}

.section_4_content_box ul li {
  color: rgb(255, 255, 255);
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 26px;
  padding-left: 15px;
}

.section_4_content_img {
  height: 450px;
  width: 100%;
}

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

@media (max-width: 991px) {
  .section_1_content {
    height: 90vh;
  }

  .section_1_left {
    position: absolute;
    top: 10%;
    width: 100%;
  }

  .section_1_right {
    position: absolute;
    right: 0%;
    bottom: 10%;
    width: 100%;
  }

  .section_1_content h1 {
    text-align: center;
  }

  .section_2_content {
    height: 90vh;
  }

  .section_2_left {
    position: absolute;
    top: 10%;
    width: 100%;
  }

  .section_2_right {
    position: absolute;
    bottom: 10%;
    width: 100%;
  }

  .section_2_content h2 {
    text-align: center;
  }

  .section_3_content {
    height: 90vh;
  }

  .section_3_left {
    position: absolute;
    top: 20%;
    width: 100%;
  }

  .section_3_left h2 {
    text-align: center;
    display: block;
  }

  .section_3_left h2::after {
    width: 100%;
  }

  .section_3_right {
    bottom: 10%;
    width: 100%;
  }
}

@media (max-width: 748px) {
  .section_1_content {
    height: 80vh;
  }

  .section_1_left {
    position: absolute;
    top: 30%;
    width: 100%;
  }

  .section_1_right {
    position: absolute;
    right: 0%;
    bottom: 20%;
    width: 100%;
  }

  .section_1_content h1 {
    text-align: center;
  }

  .section_2_content {
    height: 80vh;
  }

  .section_2_left {
    position: absolute;
    top: 20%;
    width: 100%;
  }

  .section_2_right {
    position: absolute;
    bottom: 20%;
    width: 100%;
  }

  .section_2_content h2 {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Naksha About Us Page design (Section 05)
--------------------------------------------------------------*/
.naksha_what_we_do-main-heading {
  font-size: clamp(32px, 5vw + 1rem, 60px);
  font-weight: 700;
  font-family: var(--heading-font);
  color: black;
}

.section-5-bg {
  background-image: url("../img/about/what_back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
}

.naksha_what_we_do-content-row {
  transition: background-color 1s ease;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
}

.naksha_what_we_do_line {
  border-right: 1px solid black;
}

.naksha_what_we_do-content-row:last-child {
  border-bottom: none;
}

.naksha_what_we_do-row-wrapper {
  margin-bottom: 0;
  transition: margin-bottom 0.9s ease-out;
}

.naksha_what_we_do-title {
  font-family: var(--heading-font);
  font-size: clamp(26px, 4vw + 1rem, 36px);
  font-weight: 400;
}

.naksha_what_we_do-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  width: 90%;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .naksha_what_we_do-content-row {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .naksha_what_we_do-row-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .naksha_what_we_do-title,
  .naksha_what_we_do-description,
  .naksha_what_we_do-image-column {
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }

  .naksha_what_we_do-image-column {
    order: 2;
    max-height: 200px !important;
    opacity: 1 !important;
    transition: none;
    margin-top: 10px;
  }

  .naksha_what_we_do-content-row:hover .naksha_what_we_do-image-column {
    max-height: 200px;
    opacity: 1;
    padding-top: 0;
    padding-bottom: 0;
  }

  .naksha_what_we_do-image-column img {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Naksha About Us Page design (Section 06)
--------------------------------------------------------------*/
.section-6-bg {
  background-color: #143d29;
}

.section_6_content {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 100px 0;
  width: 100%;
  position: relative;
}

:root {
  --slider-image-height-tall: 550px;
  --slider-image-height-short: 350px;
}

.naksha_about_page_slider-section {
  width: 100%;
  position: relative;
}

/* Fixed Text Overlay */
.naksha_about_page_slider-fixed-text {
  color: white;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.4;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.slick-track {
  display: flex;
  align-items: center;
}

.naksha_about_page_slider-slick-slider {
  width: 100%;
  margin: 0 auto;
  margin-top: calc((var(--slider-image-height-tall) - var(--slider-image-height-short)) / 2);
  margin-bottom: calc((var(--slider-image-height-tall) - var(--slider-image-height-short)) / 2);
  height: 400px;
}

.naksha_about_page_slider-slick-slider .slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.naksha_about_page_slider-slick-slider .slick-slide img {
  width: 100%;
  height: var(--slider-image-height-short);
  object-fit: cover;
  transition:
    height 0.3s ease,
    width 0.3s ease;
  filter: grayscale(80%);
  transform: scale(0.9);
}

.naksha_about_page_slider-slick-slider .slick-center img {
  height: var(--slider-image-height-tall);
  filter: grayscale(0%);
  transform: scale(1);
}

.slick-prev,
.slick-next {
  display: none !important;
}

@media (max-width: 768px) {
  .section_6_content {
    height: 100%;
  }

  .naksha_about_page_slider-fixed-text {
    max-width: 350px;
  }

  .naksha_about_page_slider-slick-slider {
    width: 100%;
    margin-top: calc((400px - 250px) / 2);
    margin-bottom: calc((400px - 250px) / 2);
  }

  .naksha_about_page_slider-slick-slider .slick-center img {
    height: 400px;
  }

  .naksha_about_page_slider-slick-slider .slick-slide img {
    height: 350px;
  }
}

/*--------------------------------------------------------------
# Naksha About Us Page design (Section 07)
--------------------------------------------------------------*/
.naksha_our_guiding-section {
  height: 100%;
  padding: 40px 0;
  position: relative;
}

.naksha_our_guiding-heading {
  font-size: clamp(32px, 5vw + 1rem, 60px);
  font-weight: 700;
  font-family: var(--heading-font);
  color: black;
  margin-bottom: 60px;
  text-align: left;
}

.naksha_our_guiding-principles-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  position: relative;
  height: 350px;
}

.naksha_our_guiding-principle-item {
  position: relative;
  padding: 0 15px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  height: 100%;
}

.naksha_our_guiding-vertical-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
  background-color: black;
  transform-origin: bottom left;
  transform: rotate(25deg);
}

@keyframes drawLine {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

.naksha_our_guiding-principles-container.is-drawn .naksha_our_guiding-vertical-line {
  animation: drawLine 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: var(--line-index, 0s);
}

.naksha_our_guiding-principle-title {
  font-size: clamp(22px, 2vw + 1rem, 32px);
  font-family: var(--heading-font);
  line-height: 1.1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .naksha_our_guiding-heading {
    margin-bottom: 3rem;
  }

  .naksha_our_guiding-principle-item {
    padding: 0 0 0 20px;
  }

  .naksha_our_guiding-principles-container {
    grid-template-columns: 1fr;
    height: auto;
    gap: 50px;
  }

  .naksha_our_guiding-vertical-line {
    display: block;
    left: 0;
  }

  .naksha_our_guiding-section {
    min-height: auto;
    padding-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# Naksha About Us Page design (Section 08)
--------------------------------------------------------------*/

.naksha_three_column_stagger-container {
  width: 100%;
  max-width: 100%;
}

.naksha_three_column_stagger-block {
  display: flex;
  align-items: flex-start;
}

.naksha_three_column_stagger-lower-row .naksha_three_column_stagger-block {
  align-items: flex-start;
}

.naksha_three_column_stagger-image-wrapper {
  flex-shrink: 0;
  overflow: hidden;
  margin-right: 10px;
}

.naksha_three_column_stagger-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.naksha_three_column_stagger-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 15px;
}

.naksha_three_column_stagger-heading {
  font-size: clamp(26px, 4vw + 1rem, 36px);
  font-weight: 700;
  font-family: var(--heading-font);
  color: black;
  margin-bottom: 6px;
}

.naksha_three_column_stagger-description {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 25px;
  max-width: 600px;
  margin-bottom: 0;
}

.naksha_three_column_stagger-top-middle {
  width: fit-content;
  margin: 0 auto 150px auto;
}

.naksha_three_column_stagger-top-middle .naksha_three_column_stagger-image-wrapper {
  width: 800px;
  height: 380px;
}

.naksha_three_column_stagger-top-middle .naksha_three_column_stagger-content {
  justify-content: flex-end;
  height: 380px;
}

.naksha_three_column_stagger-top-middle .naksha_three_column_stagger-heading {
  margin-top: 0;
}

.naksha_three_column_stagger-lower-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-large);
  padding-top: var(--spacing-large);
}

.naksha_three_column_stagger-left-block {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.naksha_three_column_stagger-left-block .naksha_three_column_stagger-image-wrapper {
  width: 300px;
  height: 480px;
}

.naksha_three_column_stagger-left-block .naksha_three_column_stagger-content {
  justify-content: flex-end;
  height: 480px;
}

.naksha_three_column_stagger-right-block {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin-left: 40px;
  justify-content: flex-end;
}

.naksha_three_column_stagger-right-block .naksha_three_column_stagger-image-wrapper {
  width: 320px;
  height: 320px;
}

.naksha_three_column_stagger-right-block .naksha_three_column_stagger-content {
  justify-content: flex-end;
  height: 320px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .naksha_three_column_stagger-top-middle {
    width: fit-content;
    margin: 0 auto 30px auto;
  }

  .naksha_three_column_stagger-top-middle .naksha_three_column_stagger-content {
    height: 100%;
  }

  .naksha_three_column_stagger-left-block .naksha_three_column_stagger-content {
    height: 100%;
  }

  .naksha_three_column_stagger-right-block .naksha_three_column_stagger-content {
    height: 100%;
  }

  .naksha_three_column_stagger-image-wrapper {
    margin-right: var(--spacing-small);
  }

  .naksha_three_column_stagger-top-middle .naksha_three_column_stagger-image-wrapper {
    width: 50%;
    height: 200px;
  }

  .naksha_three_column_stagger-lower-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-large);
    padding-top: var(--spacing-medium);
  }

  .naksha_three_column_stagger-left-block {
    margin-bottom: 50px;
  }

  .naksha_three_column_stagger-left-block,
  .naksha_three_column_stagger-right-block {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 0;
  }

  .naksha_three_column_stagger-left-block .naksha_three_column_stagger-image-wrapper {
    width: 50%;
    height: 200px;
  }

  .naksha_three_column_stagger-right-block {
    margin-left: 0;
  }

  .naksha_three_column_stagger-right-block .naksha_three_column_stagger-image-wrapper {
    width: 50%;
    height: 200px;
  }

  .naksha_three_column_stagger-lower-row .naksha_three_column_stagger-block {
    align-items: flex-start;
  }

  .naksha_three_column_stagger-content .naksha_three_column_stagger-heading {
    margin-top: 0;
  }

  .naksha_three_column_stagger-content {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .naksha_three_column_stagger-top-middle {
    width: 95%;
    margin: 0 auto 20px auto;
  }

  .naksha_three_column_stagger-top-middle .naksha_three_column_stagger-image-wrapper {
    width: 100%;
    height: 250px;
    margin-bottom: var(--spacing-small);
    margin-right: 0;
  }

  .naksha_three_column_stagger-top-middle .naksha_three_column_stagger-content {
    padding-top: 0;
    height: 100%;
    padding: 20px 0;
  }

  .naksha_three_column_stagger-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .naksha_three_column_stagger-image-wrapper {
    margin-right: 0;
    margin-bottom: var(--spacing-small);
  }

  .naksha_three_column_stagger-left-block .naksha_three_column_stagger-image-wrapper,
  .naksha_three_column_stagger-right-block .naksha_three_column_stagger-image-wrapper {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .naksha_three_column_stagger-content {
    padding: 20px 0;
    height: 100% !important;
  }

  .naksha_three_column_stagger-right-block {
    margin-left: 0px;
  }
}

@media (max-width: 480px) {
  .naksha_three_column_stagger-container {
    padding: var(--spacing-medium) 0;
  }

  .naksha_three_column_stagger-top-middle .naksha_three_column_stagger-image-wrapper {
    height: 200px;
  }

  .naksha_three_column_stagger-left-block .naksha_three_column_stagger-image-wrapper,
  .naksha_three_column_stagger-right-block .naksha_three_column_stagger-image-wrapper {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

/*--------------------------------------------------------------
# Naksha About Us Page design (Section 09)
--------------------------------------------------------------*/

.partners_box_section h2 {
  font-size: clamp(32px, 5vw + 1rem, 60px);
  font-weight: 700;
  color: black;
  position: relative;
  display: inline-block;
}

.partners_box_section h1::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 300px;
  height: 2px;
  background-color: black;
  transition: width 1s ease;
}

.partenrs_box_image {
  height: 100%;
  width: 100%;
  text-align: left;
}

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

.partners_box_section_ul ul {
  list-style: none;
  padding-top: 20px;
}

.partners_box_section_ul p {
  color: black;
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid black;
}

@media (max-width: 768px) {
  .partenrs_box_image {
    height: 200px;
  }

  .partners_box_section_ul p {
    padding-top: 55px;
  }
}

/*--------------------------------------------------------------
# Naksha About Us Page design (Section 10)
--------------------------------------------------------------*/
.naksha_flow_content_video_background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .naksha_flow_content_video_background {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/*--------------------------------------------------------------
# Naksha Service Page Design
--------------------------------------------------------------*/
.naksha_service_header_section {
  height: 380px;
  background-size: contain;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  padding-top: 15px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.naksha_service_header_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.527);
}

.service_section_padding {
  padding: 50px 0;
}

.service_upper_section_line {
  padding-bottom: 20px;
  position: relative;
}

.naksha_service_header_content1 {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.scrolling-text-wrapper {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.scrolling-text {
  display: inline-flex;
  gap: 80px;
  /* space between repeating text */
  animation: marquee 100s linear infinite;
}

.scrolling-text span {
  font-size: 100px;
  line-height: 1.2;
  font-weight: 300;
  font-family: NokshaThird;
  letter-spacing: 1px;
  white-space: nowrap;
  color: #ffffff;
  margin-right: 60px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.service_btn_design {
  align-items: center;
  border: 1px solid #000000;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 40px;
  text-align: center;
}

.service_btn_design:hover {
  background-color: #feb900;
  color: rgb(0, 0, 0);
}

.naksha_service_page_title {
  font-size: clamp(26px, 4vw + 1rem, 36px);
  line-height: 1.2;
  font-weight: 700;
  color: black;
  position: relative;
  display: inline-block;
}

.naksha_service_page_text {
  color: black;
  font-size: clamp(16px, 2vw, 17px);
  line-height: 1.3;
  text-align: left;
  padding-right: 10px;
}

/* --- Image Containers (Existing structure for sizing) --- */
.naksha_service_1_img {
  height: 280px;
  width: 100%;
}

.naksha_service_1_img_2 {
  height: 200px;
  width: 100%;
}

.naksha_service_4_img {
  height: 100%;
  width: 100%;
}

.naksha_service_4_img_lower {
  height: 280px;
  width: 100%;
}

.naksha_service_1_img img,
.naksha_service_1_img_2 img,
.naksha_service_4_img img,
.naksha_service_4_img_lower img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.9s;
}

.naksha_service_1_img img:hover,
.naksha_service_1_img_2 img:hover,
.naksha_service_4_img img:hover,
.naksha_service_4_img_lower img:hover {
  transform: scale(1.2);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/* 1. Wrapper Styles */
.naksha_reveal_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    /* Custom, smooth drop */
    opacity 1s ease-in-out 0.5s;

  /* Ensure the scaling starts from the top */
  transform-origin: top;
  display: block;
}

/* 2. Initial State/Hidden State: Scaled to 0 height (Curtain is closed upward) */
.naksha_reveal_wrapper.hidden-clip {
  transform: scaleY(0);
  opacity: 0;
}

/* 3. Final State/Revealed State: Scaled to full height (Curtain is open) */
.naksha_reveal_wrapper.reveal-clip {
  transform: scaleY(1);
  opacity: 1;
}

.service_upper_section_line::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #807c7c;

  width: 0;
  transition: width 1.5s ease-out;
}

.animate-line.is-visible::after {
  width: 100%;
}

/* Vertical dividers for service image sections */
.service_upper_section_line .service-image-col {
  position: relative;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.service_upper_section_line .service-image-col::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 0;
  background-color: #807c7c;
  transform: translateY(-50%);
  transition: height 1.5s ease-out;
}

.service_upper_section_line .service-image-col.last-image-col::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 0;
  background-color: #807c7c;
  transform: translateY(-50%);
  transition: height 1.5s ease-out;
}

.animate-line.is-visible .service-image-col::before,
.animate-line.is-visible .service-image-col.last-image-col::after {
  height: 140px;
}

@media (max-width: 991px) {
  .service_upper_section_line .service-image-col {
    padding-left: 4px !important;
    /* Reset to standard Bootstrap g-2 roughly */
    padding-right: 4px !important;
  }

  .service_upper_section_line .service-image-col::before,
  .service_upper_section_line .service-image-col::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .naksha_service_header_section {
    height: 200px;
  }

  .scrolling-text span {
    font-size: 40px;
  }

  .naksha_service_header_content1 {
    padding: 40px 0 20px 0;
  }

  .naksha_service_1_img {
    height: 200px;
  }

  .naksha_service_4_img {
    height: 200px;
  }

  .naksha_service_4_img_lower {
    height: 200px;
  }
}

/*--------------------------------------------------------------
# Naksha Built on Experience Page
--------------------------------------------------------------*/
.naksha_builtin_title {
  font-size: clamp(24px, 4vw + 1rem, 28px);
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

.naksha_builtin_status {
  color: #a38d0d;
  /* Gold/Mustard color */
  font-size: clamp(16px, 2vw, 17px);
  text-align: right;
  margin-bottom: 30px;
  font-weight: 500;
  padding-right: 15px;
}

.naksha_builtin_status_left {
  text-align: left;
  padding-right: 0;
}

.naksha_builtin_info_label {
  font-size: clamp(22px, 3vw + 1rem, 28px);
  color: #000;
}

.naksha_builtin_info_value {
  font-weight: 300;
  color: #444;
}

.naksha_builtin_stat_header {
  font-size: clamp(18px, 3vw + 1rem, 24px);
  color: #000;
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: capitalize;
}

.naksha_builtin_stat_sub {
  font-size: clamp(16px, 2vw, 17px);
  color: #333;
  margin-bottom: 30px;
}

.naksha_builtin_scope_text {
  font-size: clamp(16px, 2vw, 17px);
  line-height: 1.4;
  color: #222;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Scope spacing for Section 2 (Pushes it lower) */
.naksha_builtin_scope_sec2 {
  margin-top: 40px;
}

/* Scope spacing for Section 3 (Less margin needed due to extra image) */
.naksha_builtin_scope_sec3 {
  margin-top: 40px;
}

/* Scope spacing for Section 4 (Sandwiched between images) */
.naksha_builtin_scope_sec4 {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* --- Animation Classes (Curtain Effect - Wrapper Method) --- */

/* The Wrapper: holds the image and the 'curtain' */
.naksha_img_wrapper {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
}

/* The Curtain: An overlay that matches the background color */
.naksha_img_wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  /* Matches section bg */
  z-index: 5;
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  /* Let clicks pass through if needed */
}

/* Reveal LEFT: Image appears from Left (Curtain shrinks to Right) */
.naksha_builtin_reveal_left::after {
  transform-origin: right;
  transform: scaleX(1);
}

/* Reveal RIGHT: Image appears from Right (Curtain shrinks to Left) */
.naksha_builtin_reveal_right::after {
  transform-origin: left;
  transform: scaleX(1);
}

/* Reveal TOP: Image appears from Top (Curtain shrinks to Bottom) */
.naksha_builtin_reveal_top::after {
  transform-origin: bottom;
  transform: scaleY(1);
}

/* Active State: Shrink the curtain to 0 size */
.naksha_builtin_animate::after {
  transform: scaleX(0) !important;
}

/* Special handling for vertical scale */
.naksha_builtin_reveal_top.naksha_builtin_animate::after {
  transform: scaleY(0) !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 767.98px) {
  .naksha_builtin_section_wrapper {
    padding: 30px 0;
  }

  .naksha_builtin_title {
    font-size: 2rem;
    margin-top: 40px;
    /* Add spacing between stacked columns */
  }

  .naksha_builtin_scope_text,
  .naksha_builtin_scope_sec2,
  .naksha_builtin_scope_sec3,
  .naksha_builtin_scope_sec4 {
    margin-top: 30px !important;
    /* Force smaller gap on mobile */
    max-width: 100%;
  }

  .naksha_builtin_status {
    text-align: left;
    /* Align left on mobile for better flow with title */
    margin-bottom: 20px;
  }

  .naksha_builtin_status_left {
    margin-bottom: 20px;
  }

  .naksha_builtin_img_secondary,
  .naksha_builtin_img_mid_tall,
  .naksha_builtin_img_vertical_lg,
  .naksha_builtin_img_vertical_right,
  .naksha_builtin_header_img,
  .naksha_builtin_img_vertical_medium,
  .naksha_builtin_img_huge {
    height: auto;
    max-height: 350px !important;
    /* Allow natural scaling but limit height */
  }

  .naksha_builtin_location_wrapper,
  .naksha_builtin_location_wrapper_start,
  .naksha_builtin_location_wrapper_amari {
    justify-content: flex-start;
    /* Align left on mobile */
  }

  .naksha_builtin_text_block_right {
    text-align: left;
    /* Align text left on mobile */
  }
}

/* Layout Elements */
.naksha_builtin_location_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 30px 0;
  padding-right: 10px;
}

.naksha_builtin_location_wrapper_start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0;
  padding-left: 0;
}

.naksha_builtin_line_divider {
  flex-grow: 1;
  height: 1px;
  background-color: #888;
  margin-right: 15px;
  max-width: 200px;
  /* Limit line length */
}

.naksha_builtin_line_divider_right {
  flex-grow: 1;
  height: 1px;
  background-color: #888;
  margin-left: 15px;
}

/* Divider logic for Section 3 & 4 */
.naksha_builtin_location_wrapper_amari {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 20px 0;
}

.naksha_builtin_line_divider_amari {
  width: 300px;
  /* Shorter line */
  height: 1px;
  background-color: #888;
  margin-right: 15px;
}

.naksha_builtin_text_block_right {
  text-align: right;
}

.naksha_builtin_text_block_left {
  text-align: left;
}

.naksha_builtin_bottom_dotted {
  border-top: 1px dotted #999;
  width: 100%;
}

/* Images - Updated to remove bottom margins, as wrapper handles spacing now */
.naksha_builtin_img_main {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
}

.naksha_builtin_img_vertical_lg {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.naksha_builtin_img_secondary_tall {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.naksha_builtin_header_img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.built_on_promise_section {
  background-image: url("../img/built_on/promise_background.jpg");
  filter: grayscale(100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.829);
}

.naksha_builtin_img_vertical_right {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.naksha_builtin_img_amari_wide {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.naksha_builtin_img_amari_detail {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.naksha_builtin_img_vertical_medium {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.naksha_builtin_img_huge {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.naksha_builtin_img_secondary {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.naksha_builtin_img_mid_tall {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

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

.naksha_builtin_img_cropped {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* Spacing Helpers */
.naksha_builtin_mt_lg {
  margin-top: 40px;
}

.naksha_builtin_amari_title_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

/* New Styles for "People Behind Our Promise" Section */
.naksha_builtin_info_card {
  background-color: rgba(255, 255, 255, 0.753);
  border: 1px solid #dcdcdc;
  padding: 25px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.naksha_builtin_info_card:hover {
  border-color: #a89f6d;
  /* subtle gold highlight on hover */
}

.naksha_builtin_card_title {
  font-family: NokshaFont;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000;
  font-weight: 500;
}

.naksha_builtin_card_list {
  padding-left: 20px;
  margin-bottom: 0;
}

.naksha_builtin_card_list li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
}

.naksha_builtin_text_vertical_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- New Project List Section (Grid Styling) --- */


.naksha_built_list_section {
  background-color: #143d29;
  color: white !important;
}

.naksha_built_list_item {
  border-top: 1px dotted #999;
  padding: 50px 0;
  width: 100%;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.naksha_built_list_item.reveal_left {
  transform: translateX(-150px);
}

.naksha_built_list_item.reveal_right {
  transform: translateX(150px);
}

.naksha_built_list_item.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.naksha_built_list_item:last-child {
  border-bottom: 1px dotted #999;
}

.naksha_built_list_info {
  border-left: 2px solid #ffffff;
  padding-left: 30px;
  text-align: left;
}

.naksha_built_list_info .naksha_builtin_title {
  margin-bottom: 25px;
  display: block;
  color: white !important;
}

.naksha_built_list_info .naksha_builtin_stat_header {
  margin-bottom: 10px;
  color: white !important;
}

.naksha_built_list_info .naksha_builtin_status_left {
  margin-bottom: 10px;
  color: white !important;
}

.naksha_built_list_info .naksha_builtin_scope_text {
  margin-bottom: 0;
  margin-top: 0;
  color: white !important;
}

@media (max-width: 991px) {
  .naksha_built_list_section {
    padding: 40px 0;
  }

  .naksha_built_list_item {
    padding: 30px 0;
  }

  .naksha_built_list_info {
    padding-left: 20px;
  }

  /* Remove offset on mobile for better stacking */
  .naksha_built_list_section .offset-lg-2 {
    margin-left: 0 !important;
  }
}

/*--------------------------------------------------------------
# contact us page design
--------------------------------------------------------------*/

.naksha_header-section {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  padding-top: 15px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.naksha_header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.527);
}

.naksha_header-content {
  position: relative;
  z-index: 10;
}

.naksha_header-content h1 {
  font-size: 4rem;
  font-weight: 500;
  color: white;
  margin-top: 50px;
  font-family: NokshaThird;
}

.naksha_breadcrumb {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

@keyframes drawLineFromLeft {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes drawLineFromRight {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.contact_page_section {
  position: relative;
}

.story-container::before {
  top: 0;
}

.story-container::after {
  bottom: 0;
}

.contact_content {
  padding: 40px 0;
}

.contact_content h2 {
  font-size: clamp(26px, 4vw + 1rem, 36px);
  font-weight: 900;
  position: relative;
}

.contact_content_details {
  border-left: 1px solid #b8b8b8;
  padding-left: 30px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.contact_content_details_form {
  border-left: 1px solid #b8b8b8;
  padding-left: 30px;
}

.contact_content p {
  font-size: clamp(16px, 2vw, 17px);
  line-height: 1.4;
  color: black;
  text-align: left;
}

.form-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-section-header {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.form-control,
.form-select {
  border: none;
  border-bottom: 2px solid #333;
  background-color: transparent;
  border-radius: 0;
  padding: 10px 0;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  box-shadow: none;
  border-color: #c49925;
  background-color: transparent;
}

.form-check-label {
  margin-bottom: 5px;
}

.form-check-input {
  background-color: transparent;
  border: 2px solid #c49925;
}

.form-check-input:checked {
  background-color: #c49925;
  border-color: #c49925;
}

.btn-submit {
  background-color: #c49925;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #a07d1e;
}

.form-group-info {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.naksha_send-btn {
  padding: 15px;
  text-transform: none;
  color: #ffffff;
  border-radius: 0px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  background: #3b3214;
  width: 100%;
}

.naksha_send-btn:hover {
  color: #535050;
  background: #e4dddd;
}

.naksha_contact-details h5 {
  font-weight: 600;
  margin-top: 2rem;
}

.naksha_info-card p {
  color: #6c757d;
}

.naksha_social-icons {
  display: flex;
  gap: 1rem;
}

.naksha_social-icons a {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.2s;
}

.naksha_social-icons a:hover {
  color: #c49925;
}

.naksha_map-section {
  height: 500px;
  overflow: hidden;
  position: relative;
  padding: 0 15px;
}

.naksha_map-section iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  .naksha_header-section {
    height: 200px;
  }

  .contact_content {
    padding: 20px 0;
  }

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

  .contact_content_details {
    border-left: 0px;
    padding-left: 0px;
  }

  .contact_content_details_form {
    border-left: 0;
    padding-left: 0px;
  }

  .contact_content p {
    font-size: 16px;
  }

  .naksha_header-content h1 {
    font-size: 35px;
  }
}

/*--------------------------------------------------------------
# Privacy Policy Design
--------------------------------------------------------------*/

.privacy-policy-container h1 {
  font-size: 40px;
  font-weight: 900;
  position: relative;
}

/*--------------------------------------------------------------
# Naksha Blog Page Design
--------------------------------------------------------------*/

.nakshablog_section {
  padding: 80px 0;
  overflow: hidden;
  /* Prevents scrollbars during animation */
}

/* Header Styling */
.nakshablog_header_wrapper {
  margin-bottom: 50px;
}

.nakshablog_main_title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.nakshablog_title_divider {
  width: 60px;
  height: 3px;
  background-color: #333;
  display: block;
}

/* Card Container Styling */
.nakshablog_card_wrapper {
  display: block;
  /* Makes anchor behave like a block div */
  text-decoration: none;
  /* Remove underline from links */
  color: inherit;
  position: relative;
  height: 450px;
  /* Fixed height for uniformity */
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
  border-radius: 4px;
  /* Slight radius */
}

/* Background Image Styling */
.nakshablog_bg_image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Smooth Zoom Effect */
}

/* White Content Box Styling */
.nakshablog_content_box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background-color: #fff;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  z-index: 2;
}

/* Meta Data (Date & Author) */
.nakshablog_meta_info {
  font-size: 11px;
  color: #5f5d5d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: NokshaFont;
}

.nakshablog_meta_separator {
  margin: 0 8px;
  color: #ddd;
}

/* Article Title */
.nakshablog_article_title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
  margin: 0;
  /* Limit to 3 lines with ellipsis */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
  font-family: NokshaFontSecond;
}

/* --- Hover Animations --- */

/* Zoom Image on Hover */
.nakshablog_card_wrapper:hover .nakshablog_bg_image {
  transform: scale(1.1);
}

/* Lift White Box on Hover */
.nakshablog_card_wrapper:hover .nakshablog_content_box {
  bottom: 40px;
  /* Moves up slightly */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nakshablog_card_wrapper:hover .nakshablog_article_title {
  color: #000;
  /* Darken text on hover */
}

/* --- Pagination Styling --- */
.nakshablog_pagination_wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nakshablog_page_link {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 20%;
  /* Circular buttons */
  transition: all 0.3s ease;
  font-size: 14px;
}

.nakshablog_page_link:hover {
  background: #f0f0f0;
  border-color: #ccc;
  transform: translateY(-2px);
}

.nakshablog_page_link.active {
  background: #feb900;
  color: #020202;
  border-color: #feb900;
}

.nakshablog_page_nav {
  padding: 0 15px;
  width: auto;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .nakshablog_card_wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .nakshablog_card_wrapper {
    height: 350px;
    margin-bottom: 20px;
  }

  .nakshablog_content_box {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 20px;
  }

  .nakshablog_article_title {
    font-size: 16px;
  }

  .nakshablog_main_title {
    font-size: 28px;
  }
}