
/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}


.wow,
.animated {
    animation-duration: 2s !important;
}
.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.reveal {
  overflow: hidden;
}

.reveal {
  animation: textReveal 1.2s ease forwards;
}

@keyframes textReveal {
  0% {
    opacity: 0;
    letter-spacing: 10px;
  }
  100% {
    opacity: 1;
    letter-spacing: 0;
  }
}


/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.back-to-top:hover {
    background: var(--bs-dark);
    color: #002954;
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 700 !important;
    font-family: 'Open', sans-serif !important;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 600 !important;
    font-family: 'Open', sans-serif !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary:hover {
    color: #ffffff !important;
    background: #002954 !important;
    border-color: #002954!important;

}

.btn.btn-dark:hover {
        color:#fff !important;
    background: #ea5f52 !important;
    border-color: #ea5f52 !important;
}
/*** Button End ***/


/*** Topbar Start ***/
.topbar .topbar-inner {
    height: 45px;
    padding: 10px 15px;
    background: #002954;
}
h1{
    color:#002954;
}
h2{
    color:#002954;
}
.text-primary {
    color: #002954 !important;
}
.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: #ffffff !important;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.fixed-top {
    transition: .5s;
}

.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.navbar .navbar-nav .nav-link {
    padding: 12px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 600;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: #f26154;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent !important;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        background: var(--bs-light) !important;
        transition: .5s;
        opacity: 1;
    }
}

.navbar-toggler {
    background: var(--bs-secondary);
    color: var(--bs-light) !important;
    padding: 10px 20px;
    border: 2px solid #002954 !important;
    box-shadow: none !important;
}
/*** Navbar End ***/


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: url("../img/hero.jpg"), center center no-repeat;
    background-size: cover;
}

.hero-header .hero-header-inner {
    padding: 1rem;
    /* background: rgba(255, 255, 255, .5); */
}

@media (max-width: 992px) {
    .hero-header {
        padding-top: 12rem;
    }
}

.hero-header .breadcrumb-item {
    font-size: 18px;
}
/*** Hero Header ***/


/*** About Start ***/
.about a.btn.btn-light:hover {
    background: var(--bs-dark) !important;
    color: #002954 !important;
    border: 0;
}
/*** About End ***/


/*** Activities Start ***/
.activities .activities-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 45px rgba(12, 18, 20, .08);
    transition: 0.5s;
}

.activities .activities-item:hover {
    background: #002954 !important;
    color: var(--bs-dark) !important;
}

.activities .activities-item:hover a {
    background: var(--bs-light) !important;
    color: var(--bs-dark) !important;
}

.activities .activities-item:hover a:hover {
    background: var(--bs-dark) !important;
    color: #002954 !important;
}
/*** Activities End ***/


/*** Events Start ***/
.event-item img {
    transition: 0.5s;
}

.event .event-item a {
    transition: 0.5s;
}

.event-item:hover img {
    transition: 0.5s;
    transform: scale(1.2)
}

.event-item a:hover {
    background: var(--bs-dark);
    color: #002954;
    opacity: 0.5s;
}
/*** Events End ***/


/*** Sermon Start ***/
.sermon .sermon-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.sermon-item img {
    transition: 0.5s;
}

.sermon-item:hover img {
    transform: scale(1.2)
}

.sermon-item .sermon-meta a,
.sermon-item .sermon-meta a i {
    transition: 0.5s;
}

.sermon-item .sermon-meta a:hover,
.sermon-item .sermon-meta a i:hover {
    color: #002954 !important;
}
/*** Sermon End ***/


/*** Blog Start ***/
.blog-item {
    height: 100%;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.2)
}

.blog-item .blog-meta a,
.blog-item .blog-meta a i {
    transition: 0.5s;
}

.blog-item .blog-meta a:hover,
.blog-item .blog-meta a i:hover {
    color: #002954 !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-img {
    height: 100%;
    padding: 25px;
    background: var(--bs-white);
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team .team-item {
    position: relative;
    overflow: hidden;
}

.team .team-item img {
    transition: 0.5s;
}

.team .team-item:hover img {
    transform: scale(1.2);
}

.team .team-item .team-content {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   padding: 15px;
   transform: translateX(-50%, -50%);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: 0.5s;
}

.team .team-item:hover .team-content {
    opacity: 1;
    background: rgba(241, 193, 82, .7);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
    background: var(--bs-light);
    padding: 40px;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 60px;
    height: 40px;
    background: #002954;
    color: var(--bs-dark);
    font-size: 22px;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
    background: var(--bs-dark) !important;
    color: #002954 !important;
}

.testimonial-carousel .owl-nav .owl-next {
    left: auto;
    right: 0px;
}

.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark) !important;
    color: #002954 !important;
}
/*** testimonial End ***/


/*** Footer Start ***/
.footer {
    margin-top: 2rem;
    background: #002954;
    padding-bottom:50px;
}

.footer .footer-item p {
    font-size: 16px;
    line-height: 35px;
}

.footer .border-top,
.footer .border-bottom {
    border-color: rgba(255, 255, 255, .08) !important;
}

.footer button {
    border: 0;
    transition: 0.5s;
}

.footer button:hover {
    background: var(--bs-dark);
    color: #002954;
}

.footer-item a.btn.btn-light:hover {
    background: #002954;
    color: var(--bs-dark) !important;
    border: #002954;
}

.footer-item a,
.footer-item a i {
    transition: 0.5s;
        color: #ffffff !important;

}

.footer-item a:hover,
.footer-item a i:hover {
    color: #ffffff !important;
}

.footer-item .bg-primary {
    background-color: #f46456 !important;
}
.footer-item .bg-primary .text-dark {
    color: #ffffff !important;
}
/*** Footer End ***/

/*** Activities1 Start ***/
.activities1 .activities-item1 {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 45px rgba(12, 18, 20, .08);
    transition: 0.5s;
}
.activities1 .activities-item1 i{
    font-size: 45px;
    margin-bottom:25px;
}
.activities1 .activities-item1 a{
        font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #737373;
}

.activities1 .activities-item1:hover {
    background:#d1d1d13d !important;
    color: var(--bs-dark) !important;
}

.activities1 .activities-item1 a {
    color:#000 !important;
    font-size:20px;
}
.activities1 .activities-item1 p {
    color:#000 !important;
    font-size:20px;
}

/*** Activities1 End ***/


/* new sofa manufacturing */

body {
  font-family: 'Inter', sans-serif;
  background: #F8F9FA;
  color: #1F2933;
}

.sofa-txt p{
    text-align: justify;
        margin-bottom: .5rem;
}
.img-txt img{
    width: 100%;
    border-radius:13px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.sofa{

            position: relative;

}
.sofa img{
    width:100%;
    border-radius:13px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;

}
.sofa-txt1{
position: absolute;
bottom: 0;
left:20px;
}
.sofa-txt1 h2{
    font-size:22px;
    color:#fff;
}
/* Gradient overlay */
.sofa .overlay {
        border-radius:13px;
    position: absolute;
    inset: 0;
    background:linear-gradient(to bottom, rgba(0, 0, 0, 0.267), rgb(0 0 0 / 46%));
        transition: 0.5s;
}
.sofa .overlay:hover{
        background:linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 46%));
}

.repair-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.repair-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.repair-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #1f2e4e;
}

.repair-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.repair-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  font-size: 17px;
  color: #333;
}

.repair-list i {
  font-size: 22px;
  color: #1565c7; /* gold accent */
  min-width: 28px;
}

/* Responsive */
@media (max-width: 991px) {
  .repair-section {
    flex-direction: column;
    text-align: left;
  }

  .repair-image img {
    max-width: 100%;
  }
}

.service-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.service-box i {
  font-size: 34px;
  color: #1565c7; /* luxury gold */
  margin-bottom: 15px;
  display: inline-block;
}

.service-box p {
  margin: 0;
  font-size: 16px;
  color: #444;
}

.service-box:hover {
  transform: translateY(-6px);
}
    .display-7 {
        font-size: 2rem;
    }
.why-box {
  background: #ffffff;
  padding: 20px 15px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.why-box i {
  font-size: 36px;
  color:#bb8e22; /* gold accent */
  margin-bottom: 15px;
}

.why-box h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f2e4e;
}

.why-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.why-box:hover {
  transform: translateY(-6px);
}
.bg-cnt {
    position: relative;
    background-image: url(../img/hm-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 50px;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    overflow: hidden;
}

/* Overlay */
.bg-cnt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* adjust opacity */
    z-index: 1;
}

/* Content stays above overlay */
.bg-cnt > * {
    position: relative;
    z-index: 2;
}

.bg-cnt h2 {
    font-size: 30px;
    color: #fff;
}

.bg-cnt p {
    font-size: 20px;
    color: #fff;
}


/* Carousel Text */
.carousel-item img{
  position: relative;
}
.carousel-text{
    position: absolute;

    top: 17%;
    left: 10%;
    padding: 20px;
    border-radius: 12px;
}
.carousel-text h1{
  font-size: 36px;
  color: #2d72d2;
  font-weight: 700;
  margin-bottom: 20px;
  /* text-shadow: 1px 0px 1px black; */
}

.carousel-text h2{
  color:#002954;
  font-weight:500;
font-size:40px;
}
.carousel-text h3{
    color: #000000;
    font-weight: 500;

    margin-bottom: 10px;
    /* text-shadow: 1px 0px 1px black; */
  font-size:25px;
}
.carousel-text h4{
  font-weight:bold;
  font-size:20px;
  color:#000000;
}
.carousel-indicators [data-bs-target]{
    background-color:#002954 !important;
}
.text-clr marquee{
  color:#fff;
}
@media only screen and (min-width:1200px) and (max-width:1600px){
  .carousel-text{
    left:6% !important;
  }
}
@media only screen and (min-width:320px) and (max-width:600px){
    .navbar-brand img{
        width:85%;
    }
    .navbar {
  display: block;
    }
    .navbar-toggler {

  display: contents;
}
.navbar-toggler span{
    font-size:25px;
    padding:10px;
    float: inline-end;
}
    .carousel-text .mt-3 {
  margin-top: 0rem !important;
}.navbar-brand{
	margin-right:0px !important
}
  .carousel-text .btn{
    padding: 2px 5px;
  font-size: 8px;
  }
    .sticky-top .navbar-light .navbar-brand img{
        max-height: 60px;
    }
	.navbar{
		padding: 0 0rem !important;
	}
  .carousel-text h1 {
    font-size: 15px !important;
    line-height:0px !important;
    font-weight: 500 !important;
  }

    .carousel-indicators [data-bs-target]{
        width:15px !important;
    }
    .carousel-indicators{
        margin-bottom:0px !important;
    }

  .carousel-text{
    top:20%;
    left:5%;
    }
     .carousel-text .theme-btn{
      padding:2px 5px;
      font-size:8px;
     }
    .carousel-text h2{
      font-size: 10px !important;
      margin-bottom: 4px;
    }
    .carousel-text h3{
      margin-bottom:5px;
      font-size:10px !important;
      line-height:10px !important;
    }
    .carousel-text h4{
      font-size:8px !important;
      margin-bottom:5px;
    }
    .bg-cnt{
        padding:50px !important;
    }

   .carousel-text .mb-2 {
  margin-bottom: 0rem !important;
}

  .hero-header {
    padding:1rem 0px;
    margin-bottom: 1rem;
  }
   .hero-header .display-7 {
  font-size: 1rem;
}
.hero-header .breadcrumb-item {
  font-size: 12px;
}
.hero-header{
background-position: right center;
}
.py-5 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
}
.hero-header .breadcrumb-item a{
    color:#000;
}

/* contact icon styles */
.whatsapp {
  background-color: #25d366;
}

.call {
  background-color: #002954;
}

.icon-list {
  position: fixed;
  bottom: 5%;
  right: 0%;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 999999;
  display: grid;
  margin-bottom: 5px;
}

.icon-list a {
  display: block;
  text-align: center;
  padding: 12px;
  transition: all 0.5s ease;
  color: white;
  font-size: 25px;
  float: right;
  margin: 2px 0px;
}

/* HOver affect on icons */
.icon-list a:hover {
  color: #eee;
  width: 50px;
}

/* Designing each icons */
.instagram {
  /* background: red; */
  color: white;
}

.facebook {
  /* background: blue; */
  color: white;
}
.content p {
  text-align: justify;
}
@media (max-width: 760px) {

  .icon-list1 .btn-mbl {
    background-color: #002954;
    color: #fff !important;
    padding: 5px 10px;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 999999999999;
    border-radius: 0px !important;
  }
  .icon-list1 .btn-mbl a {
    border-radius: 0px !important;
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: "Fira Sans", sans-serif;
  }
}
@media (min-width: 760px) {
  .icon-list1 .btn-mbl {
    display: none;
  }
}
.gallery img {
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.gallery .shadow-sm {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.navbar-nav a:hover{
    color:#48494b !important;
}
.btm-ftr{
    background-color: #002954;
    border-top:1px solid #fff;
}
.text-body1{
    font-size: 12px;
        color:#fff;
}
.text-body1 a{
    font-size: 12px;
    color:#fff;
}
.topbar-inner.d-inline-flex span{
    color:#fff;
}
.btn-warning {
    color: #fff;
    background-color: #ea5f52;
    border-color: #ea5f52;
}
.btn-warning:hover{
    background-color:#1565c7;
      color:#fff !important;
}
.btn-primary{
      color: #fff;
    background-color: #ea5f52;
    border-color: #ea5f52;
}
.btn-primary:hover{
    background-color:#1565c7;
}
.activities{
    background-color:#fff7ea;
    padding:50px 20px;
}
.clr-lg{
      background-color:#fff7ea; 
}
/*.clr-lg .row{*/
/*    padding:0px;*/
/*}*/
.csn-img{
        position: relative;
    background-image: url(../img/hm-bg1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 50px;
}
.old-sofa img{
border-radius:13px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

/* testimonials */
.testimonial-section{
    position: relative;
    background-image: url(../img/test-bg.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding:80px 0px;
    overflow: hidden;
}

/* Overlay */
.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;

}

.section-title {
  text-align: center;
  font-size: 36px;
}

.testimonial-wrapper {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* Desktop: 3 cards */
.testimonial-card {
  min-width: 33.3333%;
  padding: 25px;
}

.testimonial-card p {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  height: 85%;
}

.testimonial-card h5 {
  margin-top: 15px;
  font-size: 20px;
  color:#fff;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  margin: 0 6px;
  background: #bbb;
  cursor: pointer;
  transition: 0.3s;
}

.dots button.active {
  background: #000;
  transform: scale(1.2);
}

/* Mobile: 1 card */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
  }
}
.navbar-brand img{
    width:80%;
}