/* @layer overrides { */

    
@media (max-width: 991px) {

        .heading-main {
            font-size: 42px !important;
            line-height: 1.2;
        }

        .carousel-caption {
            left: -20px !important;
            right: 0 !important;
            text-align: center;
        }

        .carousel-caption h1 {
            margin-top: 90px;
            margin-left: 20px;
        }

        .carousel-content {
            margin: 0 auto;
        }

        .carousel-content p {
            font-size: 19px;
            margin-top: 0px;
            margin-left: 20px;
        }

        .carousel-content br {
            display: none;
        }


        .carousel-content .btn {
            margin-left: 0 !important;
            margin-top: 0 !important;
            padding: 8px 16px !important;
        }
    }




        /* Mobile + Tablet only */
    @media (max-width: 991px) {

        /* heading center + logo wrap */
        .who-we-are .heading .d-flex {

            align-items: center;
            text-align: center;
        }

        .who-we-are img {
            margin-left: 10px;
        }

        /* remove manual spacing issues */
        .who_we_are_content {
            flex-direction: column;
        }

        .who_we_are_content>div {
            width: 100% !important;
            margin-left: 0 !important;
        }

        /* remove gap column */
        .who_we_are_content .col-3 {
            display: none;
        }

        /* text readability */
        .who-we-are p br {
            display: none;
        }

        .who-we-are {

            text-align: justify;
            margin: 20px 0px;
        }

        .font-size-18px {
            font-size: 18px;
        }
    }


    .who_we_are_content .vision {
        margin-left: 50px;

    }

    .who_we_are_content p {
        font-size: 16px;
        letter-spacing: 2px;
    }




    .custom-contact-wrapper {
  padding: 60px 20px;
}

.custom-contact-grid {
  display: flex;
  gap: 200px;
}

.custom-contact-info,
.custom-contact-form {
  flex: 1;
}

.custom-contact-form{
    background-color: #0E301D ;
    padding: 50px
}



/* info */
.custom-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.custom-info-item i {
  font-size: 18px;
  margin-top: 4px;
}

 

/* form */
.custom-contact-form input,
.custom-contact-form textarea {
  width: 100%;
  padding: 14px;
  background-color: #FFFDD0;
  margin-bottom: 35px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.custom-contact-form button {
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: #FFFDD0;
  cursor: pointer;
}

/* Mobile & Tablet */
@media (max-width: 991px) {
  .custom-contact-grid {
    flex-direction: column;
    gap: 0px;
  }
  .custom-contact-form{
    padding: 30 10px
}
  .custom-contact-wrapper {
  padding: 20px;
}
 
}


 
  /* SECTION */
  .service-section {
    font-weight: 700;
    color: #0E301D;
    padding: 120px 0 80px;
  }

  /* HEADINGS */
  .service-section h3 {
    text-align: center;
  }

  .service-section h4 {
   font-weight: 700;
    margin-bottom: 40px;

  }

  /* GRID */
  .service-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* CARD */
  .service-cards a {
    height: 260px;
    display: block;
    position: relative;
    overflow: hidden;
    background: #ccc;
  }

  /* IMAGE */
  .service-cards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* TITLE OVER IMAGE */
  .service-cards h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    background: transparent;
    color: #f4f2ec !important;
    font-size: 22px !important;
    text-align: left;
  }

  /* DESKTOP LARGE */
  @media(min-width:1200px) {
    .service-area {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* TABLET */
  @media(max-width:991px) {
    .service-area {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* MOBILE */
  @media(max-width:576px) {
    .service-area {
      grid-template-columns: 1fr;
    }
    

     
    .service-section .service-title h3{
        font-size: 40px !important;
    }
  }
 





 
  /* ===== FAQ (MATCH IMAGE) ===== */
  .nova-faq-section {
    background: #0b2a1a;
    padding: 80px 40px;
    border-radius: 8px;
  }

  .nova-faq-wrap {
    max-width: 1100px;
    margin: auto;
  }

  .nova-faq-title {
    margin-bottom: 40px;
  }

  .nova-faq-title h2 {
    color: #fff;
    font-weight: 700;
  }

  /* FAQ Card */
  .nova-faq-card {
    background: #fbf8e9;
    border-radius: 8px;
    margin-bottom: 18px;
    overflow: hidden;
  }

  /* Question */
  .nova-faq-q {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0b2a1a;
  }

  /* Icon */
  .nova-faq-icon {
    font-size: 18px;
    transition: transform .3s ease;
  }

  /* Answer */
  .nova-faq-a {
    padding: 0 28px 22px;
    color: #333;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }


  .nova-faq-card.active .nova-faq-a {
    max-height: 300px;
    /* enough for content */
    display: block;
  }

  .nova-faq-card.active .nova-faq-icon {
    transform: rotate(180deg);
  }

  /* Bottom link */
  .faq-more {
    text-align: right;
    margin-top: 20px;
  }

  .faq-more a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
 




  .branding-section {
  background-color: #fcf9eb;
  color: #1f2d22;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
}

.section-title p {
  font-size: 1rem;
}

.branding-card {
  background-color: #e8f0e4;
  border-radius: 10px;
  padding: 30px 20px;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.branding-card h4 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.branding-card ul {
  list-style: disc;
  padding-left: 20px;
}

.number-badge {
position: absolute;
    top: -25px;
    left: 2px;
    background-color: transparent;
    color: #0e0c0c;
    font-weight: bold;
    padding: 0px 15px;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 20px;
}
@media (max-width: 992px) {
  .branding-card {
    min-height: auto;
    padding: 20px 15px;
  }
  .number-badge {
    top: -5px;
    left: -5px;
  }
}
 









/* } */
