@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: #2887ff;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  font-size: 1.75rem;
  font-weight: 450;
  color: var(--text-dark);
}
img {
  display: flex;
  width: 100%;
}
nav img{
    width: 80%;
}
header{
    background-color: rgb(255, 255, 255);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

html,
body {
  scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-weight: bold;
    margin-bottom: 10px;
}


/* Header css */
/* Navbar Base Styling */
.navbar {
  background-color: #ffffff; /* Deep navy blue */
  padding: 0.8rem 1rem;
}

.navbar-brand img {
  width: 300px;
  height: auto;
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #000000;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffd166; /* Yellow accent */
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: #19183B !important;
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: #1b263b;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 0;
}

.dropdown-item {
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  transition: background-color 0.3s ease;

}

.dropdown-item:hover {
  background-color: #dabc8c !important;
  color: #ffd166;
}
/* Show dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional: remove the gap */
}

/* Optional: Smooth fade-in effect */
.navbar .dropdown-menu {
    display: none;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Navbar Toggler */
.navbar-toggler {
  border: none;
  color: white;
  font-size: 1.4rem;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    /* color: var(--bs-navbar-active-color); */
    color: orange !important;
}
/* Contact Button */
.nav__btns .btn {
  background-color: #ffd166;
  color: #0d1b2a;
  font-weight: 600;
  border-radius: 25px;
  padding: 0.4rem 1.2rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav__btns .btn:hover {
  background-color: #ffb703;
  transform: scale(1.05);
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .dropdown-menu {
    background-color: #0d1b2a;
  }
  .dropdown-item {
    padding: 0.7rem 1rem;
  }
  .navbar-brand img {
    width: 200px;
    height: auto;
}
}
.navbar-toggler {
  color: rgb(51, 51, 51) !important;
}

/* Index Page */
/* HERO SECTION */
    .hero {
      position: relative;
      width: 100%;
      height: 90vh;
      overflow: hidden;
    }

    .slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }

    .slider.active {
      opacity: 1;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }

    .overlay h1 {
      color: white;
      font-size: 3rem;
      font-weight: bold;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
      margin-bottom: 1rem;
    }

    .overlay p {
      color: #f1f1f1;
      font-size: 1.2rem;
      max-width: 800px;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .overlay span {
      display: inline-block;
      margin-top: 0.5rem;
      font-size: 1rem;
      font-style: italic;
      color: #ddd;
    }

    @media (min-width: 768px) {
      .overlay h1 {
        font-size: 5rem;
      }
      .overlay p {
        font-size: 1.4rem;
      }
    }

   .img-wrapper {
      position: relative;
      cursor: pointer;
      overflow: hidden;
    }
    .img-wrapper img {
      transition: transform 0.3s ease;
      width: 100%;
      height: auto;
    }
    .img-wrapper:hover img {
      transform: scale(1.1);
    }
    .img-number {
      position: absolute;
      top: 8px;
      left: 12px;
      background: rgba(0,0,0,0.7);
      color: #fff;
      padding: 4px 8px;
      border-radius: 6px;
      font-size: 14px;
    }
    .modal-content {
      border: none;
      border-radius: 10px;
      overflow: hidden;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(0,0,0,0.6);
      border-radius: 50%;
      padding: 15px;
    }
    .carousel-caption {
      background: rgba(0, 0, 0, 0.6);
      padding: 10px 15px;
      border-radius: 8px;
    }
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card:hover img {
  transform: scale(1.05);
}



.services-section {
  background: #f9f9f9;
}

.services-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.services-section p {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.services-section .card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.services-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.services-section .display-4 {
  font-size: 3rem;
}

.services-section h4 {
  font-weight: 600;
}

.services-section .text-muted {
  font-size: 1rem;
  line-height: 1.6;
}

.journey__card{
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

.journey__card__bg{
  padding: 2rem;
  background-color:var(--extra-light) ;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.journey__card__bg span{
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4{
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.journey__card__content{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  border-bottom-left-radius: 1rem;
   border-bottom-right-radius: 1rem;
   transition: 0.3s;
}
  .journey__card:hover .journey__card__content{
    top: 0;
  }

  .journey__card__content span{
    display: inline-block;
    margin-bottom: 1rem;
    padding: 7px 9px;
    font-size: 1rem;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 100%;
  }

  .journey__card__content h4{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color:var(--white);
  }

  .journey__card__bg p{
   color: var(--extra-light);
  }
  


.banner__container {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(90deg, #ff9800, #ff5722);
  padding: 40px 20px;
  border-radius: 10px;
  color: white;
  text-align: center;
  flex-wrap: wrap; /* makes it responsive on small screens */
}

.banner__card {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  min-width: 150px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.banner__card h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.banner__card p {
  font-size: 1rem;
  margin: 0;
}

.banner__card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
}




.discover__container {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
}

.discover__container .section__header {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

.discover__container .section__description {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}

.discover__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.discover__card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.discover__card span {
  display: inline-block;
  font-size: 2.5rem;
  color: #ff9800;
  margin-bottom: 15px;
}

.discover__card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.discover__card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.discover__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}



@media (width > 540px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}
  @media(width > 768px) {
    nav {
      position: static;
      padding: 2rem 1rem;
      max-width: var(--max-width);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .nav__header{
      flex: 1;
      padding: 0;
      background-color: transparent;
    }
    .nav__logo .logo{
      color: var(--text-dark);
    }
    .nav__menu__btn{
      display: none;
    }
.nav__links{
  position: static;
  width: fit-content;
  padding: 0;
  flex-direction: row;
  background-color: transparent;
  transform: none !important;
}

.nav__links a{
  color: var(--text-dark);
}

.nav__links a:hover{
  color: var(--primary-color);
}

.nav__links li:last-child{
  display: none;
}

.nav__btns{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__btns .button{
  padding: 75rem 2rem;
  background-color: var(--text-dark);
}
header{
  margin-top: 0;
}
.header__container{
  grid-template-columns:
  minmax(0 ,1fr)
repeat(5, minmax(0, calc(var(--max-width)/ 5)))
minmax(0, 1fr) ;
}
.header__content{
grid-column: 2/4;
padding-block: 8rem;
}
.header__content :is(p, h1){
  text-align: left;
}
.header__btns{
  justify-content: flex-start;
}
.header__image{
  grid-column: 4.5/8;
  position: relative;
  isolation: isolate;
  height: 100%;
}
.header__image img{
  position: absolute;
  top: 2rem;
  left: 0;
  height: 100%;
  width: unset;
}
.destination__grid{
  grid-template-columns: repeat(3, 1fr);
}
.journey__grid{
  grid-template-columns: repeat(3, 1fr);
}
.showcase__container{
  grid-template-columns: repeat(3, 1fr);
}

.showcase__content{
  grid-column: 2/4;
} 

.banner__container{
  grid-template-columns: repeat(3, 1fr);
}
.discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }
}
  

  @media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .destination__grid {
    gap: 2rem;
  }
}


/* ====== Service Section ====== */
.page-service-single {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ====== Featured Image ====== */
.service-featured-img img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

/* ====== Service Entry ====== */
.service-entry h3 {
    font-size: 1.8rem;
    margin-top: 20px;
    color: #1e3a8a; /* Deep blue space theme */
}

.service-entry p {
    font-size: 1rem;
    margin: 10px 0;
    color: #444;
}

.service-entry ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.service-entry ul li {
    margin-bottom: 8px;
    color: #444;
}

/* ====== Inner Images ====== */
.service-entry-image img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    object-fit: cover;
}

.image-anime img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-anime img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}


/* ====== Sidebar ====== */
.service-sidebar {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-catagery-list h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1e3a8a;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.service-catagery-list ul {
    padding: 10;
    margin: 0;
}

.service-catagery-list ul li {
    margin: 8px 0;
}

.service-catagery-list ul li a {
    display: block;
    padding: 8px 12px;
    background: #f1f5f9;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    color: #1e3a8a;
}

.service-catagery-list ul li a:hover {
    background: #1e3a8a;
    color: #fff;
}

/* ====== Sidebar CTA ====== */
.sidebar-cta-box {
    margin-top: 20px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

.sidebar-cta-box .icon-box img {
    width: 50px;
    margin-bottom: 10px;
}

.sidebar-cta-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.sidebar-cta-box p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.cta-appointment-btn .btn-default {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #1e3a8a;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-appointment-btn .btn-default:hover {
    background: #f1f5f9;
    color: #0f1f4c;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    .col-md-6 {
        flex: 0 0 100%;
    }
}


/* Contact Section Styling */
.contact-section {

    color: #fff; /* White text */
}

.contact-section h2 {
    color: #ff9800; /* Orange heading */
    font-size: 2.2rem;
}

.contact-section p {
    color: #ccc; /* Light gray for description */
}

.contact-section form {

    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(102, 102, 102, 0.4);
}

.contact-section form .form-control {
    background: #eaeaea; /* Dark input fields */
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
}

.contact-section form .form-control::placeholder {
    color: #3e3e3e; /* Placeholder color */
}

.contact-section form .form-label {
    color: #ff9800; /* Orange labels */
    font-weight: 600;
}

.contact-section form .btn-primary {
    background: #ff9800;
    border: none;
    color: #111;
    font-weight: bold;
    transition: 0.3s;
}

.contact-section form .btn-primary:hover {
    background: #e68a00;
    color: #fff;
}

/* Contact Info Box */
.contact-section .bg-white {
    background: #ffffff !important; /* Dark background for info box */
    color: #000000 !important;
}

.contact-section .bg-white h5 {
    color: #ff9800;
}

.contact-section .bg-white p {
    color: #000000;
}

.contact-section .bg-white li {
    color: #3d3d3d;
    font-weight: 500;
}

.contact-section .bg-white li i {
    color: #ff9800;
}

/* Responsive spacing */
@media (max-width: 992px) {
    .contact-section form,
    .contact-section .bg-white {
        margin-bottom: 20px;
    }
}

.main-head-banner{
  text-align: center;
  color: white;
}

pulse animation {
    transform: scale(1.00017);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0.0341624px;
}

@media (max-width: 991px) {
    .whatsapp-float {
        right: 25px;
        bottom: 50px !important;
        width: 45px;
        height: 45px;
        font-size: 26px;
    }
}
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.interior-hero {
  position: relative;
  min-height: 100vh; /* full screen height */
  background-image: url('../img/image.jpg'); /* your background image */
  background-position: center;           /* center the image */
  background-size: cover;                /* cover entire section */
  background-repeat: no-repeat;          /* prevent repeating */
  display: flex;                         /* flex for vertical centering */
  align-items: center;                   /* center content vertically */
  justify-content: center;               /* center content horizontally */
  color: #fff;                           /* text color */
  text-align: center;                     /* center text */
}

.interior-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* semi-transparent dark overlay */
  z-index: 1;                     /* behind text */
}

.interior-hero .container {
  position: relative;
  z-index: 2; /* ensure text is above overlay */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .interior-hero {
    min-height: 70vh; /* smaller height on mobile */
  }
  .interior-hero h1 {
    font-size: 2rem;
  }
  .interior-hero p {
    font-size: 1rem;
  }
}


  .interior-about h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .interior-about p {
    color: #555;
    line-height: 1.8;
  }

  .interior-about img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .interior-about h2 {
      font-size: 1.8rem;
    }
    .interior-about p {
      font-size: 0.95rem;
    }
  }

.interior-services h2 {
  font-weight: 700;
}

.service-card img {
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1) rotate(1deg);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
  background: rgba(0,0,0,0.7);
}

.service-overlay h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .service-overlay h5 {
    font-size: 1.2rem;
  }
}

.interior-why-choose-us h2 {
  font-weight: 700;
}

.interior-choose-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #e1e1e1;
}

.interior-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.interior-choose-card i {
  transition: transform 0.3s ease;
}

.interior-choose-card:hover i {
  transform: scale(1.2) rotate(10deg);
}

.interior-choose-card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.interior-choose-card p {
  color: #555;
  font-size: 0.9rem;
}



.furniture-hero {
  position: relative;
  min-height: 100vh; /* full screen height */
  background: url('../img/image.jpg') center center/cover no-repeat; /* replace with your image */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.furniture-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* overlay for readability */
  z-index: 1;
}

.furniture-hero .container {
  position: relative;
  z-index: 2; /* ensure text is above overlay */
}

/* Responsive */
@media (max-width: 768px) {
  .furniture-hero {
    min-height: 70vh;
  }
  .furniture-hero h1 {
    font-size: 2rem;
  }
  .furniture-hero p {
    font-size: 1rem;
  }
}


.furniture-about h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.furniture-about p {
  color: #555;
  line-height: 1.8;
}

.furniture-about img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .furniture-about h2 {
    font-size: 1.8rem;
  }
  .furniture-about p {
    font-size: 0.95rem;
  }
}


.furniture-services h2 {
  font-weight: 700;
}

.furniture-services .service-card img {
  transition: transform 0.5s ease;
}

.furniture-services .service-card:hover img {
  transform: scale(1.1) rotate(1deg);
}

.furniture-services .service-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  transition: background 0.3s ease;
}

.furniture-services .service-card:hover .service-overlay {
  background: rgba(0,0,0,0.7);
}

.furniture-services .service-overlay h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .furniture-services .service-overlay h5 {
    font-size: 0.9rem;
  }
}