*
{
    padding: 0;
    box-sizing: border-box;
    font-family:'poppins', sans-serif;
}
body
{
    color: darksalmon;
    padding-top: 70px;
}
.navbar-brand img {
      height: 50px;
      margin-right:1px;
    }

.header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100% ;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    
}
/* .logo{
    position: relative;
    font-size: 25px;
    color: rgb(63, 4, 43);
    text-decoration: none;
    font-weight: 600;
    font-family: cursive;
} */

.navbar a {
    display: inline-block;
    font-size: 20px;
    color: #550800;
    text-decoration: none;
    font-weight: 500;
    margin-left: 45px;
    transition: .3s;
}
.navbar a:hover{
    color:darksalmon;
    background-color: none;

}
.navbar{
    background-color: #fef3ef;
}

.dropdown-menu:hover{
  background-color: #fef3ef;
  
}

.home {
    position: relative;
    width: 100% ;
    justify-content: space-between;
    /* height: 100vh;
    background: url(./bg-image.jpg) no-repeat;
    background-size:cover;
    background-position: center; */
    display: flex;
    align-items: center;
    padding: 70px 60% 0;
}

.mask-custom {
  backdrop-filter: blur(3px);
  background-color: rgba(66, 20, 20, 0.281);
}

.home-content h2{
    justify-content: space-between;
    height: 5vh;
    padding: 10% 10% 5%;
    text-align: left;
    
}
.home-content h4{
    justify-content: space-between;
    height: 5vh;
    padding: 1% 10% 10%;
    text-align-last: left;
    font-weight: 40%;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color: #fef3ef;
        
}

.home-content h4 span{
    color:rgb(247, 217, 219)
}

.gradient-custom {
    /* fallback for old browsers */
    background: #37061b;
  
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, rgba(17, 0, 8, 0.5), rgba(79, 15, 230, 0.671));
  
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right, rgba(58, 5, 28, 0.5), rgba(71, 6, 9, 0.5))
  }

.video-wrapper {
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay styling */
.video-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.616);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay-text {
  color: #fff;
  padding: 1rem;
}

.overlay-text h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.overlay-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
}
/* about section properties */

.approach { margin-top: 34px; display: grid; grid-template-columns: repeat(3,1fr); gap: 50px;  text-align: center ; }
    .step { padding: 30px; border-radius: 14px; border: 2px solid rgba(156, 105, 163, 0.08);  }
    .step img{ margin: 6px 0 8px; align-items: center; }
    .step h4 { margin: 6px 0 8px; font-size: 25px; color:#550800;}
    .step p { margin: 0; color:black; font-size: 15px; }
    @media (max-width: 900px){ .approach{ grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px){ .approach{ grid-template-columns: 1fr; } }

 .container {
      max-width: 1200px; /* Limits container width */
      margin: 0 auto;   /* Centers container horizontally */
      padding: 20px;
      text-align: center; /* Aligns text in center */
      color: #550800;
    }

.container p{
    color: black
}

    /* Make it responsive */
        @media (max-width: 10000px) {
        #intro {
          margin-top: -200.59px;
          height: 50vh !important;
        }

        .container {
        padding: 15px;
      }
      }

.step.card.reveal {
  text-align: center; /* Centers all child text & inline elements */
  padding: 20px;
  
}

.step.card.reveal img.icon {
  display: block;
  margin: 0 auto 10px; /* Centers the image and adds spacing below */
  width: 40px;  /* You already had width/height inline, better to move here */
  height: 40px;
}

/* used below for what we do section */

:root{
      --gap: 16px;
      --card-height: 250px;
      --overlay-bg: rgba(0,0,0,0.45);
      --accent: #fff;
      --radius: 8px;
    }

    .what-we-do h1{
     text-align: center;
     color: #550800;
     font-size: 40px;
     
    }
    /* Page layout */
  body{font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; padding:0; background:#f6f7fb;}
    .row{
      display:flex;
      gap:var(--gap);
      align-items:stretch;
      justify-content:stretch;
      flex-wrap:wrap; /* stacks on narrow screens */
    }

    /* Each card is equal width. Use flex-basis with min() so it's responsive. */
    .card {
  position: relative;
  flex: 1 1 min(300px, calc(33.333% - (var(--gap) * 2 / 3)));
  min-width: 220px;
  height: var(--card-height);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 6px 18px rgba(10,10,20,0.06);
  display: block;
}

/* Image perfectly fills the card */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* prevents distortion */
  display: block;
}

    /* Overlay sits above the image and centers content */
    .overlay{
      position:absolute;
      inset:0; /* top:0; right:0; bottom:0; left:0; */
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:16px;
      background:linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.22) 40%, var(--overlay-bg) 100%);
      color:var(--accent);
      transition:transform .35s ease, background .25s ease;

    }

    .overlay h3{margin:0 0 8px; font-size:30px; letter-spacing:0.2px}
    

    /* Optional: subtle hover effect */
    .card:hover .overlay{transform:translateY(-6px);}
    .card:focus-within .overlay{transform:translateY(-6px);}

    /* Make the overlay content readable on very small cards */
    @media (max-width:520px){
      :root{--card-height:220px}
      .overlay h3{font-size:18px}
      .overlay p{font-size:13px}
    }


  /* Contact properties*/
 .contact-container {
  width: 100%;
  margin: 60px 0;      /* remove auto centering */
  background: white;
  padding: 30px;
  border-radius: 0;    /* optional: full-width sections usually have no radius */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h1{
  text-align: center;
  margin-bottom: 25px;
  color: #550800
  
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
  color:#550800
}

.contact-item a {
  color: #550800
  font-size: 20px;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 12px;
  font-size: 16px;
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.contact-item a{
  color:#550800
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  z-index: 100;
  cursor: pointer;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

footer {
  background-color: #550800;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9em;
}

.carousel-wrapper {
  max-width: 800px;   /* adjust as needed */
  margin: 0 auto;     /* centers horizontally */
}

