.navbar-button{
  background: #d6a709;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}
.navbar-button:hover{
  border: 3px solid #d6a709;
  color: #d6a709;
  background: none;
}
@media (max-width:991px){
  .navbar-button{
    font-size: 13px;
    padding: 8px 14px;
  }
}
.contact-header {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.circle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  color: #222;
  transition: 0.3s;
}
.circle-icon i{
  font-size: 21px;
}
.circle-icon:hover {
   background: #d6a709; 
   color: #fff;
 }

/* HEADER-LEFT */
.social-media svg{
    width: 25px;
}
.social-media span{
    font-size: 21px;
    color: #5a8d86;
    font-weight: 500;
}
.social-media h5 {
    font-size: 18px;
    
}
.typewriter {
  overflow: hidden;        
  white-space: nowrap;           
  animation: typing 2s steps(30, end) forwards, blink 0.7s step-end infinite;
  animation-delay: 0.1s;
  font-weight: 400;
  margin-bottom: 0;
  color: #222;
  width: 0;                
  display: inline-block;
  font-size: 20px;
}
.typewriter span{
  color: #daa50b;
}
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: #5a8d86; }
}
.typewriter.done{
    border-right: none;
}

/* FOOTER */
.footer {
  background: #0d0d0d;
  color: #fff;
  padding: 70px 0 0;
}
.footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer a:hover {
  color: #d6a709;
}
.footer h3,
.footer h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 24px;
}
.footer .box-list p {
  color: rgba(255, 255, 255, 0.8);
  width: 250px;
  line-height: 1.7;
  font-size: 16px;
}
.foot-top-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 30px;
}
.foot-wrap-box1 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1 1 60%;
}
.footer-box1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
.footer-box1 .box-list img{
  width: 250px;
  margin-left: -15px;
}
.foot-wrap-box2 {
  flex: 1 1 35%;
  padding: 0 60px;
  margin: 0 20px;
}
.footer-box2 {
  margin-top: 20px;
}
.footer-box2 h3 img {
  width: 40px;
  margin-left: 6px;
  transition: 0.3s;
}
.footer-box2 h3:hover img {
  transform: translate(3px, -3px);
}
.box-list img {
  margin-bottom: 20px;
}
.box-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.box-list ul li {
  margin-bottom: 5px;
}
.box-list ul li a {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}
.box-list ul li a:hover {
  color: #d6a709;
}
.foot3-box {
  margin-bottom: 20px;
}
.foot3-box a {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}
.foot3-box a i{
  font-size: 22px;
  padding: 5px;
  color: #d6a709;
}
.foot3-box p {
  margin: 0;
}
.foot-social ul {
  display: flex;
  gap: 12px;
  padding: 0;                                                                                                                                                                                                                                                                                                                                                                                               
}
.foot-social ul li {
  list-style: none;
}
.foot-social ul li a {
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}
.foot-social ul li a:hover {
  background: #d6a709;
  color: #fff;
}
.footer-bottom-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom-strip p {
  margin: 0;
}
@media (max-width: 992px) {
   .footer .box-list p{
    width: auto;
   }
  .foot-top-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .foot-wrap-box1,
  .foot-wrap-box2 {
    flex: 1 1 100%;
    margin: 0 ;
  }
  .foot-wrap-box2{
    padding: 0 30px;
  }
  .footer-bottom-strip {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 40px 0 0;
  }
  .foot-social ul {
    justify-content: flex-start;
  }
}

/* HOME ABOUT */
.home-about{
  padding: 4em 0;
}
.home-about h1{
  font-size: 40px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}
.home-about p{
  font-size: 20px;
  color: #333;
}
.home-about h4{
  font-size: 28px;
}
.statistics{
  font-family: "lora", serif;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.home-about .statistics strong{
  font-size: 50px;
  color: #d6a709;
  padding-right: 30px;
}
.home-about .statistics span{
   font-size: 22px;
   color: #333;
   font-weight: 400;
}

/* banner */
.building-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.building-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 0.8;
}

@media(max-width:600px){
  .building-section{
    display: none;
  }
}

/* BUILDING HEADING */
.building-heading{
  width: 100%;
  display: flex;
  text-align: left;
  padding: 20px 0;
}
.building-heading span img{
  width: 60px; 
  margin-left: 20px;
}
.building-heading h2{
  font-weight: 100;
  font-size: 80px;
  margin-bottom: 20px;
  color: #111;
}
.building-heading h2 #text{
  margin-left: 10px;
}
.building-heading a i{
  font-size: 17px;
}

@media(max-width: 768px){
  .building-heading h2{
    font-size: 50px;
  }
}
@media(max-width:458px){
  .building-heading h2{
    font-size: 45px;
  }
  .building-heading span img{
    width: 50px;
  }
}
@media(max-width:368px){
  .building-heading h2{
    font-size: 40px;
  }
  .building-heading span img{
    width: 48px;
  }
}

/* HOME WHY-SECTION */
.why-section{
  padding: 5em 0 4em;
}
@media(max-width:768px){
  .why-section{
    padding: 3em 0 3em;
  }
}

/* FEATURED PROJECTS */
.featured-projects {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}
.featured-projects .section-subtitle{
  font-size: 18px;
  font-weight: 500;
  color: #d6a709;
  letter-spacing: 2px;
}
.featured-projects .section-title {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  /* max-width: 380px; */
  aspect-ratio: 4/5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  z-index: 0;
}
.project-card:hover {
  transform: translateY(-8px);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  background: linear-gradient(180deg, transparent 10%, rgba(214, 167, 9, 0.6) 100%);
  z-index: 2;
}
.project-info h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.project-info p {
  margin: 5px 0 0;
  font-size: 15px;
  color: #fff;
}
@media (max-width: 768px) {
  .featured-projects{
    padding: 50px 20px;
  }
  .featured-projects .section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .project-card {
    max-width: 100%;
    /* aspect-ratio: 4/5; */
  }
  .project-info {
    padding: 15px;
  }
}

/* CTA BUTTON */

.cta_background{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.cta_background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); 
}
.parallax-window{
    /* min-height: 400px; */
    background: transparent;
}
.cta_content{
  position: relative;
	max-width: 768px;
  width: 100%;
	margin-left: auto;
	margin-right: auto;
  z-index: 2;
}
.cta_content h2{
	font-size: 50px;
	font-weight: 700;
	color: #fff;
  margin-bottom: 15px;
}
.cta_content p{
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin-top: -3px;
}
.cta_content a{
    border: 2px solid #d6a709;
    padding: 12px 20px;
    font-size: 18px;
    margin-top: 38px;
    border-radius: 3px;
    color: #fff;
}
.cta_content a:hover{
    background: #d6a709;
    border: 2px solid #d6a709;
}
@media(max-width:768px){
    .cta_content h2{
        font-size: 35px;
    }
}

/* ABOUT SECTION */


/* EXPERTISE SECTION */
.expertise-split {
  padding: 80px 0;
  background: #f9f9f9;
}
.expertise-split .container {
  max-width: 1200px;
  width: 100%;
}
.expertise-split h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  position: relative;
  margin-bottom: 20px;
}
.expertise-split h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d6a709;
  margin-top: 10px;
}
.expertise ul {
  margin: 0;
  padding: 0;
}
.expertise ul li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.expertise ul li i {
  color: #d6a709;
  font-size: 1.3rem;
  min-width: 25px;
}
.expertise ul li:hover {
  color: #283636;
  transform: translateX(5px);
}
.expertise .btn{
  margin-top: 20px;
}
.expertise-split img {
  border-radius: 3px;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
@media (max-width: 991px) {
  .expertise-split {
    padding: 60px 0;
  }
  .expertise-split .row {
    flex-direction: column;
  }
  .expertise-split img {
    margin-bottom: 30px;
  }
  .expertise h2 {
    text-align: center;
  }
  .expertise ul li {
    /* justify-content: center; */
  }
  .expertise .btn {
    display: block;
    margin: 20px auto 0;
  }
}
@media (max-width: 576px) {
  .expertise{
    text-align: left;
  }
  .expertise-split h2 {
    font-size: 1.6rem;
    text-align: left;
  }
  .expertise ul{
    text-align: left;
  }
  .expertise ul li {
    font-size: 1rem;
  }
}

/* TEAM SECTION */
.team-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.team-section .section-header {
  max-width: 700px;
  margin: 0 auto 50px;
}
.team-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}
.team-section p {
  color: #333;
  font-size: 1rem;
}
.team-logo {
  width: 70px;
  height: auto;
  animation: icon-bounce 0.8s infinite ease-out;
}

 @keyframes icon-bounce{
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
 }
}
.team-card {
  background: #f8f9fa;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 30px;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 3px solid #5a8d86;
}
.team-info {
  padding: 20px;
}
.team-info h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}
.team-info p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 10px;
}
.social-links a {
  color: #5a8d86;
  margin: 0 8px;
  font-size: 20px;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #283636;
}
@media (max-width: 991px) {
  .team-card {
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .team-section h2 {
    font-size: 1.6rem;
  }
  .team-section p {
    font-size: 0.95rem;
  }
  .team-img {
    height: 250px;
  }
  .team-info h4 {
    font-size: 1.1rem;
  }
}

/* SERVICES SECTION */
.services-three {
  padding: 80px 0;
  background: #fff;
}
.auto-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.service-block_one {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;

    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.service-block_one-inner {
  background: #fff;
  border: 1.5px solid #ddd;
  padding: 30px 25px;
  border-radius: 8px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  min-height: 290px;
}
.service-block_one-inner:hover {
  /* border-color: #f49427; */
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}
.service-block_one-upper {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d6a709;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.service-block_one-icon img {
  width: 70px;
  height: auto;
  margin-right: 20px;
}
.service-block_one-heading {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}
.service-block_one-inner:hover .service-block_one-heading a {
  color: #d6a709;
}
.service-block_one-text {
  font-size: 17px;
  color: #333;
  line-height: 28px;
}
.service-block_one-inner::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #d6a709;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 0 0 8px 8px;
}
.service-block_one-inner:hover::after {
  opacity: 1;
}
@media(max-width:768px){
  .services-three{
    padding: 60px 0;
  }
}

/* PROJECTS SECTION */
.projects-section {
  padding: 80px 0;
  background: #f8f8f8;
  text-align: left;
}
.projects-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  
}
.projects-section h3{
  font-size: 28px;
  color: #283636;
  font-weight: 600;
  margin: 15px 0;
}
.projects-section h3 i{
  font-size: 24px;
}
.project-item {
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.project-item:hover img {
  transform: scale(1.08);
  filter: brightness(70%);
}
.project-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  border-radius: 0 0 10px 10px;
}
.project-item:hover .project-text {
  opacity: 1;
  transform: translateY(0);
}
.project-text h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.project-text p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: #5a8d86;
}
.project-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.row.g-4 {
  row-gap: 25px;
}
@media (max-width: 991px) {
  .projects-section {
    padding: 60px 0;
  }
  .project-text {
    padding: 20px;
  }
  .project-text h5 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .col-lg-4.col-md-6 {
    margin-bottom: 25px;
  }
  .project-item img {
    border-radius: 8px;
  }
}
@media (max-width: 576px) {
  .projects-section {
    padding: 50px 0;
  }
  .project-text h5 {
    font-size: 15px;
  }
  .project-text p {
    font-size: 12px;
  }
}

/* HOMECARE SERVICES */
/* .homecare-section {
  background: #f8f9fa;
  position: relative;
  padding: 80px 20px;
}

.homecare-section .section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b1b1b;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.homecare-section .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: #5a8d86;
  transform: translateX(-50%);
  border-radius: 2px;
}

.homecare-item {
  position: relative;
  background: #fff;
  margin-bottom: 25px;
  padding: 25px 20px;
  border-left: 4px solid #5a8d86;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.homecare-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.homecare-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, #5a8d86, transparent);
  border-radius: 2px;
}

.homecare-item .title-area {
  text-align: center;
  border-right: 2px dashed #ddd;
}

.homecare-item .title-area h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
}

.homecare-item .icon-box {
  background: #fff3e0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #5a8d86;
  color: #5a8d86;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.homecare-item:hover .icon-box {
  background: #5a8d86;
  color: #fff;
  transform: rotateY(180deg);
}

.homecare-item .content-area p {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .homecare-item .title-area {
    border-right: none;
    border-bottom: 2px dashed #ddd;
    margin-bottom: 15px;
  }
  .homecare-item {
    padding: 20px;
  }
} */

/* MARQUEE IN SERVICE */
.marketing-one {
  background-color: #222;
  padding: 5px 0;
  overflow: hidden;
  position: relative;
}
.marketing-one .outer-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.marketing-one .animation_mode marquee {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.marketing-one h1 {
    font-size: 40px;
    /* line-height: 1em; */
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    color: white;
}
.marketing-one h1.light {
  font-weight: 600;
  color: #000;
  -webkit-text-stroke: 2px #fff;
  letter-spacing: 3px;
}   
.marketing-one_icon {
    position: relative;
    margin: 0px 20px;
    line-height: 1em;
    top: -10px;
}
.marketing-one_icon img{
  width: 60px;
  height: 60px;
}
.marketing-one h1:hover {
  color:  #d6a709;
  transition: all 0.4s ease;
}

/* ABOUT SECTION */
.about-section {
  background-color: #f9f9f9;
  color: #000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-section h5 {
  color: #d6a709;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-section h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-section p {
  color: #222;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 15px;
}
.about-section .branch-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.about-section .branch-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.about-section .branch-list span {
  width: 10px;
  height: 10px;
  background-color: #5a8d86;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.about-section .about-image .image-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.about-section .about-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.about-section .about-image img:hover {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .about-section {
    text-align: center;
    padding: 60px 20px;
  }
  .about-section h1 {
    font-size: 2.2rem;
  }
  .about-section .about-image {
    margin-top: 40px;
  }
  .about-section p{
    text-align: left;
  }
}
@media(max-width:768px){
  .about-section{
    font-size: 2rem;
  }
}

.experience-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(214, 167, 9, 0.6);
  color: #000;
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 9999;
}

.experience-badge .number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-right: 15px;
  color: #000;
}

.experience-badge .text p {
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  color: #111;
  font-weight: 600;
  letter-spacing: 1px;
}

.experience-badge .text h4 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
  color: #111;
}
.experience-badge:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
@media (max-width: 991px) {
  .experience-badge {
    bottom: 10px;
    left: 10px;
    padding: 15px 20px;
  }
  .experience-badge .number {
    font-size: 2rem;
  }
  .experience-badge .text h4 {
    font-size: 1rem;
  }
}

/* MISSION & VISION */
.vision-mission {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.vision-mission .container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.vision-mission .section-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000; 
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.box {
    background: #fff;
    border: 2px solid #d6a709;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.box h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #d6a709;
}

.box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .vision-mission .container{
        display: block;
    }
    .vision-mission{
        padding: 30px 10px;
    }
    .box{
        padding: 10px;
    }
    .section-title{
        font-size: 32px;
    }
}

/* HOMECARE */
.service{
  padding: 60px 0;
  background: #f9f9f9;
}
.service .container{
  max-width: 1200px;
  width: 100%;
}

.service .service-item{
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.service .service-img{
  position: relative;
  overflow: hidden;
}
.service .service-img img{
  width: 100%;
}
.service .service-overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
}
.service .service-item:hover .service-overlay{
  opacity: 1;
}
.service .service-overlay p{
  margin: 0;
  color: #fff;
  font-size: 17px;
}
.service .service-text{
  display: flex;
  align-items: center;
  height: 60px;
  background: #000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 17px;
    font-weight: 700;
    color: #5a8d86;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 60px;
    font-weight: 100;
    color: #000;
    background: #5a8d86;
    border-radius: 0;
    transition: .3s;
}
.service .service-item:hover a.btn {
    color: #ffffff;
}

/* INTERIOR-SECTION */
.interior-section {
  padding: 10px 0;
  background-color: #f8f9f9;
}
.interior-section .container{
  max-width: 1200px;
  margin: 0 auto;
}
.interior-card {
  margin-bottom: 20px;
  z-index: 9999;
}
.interior-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.interior-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.interior-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  color: #fff;
  padding: 25px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.interior-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.interior-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
}
.interior-content a {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 5px 15px;
  align-self: flex-start;
  transition: all 0.3s ease;
}
.interior-content a span {
  margin-left: 6px;
  font-size: 1rem;
}
.interior-content a:hover {
  background-color: #d6a709;
  border-color:  #d6a709;
  color: #fff;
}
.interior-image:hover img {
  transform: scale(1.08);
}
@media (max-width: 991px) {
  .interior-content {
    padding: 20px;
  }
  .interior-content h2 {
    font-size: 1.2rem;
  }
  .interior-content p {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .interior-section {
    padding: 50px 0;
  }
  .interior-content h2 {
    font-size: 1.1rem;
  }
  .interior-content p {
    font-size: 0.88rem;
  }
  .interior-content a {
    padding: 6px 16px;
    font-size: 0.9rem;
  }
}

/* INTERIOR ABOUT */
.interior-about{
  background: #f9f9f9;
  color: #000;
  padding: 60px 0;
}
.interior-about .section-header {
  margin-bottom: 70px;
}

.interior-about .section-subtitle {
  color:  #d6a709;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.interior-about .section-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
}
.interior-about .sub-heading {
  color:  #283636;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}
.interior-about p {
  color: #333;
  line-height: 2;
  margin-bottom: 20px;
}
.interior-about span {
  color:  #d6a709;
  font-weight: 600;
}
.interior-right {
  margin-top: 15px;
}
.interior-right .service-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
  background: #fff;
  color: #333;
  border-radius: 10px;
  padding: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.interior-right .service-box:hover {
  border-color: #283636;
  transform: translateY(-5px);
}

.interior-right .service-box .icon img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.interior-right .service-box h4 {
  color: #000;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.interior-right .service-box p {
  color: #444;
  font-size: 1rem;
  margin: 0;
}
.interior-icon{
  border: 2px solid  #d6a709;
  color:  #d6a709;
  padding: 10px 15px;
  text-align: center;
}
.interior-icon:hover{
  background:  #d6a709;
  color: #fff;
}

@media (max-width: 992px) {
  .interior-about {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  .interior-about .section-title{
    font-size: 2.5rem;
  }
  .interior-about .service-box {
    flex-direction: column;
    text-align: left;
  }
  .interior-about .service-box .icon img {
    margin: 0 auto;
  }
}

/* INTERIOR-PROJECTS */
.interior-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}
.interior-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  /* aspect-ratio: 4/5; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  z-index: 0;
}
.interior-card:hover {
  transform: translateY(-8px);
}
.interior-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.interior-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: left;
  padding: 20px;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}
.interior-info h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.interior-info p {
  margin: 5px 0 0;
  font-size: 15px;
  color: #fff;
}
@media (max-width: 768px) {
  .interior-card {
    max-width: 100%;
    /* aspect-ratio: 4/5; */
  }
  .interior-info {
    padding: 15px;
  }
}

/* GALLERY-SECTION */
.gallery-section {
  padding: 80px 20px;
  background: #fff;
}
.gallery-section .section-subtitle{
  font-size: 18px;
  font-weight: 500;
  color: #5a8d86;
  letter-spacing: 2px;
}
.gallery-section .section-title {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 8px; */
  width: 100%;
  /* max-width: 380px; */
  /* aspect-ratio: 4/5; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  z-index: 0;
}
.gallery-card:hover {
  transform: translateY(-8px);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
@media (max-width: 768px) {
  .gallery-section{
    padding: 50px 20px;
  }
  .gallery-section .section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .gallery-card {
    max-width: 100%;
    /* aspect-ratio: 4/5; */
  }
}

/* ENQUIRY BUTTON */
.enquiry-button {
    position: fixed;
    top: 40%;
    right: 0;
    background: #d6a709;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 9999;
}

.enquiry-button span {
    display: block;
    letter-spacing: 0.5px;
}

.enquiry-button:hover {
    background-color: #daa50b;
    color: #fff;
}

@media (max-width: 768px) {
    .enquiry-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}
@media (max-width: 480px) {
    .enquiry-button {
        font-size: 14px;
        padding: 6px 10px;
    }
}

/* WHATSAPP & CALL */
.floating-contact{
  position: fixed;
  left: 15px;
  bottom: 18px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  z-index: 9999;
  pointer-events: auto;
}
.fc-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding: 10px 12px;
  min-width:56px;
  border-radius:999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  background: white;
  color: #111;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.fc-btn i{
  /* width: 30px;
  height: 30px; */
  font-size: 30px;
  display:block;
  fill: currentColor;
}
.fc-text{
  font-weight:600;
  font-size:16px;
  line-height:1;
  white-space:nowrap;
}
.fc-call{
  background: linear-gradient(180deg,  #d6a709  0%, #daa50b 100%);
  color: #fff;
}
.fc-call i:hover{
  color: #fff;
}
.fc-whatsapp{
  background: linear-gradient(180deg,#25D366 0%, #1DA851 100%);
  color: #ffffff;
}
.fc-whatsapp i:hover{
  color: #fff;
}
.fc-whatsapp i{
  font-size: 35px;
}

.fc-btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.fc-btn:active{
  transform: translateY(-1px) scale(.99);
}
@media (max-width:520px){
  .floating-contact{
    left: 12px;
    bottom: 12px;
    gap:10px;
  }
  .fc-btn{
    padding:10px;
    min-width:44px;
  }
  .fc-text{
    display:none;
  }
  .fc-btn svg{
    width:22px;
    height:22px;
  }
}
@media (prefers-reduced-motion: reduce){
  .fc-btn, .fc-btn:hover, .fc-btn:active{ 
    transition: none; 
    transform: none; 
  }
}

/* Contact banner */
.contact-banner {
  /* background-color: #e6eae9;  */
  background: #f7e7ba;
  padding: 100px 20px;
  color: #111;
  display: flex;
  align-items: center;
}
.contact-banner .container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-banner .breadcrumbs{
  position: relative;
  padding-left: 25px;
  margin-top: 15px;
  display: inline-block;
}
.contact-banner .breadcrumbs::before{
  position: absolute;
  content: '';
  left: 0;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50px;
  border: 2px solid #d6a709;
}
.contact-banner .breadcrumbs span{
  position: relative;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 1px;
  font-size: 14px;
  color: #d6a709;
  text-transform: uppercase;
}
.contact-banner .breadcrumbs span a{
  color: #222;
}
.contact-banner .breadcrumbs span i{
  font-size: 12px;
}
.contact-banner h1 {
  font-size: 48px;
  color: #000;
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-banner p {
  font-size: 18px;
  color: #222;
  line-height: 1.5;
  max-width: 600px;
}
@media (max-width: 768px) {
  .contact-banner {
    padding: 70px 15px;
  }
  .contact-banner h1 {
    font-size: 32px;
  }
  .contact-banner p {
    font-size: 16px;
    max-width: 100%;
  }
}

/* PRELOADER */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

#preloader img {
    width: 200px; 
    animation: fadeInOut 1.5s alternate;
    animation: zoom-in 0.5s ease-in-out forwards;
}
@keyframes fadeInOut {
    0% { opacity: 0.5; }
    50%{ opacity: 0.8;}
    100% { opacity: 1; }
}
@keyframes zoom-in {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

/* FLOATING-ICONS */
.floating-icons {
    position: fixed;
    bottom: 25px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.float-btn.whatsapp {
    background-color: #25D366;
}

.float-btn.call {
    background-color: #d6a709;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0,0,0,0.3);
}

@media(max-width: 480px) {
    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .floating-icons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
}
