
.logo{
  width: 110px;
  height: 50px;
}

.navbar {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: #f5f2ee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }
  
  .navbar .nav-link {
    color: #4b3621;
    padding: 10px 15px;
    transition: 0.3s;
    font-weight: 500;
  }
  
  .navbar .nav-link:hover,
  .dropdown-menu .dropdown-item:hover {
    color: #8c6849;
    background-color: transparent;
  }
  
  .dropdown-menu {
    background-color: #fffaf5;
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  }
  
  .dropdown-item {
    color: #4b3621;
    padding: 10px 16px;
  }

  /* hero section */
.hero-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Text styling */
.hero-content h1,
.hero-content p,
.hero-content h5 {
  color: white;
  font-family: 'Arial', sans-serif;
}

/* .lead is for subheading text */
.lead {
  font-weight: 400;
  font-size: 1.1rem; /* slightly larger for readability */
}

/* Overlay for text visibility */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* subtle dark overlay to improve text visibility */
  z-index: 0;
}

/* Hero content positioning */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: left; /* align text left */
  max-width: 700px; /* limit width for readability */
  padding: 0 20px; /* add padding */
}

.hero-content h1 {
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem; /* more prominent description text */
  margin-top: 10px;
}

.hero-content .cta-btn {
  background-color: white;
  color: black;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-content .cta-btn:hover {
  background-color: #7e1610; /* darker shade on hover */
}

/* Hero Form */
.hero-form {
  background-color: #fffaf5;
  position: relative;
  z-index: 1;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* subtle shadow for depth */
}

.hero-form input,
.hero-form select {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 15px; /* add spacing */
}

.hero-form button {
  background-color: #941910;
  color: white;
  padding: 15px;
  border-radius: 6px;
  font-weight: bold;
  width: 100%;
  transition: background-color 0.3s ease;
}

.hero-form button:hover {
  background-color: #8c6849; /* subtle hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
  .hero-section img{
    display: none;
  }
  
.hero-section{
  background-color: #941910;
}
  .hero-section {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 2.5rem; /* slightly smaller title for mobile */
  }

  .hero-form {
    padding: 20px;
  }
}

/* why chosse us */

.feature-box{
  border: 1px solid rgb(245, 238, 238);
}
  /* cta  */
  .cta-section {
    background-color: #c9a66b; /* Soft gold - eye-catching */
    color: #fffaf5;
    padding: 60px 20px;
    background-image: linear-gradient(to right, #C13C2B, #941910);
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .cta-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #fffaf5;
  }
  
  .cta-subtext {
    font-size: 1.1rem;
    color: #f5f2ee;
  }
  
  .cta-btn {
    background-color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #941910;
    color: #fffaf5;
  }
  

  /* services section */
  .services-section {
    background-color: #f5f3f1;
  }
  
  .services-section img{
    height: 200px;
  }
  .service-box h5 {
    color: #4b3621;
  }
  .service-box{
    background-color: white;
    border: 1px solid rgb(245, 238, 238);

  }
  
  .service-box p {
    color: #6e5843;
    font-size: 0.95rem;
  }
  
  .service-btn {
    background-color: #C13C2B;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .service-btn:hover {
    background-color: #8c6849;
    color: #fffaf5;
  }

  /* gallery slider */
  /* Swiper Navigation Buttons */



/* Icon inside button */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

/* Adjust for small screens */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 38px;
    height: 38px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }
}

/* cta bottom */
.interior-cta-btn {
  background-color: white;
  color: #4b3621;
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.interior-cta-btn:hover {
  background-color: #8c6849;
  color: #fff;
}

.interior-cta-icon {
  font-size: 22px;
}


/* faq */
.faq-section {
  background-color: #f5f2ee;
  color: #4b3621;
}

.accordion-button {
  font-weight: 600;
  color: #4b3621;
  background-color: #fff;
  border: 1px solid #4b3621;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background-color: #fff;
  color: #4b3621;
}

.accordion-button:not(.collapsed) {
  background-color: #941910;
  color: white;
}

@media (max-width: 768px) {
  .accordion-button {
    font-size: 14px;
  }
}


/* footer */
/* footer.css */
.footer {
  background-color: #4b3621;
  color: white;
  padding-top: 30px;
}

.footer .footer-title {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer p, .footer a {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer .btn {
  transition: all 0.3s ease;
  border-radius: 50%;
  padding: 12px;
}

.footer .btn:hover {
  background-color: #c9a66b;
  color: white;
}

.footer .list-unstyled {
  padding: 0;
}

.footer .list-unstyled li {
  margin: 8px 0;
}

.footer .list-unstyled a {
  color: #c9a66b;
  text-decoration: none;
}

.footer .list-unstyled a:hover {
  text-decoration: underline;
}

.footer-follow .btn {
  transition: all 0.3s ease;
  border-radius: 50%;
  padding: 10px;
}

.footer-follow .btn:hover {
  background-color: #c9a66b;
  color: white;
}

.footer-bottom {
  background-color: #3b2a1e;
  color: #c9a66b;
}

.footer .footer-bottom p {
  margin: 0;
}

.footer .footer-bottom a {
  color: #c9a66b;
  text-decoration: none;
}

.footer .footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer .footer-title {
    font-size: 20px;
  }

  .footer .btn {
    padding: 10px;
    font-size: 16px;
  }

  .footer p {
    font-size: 14px;
  }

  .footer .list-unstyled li {
    font-size: 14px;
  }
}



/* ============About csss=========== */
/* Hero Section Styling */
/* Hero Section with Background Image */
.about-hero-section {
  background: url('/assets/img/hero3.webp') no-repeat center center/cover;
  padding: 120px 0;
  color: white;
  height: 50vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.about-hero-section h1 {
  font-size: 3rem;
  color: #fff;
}

.about-hero-section p {
  font-size: 1.25rem;
  max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-section {
    padding: 80px 20px;
    text-align: center;
  }

  .about-hero-section h1 {
    font-size: 2.2rem;
  }

  .about-hero-section p {
    font-size: 1rem;
  }
}


/* who we are */
/* Company Overview Styling */
.company-overview-section {
  background-color: #f5f2ee;
  color: #4b3621;
}

.company-overview-section .section-title {
  font-size: 2rem;
  color: #4b3621;
  font-weight: 600;
}

.company-overview-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5e4a35;
}

@media (max-width: 768px) {
  .company-overview-section .section-title {
    text-align: center;
  }

  .company-overview-section p {
    text-align: justify;
  }
}


/* mission vision */
/* Mission & Vision Styling */
.mission-vision-section {
  background-color: #fffaf5;
  color: #4b3621;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #4b3621;
}

.section-subtitle {
  font-size: 1rem;
  color: #8c6849;
}

.card {
  border: none;
  background-color: #f5f2ee;
  border-radius: 12px;
}

.card-title {
  color: #4b3621;
  font-size: 1.5rem;
  font-weight: 600;
}

.card-text {
  color: #5e4a35;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-title,
  .section-subtitle,
  .card-title {
    text-align: center;
  }
}

/* cta */
/* About Page CTA Section */
.about-cta {
  background-color: #f5f2ee;
  color: #4b3621;
  border-top: 3px solid #C13C2B;
}

.cta-headingabout {
  font-size: 1.8rem;
  font-weight: 600;
  color: #4b3621;
}

.cta-subtextabout {
  font-size: 1rem;
  color: #5e4a35;
  margin-top: 10px;
}

.cta-btn {
  background-color: #941910;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.3s ease;
  font-family: 'Poppins', sans-serif;
}



.call-btn {
  background-color: #C13C2B;
}


@media (max-width: 768px) {
  .cta-heading {
    font-size: 1.5rem;
  }
  .cta-subtext {
    font-size: 0.95rem;
  }
  .cta-btn {
    width: 100%;
    margin-bottom: 10px;
  }
}



/* =================contact us css================== */
.contact-hero {
  background: url('/assets/img/hero3.webp') no-repeat center center/cover;
  padding: 100px 0;
  color: white;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.contact-hero .btn {
  font-size: 1.1rem;
  padding: 15px 30px;
  background-color: #ff6f61;
  border: none;
  transition: background-color 0.3s ease;
}

.contact-hero .btn:hover {
  background-color: #d65a4e;
}
.contact-info {
  background-color: #f4f4f4;
  color: #333;
}

.contact-info .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.contact-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-info p {
  font-size: 1rem;
}

.contact-info .fa {
  margin-right: 10px;
}

@media (max-width: 767px) {
  .contact-info p {
    font-size: 0.9rem;
  }
}


/* ============ service======== */

.services-hero {
  padding: 80px 0;
  color: white;
  text-align: left;
}

.services-hero .container {
  max-width: 1140px;
  margin: 0 auto;
}

.services-hero h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.services-hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.services-hero .btn {
  background-color: #C13C2B;
  color: white;
  padding: 10px 25px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}



.services-hero img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .services-hero {
    text-align: center;
    padding: 50px 0;
  }

  .services-hero .col-md-6 {
    margin-bottom: 20px;
  }

  .services-hero h1 {
    font-size: 28px;
  }

  .services-hero p {
    font-size: 16px;
  }

  .services-hero .btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}


/* =================mediaquery====== */

/* hero */
@media (max-width: 768px) {
  .hero-section {
    padding: 20px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .hero-content h5 {
    font-size: 1rem;
    margin-top: 10px;
  }

  .hero-form {
    margin-top: 30px;
    padding: 20px;
  }

  .hero-form h4 {
    font-size: 1.2rem;
  }

  .hero-form input,
  .hero-form select {
    font-size: 0.95rem;
  }

  .hero-form button {
    font-size: 1rem;
    padding: 10px 0;
  }
}
