@font-face {
  font-family: "ElikaGorica";
  src: url("./fonts/ElikaGorica.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}



.popup-img {
    max-width: 100%;
    height: 500px;
}

header {
    position: relative;
}

.search_input {
    position: absolute;
    top: 0rem;
    left: 0;
    width: 100%;
    height: 74px;
    background-color: var(--white-color);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in;
    box-shadow: 0 0 3px rgba(0, 0, 0, .4);
}

.search_input.active {
    opacity: 1;
    visibility: visible;
    transition: .3s ease-in;
}

.search_input__box {
    position: relative;
    width: 45%;
}

.search_input__box button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 20px;
    background-color: var(--main-color);
    color: var(--white-color);
    height: 100%;
    border: none;
    outline: none;
}

.search_close i {
    position: absolute;
    right: -3rem;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.search_close i:hover {
    color: #454545 !important;
    transition: .3s ease-in;
}

/*.myNav.sticky .search_btn i {*/
/*    color: var(--white-color) !important;*/
/*}*/

.search_close i {
    color: var(--black-color) !important;
    font-size: 33px !important;
}

.search_input__box input {
    width: 100%;
    border: 1px solid var(--black-color);
    padding: 10px;
    outline: none;
}

.myNav {
  /* height: 90px; */
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 99;
    background: var(--main-color);

    transition: .3s ease-in;
}

/*.myNav.sticky .logo img {*/
/*    mix-blend-mode: normal;*/
/*}*/

/*.myNav.sticky {*/
/*    background-color: var(--white-color);*/
/*    transition: .3s ease-in;*/
/*    box-shadow: 0 0 3px rgba(0, 0, 0, .5);*/
/*}*/

.divider {
  height: 1px;
  background: rgba(255,255,255,0.4);
  width: 100%;
  margin: 6px 0 ;
}

.myNav_content {
       display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_menu ul {
    display: flex;
    gap: 1.7rem;
    align-items: center;
}

.header_menu ul li a {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 500;
    color: var(--white-color);
}

/*.myNav.sticky .header_menu ul li a {*/
/*    color: var(--black-color);*/
/*}*/

/*.myNav.sticky .header_icon i {*/
/*    color: var(--black-color);*/
/*}*/



.header_icon {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cart {
    position: relative;
}

.cart p {
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: var(--main-color);
    color: var(--white-color);
    height: 20px;
    width: 20px;
    border-radius: 100%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
}

/* cart sidebar */
.cart_sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: #11182780;
    /* visibility: hidden; */
    transition: .3s ease-in;
}

.cart_sidebar.active {
    right: 0;
    transition: .3s ease-in;
}

.filter_sidebar__content {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 100%;
    background-color: var(--white-color);
}

.filter_heading {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.filter_heading h6 {
    text-transform: capitalize;
    font-size: 22px;
}

.cart_cancel i {
    height: 35px;
    width: 35px;
    border-radius: 100%;
    background-color: #ddd;
    color: var(--black-color);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s ease-in;
}


.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: var(--white-color) !important;
}

.cart_input {
    top: 100px;
    right: 40px;
    position: absolute;
}

.cart_input p,
.cart_input input {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.cart_input button {
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 6px 10px;
    border: none;
    outline: none;
}

.cart_sidebarBox:last-child {
    border-bottom: 0;
}

.cart_sidebarBox__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
}

.bottom_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
}

.view--cart {
    margin-top: 2rem;
}

.view--cart a {
    letter-spacing: 1px;
    background-color: var(--black-color);
    color: var(--white-color);
    width: 100%;
    display: block;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    font-size: 18px;
}

.view--cart a:hover {
    color: var(--white-color);
}

.bottom_price p {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--black-color);
    font-weight: 500;
}

.bottom_price h6 {
    font-weight: 600;
    font-size: 24px;
    color: var(--black-color);
}



.cart_sidebar__content {
    padding: 1rem;
}

.cart_sidebarBox {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid #ccc;
    padding: 1rem 0;
}

.cart_sidebar__img img {
    height: 120px;
    width: 120px;
    object-fit: cover;
}

.cart_content h6 {
    text-transform: capitalize;
    font-size: 18px;
}



/* mobile_nav */
.mobile_nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: #11182780;
    /* visibility: hidden; */
    transition: .3s ease-in;
}

.mobile_nav.navbar--active {
    right: 0;
    transition: .3s ease-in;
}

.mobile_nav__content {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 70%;
    background-color: var(--white-color);
}

.mobile_nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.cancel_nav i {
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 100%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black-color);
    color: var(--white-color);
}

.mobile_menu ul {
    padding: 1rem !important;
}

.mobile_menu ul li {
    margin-bottom: 12px;
}

.mobile_menu ul li a i {
    font-size: 22px;
}

.mobile_menu ul li a {
    color: var(--black-color);
    font-size: 17px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-weight: 500;
    gap: 1rem;
}



.banner_video video {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.header_icon i {
    color: var(--white-color);
    font-size: 22px;
    cursor: pointer;
}

/* banner_video */
.banner_video {
 background-color: rgb(234,230,224);
    position: relative;
}

.banner_video__content {
    /* position: relative; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.banner_video__content a {
    background-color: white;
    padding: 10px 30px;
    color: black;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;  
     /* left: 30px; */
     margin-left: 28%;
     /* margin-right: 60px; */
    margin-bottom: 40%;
    
}




.banner_video__content a:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    transition: .3s ease-in;
}

.collection_wrapper {
    padding: 40px 0 20px 0;
}

.collection_wrapper__content h1 {
    font-size: 24px;
    margin-bottom: 1rem !important;
}

.collection_box__img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.collection_box__img {
    position: relative;
}

.hide_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s ease-in;
}

.collection_box__img:hover .hide_img {
    opacity: 1;
    transition: .3s ease-in;
}

.collection_box__content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--black-color);
    margin-top: 10px;
}

.collection_box__content p {
    color: var(--black-color);
    font-weight: 500;
}

.collection_box {
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.collection_content__btn {
    text-align: center;
}

.collection_content__btn a {
    padding: 7px 30px;
    border-radius: 5px;
    color: var(--white-color);
    font-size: 18px;
    letter-spacing: 1px;
    background-color: var(--black-color);
    text-transform: capitalize;
}

.collection_content__btn a:hover {
    color: var(--white-color);
}

.footer_wrapper {
    background-color: var(--black-color);
    padding: 10px 0;
}

.footer_wrapper__content ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: end;
}

.footer_wrapper__content ul li a {
    font-size: 18px;
    color: var(--white-color);
    text-transform: capitalize;
}

.menu_icon {
    display: none;
}

.styled-text {
    font-family: 'Spectral', serif;
    font-weight: 700;
    font-size: 50px;
    color: #5daded;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
}

.styled-text .ampersand {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: #5daded;
}

.logo a {
    font-size: 32px;
    font-family: "ElikaGorica", serif;
    color: #D9D9D9;
    font-weight: 700;
}

.and {
  font-family: "ElikaGorica", serif;
 
}

.mob_logo a {
    font-size: 25px;
    font-family: 'Spectral', serif;
    color: #5daded;
    font-weight: 700;
}


.logo a:hover {
    color: #5daded;
}

/*.myNav.sticky p {*/
/*    color: var(--black-color) !important;*/
/*}*/

@media(max-width: 1400px) {
    .filter_sidebar__content {
        width: 40%;
    }
}

@media(max-width:1200px) {

    .header_menu ul,
    .header_icon {
        gap: 13px;
    }

    .logo a {
        font-size: 35px;
    }
}

@media(max-width:992px) {
    .myNav_content {
        padding: 12px 0;
    }

    .filter_sidebar__content {
        width: 60%;
    }

    .header_menu ul {
        display: none;
    }

    .menu_icon {
        display: block;
    }

    .menu_icon i {
        color: var(--white-color);
        font-size: 26px;
    }

    /*.myNav.sticky .menu_icon i {*/
    /*    color: var(--black-color);*/
    /*}*/

    .header_menu {
        display: none;
       
    }

    .header_icon {
        display: flex;
        align-items: end;
       
    }
}


@media(max-width:768px) {
    .logo a {
        font-size: 28px;
    }

    .logo {
        width: 110%;
    }

    .search_input__box {
        width: 80%;
    }

    .collection_box__img img {
        height: 300px;
    }

    .footer_wrapper__content ul {
        gap: 1rem;
    }

    .footer_wrapper__content ul li a {
        font-size: 16px;
    }

    .collection_wrapper__content h1 {
        font-size: 19px;
    }

    .collection_box {
        margin-bottom: 20px;
    }

    .banner_video__content a {
        font-size: 16px;
    }

    .collection_content__btn {
        margin-top: 2rem;
    }

    .collection_content__btn a {
        font-size: 16px;
    }

    .collection_box__content h3 {
        font-size: 17px;
    }

    .collection_wrapper {
        padding: 40px 0 50px 0;
    }

    .header_icon i {
        font-size: 18px;
    }
}


@media (max-width: 576px) {
    .logo a {
        font-size: 22px;
    }

    .banner_wrapper {
        margin-top: 4rem;
    }

    .search_close i {
        right: -2rem;
    }

    .filter_sidebar__content {
        width: 90%;
    }

    .collection_box__img img {
        height: 270px;
    }

    .footer_wrapper__content ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .myNav p {
        font-size: 14px;
        padding-top: 5px;
    }
}

@media (max-width: 450px) {
    .banner_wrapper {
        margin-top: 51px;
    }
    .myNav p{
        font-size:11px;
    }
}
@media (max-width: 400px){
    .myNav p{
        font-size:10px;
    }
    
}

/* footer */

.site-footer {
  background: #fff;
  padding: 40px 6% 40px;
  /* font-family: "Inter", sans-serif; */
  border-top: 1px solid #e6e6e6;
}

/* TOP FOOTER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px !important;
  letter-spacing: 0.04em;
}

.footer-col p {
  font-size: 16px;
  color: #333;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 17px;
  color: #111 !important;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* JOIN */
.footer-join p {
  max-width: 260px;
  margin-bottom: 10px;
}

.signup-link {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.signup-link:hover {
  text-decoration: underline;
}

/* COUNTRY */
.country {
  margin-bottom: 20px;
  font-size: 14px;
}

.mt {
  margin-top: 30px;
}

.app-links li {
  font-size: 14px;
  margin-bottom: 10px;
}

/* BOTTOM FOOTER */
.footer-bottom {
  /* padding: 25px 40px; */
  text-align: left;
}

.footer-copy {
  font-size: 14px;
  margin-bottom: 12px;
  color: #000;
}



.footer-bottom p {
    margin-top: 2%;
  font-size: 18px;
  color: #111;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-links li a {
  font-size: 14px;
  text-decoration: none;
  color: #666;
  letter-spacing: 0.5px;
}

.footer-links li a:hover {
  color: #000;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 5% 30px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    padding: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

 .footer-bottom {
    padding: 20px 16px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links li a {
    font-size: 12px;
  }
}


.info-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.info-list li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: #060505;
  line-height: 1.6;
  margin-bottom: 8px;
}

.info-list .icon {
  font-size: 14px;
  margin-top: 2px;
  
}

.info-list a {
  color: #555;
  text-decoration: none;
}

.info-list a:hover {
  color: #000;
}


@media (max-width: 768px) {
  .footer-col {
    max-width: 100%;
  }

  .info-list li {
    font-size: 12px;
    gap: 8px;
  }

  .info-list .icon {
    font-size: 13px;
  }

  .country {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .info-list li {
    flex-direction: row;
    align-items: flex-start;
  }

  .info-list {
    margin-top: 10px;
  }
}




/* cokkie */


.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cookie-box {
  max-width: 520px;
  width: 90%;
  text-align: center;
  color: #fff;
}

.cookie-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cookie-box a {
  color: #fff;
  text-decoration: underline;
}

.btn-accept {
  width: 100%;
  padding: 14px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-bottom: 15px;
}

.btn-preferences {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
}

/* Hover */
.btn-accept:hover {
  background: #eaeaea;
}

.btn-preferences:hover {
  background: rgba(255,255,255,0.1);
}


/* banner  */
.banner-wrap {
  width: 100%;
  overflow: hidden;
}

.banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .banner-wrap {
    height: 116px;
  }
}




/* section home */
.feature-section {
  padding: 60px 6%;
  background: rgb(235, 231, 225);
  /* background: rgb(83,83,102); */
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.feature-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.feature-card:hover img {
  transform: scale(1.05);
}

/* OVERLAY */
.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.feature-overlay h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-btn {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.8);
  width: fit-content;
}

.feature-btn:hover {
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: 260px;
  }
}



/* testimonial */

.testimonial-section {
  padding: 70px 6%;
  background: rgb(83,83,102);
  text-align: center;
}

.testimonial-title {
    color: white;
  font-size: 30px;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  font-weight: 500;
}

/* Slider */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* Card */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  min-width: calc(33.333% - 16px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-track:hover {
  cursor: pointer;
}


.testimonial-card.paused {
  cursor: pointer;
  transform: scale(1.05);
}

.review-text {
  font-size: 18px;
  color: #1f1e1e;
  line-height: 1.6;
  margin-bottom: 20px;
}

.reviewer strong {
  display: block;
  font-size: 15px;
  color: #000;
}

.reviewer span {
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    min-width: 100%;
  }

  .testimonial-title {
    font-size: 22px;
  }
  .about_parra {
    margin-bottom: 18%;
  }

}

/* ====== SLIDER WRAPPER ====== */
.banner-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  
}

/* ====== TRACK ====== */
.slider-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
  height: 100vh;
}

/* ====== SLIDES ====== */
.slide {
  min-width: 36%;
  height: 100%;  /* full height for better image display */
  padding: 0;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* keeps image aspect ratio, fills slide */
  display: block;
}

/* ====== ARROWS ====== */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: white;
  border: none;
  font-size: 26px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ====== RESPONSIVE ====== */

/* Tablet */
@media (max-width: 991px) {
  .slide {
    min-width: 50%;
    height: 400px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  

  /* Increase banner height */
.banner-slider {
height: 575px;
overflow: hidden;
}   

.slide img {
width: 100%;
height: 223%;
object-fit: cover;
display: block;
}
.slide {
    min-width: 100%;   
    height: 280px;
    padding: 0;
  }

  .prev,
  .next {
    font-size: 20px;
    padding: 8px 12px;
  }

  .header-search {
    display: none !important;
  }
}

/* ====== BOTTOM LINKS ====== */
.banner_bottom_links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;  /* proper padding */
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

/* Left button */
/* .banner_bottom_links .contact_btn {
  background: none;
  color: #fff;
  padding: 12px 22px;
  border: 1px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
} */

.banner_bottom_links .contact_btn:hover {
  background: #fff;
  color: #000;
}

/* Center links */
.banner_bottom_links .center_links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.banner_bottom_links .center_links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.banner_bottom_links .center_links a:hover {
  text-decoration: underline;
}

.banner_bottom_links .center_links span {
  color: #fff;
}

/* Responsive bottom links */
@media (max-width: 600px) {
  .banner_bottom_links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    bottom: -42px;
    padding: 12px 10px;
  }


 

  .banner_bottom_links .center_links {
    justify-content: center;
    gap: 5px;
  }

  /* .banner_bottom_links .contact_btn {
    width: 90%;
    padding: 10px 15px;
    text-align: center;
  } */
}

/* Top content above Contact Us / left corner */
.banner-top-content {
  position: absolute;
  bottom: 180px;          /* above the bottom links */
  left: 40px;             /* increased gap from left */
  transform: none;       
  text-align: left;      
  color: #fff;
  z-index: 10;
}

.banner-top-content h1 {
  font-size: 24px;      
  margin: 0 0 6px 0;
  font-weight: 700;
}

.banner-top-content p {
  font-size: 14px;
  margin: 0;
}

/* Responsive top content */
@media (max-width: 991px) {
  .banner-top-content {
    left: 20px;          /* maintain proper gap on tablet */
  }
  .banner-top-content h1 {
    font-size: 20px;
  }
  .banner-top-content p {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .banner-top-content {
    bottom: 88px;       
    left: 12px;          /* slightly more gap on mobile */
    padding: 0 5px;
  }
  .banner-top-content h1 {
    font-size: 16px;
  }
  .banner-top-content p {
    font-size: 12px;
  }

    .contact_btn {
    padding: 1px 6px;
    font-size: 12px;
    margin: 0;
  }

}

.contact_btn {
  background: #ffffff;
  color: #000 !important;
  padding: 4px 15px;
  /* border-radius: 6px; */
  font-weight: 600;
  text-decoration: none;
  margin-left: 1.4%;
  margin-bottom: 25px;
}

/* New Top Right Content */
.banner-top-right {
  position: absolute;
  top: 74%;           /* vertical center */
  right: 40px;        /* distance from right edge */
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  max-width: 300px;
}

.banner-top-right h2 {
  font-size: 22px;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.banner-top-right p {
  font-size: 15px;
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
  .banner-top-right {
    right: 20px;
    max-width: 220px;
  }
  .banner-top-right h2 {
    font-size: 18px;
  }
  .banner-top-right p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .banner-top-right {
    right: 10px;
    max-width: 180px;
  }
  .banner-top-right h2 {
    font-size: 16px;
  }
  .banner-top-right p {
    font-size: 12px;
  }
}