
body{
    font-family:'Poppins',sans-serif;
    background:#f7f5f0;
}

/* ================= HEADER ================= */
.top-header{
    background:#f4f1eb;
    padding:12px 0;
}
.navbar-brand{
    font-weight:600;
    letter-spacing:1px;
}
.nav-link{
    color:#222 !important;
    font-size:14px;
    margin:0 10px;
}
.nav-link:hover{
    color:#8c6d3f !important;
}

/* ================= HERO ================= */
.hero-video-wrapper{
padding:0;
}

.hero-video{
width:100%;
height: 80vh;
border-radius:6px; /* optional – remove if not needed */
object-fit:cover;
}

/* ===============About Section ============== */


.about-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.container-custom {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Image */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
  object-fit: cover;
}

/* Content */
.about-content {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 60px;
}

/* Left title */
.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

/* Right text */
.about-right {
  flex: 1;
}

.about-right p {
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-left h2 {
    font-size: 36px;
  }
}

.about-text-section {
  background-color: #cfc7bd; /* same beige tone */
  padding: 80px 0;
}

.about-text-container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}

.about-text-container p {
  font-size: 16px;
  line-height: 1.9;
  color: #000;
  margin-bottom: 22px;
}

.about-text-container strong {
  font-weight: 700;
}



/* ======================== Service Section ============================== */

.service-cta-section {
  background: #ffffff;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

/* Text */
.service-content h2 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.service-content p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: #333;
}

/* Button */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1.5px solid #000;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #000;
  color: #fff;
}

/* Image */
.service-image {
  margin-top: 80px;
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .service-content h2 {
    font-size: 36px;
  }

  .service-image {
    margin-top: 50px;
  }
}
.service-logo {
  position: absolute;
  top: 77%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-logo img {
  width: 110px;
  height: auto;
}



/* ===========Project Section =========== */


.projects-section {
  background-color: #e6e1db;
  padding-bottom: 80px;
}

/* Header */
.projects-header {
  background-color: #e2cfc3;
  padding: 50px 0;
  text-align: center;
}

.projects-header h2 {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* Projects Grid */
.projects-container {
  width: 90%;
  max-width: 1300px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.project-card {
  text-align: center;
}

.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background-color: #fff;
}

.project-card h4 {
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #6d5b4a;
}

/* Responsive */
@media (max-width: 992px) {
  .projects-container {
    grid-template-columns: 1fr;
  }

  .projects-header h2 {
    font-size: 36px;
  }
}



/* ================= CHAT BUTTON ================= */
.chat-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    background:#1f5f4a;
    color:#fff;
    padding:14px 22px;
    border-radius:50px;
    font-size:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    cursor:pointer;
    z-index:999;
}

/* ================ Coming Soon Section =================*/

.coming-soon {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
background: #9c9c9c;
color: #fff;
text-align: center;
position: relative;
overflow: hidden;
}

.coming-soon::before {
content: '';
position: absolute;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 20%, transparent 20%) repeat;
background-size: 50px 50px;
animation: move 10s linear infinite;
top: -50%;
left: -50%;
z-index: 0;
}

@keyframes move {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.coming-soon-content {
position: relative;
z-index: 1;
}

.coming-soon h1 {
font-size: 4rem;
margin-bottom: 20px;
letter-spacing: 2px;
text-transform: uppercase;
animation: fadeIn 2s ease forwards;
}

.coming-soon p {
font-size: 1.2rem;
margin-bottom: 30px;
animation: fadeIn 3s ease forwards;
}

.subscribe-btn {
padding: 12px 30px;
font-size: 1rem;
color: #9c9c9c;
background: #fff;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
font-weight: bold;
}

.subscribe-btn:hover {
background: #f0f0f0;
transform: scale(1.05);
}

@keyframes fadeIn {
0% { opacity: 0; transform: translateY(-20px); }
100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
.coming-soon h1 {
    font-size: 3rem;
}
.coming-soon p {
    font-size: 1rem;
}
}


/* ================= CHAT BOX ================= */
.chatbox{
    position:fixed;
    right:25px;
    bottom:90px;
    width:300px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
    display:none;
    z-index:999;
}
.chat-header{
    background:#1f5f4a;
    color:#fff;
    padding:12px;
    border-radius:10px 10px 0 0;
    font-size:14px;
}
.chat-body{
    padding:12px;
    height:220px;
    overflow-y:auto;
    font-size:13px;
}
.chat-footer{
    display:flex;
    border-top:1px solid #eee;
}
.chat-footer input{
    flex:1;
    border:none;
    padding:10px;
    font-size:13px;
}
.chat-footer button{
    background:#1f5f4a;
    color:#fff;
    border:none;
    padding:0 15px;
}

/* INTRO STRIP */
.intro-strip{
  background:#ded9cf;
  padding:40px 0;
  text-align:center;
}
.intro-strip p{
  max-width:900px;
  margin:auto;
  font-size:22px;
  color:#222;
  line-height:1.7;
}
@media (max-width:576px){
        .intro-strip p{
  max-width:900px;
  margin:auto;
  font-size:14px;
  color:#222;
  line-height:1.7;
}
}

/* HOW WE WORK */
.how-we-work{
  background:#8b6a4a;
  padding:80px 0;
  color:#fff;
}
.how-we-work h2{
  text-align:center;
  font-size:42px;
  font-weight:500;
  font-family:serif;
}

.work-box{
  padding:20px;
}
.work-box .icon{
  font-size:34px;
  margin-bottom:15px;
}
.work-box h5{
  font-size:16px;
  margin-bottom:15px;
  font-weight:500;
}
.work-box p{
  font-size:13px;
  line-height:1.7;
  color:#f1efe9;
}
/* ================= HERO BANNER ================= */
.hero-banner {
    height: 320px;
    background: url("../images/img-22.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}


.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.hero-banner h1 {
    position: relative;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

/* ================= DIVIDER ================= */
.divider {
    height: 1px;
    background: #111;
}

/* ================= CONTENT SECTION ================= */
.creative-section {
  background: #dedbd2;
  padding: 80px 8%;
}

/* Wrapper layout */
.creative-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  overflow: hidden; /* important for mask reveal */
}

/* Alternate layout for even wrappers */
.creative-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

/* LEFT TEXT */
.creative-text {
  width: 40%;
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.creative-text.active {
  transform: translateX(0);
  opacity: 1;
}

.creative-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #2b2b2b;
  line-height: 1.4;
  margin-bottom: 40px;
  position: relative;
}

.creative-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #2b2b2b;
  margin-top: 15px;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.creative-text i {
  font-size: 24px;
  color: #2b2b2b;
  display: inline-block;
  margin-top: 20px;
  transition: transform 0.5s ease, color 0.3s ease;
}

/* RIGHT IMAGE */
.creative-image {
  width: 55%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.creative-image img {
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.creative-image.active img {
  transform: translateY(0);
  opacity: 1;
}

/* Image hover effect */
.creative-image:hover img {
  transform: scale(1.08) rotate(-1deg);
  transition: transform 0.5s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .creative-wrapper {
    flex-direction: column !important;
    gap: 30px;
  }
  .creative-text, .creative-image {
    width: 100%;
    text-align: center;
  }
  .creative-text h2 {
    font-size: 28px;
  }
  .creative-text h2::after {
    margin: 15px auto 0 auto;
  }
  .creative-image img {
    width: 100%;
    height: auto;
  }
}


/* =========footer section ============= */
.footer {
  background: #f5f3ee;
  padding: 60px 40px 30px;
  color: #3a3a3a;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT */
.footer-image {
  width: 120px;
  margin-bottom: 30px;
}

.footer-menu {
  /* list-style: none; */
  margin-bottom: 40px;
  margin-top: 20px;
  padding-left: 1rem !important;
}

.footer-menu li {
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: 1px;
  
}

.footer-address h4 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-address p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-email,
.footer-phone {
  margin-top: 10px;
  font-size: 14px;
}

.footer-social {
  margin-top: 30px;
}

.footer-social a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #3a3a3a;
  text-decoration: underline;
}

/* RIGHT */
.footer-right h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-right p {
  font-size: 14px;
  margin-bottom: 30px;
}

.footer-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #9c9c9c;
  background: transparent;
  padding: 8px 0;
  margin-bottom: 25px;
}

.footer-form button {
  width: 100%;
  padding: 15px;
  border: 1px solid #9c9c9c;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  font-size: 13px;
}

.footer-bottom a {
  text-decoration: none;
  color: #3a3a3a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-address a,
.footer-social a {
  color: #000;           /* black text */
  font-weight: bold;     /* bold text */
  text-decoration: none; /* remove underline */
}

/* Optional: hover effect */
.footer-address a:hover,
.footer-social a:hover {
  color: #333;           /* slightly darker on hover */
  text-decoration: none; /* keep no underline */
}

  .contact-section {
  background: linear-gradient(135deg, #ded9cf 60%, #ffffff 40%);
  padding: 100px 0;
}

.contact-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left content */
.contact-info h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  font-size: 15px;
  margin-bottom: 15px;
}

/* Form card */
.contact-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.contact-form h3 {
  font-size: 26px;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color:#333;
}

/* Button */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: #666565;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 36px;
  }
}
.contact-numbers {
  list-style: none;
  padding: 0;
}

.contact-numbers li {
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-numbers a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.contact-numbers a:hover {
  text-decoration: none;
}

    .instagram-slider {
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
      text-align: center;
    }

    .instagram-slider h2 {
      margin-bottom: 20px;
      font-size: 2rem;
    }

    .swiper-slide {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column; /* Column for mobile */
    }

    .slide-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .slide-content {
      padding: 15px;
      text-align: left;
    }

    .slide-content h3 {
      margin: 0 0 10px;
      font-size: 1.2rem;
    }

    .slide-content p {
      margin: 0;
      font-size: 0.95rem;
      color: #555;
    }

    /* Cursor for drag */
    .swiper {
      cursor: grab;
    }
    .swiper:active {
      cursor: grabbing;
    }
    /* Swiper navigation buttons styling */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #fff; /* white background */
  border-radius: 50%;     /* make it circular */
  color: #000;            /* arrow color black */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Optional: increase size of arrow icon */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;  /* arrow size */
  color: #000;      /* arrow color black */
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #f0f0f0; /* light gray on hover */
}




