@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

a:hover{
    text-decoration: none;
}
button{
    outline: 0 !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 16px;
    color: #000 !important;
  }

  .header-logo img{
    width: 80px;
  }

  .header-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .nav-link {
    font-size: 25px;
    font-weight: 500;
    color: #000 !important;
  }

  .contact-form-para{
    line-height: 30px;
    font-weight: 500;
    color: #000000;
  }
  .navbar{
    background-color: #e8e1d3 !important;

  }
  .hero {
    background: url('https://images.unsplash.com/photo-1564518098554-00033c3f9c79') no-repeat center center;
    background-size: cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px #000;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .testimonial-card {
    text-align: center;
    padding: 50px 0px;
    max-width: 700px;
    margin: auto;
  }
  .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  .quote-icon {
    font-size: 2rem;
    color: red;
  }
  .testimonial-name {
    font-weight: 500;
    font-size: 1.2rem;
  }
  .testimonial-role {
    color: gray;
    font-size: 0.9rem;
  }

  .bg-e8e1d3{
    background-color: #e8e1d3 !important;
  }

  .why-box {
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 8px;
    margin: 0.5rem;
    height: 220px;
  }
  .why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .why-icon img{
    width: 60px;
  }
  .bg-black {
    background-color: #000000;
  }
  .bg-green {
    background-color: #00e548;
  }
  .why-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 2rem;
  }
  .red-line {
    width: 60px;
    height: 2px;
    background-color: red;
    margin: 0 auto 2rem;
  }

  .about-section {
    background: #e8e1d3;
  }
  .about-image {
    border-radius: 12px;
    transition: transform 0.4s ease;
    width: 80%;
    object-fit: cover;
  }
  .about-image:hover {
    transform: scale(1.05);
  }
  .about-text h2 {
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
  }
  .fade-in-delay-1 { animation-delay: 0.2s; }
  .fade-in-delay-2 { animation-delay: 0.4s; }
  .fade-in-delay-3 { animation-delay: 0.6s; }
  .fade-in-delay-4 { animation-delay: 0.8s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
  }
  
  .fade-in-delay-1 { animation-delay: 0.2s; }
  .fade-in-delay-2 { animation-delay: 0.4s; }
  .fade-in-delay-3 { animation-delay: 0.6s; }
  .fade-in-delay-4 { animation-delay: 0.8s; }
  .fade-in-delay-5 { animation-delay: 1s; }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .footer-section .col-lg-2,
  .footer-section .col-lg-8 {
    text-align: center !important;
  }
  
  footer{
    background-color: #e8e1d3 !important;
  }

  .about-section{
    font-size: 22px;
  }

  .owl-nav button {
    position: absolute;
    top: 48%;
    color: #000!important;
    margin: 0;
    transition: all 0.3s ease-in-out;
    width: 40px;
    height: 40px;
    background-color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px!important;
    line-height: 1!important;
    opacity: 0.5;
}

.owl-carousel .owl-item img{
  width: auto !important;
}
.owl-nav button.owl-prev {
    left: 79px;
    background-color: #e8e1d3 !important;
}

.owl-nav button.owl-next {
    right: 79px;
    background-color: #e8e1d3 !important;
}

.owl-nav button:focus {
    outline: none;
}
.owl-next img,
.owl-prev img{
    width: 28px;
}
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }

    .hero p {
      font-size: 1rem;
    }

    .header-logo img {
      width: 50px;
    }

    .navbar-brand{
      font-size: 14px;
    }

    .fd-cr{
      flex-direction: column-reverse;
      gap: 40px;
    }

    .about-image {
      width: 100%;
    } 

    #contact,
    .about-section{
      padding: 20px;
    }

    .contact-form-para{
      text-align: left !important;
      padding-top: 20px;
    }
  }

  /* body {
      font-family: Arial, sans-serif;
      background-color: #f8f9fa;
      padding: 40px;
      color: #0f1c2e;
      line-height: 1.7;
    } */

    .policy-container {
      background-color: #FAFAFA;
      padding: 40px;
      max-width: 1100px;
      margin: auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.08);
      border-radius: 6px;
      font-family: Arial, sans-serif;
      background-color: #f8f9fa;
      padding: 40px;
      color: #0f1c2e;
      line-height: 1.7;
    }

    .policy-container h1 {
      font-size: 22px;
      color: #e8e1d3;
      margin-bottom: 25px;
    }

    .policy-container h2 {
      font-size: 17px;
      /* margin-top: 30px; */
      color: #0f1c2e;
    }

    .policy-container p {
      margin-bottom: 15px;
    }

    .contact-link {
      color: #007bff;
      text-decoration: none;
    }

    .last-updated {
      /* margin-top: 30px; */
      font-size: 14px;
      color: #777;
    }

    