/* @import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap'); */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..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=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #020202;
  --primary-color1: #333333;
  --secondary-color: #4a4848;
  /* --secondary-color1		: #d08c27; */
  --secondary-color1: #083f60;
  --secondary-color2: #083f60;
  --secondary-color3: #c89d49;
  /* --secondary-color3		: #a78e59; */
  --secondary-color4: #c89d49;
  --text-color: #eadec8;
  --arrow-color: #eadec8;
  --accent-color: #ffc107;
  --white-color: #ffffff;
  --divider-color: #eaeaea;
  --dark-divider-color: #ffffff1a;
  --btn-color: #e7f4f9;
  --btn6-color: #efb708;
  --btn1-color: #a78b76;
  --othr-color: #612e11;
  --default-font: "Inter", sans-serif;
  --default-font1: "Poppins", sans-serif;
  --default-font2: "Playfair", serif;
  /* --accent-font			: "Montserrat", sans-serif; */

  --center-width: 300px;
  --side-width: 200px;
  --gap: 20px;
  --duration: 0.8s;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

/* body {
    font-size: 20px !important;
    background: url("../img/Texturelabs_Paper_234L\ PNG\ 3.png") no-repeat center center fixed;
    background-size: cover; 
} */

body {
  font-size: 20px !important;
  background: url("../img/Texturelabs_Paper_234L%20PNG%203.png") repeat fixed;
  background-size: auto;
  background-position: center;
}

html {
  font-size: 100%;
}
a {
  text-decoration: none !important;
}



p {
  line-height: 1.8em;
  margin-bottom: 0px !important;
  margin-top: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--default-font1);
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  margin-bottom: 0px !important;
}

figure {
  margin: 0 !important;
}

/* img{
	max-width: 100%;
} */

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

/* .container{
	max-width: 1320px;
} */

.image-anime {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--secondary-color1);
}
.image-anime img {
  width: 100% !important;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.image-anime:hover {
  border: 2px solid transparent;
}

/* .fade-i {
  opacity: 0;
  animation: fadeIn 1.2s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.fade-i {
  opacity: 0;
  transition:
    opacity 3s ease,
    transform 3s ease;
}

.fade-i.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-anime.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* visibility: hidden; */
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
  transition:
    transform 1s ease-out,
    visibility 0s 0s;
  transform: translateX(-100%);
}

/* Class to trigger reveal animation */
.reveal.show img {
  transform: translateX(0); /* Move to normal position */
  visibility: visible;
}

.reveal1 {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.reveal1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform-origin: right;
  transform: translateX(100%);
  transition: transform 1s ease-out;
  visibility: hidden;
}

.reveal1.show img {
  transform: translateX(0);
  visibility: visible;
}

.header1 {
  width: 100%;
  height: auto;
  z-index: 999;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index:999 ;
}

header.sticky {
  background-size: 100% 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* transform: translateY(0); */
  background: rgba(255, 255, 255, 0.8);
}

header.sticky .navbar-light .navbar-nav .nav-link {
  color: var(--white-color) !important;
}
/* header.sticky .logo {
  filter: invert(1) brightness(0.1) contrast(2);
} */
header.sticky #primary li a:before {
  background: var(--primary-color);
}
header.sticky #primary li a {
  /* background-image: linear-gradient(to right, #000, #23abd4 50%, #000 50%); */
}
header.sticky .dropdown-toggle::after {
  color: var(--primary-color) !important;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: center !important;
}
.logo {
  color: #fff;
}

.logo img {
  width: 200px;
  height: auto;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 80% !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  color: var(--primary-color) !important;

  font-family: var(--default-font1) !important;
  position: relative;
  z-index: 10;
  width: auto;
}
.navbar-light .navbar-nav .nav-link:hover {
  background-color: var(--white-color) !important;
  color: var(--primary-color);
}

/* .navbar-light .navbar-nav .nav-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px 60px !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 50px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1) !important;
  text-decoration: none !important;
  color: var(--primary-color) !important;
  text-transform: capitalize !important;
  transition: background 0.3s ease, color 0.3s ease !important;
} */

.navbar-light .navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  height: 100%;
  /* border: 1px solid var(--primary-color); */
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  text-decoration: none;
}

/* INVISIBLE WIDTH HOLDER */
.nav-btn-spacer {
  visibility: hidden;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
}

/* ANIMATED TEXT */
.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  white-space: nowrap;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text-hover {
  transform: translateY(120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  color: #000 !important;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
  color: var(--primary-color) !important;
}
.dropdown-toggle:hover::after {
  color: #000 !important;
}

.nav-btn-text-hover {
  transform: translateY(100%);
  opacity: 0;
}

.nav-link:hover {
  background-color: #fff;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-100%);
  opacity: 0;
  color: var(--primary-color) !important;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Dropdown Menu Styles */
/* Dropdown menu style */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: none;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Submenu positioning */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.3rem;
  margin-top: -0.5rem;
  border-radius: 12px;
  display: none;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Dropdown item styling */
.dropdown-item {
  color: #000;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    display: block;
    margin: 0;
    box-shadow: none;
  }
}

.dropdown-toggle::after {
  color: var(--primary-color) !important;
  position: absolute;
  right: 10px;
}

.logo-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--secondary-color3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: var(--default-font);
  border: 1px solid var(--secondary-color3);
}
.logo-btn:hover {
  background-color: var(--secondary-color1);
  color: var(--white-color);
}

/* banner */

/* banner */

.ban {
  width: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ban-sec {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* height: 100vh; */
}

.bg-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: zoomEffect 15s ease-in-out infinite alternate;
  will-change: transform;
  background-image: url(../img/Dynamicviewwithpodium_1.webp);
}

.ban-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0) 75%
  );
  z-index: 2;
}
.bg-zoom::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  background: url(../img/banner-bg-shape-1.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 116px;
  z-index: 9;
}

.ban-sec > *:not(.bg-zoom) {
  position: relative;
  z-index: 3;
}

.ban-cont {
  padding-top: 30px;
  padding-bottom: 50px;
}
.ban-btn {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.title {
  font-size: 50px !important;
  color: var(--primary-color1);
  /* padding-top: 10px !important; */
  /* font-family: "Urbanist", sans-serif; */
  font-family: var(--default-font2);
  text-transform: capitalize;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}
.title span {
  background: var(--secondary-color1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.sub-head {
  font-size: 18px;
  color: var(--secondary-color3);
  font-family: var(--default-font1);
  font-weight: 500;
  font-style: italic;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  width: 100%; /* Take full width of container */
  padding: 10px 20px;
  background-color: #b966e721;
  width: fit-content;
  border-radius: 100px;
  margin-bottom: 10px !important;
}
.cen {
  display: block;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.para {
  font-size: 85%;
  color: var(--secondary-color);
  font-weight: 500;
  font-family: var(--accent-font);
  text-align: left;
  padding-top: 10px;
  line-height: normal;
  line-height: 26px;
  margin-top: 0px !important;
}

.hero-h1 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 54px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-align: left;
  font-family: var(--default-font);
}

.hero-subheading {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-align: left;
  font-family: var(--accent-font);
}

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

.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

@keyframes fadeUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* extraordinary button */

.extraordinary-btn1 {
  position: relative;
  background: transparent;
  color: var(--white-color);
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--default-font);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* border-radius: 50px; */
  text-decoration: none;
  border: 2px solid var(--secondary-color3);
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* box-shadow: 0 4px 15px rgba(250, 94, 7, 0.2); */
  background-color: var(--secondary-color3);
}

/* Top-down fill effect */
.extraordinary-btn1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--secondary-color1);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-radius: 0 0 50% 50%;
}

/* Arrow icon */
.extraordinary-btn1 i {
  transition: transform 0.4s ease;
}

/* Glow effect */
.extraordinary-btn1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition:
    transform 0.6s,
    opacity 0.4s;
  z-index: -1;
}

/* Hover Effects */
.extraordinary-btn1:hover {
  color: white;
  /* transform: translateY(-5px); */
  /* box-shadow: 0 10px 25px rgba(250, 94, 7, 0.4); */
}

.extraordinary-btn1:hover::before {
  height: 200%;
  border-radius: 0;
}

.extraordinary-btn1:hover i {
  transform: rotate(45deg) scale(1.2);
}

/* Click effect */
.extraordinary-btn1:active {
  transform: translateY(-2px);
}

.extraordinary-btn1:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition:
    transform 0.3s,
    opacity 0.2s;
}

.olpo1 {
  display: flex;
  justify-content: center;
  width: 190px;
  margin: auto;
}

/* ***************** whatsapp icon *****************  */

.whatsapp-float {
  position: fixed;
  right: 20px;
  /* left side */
  bottom: 20px;
  /* distance from bottom */
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #25d366, #128c7e, #075e54, #34b7f1);
  background-size: 300% 300%;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: gradientMove 5s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
  box-shadow: 3px 3px 15px rgba(18, 140, 126, 0.5);
}

/* Bounce animation */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  /* bounce up 10px */
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  background: var(--primary);
  color: #fff;
  padding: 5px 16px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  transition:
    background 0.3s,
    transform 0.3s;
  border: 3px solid #fff;
  animation: bounce 2s infinite;
  /* apply animation */
}

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

.sticky-top::after {
  width: 100%;
  height: 3px;
  background: linear-gradient(332deg, #901007, #113391, #901007);
  background-size: 300% 300%;
  animation: gradientMove 3s ease infinite;
  content: "";
  left: 0;
  right: 0;

  bottom: 0;
  z-index: 5;
  position: absolute;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Base Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
  font-family: var(--default-font1);
}

/* White Variant */
.button.is-white {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-white:hover {
  background-color: #fff;
  color: #000;
}

/* Text Animation */
.button-block {
  position: relative;
  overflow: hidden;
}

.button-text,
.button-text-hover {
  display: block;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.button-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

.button:hover .button-text {
  transform: translateY(-100%);
  opacity: 0;
}

.button:hover .button-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Icon Animation */
.button-icon-block {
  display: inline-flex;
  margin-left: 8px;
  position: relative;
  width: 18px;
  height: 18px;
}

.button-icon,
.button-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.button-icon-hover {
  transform: translate(-100%, 100%);
  opacity: 0;
}

.button:hover .button-icon {
  transform: translate(100%, -100%);
  opacity: 0;
}

.button:hover .button-icon-hover {
  transform: translate(0, 0);
  opacity: 1;
}

/* about sec */

.about-sec {
  width: 100%;
  height: auto;
  /* margin-top: 60px; */
  position: relative;
  z-index: 1;
  padding: 60px;
}

.about-sec::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* or left:0; jekhane chai */
  width: 100%;
  height: 100%;
  background-image: url("../img/left-right-line-small.svg"); /* your image */
  background-size: cover; /* full cover */
  background-position: center; /* perfect alignment */
  background-repeat: no-repeat;
  opacity: 0.2; /* fade effect */
  z-index: -1; /* content er niche thakbe */
}
/* .about-sec::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0; 
    width: 100%;
    height: 100%;
    background-image: url("../img/map.png"); 
    background-size: cover;     
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;  
    z-index: -1;  
} */

.about-para {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 600;
  font-family: var(--default-font1);
  text-align: left;
  padding-top: 10px;
  line-height: normal;
  line-height: 1.33333;
  margin-top: 0px !important;
}

/* Base Button */
.btn-animated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* border-radius: 50px; */
  overflow: hidden;
  padding: 20px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  margin-top: 30px;
}

/* Light Variant (Instant Color Change) */
.btn-light {
  background: var(--secondary-color1);
  border: 1px solid #fff;
  color: var(--white-color);
}

.btn-light:hover {
  background: var(--secondary-color4); /* instant hover color */
  border-color: var(--secondary-color4);
  color: var(--white-color);
}
.btn-light1 {
  background: transparent;
  border: 2px solid var(--secondary-color3);
  color: var(--primary-color);
}

.btn-light1:hover {
  background: var(--secondary-color4); /* instant hover color */
  border-color: var(--secondary-color4);
  color: var(--white-color);
}

/* Text Animation */
.btn-text-wrap {
  position: relative;
  overflow: hidden;
}

.btn-text,
.btn-text-hover {
  display: block;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease;
}

.btn-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

.btn-animated:hover .btn-text {
  transform: translateY(-100%);
  opacity: 0;
}

.btn-animated:hover .btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Icon Animation */
.btn-icon-wrap {
  display: inline-flex;
  margin-left: 8px;
  position: relative;
  width: 18px;
  height: 18px;
}

.btn-icon,
.btn-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease;
}

.btn-icon-hover {
  transform: translate(-100%, 100%);
  opacity: 0;
}

.btn-animated:hover .btn-icon {
  transform: translate(100%, -100%);
  opacity: 0;
}

.btn-animated:hover .btn-icon-hover {
  transform: translate(0, 0);
  opacity: 1;
}

/* mid-sec */

/* .gallery-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 300px 0px;
  }

  .gallery {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .img-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.8s ease, opacity 0.8s ease;
  }

  .img-center {
    width: 630px;
    height: 440px;
    z-index: 2;
  }

  .img-left, .img-right {
    width: 300px;
    opacity: 1;
    z-index: 1;
    height: 440px;
  }

  .caption {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #666;
  }

  @media (max-width: 768px) {
    .img-center { width: 200px; }
    .img-left, .img-right { width: 150px; }
  } */

/* .gallery-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0px 80px 0px;
}

.gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
}



.img-center img {
    width: 580px;
    height: 440px !important;
}

.img-left img,
.img-right img {
  width: 330px; 
  height: 460px !important;
}


.img-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  transition: all 0.8s ease;
  overflow: hidden;
  border-radius: 16px;
}


.img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 16px;
  z-index: 1;
}




.img-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-weight: 600;
  color: var(--white-color);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 2; 
  font-family: var(--default-font);
  
}


.img-card:hover::after,
.img-card.active::after {
  opacity: 1;
}

.img-card:hover .img-title,
.img-card.active .img-title {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

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

.gallery-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.img-card {
  width: 300px;
  height: 460px;
  object-fit: cover;
  border-radius: 30px;
  transition: all 0.6s ease;
}

/* .video-card {
  position: relative;
  width: 600px;
  height: 460px;
  border-radius: 30px;
  overflow: hidden;
  transition: all 1.2s ease;
  z-index: 2;
  border: none;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
/* .image-card {
  width: 600px;
  height: 460px;
  border-radius: 30px;
  overflow: hidden;
  transition: none;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

/* =========================
   PARTNER SECTION
========================= */

.partner-section {
  padding: 80px 0;
  overflow: hidden;
}

.partner-marquee {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
}

.partner-track {
  display: flex;
  gap: 40px;
  animation: partnerScroll 30s linear infinite;
  width: max-content;
}

.partner-card {
  background: #fff;
  border-radius: 16px;
  /* padding: 30px 40px; */
  width: 350px;
  height: 350px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.partner-card img {
  height: 350px;
  max-width: 100%;
  /* filter: grayscale(100%); */
  /* opacity: 0.85; */
  transition: 0.4s ease;
  border-radius: 16px;
}

.partner-card:hover {
  transform: translateY(-6px);
}

.partner-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Marquee animation */
@keyframes partnerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .partner-card {
    min-width: 150px;
    padding: 20px;
  }
}

/* property-sec */

.prop-sec {
  width: 100%;
  height: auto;
  margin-top: 100px;
}

.tab-sec {
  margin-top: 40px;
  background: linear-gradient(
    0deg,
    rgb(255, 255, 255) 0%,
    rgb(240, 242, 255) 100%
  );
  padding: 40px 20px 40px 20px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.tab-sec::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* or left:0; jekhane chai */
  width: 100%;
  height: 100%;
  background-image: url("../img/map.png"); /* your image */
  background-size: cover; /* full cover */
  background-position: center; /* perfect alignment */
  background-repeat: no-repeat;
  opacity: 0.2; /* fade effect */
  z-index: -1;
}

.tab-sec .nav-pills .nav-link {
  color: var(--white-color);
  background-color: #1c1c1c;
  border-radius: 50px;
  margin-right: 10px;
  padding: 10px 25px !important;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  border-color: var(--secondary-color3) !important;
}

.tab-sec .nav-pills .nav-link.active,
.tab-sec .nav-pills .nav-link.active:focus {
  background: var(--secondary-color1) !important;
  color: var(--white-color) !important;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color3) !important;
}

.tab-sec .nav-pills .nav-link:hover {
  background: var(--secondary-color1) !important;
  color: var(--white-color) !important;
}

.tab-pane {
  margin-top: 40px;
}

.prop-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
   ESTATE PROPERTY CARD
========================= */

.estate-card {
  background: #f6f3ee;
  border-radius: 28px;
  padding: 26px;
  max-width: 420px;
  font-family: "Georgia", serif;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
  cursor: pointer;
}

/* Card hover lift */
.estate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}

/* Price */
.estate-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  /* margin-bottom: 20px; */
  font-family: var(--default-font);
}

/* Image wrapper */
.estate-image {
  border-radius: 20px;
  overflow: hidden;
}

/* Image */
.estate-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}

/* Image zoom on card hover */
.estate-card:hover .estate-image img {
  transform: scale(1.15);
}

/* Content */
.estate-content {
  margin-top: 22px;
}

.estate-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary-color1);
  margin-bottom: 16px !important;
  font-variant: var(--default-font);
}

/* Divider */
.estate-divider {
  height: 1px;
  background: #c9c9c9;
  margin-bottom: 14px;
}

/* Specs */
.estate-specs {
  display: flex;
  gap: 26px;
  align-items: center;
}

.spec {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 18px;
  font-family: var(--default-font);
}

.spec i {
  font-size: 18px;
  color: var(--secondary-color3);
}

.price-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.view-details-btn {
  padding: 6px 14px;
  font-size: 14px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.view-details-btn:hover {
  background: var(--secondary-color4);
  color: #fff;
  border: 1px solid var(--secondary-color4);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 576px) {
  .estate-card {
    max-width: 100%;
    padding: 20px;
  }

  .estate-image img {
    height: 220px;
  }

  .estate-content h3 {
    font-size: 22px;
  }
}

/* why choose us */

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

/* Wrapper */
.benifit-wraps {
  margin-top: 40px;
}

/* Single benefit item */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  padding: 15px 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.benefit-item:hover {
  background: #f1f9f3;
  transform: translateX(5px);
}

/* Icon circle */
.icon-circle {
  width: 50px;
  height: 50px;
  background: #f6f6f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--secondary-color3);
  flex-shrink: 0;
}

/* Text area */
.benefit-text h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.benefit-text p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #6c757d;
}

/* stydent-testi */

.student-test {
  width: 100%;
  height: auto;
  background-color: #f6f6f6;
  padding: 80px 0px;
}

/* Marquee container */
.marquee-container1 {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 30px 0;
}

img.img-fluid-mw {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Marquee track */
.marquee-track1 {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marquee 30s linear infinite; /* use your testimonial marquee animation */
}

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

/* Right-to-left marquee */
.marquee-right {
  animation-name: marquee; /* use existing keyframes */
  animation-direction: normal; /* scroll left */
}

/* Left-to-right marquee */
.marquee-left {
  animation-name: marquee; /* use existing keyframes */
  animation-direction: reverse; /* scroll right */
}

/* Infinite marquee from your testimonial-card CSS */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* move by half for duplicated cards */
}

/* Card styles */
.card {
  /* min-width: 280px; */
  max-width: 280px;
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
  border-radius: 20px;
  padding: 25px 20px 20px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.card::before {
  content: "“";
  font-size: 40px;
  color: #3b82f6;
  position: absolute;
  top: 15px;
  left: 20px;
  font-weight: bold;
}

.card p {
  margin-top: 25px;
  font-size: 15px;
  line-height: 1.5;
  color: #475569;
  font-style: italic;
}

/* Star rating */
.card .rating {
  margin-top: 10px;
}

.card .rating span {
  color: #facc15;
  font-size: 16px;
  margin-right: 2px;
}

/* Profile section */
.card .profile {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.card .profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  margin-right: 15px;
}

.card .profile .name {
  font-weight: 600;
  font-size: 14px;
  color: #1e293b;
}

.card .profile .role {
  font-size: 12px;
  color: #64748b;
}

.bg-blue {
  background: var(--secondary-color2) !important;
  color: var(--white-color);
}
.bg-blue,
.bg-blue * {
  color: #ffffff !important;
}

/* cont-sec */

/* Left image background */
.cta {
  width: 100%;
  height: auto;
  flex: 1;
  background-image: url("../img/Gym\ \(1\).webp"); /* Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 100px 0px;
}

/* Right form container */
.contact-form {
  flex: 1;
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.contact-form h2 {
  font-size: 32px;

  margin-bottom: 40px !important;
}

/* Form fields */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  background-color: #f5f5f5;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: none;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
}

.sub {
  background: var(--secondary-color1);
  color: var(--white-color);
  border: none;
  border-radius: 25px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid var(--secondary-color3);
  margin-top: 20px;
}

.sub:hover {
  background: var(--accent-color);
  color: var(--white-color);
  border: 1px solid var(--accent-color);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
  }

  .background-image {
    height: 40vh;
  }

  .contact-form {
    border-radius: 20px 20px 0 0;
    padding: 40px 30px;
  }
}

.title-ban {
  font-size: 80px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white-color);
  font-weight: 700;
  font-family: var(--default-font2);
  text-align: center;
}

.ban-sec h5 {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #eaeaea;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: center;
  display: block;
  font-family: var(--default-font);
  font-weight: 500;
  padding-top: 10px;
}
/* Icon wrapper */
.loc-icon {
  border-radius: 50%;
  color: var(--white-color);
  font-size: 14px;
  margin-right: 10px;
  font-size: 16px;
}

/* service */

.mid-sec {
  width: 100%;
  height: auto;
  /* background: #f5f7fb; */
  /* background: #f5f7fb; */
  background: linear-gradient(135deg, #e1e8ee, #f0f4f8);
  padding: 80px 0px;
}

.mt-04 {
  margin-top: 40px;
}

.stc {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
  transition: top 0.3s ease;
  z-index: 10;
}

/* .service-block {
  position: sticky;
  top: 150px;
  z-index: 1;
  background: #fff;
    padding: 50px 30px;
    height: auto;
    margin-bottom: 20px;
} */

.service-block {
  position: sticky;
  top: 150px;
  z-index: 1;
  /* background-image: url("path-to-your-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  padding: 50px 30px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 16px;

  overflow: hidden; /* keeps overlay inside */
}
/* .service-block::after{
  position: relative;
} */

/* Light overlay */
.service-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

/* Keep inner content above overlay */
.service-block > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 767px) {
  .service-block {
    height: auto;
  }
}

.serv-mg {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.service-block:first-child {
  border-top: none;
}

.service-block:nth-child(2) {
  z-index: 2;
}

.service-block:nth-child(3) {
  z-index: 3;
}

.service-block:nth-child(4) {
  z-index: 4;
}

.service-block:nth-child(5) {
  z-index: 5;
}

.service-block:nth-child(6) {
  z-index: 6;
}

.service-block:nth-child(7) {
  z-index: 8;
  position: sticky;
  top: 3000px !important;
}

.service-inner {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 767px) {
  .service-inner {
    flex-direction: row;
  }
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-content {
  flex: 1;
  position: relative;
}

.service-number {
  position: absolute;
  top: -75px;
  background: #f1f1f1;
  border-radius: 50%;
  font-weight: bold;
  color: var(--fourth-color);
  width: 55px;
  height: 55px;
  line-height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
}

.service-content h2 {
  margin-top: 4.4rem;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: var(--white-color);
}
.service-content p {
  color: var(--white-color);
  margin-top: 10rem;
  font-size: 18px;
}
@media (max-width: 767.78px) {
  .service-content h2 {
    margin-top: 3rem;
  }
}

/* faq */
.faq {
  padding: 100px 0px 100px 0px;
  position: relative;
  background-color: var(--white-color);
  z-index: 2;
}
div#accordion {
  margin-top: 30px;
}

.faqs-image-box {
  position: relative;
}

.faqs-image figure {
  display: block;
  border-radius: 20px;
}

.faqs-image figure img {
  width: 100%;
  aspect-ratio: 1 / 1.4;
  object-fit: cover;
  border-radius: 20px;
}

.faqs-cta-box-item p a {
  color: inherit;
  transition: all 0.4s ease-in-out;
  color: var(--white-color);
  font-size: 16px;
}

.faqs-cta-box-item p a:hover {
  color: var(--primary-color);
}

.faqs-content {
  margin-left: 15px;
  margin-top: 40px;
}

.faq-accordion .accordion-item {
  background: #f6f6f7;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35em;
  background-color: transparent;
  color: var(--secondary-color1);
  padding: 22px 55px 22px 25px;
  transition: all 0.3s ease-in-out;
  font-family: var(--default-font);
}

.faq-accordion .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
}

.faq-accordion
  .accordion-item:last-child
  .accordion-header
  .accordion-button.collapsed {
  border-bottom: none;
}

.faq-accordion .accordion-item .accordion-button {
  padding-left: 55px; /* icon জায়গা দেওয়ার জন্য */
  padding-right: 20px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "+";
  font-family: "Font Awesome 7 Free";
  position: absolute;
  left: 20px; /* 🔥 LEFT side */
  top: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 900;
  transform: translateY(-50%);
  border: 2px solid var(--secondary-color2);
  color: var(--secondary-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  /* no animation needed? keep or remove */
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.faq-accordion .accordion-item .accordion-body {
  border-top: 1px solid var(--divider-color);
  padding: 25px;
}

.faq-accordion .accordion-item .accordion-body p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--default-font);
}
span.tdt {
  padding-left: 6px;
}

/* =========================
   OVERVIEW SECTION
========================= */

.overview-section {
  padding: 80px 0 40px;
  background: #fff;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.overview-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #000;
  display: inline-block;
  margin-bottom: 16px;
}

/* RIGHT */
.overview-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.info-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.imgArea {
  position: relative;
  width: 84px;
}
.imgArea img {
  z-index: 10;
  position: relative;
}
.imgArea::after {
  content: "";
  width: 60px;
  height: 60px;
  z-index: 5;
  background: var(--secondary-color3);
  border-radius: 100px;
  position: absolute;
  left: 0;
  bottom: 0px;
}

.info-icon {
  width: 54px;
  height: 54px;
  background: #f5f7fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color3);
  font-size: 22px;
  flex-shrink: 0;
}

.info-text span {
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--secondary-color1);
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-family: var(--default-font);
}

.info-text strong {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

/* RERA */
.overview-rera {
  text-align: center;
  margin-top: 60px;
  font-size: 16px;
  color: var(--secondary-color1);
  font-family: var(--default-font);
  font-weight: 600;
}
img.img-fluid.esd {
  height: 100%;
  object-fit: cover;
}

/* .overview-rera a {
  color: #777;
  text-decoration: none;
} */

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767.78px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-title {
    font-size: 34px;
  }
}

/* =========================
   LOGO BASE
========================= */

.nav-logo {
  display: inline-block;
}

.logo-img {
  width: 140px;
  will-change: transform, filter;
  transition:
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.35s ease;
}

/* =========================
   TOP STATE (PAGE TOP)
   → White logo
   → Slightly up + zoom
========================= */

header:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1); /* white logo */
  transform: translate3d(0, -130px, 0) scale(1.2);
}

/* =========================
   SCROLLED STATE
   → Normal logo
   → Normal position
========================= */

header.scrolled .logo-img {
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

/* =========================
   HEADER BACKGROUND
========================= */

header {
  transition: background 0.4s ease;
}

header.scrolled {
  background: #fff;
}

header:not(.scrolled) {
  background: transparent;
}

/* icon */

.icn-box {
  position: fixed;
  top: 50%;
  right: -51px;
  transform: rotate(270deg);
  z-index: 999;
  background-color: var(--secondary-color3);
  padding: 12px 22px;
  border-radius: 8px 8px 0 0;
}

.icn-box a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
}

/* Hover effect */
.icn-box:hover {
  background-color: var(--secondary-color3);
}

/* floor */

.florr-sec {
  padding: 80px 0px 0px 0px;
}

.floor-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 30px;
}

.floor-tab {
  padding: 10px 8px;
  border: 1px solid var(--secondary-color2);
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--default-font);
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary-color2);
  border-radius: 6px;
}

.floor-tab.active {
  background: var(--secondary-color3);
  color: #fff;
  border-color: var(--secondary-color3);
}

.floor-content {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.floor-panel {
  display: none;
  animation: fadeUp 0.4s ease;
}

.floor-panel.active {
  display: block;
}

img.img-fluid.nbgbg {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-height: 600px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* footer */

.footer {
  padding: 100px 0px 30px 0px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--secondary-color1);
  position: relative;
  z-index: 0;
}

.footer-container {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

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

.footer-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

/* .footer-list a {
  color: #1f2d3d;
  text-decoration: none;
} */

.footer-col.center {
  text-align: center;
}

.footer-title {
  font-size: 13px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 10px;
}
.footer-col p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--default-font);
  color: var(--white-color);
  align-items: center;
  padding-bottom: 10px;
}

.partner-logo {
  width: 140px;
  margin-bottom: 20px;
  /* filter: brightness(0) invert(1); */
}

.phone,
.rera,
.email {
  font-size: 14px;
  margin: 8px 0;
  display: flex;
  justify-content: center;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: var(--white-color);
  color: var(--secondary-color1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  font-size: 15px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--secondary-color3);
  color: var(--white-color);
}

.approved-title {
  margin: 20px 0 20px !important;
  font-size: 18px;
  font-family: var(--default-font);
  color: var(--white-color);
}

.bank-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.bank-logos img {
  height: 32px;
  object-fit: contain;
}
.footer-list li a,
.phone a,
.email a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--white-color);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
}
.rera .fa-id-card {
  color: var(--secondary-color3);
  margin-right: 10px;
}
span.dvd {
  font-weight: 300;
}

.footer-list li a:hover,
.phone a:hover,
.email a:hover {
  color: var(--secondary-color3);
}

.footer-list i,
.phone i,
.email i {
  color: var(--secondary-color3);
  margin-top: 4px;
}

.footer-bg-text {
  position: absolute;
  bottom: -62px;
  left: 0;
  right: 0;
  font-size: 230px;
  font-weight: 800;
  text-align: center;
  color: transparent;
  background: linear-gradient(to top, #807e7e, #e4e3e3);
  /* background: linear-gradient(to top, #8f3a5d, #3b3f80); */
  -webkit-background-clip: text;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.footer-bottom p {
  text-align: center;
  font-size: 16px;
  color: var(--white-color);
  font-family: var(--default-font);
}
.footer-bottom {
  margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-list li {
    justify-content: center;
  }

  .bank-logos {
    justify-content: center;
  }
}

/* GALLERY SECTION STYLES */

/* GALLERY SECTION - MAIN */

section.sec-gal {
  margin: 80px 40px;
}
.gallery-main {
  position: relative;
  width: 100%;
  height: 300vh;
  background: white;
}

.gallery-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* HEADER */
/* .gallery-header {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 100;
  padding: 0 20px;
} */

/* COLUMNS CONTAINER */
.columns-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  padding: 40px 0px 40px 0px;
  z-index: 10;
}

.columns-grid {
  display: flex;
  gap: 20px;
  height: 100%;
}

.single-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* IMAGE CARDS - FIXED */
.image-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  background: #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-column {
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Different starting positions */
.col-1 {
  transform: translateY(0px);
}
.col-2 {
  transform: translateY(40px);
}
.col-3 {
  transform: translateY(0px);
}
.col-4 {
  transform: translateY(40px);
}

/* AFTER GALLERY */
.after-gallery {
  height: 100vh;
  background: #1a1a1a;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.after-gallery h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
  .gallery-title {
    font-size: 48px;
  }

  .columns-box {
    padding: 250px 30px 30px;
  }

  .image-card {
    height: 350px;
  }
}

@media (max-width: 991.78px) {
  .gallery-main {
    height: 350vh;
  }

  .gallery-title {
    font-size: 40px;
  }

  .columns-box {
    padding: 60px 20px 20px;
  }

  .single-column:nth-child(4) {
    display: none;
  }

  .image-card {
    height: 225px;
  }
}

@media (max-width: 767.78px) {
  .gallery-main {
    height: 200vh;
  }

  .gallery-title {
    font-size: 32px;
  }

  .gallery-header {
    top: 80px;
  }

  .columns-grid {
    gap: 10px;
  }

  .single-column:nth-child(3) {
    display: none;
  }

  .image-card {
    height: 180px;
    border-radius: 10px;
  }
}

@media (max-width: 767.78px) {
  .gallery-title {
    font-size: 28px;
  }

  .columns-box {
    padding: 40px 10px 10px;
  }

  .image-card {
    height: 200px;
  }
}

/* nearby */

/* timeline step */

.mid1 {
  width: 100%;
  height: auto;
  padding: 80px 0px 40px 0px;
  /* background-color: #e1e8ee; */
  /* background-color: #f5f7fb; */
  background: linear-gradient(135deg, #f0f4f8, #f0f4f8);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6%;
  height: 2px;
  background-color: var(--secondary-color1);
  z-index: 0;
  width: 100%;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Create 5 equal columns */
  gap: 20px;
  /* Space between grid items */
  padding: 20px;
  position: relative;
  margin-top: 40px;
}

.step-sec {
  position: relative;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

.step {
  position: relative;
  overflow: hidden;
}

/* .step:hover {
  transform: scale(1.05) !important;
} */

.step:hover h4 {
  color: var(--secondary-color);
  /* padding-top: 6px; */
}

.step:hover .circle i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #e1e8ee;
  color: white;
}

.step:hover .circle i {
  color: var(--secondary-color3);
  font-size: 110%;
}
p.h-para {
  padding: 10px;
}

.step:hover .step-des p.h-para {
  opacity: 1;
  /* padding: 10px; */
  border-left: 3px solid var(--secondary-color1);
  text-align: center;
  background-color: var(--secondary-color3);
  color: var(--white-color);
}

.sr-ch {
  padding-left: 10px;
  color: var(--text-color1);
  font-size: 120%;
  text-transform: capitalize;
}

.circle {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: transparent;
}

.circle i {
  color: var(--secondary-color1);
  font-size: 150%;
}
.icon.d-flex {
  align-items: center;
  justify-content: center;
}

.step-des {
  margin-top: 20px;
}

/* Initially hide text */

.step p {
  opacity: 0;
  padding-top: 10px;
  text-align: left;
  font-size: 70%;
}

/* Show text on hover */
.step:hover p {
  opacity: 1;
}

.step-one {
  position: relative;
  top: -32%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary-color);
}

.step-one h6 {
  font-size: 140%;
  font-weight: 600;
  color: var(--secondary-color1);
  font-family: var(--default-font);
}

.step-cir {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--secondary-color1);
  margin: 0 auto;
  border: 3px solid var(--white-color);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -8%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
}

/* Optional: Style for the icon images */
.step .icon img {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.card1 {
  width: 100%;
  height: auto;
  background: var(--secondary-color1);
  border-radius: 30px;
  border: 1px solid var(--bor-color);
  padding: 25px;
}

/*  */

/* ================= FAQ ACCORDION ================= */

.mid-sec1 {
  background: #e1e8ee;
  padding: 80px 0px;
}

.faq-accordion .accordion-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 15px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Button */
.faq-accordion .accordion-button {
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px 18px 55px;
  background: transparent;
  color: var(--text-color5);
}

/* Body */
.faq-accordion .accordion-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-color2);
  padding: 15px 20px 20px 55px;
  background: #fafcff;
}

/* ================= IMAGE ================= */

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .mid .title {
    font-size: 28px;
  }

  .faq-accordion {
    max-width: 100%;
  }
}

/* aminites */

.tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: center;
  margin-top: 40px;
}

.tab {
  padding: 14px 22px;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--secondary-color1);
  font-size: 16px;
  border: 1px solid var(--secondary-color1);
}

.tab.active {
  background: var(--secondary-color3);
  color: #fff;
  border: 1px solid var(--secondary-color3);
}

.content {
  display: none;
}

.content.active {
  display: block;
}

.grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); */
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.card2 {
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, #e1e8ee, #f0f4f8);
  padding: 25px 20px 20px 20px;
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: grid;
  /* border: 1px solid var(--secondary-color1); */
}

.card2 i {
  font-size: 36px;
  color: var(--secondary-color1);
  margin-bottom: 12px;
}

.card2 span {
  font-size: 14px;
  font-weight: 600;
}

/* 🔥 Hover Effect */
.card2:hover {
  background: var(--secondary-color3);
  transform: translateY(-6px);
}

.card2:hover i,
.card2:hover span {
  color: #ffffff; /* icon + text both white */
}

.lmk {
  justify-content: start !important;
}

/* Mobile Bottom Fixed Bar */
.icn-box1 {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 2147483647 !important;
  /* background-color: var(--secondary-color1, #1f4e66); */
  background-color: var(--secondary-color3);
}
/* Active navbar link color */
.navbar-light .navbar-nav .nav-link.active {
  color: red !important; /* active color */
}
/* Hover */
.navbar-light .navbar-nav .nav-link:hover span {
  color: red;
}

/* Active link */
.navbar-light .navbar-nav .nav-link.active span {
  color: red !important;
}
.btn-group {
  display: flex;
  gap: 16px; /* buttons er gap */
  flex-wrap: wrap;
}

/* Optional: second button slightly different */
.btn-outline {
  background: transparent;
  border: 1px solid var(--secondary-color1);
  color: var(--secondary-color1);
}
.about-developer {
  padding: 90px 0;
  background: #f9fafc;
  color: #1f2d3d;
  font-family: "Inter", sans-serif;
}

.about-header h6 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8f98;
  margin-bottom: 10px;
}

.about-header h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 40px;
}

.about-header h2 span {
  color: #c9a24d; /* luxury gold accent */
}

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 22px;
  color: var(--secondary-color);
}

.about-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.about-highlight div {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  min-width: 180px;
}

.about-highlight h3 {
  font-size: 36px;
  color: var(--secondary-color1);
  margin-bottom: 6px;
}

.about-highlight span {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a8f98;
}

.about-quote {
  font-size: 22px;
  font-style: italic;
  color: #1f2d3d;
  border-left: 4px solid #c9a24d;
  padding-left: 20px;
  margin: 40px 0;
}

.about-footer {
  margin-top: 50px;
  font-size: 16px;
}

.about-footer strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--secondary-color3);
}

.about-footer span {
  color: #6b7280;
}

.modal-content.bg-warning {
  background-color: var(--secondary-color3) !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
  box-shadow: none;
  border-bottom: 2px solid #fff;
}
.modal-title {
  color: var(--white-color);
  font-size: 18px;
}
.form-check {
  display: flex !important;
  gap: 10px;
}

/*.responsive-map {*/
/*  overflow: hidden;*/
/*  padding-bottom: 109.25%;*/
/*  position: relative;*/
/*  height: 0;*/
/*}*/
/*.responsive-map iframe {*/
/*  left: 0;*/
/*  top: 0;*/
/*  height: 100%;*/
/*  width: 100%;*/
/*  position: absolute;*/
/*}*/

.mid .row {
  display: flex;
  align-items: stretch;
}

.map-wrapper,
.responsive-map,
.responsive-map iframe {
  height: 100%;
}

.responsive-map {
  position: relative;
}

.responsive-map iframe {
  width: 100%;
  border: 0;
}



