/* @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: #212529;
  --primary-color1: #333333;
  --secondary-color: #4a4848;
  /* --secondary-color1		: #d08c27; */
  --secondary-color1: #e7a08b;
  --secondary-color2: #083f60;
  --secondary-color3: #d98f78;
  /* --secondary-color3		: #a78e59; */
  --secondary-color4: #d98f78;
  --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(--primary-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;
  margin-right: 1rem !important;
  margin-left: 1rem !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-expand-lg .navbar-nav {
  flex-direction: row;
  justify-content: center;
}
/* .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;
} */

/* 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-image: url(../img/rb-website\ main\ banner\ \(2\).jpg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: zoomEffect 15s ease-in-out infinite alternate;
  will-change: transform;
}

/* .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) 0%,
    rgba(0, 0, 0, 0.15) 25%,
    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-color4);
  -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;
} */

/* 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;
  margin-top: 80px;
}

/* 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; */
  background: linear-gradient(180deg, #fff1ec 0%, #fde4db 45%, #f8d1c6 100%);
  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;
}

/* 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;
}

/* =========================
   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: 200px;
  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); */
  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: absolute;
  top: 50%;
  right: -51px;
  transform: rotate(270deg);
  z-index: 999;
  background-color: var(--secondary-color1);
  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);
}

/* footer */

.light-footer {
  background: #e9e9e9; /* off-white */
  color: #111111;
  padding: 40px 20px 20px;
  font-family: Inter, sans-serif;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-logo {
  max-width: 400px;
}

/* Right content */
.footer-right p {
  margin: 6px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111;
}

.footer-right i {
  color: var(--secondary-color1); /* brand red */
  font-size: 14px;
}

.footer-right a {
  color: #111;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Bottom */
.footer-bottom {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 13px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer-right p {
    justify-content: center;
  }
}

/* GALLERY SECTION STYLES */

/* GALLERY SECTION - MAIN */

.sec-gal {
  width: 100%;
  height: auto;
  margin: 80px 0px 0px 0px;
}
.gallery-main {
  position: relative;
  width: 100%;
  margin-top: 40px;
  /* 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;
  }
}

.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);
}
/* 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;
}

/* wraper start */
.wrap {
  width: 100%;
  height: auto;
  background-color: #e9f8ff;
  padding: 60px 0;
  position: relative;
  z-index: 0;
}

/* =====================
   ADVANCE WRAP
===================== */
.advance-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 60px;
  gap: 0;
  overflow-x: hidden; /* FIX: no horizontal overflow */
  transition: all 0.6s ease-in-out;
}

/* =====================
   CARD ITEM
===================== */
.advance-item {
  width: 250px;
  min-width: 250px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 0 -40px; /* overlap effect */
  position: relative;
  transition:
    transform 0.6s ease,
    margin 0.6s ease;
}

/* =====================
   THUMB IMAGE
===================== */
.advance-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* =====================
   CONTENT
===================== */
.advance-content {
  background: #fff;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.advance-content h6 {
  font-size: 18px;
  margin: 0;
}

.advance-btn i {
  vertical-align: middle;
  color: var(--accent-color);
}

/* =====================
   INITIAL TILT EFFECT
===================== */
.advance-wrap:not(.scrolled) .advance-item:nth-child(1) {
  transform: rotate(-8deg);
  z-index: 1;
}
.advance-wrap:not(.scrolled) .advance-item:nth-child(2) {
  transform: rotate(-4deg);
  z-index: 2;
}
.advance-wrap:not(.scrolled) .advance-item:nth-child(3) {
  transform: rotate(0deg);
  z-index: 3;
}
.advance-wrap:not(.scrolled) .advance-item:nth-child(4) {
  transform: rotate(4deg);
  z-index: 2;
}
.advance-wrap:not(.scrolled) .advance-item:nth-child(5) {
  transform: rotate(8deg);
  z-index: 1;
}

/* =====================
   ON SCROLL – STRAIGHT
===================== */
.advance-wrap.scrolled {
  gap: 20px;
}

.advance-wrap.scrolled .advance-item {
  transform: rotate(0deg) !important;
  margin: 0 !important;
}

/* =====================
   SMALL LAPTOP FIX (≤ 1100px)
===================== */
@media (max-width: 1100px) {
  .advance-item {
    margin: 0 -20px; /* FIX: reduce overflow */
  }

  .advance-wrap:not(.scrolled) .advance-item:nth-child(1) {
    transform: rotate(-5deg);
  }
  .advance-wrap:not(.scrolled) .advance-item:nth-child(5) {
    transform: rotate(5deg);
  }
}

/* =====================
   TABLET (≤ 991px)
===================== */
@media (max-width: 991.78px) {
  .advance-wrap {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 10px;
  }

  .advance-item {
    width: 220px;
    min-width: 220px;
    margin: 0 -20px;
  }
}

/* =====================
   MOBILE (≤ 767px)
===================== */
@media (max-width: 767.78px) {
  .advance-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    overflow-x: hidden;
  }

  .advance-item {
    width: 100%;
    max-width: 360px;
    min-width: auto;
    margin: 0;
    transform: rotate(0deg) !important;
  }

  /* Remove tilt completely on mobile */
  .advance-wrap:not(.scrolled) .advance-item {
    transform: rotate(0deg);
  }
}

/* contact-sec */

/* contact page */

.contact-section {
  padding: 100px 0px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.contact-wrapper {
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

/* LEFT IMAGE */
.contact-left {
  position: relative;
}

.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.6)
  );
}

.contact-info-list {
  position: absolute;
  right: 50px;
  bottom: 50px;
  left: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 80px;
  z-index: 1;
}

.contact-info-item {
  position: relative;
  width: calc(50% - 40px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 1px;
  height: 100%;
  background-color: var(--dark-divider-color);
}

.contact-info-item:last-child:before,
.contact-info-item:nth-child(2n + 2):before {
  display: none;
}

.contact-info-item.location-item {
  width: 100%;
  display: flex;
  flex-direction: initial;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 30px;
}

.contact-info-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color1);
  border-radius: 10px;
  overflow: hidden;
}

.contact-info-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  border-radius: 10px;
  transform: rotate(180deg) scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.contact-info-item:hover .icon-box::before {
  transform: rotate(0) scale(1);
  border-radius: 0;
}

.contact-info-item.location-item .icon-box {
  margin-bottom: 0;
}

.contact-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 25px;
  height: 25px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.contact-info-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.contact-info-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.contact-info-content p {
  color: var(--white-color);
  margin: 5px 0 0 0;
  font-size: 16px;
}

.contact-info-content p a {
  color: inherit;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}

/* RIGHT FORM */
.contact-right {
  padding: 60px;
  background: #fafafa;
}

#contactForm {
  margin-top: 40px;
}

.form-control {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.6em !important;
  color: var(--primary-color) !important;
  background-color: var(--white-color) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 17px 20px !important;
  outline: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form form .form-control::placeholder {
  color: var(--text-color);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-left {
    height: 380px;
  }

  .contact-right {
    padding: 40px 25px;
  }
}

/* team */

/* Section Title */
.team-section {
  background-color: #f9f9f9;
  padding: 60px 0px;
}

/* Team Card */
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Team Image */
.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 250px;
  display: block;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

/* Social Links */
.social-links {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  opacity: 0;
  display: flex;
  gap: 10px;
  transition: all 0.3s ease;
}

.team-card:hover .social-links {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.view-profile {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 999px; /* pill shape */
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-profile:hover {
  background: var(--secondary-color3); /* brand red */
  color: #fff;
  border-color: var(--secondary-color1);
  transform: translateY(-2px);
}

.social-links a {
  background: #222;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff3b3f;
}

/* Team Info */
.team-info {
  padding: 20px;
}

.team-info h5 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var([--primary-color]);
}

.team-info p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

img.img-fluid-mw {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
/* Responsive */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* carousel */

.main-slider {
  width: 100%;
  padding: 50px 0px 0px 0px;
  overflow: hidden;
}

.same-carousel .slide {
  border-radius: 20px;
  overflow: hidden;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.same-carousel .slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}

/* Center active slide */
.same-carousel .owl-item.active.center .slide {
  transform: scale(1);
}

/* Arrows */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff !important;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.owl-prev {
  left: 40px;
}
.owl-next {
  right: 40px;
}

.owl-nav span {
  font-size: 28px;
  color: #000;
}

/* Mobile fix */
@media (max-width: 768px) {
  .same-carousel .slide img {
    height: 280px;
  }
}

/* mission vission */

/* mission */

.mission-vision-section {
  padding: 80px 0px 0px 0px;
  position: relative;
  z-index: 0;
}

/* GRID */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

/* BOX */
.mv-box {
  background: #fff;
  padding: 45px 40px;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 6px;
}

/* overlay */
.mv-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0; /* 🔹 start from bottom */
  background: var(--secondary-color4);
  transition: height 0.35s ease;
  z-index: 0;
}

/* hover effect */
.mv-box:hover::after {
  height: 100%; /* 🔹 move upward */
}

/* content always on top */
.mv-box > * {
  position: relative;
  z-index: 1;
}

.mv-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* background: #ffc1076d; */
  background: radial-gradient(
    circle at top,
    #a9cfd5 0%,
    #9bbfc5 55%,
    #8fb4bb 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #dde3e8;
  margin-bottom: 25px;
}
.vf {
  background: radial-gradient(
    circle at top,
    #f3c1b2 0%,
    #f2a68c 55%,
    #ec967a 100%
  );
  color: #f3bdac;
}

.mv-box h4 {
  font-size: 24px;
  margin-bottom: 12px;
}

.mv-box p {
  color: var(--secondary-color);
  line-height: 1.8;
  font-size: 16px;
  font-family: var(--default-font);
  font-weight: 400;
}
/* smooth transition */
.mv-icon,
.mv-box h4,
.mv-box p {
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

/* hover state */
.mv-box:hover .mv-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.25); /* optional soft bg */
}

.mv-box:hover h4,
.mv-box:hover p {
  color: #fff;
}

/* MOBILE */
@media (max-width: 767.78px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* mission */

.feature-section {
  padding: 60px 00px;
  position: relative;
  z-index: 0;
}

.feature-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

/* Image Cards */
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card .overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.image-card h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

/* Text Cards */
.text-card {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.text-card h4 {
  font-size: 34px;
  margin-bottom: 10px;
}

.text-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Background colors */
.text-card.light {
  /* background: #f4efe6; */
  background: radial-gradient(
    ellipse at top center,
    #f4f6f7 0%,
    #eef1f3 40%,
    #e5eaee 70%,
    #dde3e8 100%
  );
}
.lg {
  background: radial-gradient(
    ellipse at top center,
    #f4f6f7 0%,
    #eef1f3 40%,
    #e5eaee 70%,
    #dde3e8 100%
  ) !important;
}
.gr {
  background: linear-gradient(180deg, #fff1ec 0%, #fde4db 45%, #f8d1c6 100%);
}

.text-card.green {
  /* background: #5f6f52; */
  background: radial-gradient(
    circle at top,
    #fde6dc 0%,
    #f9d6c9 35%,
    #f6c7ba 65%,
    #f2b8aa 100%
  );
  /* background: radial-gradient(
    ellipse at top center,
    #fdeee7 0%,
    #fbd9cd 38%,
    #f6c1b2 68%,
    #f1b0a0 100%
  ); */
  color: #fff;
}

.text-card.green p {
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.ic-log {
  width: 100px;
  height: 70px;
  object-fit: contain;
}
