@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#top-bar-container {
    position: relative;
    background-image: url('./assests/background-topbar.png');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

body {
  color: white;
}
#top-bar-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Black overlay with 50% opacity */
    z-index: 1;
}

#top-bar-container .content {
    position: relative;
    z-index: 2; /* Keeps content above the overlay */
}

.top-bar-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.top-marquee {
  display: flex;
  width: 40%;
  background: rgb(255, 213, 0);
  color: black;
  border-radius: 20px;
  padding: 10px;
  font-weight: 600;
  font-family: "Lato", serif;
}

.top-social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.top-social-media i {
  background-color: white;
  color: black;
  border-radius: 50%;
  padding: 8px;
  border: 1px solid rgb(255, 221, 0);
}

.top-social-media i:hover{
  background-color: rgb(255, 221, 0);
  cursor: pointer;
}

.top-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.top-contact a{
  color: white;
  text-decoration: none;
  font-family: "Lato", serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.top-contact a i{
  background-color: rgb(255, 221, 0);
  color: black;
  border-radius: 50%;
  padding: 8px;
  border: 1px solid white;
}

.top-contact a i:hover{
  background-color: white;
}

.top-contact a span:hover{
  color: rgb(251, 231, 4);
}

.nav-bar {
    display: flex;
    align-items: center;
    background: green;
    border-radius: 20px;
    padding: 10px 20px;
    justify-content: center;
    overflow: hidden; /* nothing can escape rounded corners */
}

.logo,
.mid,
.contat {
    flex: 1;
    min-width: 0; /* important for flex items */
}

.nav-bar img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
    background: #000;
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Container */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TOP HEADING
======================================== */

.hero-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    display: inline-block;
    background: #f4be00;
    color: #000;
    font-size: 32px;
    font-weight: 700;
    padding: 18px 60px;
    border-radius: 40px 40px 0 0;
}

/* ========================================
   SLIDER
======================================== */

.hero-slider {
    margin-top: 20px;
}

.slide-item {
    padding: 90px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* ========================================
   LEFT SIDE
======================================== */

.hero-left {
    flex: 1;
    max-width: 550px;
    padding-left: 2px;
}

.service-badge {
    font-family: "DM Sans", sans-serif;
    display: inline-block;
    background: #fbd501;
    color: #000000;
    padding: 10px 25px;
    border-radius: 50px 50px 0px 0px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.urdu-text {
    display: block;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    text-align: left;
    color: #ffcd06;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-left p {
    font-family: "Lato", serif;
    color: #fdfdfd;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align:justify;
}

/* ========================================
   BUTTON
======================================== */

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #017d24;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s ease-in-out;
    font-family: "Lato", serif;
}



.whatsapp-btn:hover {
    background-color: rgb(255, 217, 0);
    color: black;
}

.whatsapp-btn i {
    font-size: 22px;
}

/* ========================================
   RIGHT IMAGE
======================================== */

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}



/* ========================================
   MOBILE
======================================== */
@media (max-width: 450px) {

    .top-bar-details {
        flex-direction: column;
        gap: 10px;
    }
    .top-contact a {
        font-size: 1rem;
    }
    .top-marquee {
        width: 100%;
    }
    .top-social-media {
        display: none;
    }
    .nav-bar {
        flex-direction: column;
        gap: 5px;
        padding: 5px;
    }
    .logo, .mid, .contact {
        width: 100%
    }
    .slide-item {
        padding: 25px;
    }
    .hero-content {
        gap: 20px !important;
        margin-bottom: 10px;
    }
     
    .service-badge{
        margin: 20px;
    }

    .hero-left h1 {
        text-align: center;
        font-size: 2.3rem !important;
    }
    .hero-content p {
        margin-bottom: 20px;
        line-height: 1.4;
    }
    .owl-dots {
        display: none;
    }
    .svc-stat {
        display: grid;
        grid-template-columns:repeat(2, 1fr) !important; 
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .hero-left {
        padding-left: 0px;
    }
    .svc-card {
        border: none !important;
    }
    .about-wrapper {
        padding-top: 10px !important;
        gap: 25px !important;
    }
    .about-content h2 {
        font-size: 2rem !important;
    }
    .urdu-line {
        font-size: 1.1rem !important;
    }
    .about-content p {
        margin-bottom: 10px !important;
    }

    .highlight-box p {
        font-size: 14px !important;
    }

    .cta-btn {
        display:flex !important;
        width:fit-content;
        margin: 0 auto !important;
    }

    .service-card {
        flex-direction: column;
        align-items: center;
    }

    .service-info h3  {
        text-align: center !important;
    }

    .urdu-service {
        text-align: center !important;
    }
 
    .service-info p{
        margin-bottom: 20px !important;
    }

    .section-divider {
        margin: 30px 0 !important;
    }
    .isl-services-section {
        padding: 60px 0 !important;
    }
    .service-info a {
        display: flex !important;
        width: fit-content !important;
        margin: 0 auto !important;
    }

}
@media (max-width: 991px) {

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .urdu-text {
        font-size: 20px;
    }

    .hero-left p {
        font-size: 17px;
    }

    .hero-title {
        font-size: 20px;
        padding: 14px 25px;
    }

    .hero-right img {
        max-width: 350px;
    }
}


.svc-stat{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:20px;
    margin-bottom:40px;
    margin-top: 40px;
}

.svc-card{
    position:relative;
    overflow:hidden;
    min-height:260px;
    border-radius:0 0 100px 100px;

    cursor:pointer;
}

.card-bg{
    position:absolute;
    inset:0;
    background:url('assests/svc-background.png') center/cover no-repeat;
    transition:transform .6s ease;
}

.card-bg::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('assests/svc-bg-2.png') center/cover no-repeat;
    opacity:0;
    transition:opacity .6s ease;
}

.svc-content {
    position:relative;
    z-index:2;
    padding:25px 20px;
    text-align:center;
}

.svc-content img {
    filter: brightness(0) invert(1);
}

.svc-card:hover .svc-content img {
    filter: none;
}
.svc-card:hover .card-bg{
    transform:scale(1.15);
}

.svc-card:hover .card-bg::before{
    opacity:1;
}

.svc-content h3 {
    font-family: "Philosopher", sans-serif;
    font-weight: 600;
    font-size: 18px !important;
}
.svc-card:hover .svc-content h3{
  color: rgb(255, 209, 2);
}

.svc-card:hover .svc-content p{
  color: white;
}
.svc-card img{
    width:60px;
    height:60px;
    object-fit:contain;
    margin-bottom:10px;
}

.svc-card h3{
    font-size:16px;
    color:#008000;
    margin-bottom: 5px;
    font-weight:700;
}

.svc-card p{
    font-family: "Lato", serif;
    text-align: center;
    font-size:14px;
    line-height:1.3;
    color:#000000;
}

#about-us {
    position: relative;
    background-image: url('./assests/about-us-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;
    background-attachment: fixed;
}

#about-us::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.897); /* Black overlay with 50% opacity */
    z-index: 1;
}

#about-us .content {
    position: relative;
    z-index: 2; /* Keeps content above the overlay */
}



.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.about-wrapper{
display:flex;
gap:50px;
margin-bottom: 60px;
padding-top: 60px;
}



.about-image img{
width:100%;
display:block;
}

.image-content{
padding:20px;
text-align:center;
}

.image-content h2{
font-size:40px;
margin-bottom:10px;
}

.image-content span{
display:inline-block;
background:#008037;
color:#fff;
padding:10px 20px;
border-radius:40px;
}

.about-content{
width:65%;
}

.section-tag{
font-family: "DM Sans", sans-serif;
display:inline-block;
background:#f4be00;
padding:15px 30px;
font-weight:700;
margin-bottom:20px;
font-size: 20px;
color: black;
border-top-right-radius: 50px;
border-left: 3px solid black;
}


.about-content h2{
font-family: "Philosopher", sans-serif;
font-weight: 900;
text-align: left;
color:#008037;
font-size:48px;
margin-bottom:15px;
}

.about-content h2 span{
display:block;
}

.urdu-line{
color:#f4be00;
font-size:24px;
font-weight:700;
margin-bottom:20px;
}

.about-content p{
font-family: "Lato", serif;
font-size: 16px;
color:#070707;
line-height:1.9;
margin-bottom:20px;
font-weight: 500;
text-align: justify;
}

.highlight-box{
background:#efe2b3;
padding:20px;
border-left:5px solid #f4be00;
margin-bottom:25px;
}

.highlight-box p {
    font-family: "Lato", serif;
    font-weight: 500;
    font-size: 16px;
    text-align: justify;
}

.cta-btn{
display: inline-flex;
align-items: center;
background:#008037;
color:#fff;
font-family: "lato", serif;
padding:15px 33px;
border-radius:50px;
font-size: 18px;
text-decoration:none;
font-weight:700;
transition: 0.3s ease-in-out;
gap: 8px;
}

.cta-btn i {
    font-size: 24px;
}

.cta-btn:hover {
    background: #f4be00;
    color: black;
}

.service-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.service-card{
background-color: rgb(238, 238, 238);
border:1px solid #f4be00;
border-radius:15px;
padding:25px;
display:flex;
align-items: center ;
gap:20px;
box-shadow: 0 5px 20px rgba(244, 191, 0, 0.356);
}

.service-icon img{
width: 160px;
height: auto;
border-radius:50%;
object-fit:cover;
}


.service-info h3{
font-family: "DM Sans", sans-serif;
font-size: 20px;
font-weight: 700;
text-align: left;
color:#008037;
margin-bottom:10px;
text-transform: uppercase;
}

.service-info p{
font-family: "Lato", serif;
font-weight: 500;
text-align: justify;
line-height:1.5;
margin-bottom:10px;
color: black;
font-size: 16px;
}

.urdu-service{
color:#008037 !important;
font-weight:600;
}

.service-info a{
display: inline-flex;
background:#f4be00;
color:#000;
text-decoration:none;
padding:10px 20px;
border-radius:30px;
font-family: "Lato", serif;
font-weight:600;
font-size: 18px;
transition: 0.3s ease-in-out;
align-items: center;
gap: 8px;
}

.service-info a i{
    font-size: 25px;
}
.service-info a:hover {
    background-color: green;
    color: white;
}


@media(max-width:991px){

.about-wrapper{
    flex-direction:column;
}

.about-image,
.about-content{
    width:100%;
}

.service-grid{
    grid-template-columns:1fr;
}

.about-content h2{
    font-size:34px;
}

}

.client-reviews{
    padding:80px 0;
    background:#f9f9f9;
}

.section-divider{
    width:100%;
    height:1px;
    background:#727171;
    margin-bottom:40px;
    margin-top: 40px;
}

.section-heading{
    text-align:center;
    margin-bottom:20px;
}

.section-heading span{
    font-family: "DM Sans", sans-serif;
    display:inline-block;
    background:#f4be00;
    color:#000;
    padding:15px 30px;
    border-radius:50px 50px 0 0;
    font-size:20px;
    font-weight:700;
}

.section-subtitle{
    font-family: "Lato", serif;
    text-align:center;
    color:#008037;
    font-size:20px;
    font-weight:600;
    margin-bottom:40px;
}

.youtube-shorts{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-bottom: 60px;
}

.short-card{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(244,190,0,.15);
}

.short-card iframe{
    width:100%;
    aspect-ratio:9/16;
    border:none;
}

@media(max-width:991px){

    .youtube-shorts{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .youtube-shorts{
        grid-template-columns:1fr;
    }

}



.isl-services-section{
    padding:100px 0;
    background-image: url(./assests/svc-bg-bg.png);
    background-attachment: fixed;
}

.isl-heading{
    text-align:center;
    margin-bottom:60px;
}

.isl-tag{
    font-family: "DM Sans", sans-serif;
    display:inline-block;
    background:#f4be00;
    color:#000;
    padding:10px 25px;
    border-radius: 50px 50px 0 0;
    font-weight:700;
    margin-bottom:15px;
    font-size: 20px;
}

.isl-title{
    font-family: "Philosopher", sans-serif;
    text-align: center;
    color:#fff;
    font-size:30px;
    margin-bottom:15px;
}

.isl-subtitle{
    font-family: "Lato", serif;
    font-size: 16px;
    text-align: center;
    color:#fff;
    max-width:700px;
    margin:auto;
}

.isl-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.isl-service-box{
    border:1px solid #f4be00;
    overflow:hidden;
    border-radius: 200px 200px 0 0;
}


.isl-service-image{
    padding:25px;
    text-align:center;
}

.isl-service-image img{
    width: 100%;
    height: 100%;
    border-radius:50% 50% 0 0;
    object-fit:cover;
}

.isl-service-heading{
    font-family: "Philosopher", sans-serif;
    font-size: 23px;
    font-weight: 600;
    background:#f4be00;
    color:#000;
    font-weight:700;
    text-align:center;
    padding:14px;
}

.isl-service-body{
    padding:20px;
    text-align:center;
}

.isl-urdu{
    text-align: center !important;
    color:#f4be00;
    font-weight:700;
    margin-bottom:12px;
}

.isl-service-body p{
    font-family: "Lato", serif;
    font-weight: 500;
    font-size: 16px;
    color:#fff;
    text-align: justify;
    line-height:1.5;
}

.isl-contact-btn{
    display:inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Lato", serif;
    margin-top:20px;
    padding:12px 24px;
    background:#fff;
    color:#000;
    text-decoration:none;
    border-radius:40px;
    font-weight:700;
    transition: 0.3s ease-in-out;
}

.isl-contact-btn i{ 
    font-size: 22px;
}

.isl-contact-btn:hover {
    color: black;
    background-color: #f4be00;
}

@media(max-width:991px){
    .isl-services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .isl-services-grid{
        grid-template-columns:1fr;
    }

    .isl-title{
        font-size:32px;
    }
}


/* ===========================
   TESTIMONIAL SECTION
=========================== */

.client-reviews-section{
    padding:100px 0;
    background-image: url(assests/bg-client.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.client-reviews-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Black overlay with 50% opacity */
    z-index: 1;
}
.client-reviews-section .content {
    position: relative;
    z-index: 2; /* Keeps content above the overlay */
}
.review-heading{
    text-align:center;
    margin-bottom:60px;
}

.review-tag{
    font-family: "DM Sans", sans-serif;
    display:inline-block;
    background:#f4be00;
    color:#000;
    padding:10px 25px;
    border-radius:50px 50px 0 0;
    font-weight:700;
    font-size: 20px;
    margin-bottom:15px;
}

.review-heading h2{
    font-family: "Philosopher", sans-serif;
    text-align: center;
    font-size:35px;
    margin-bottom:15px;
    color:#ffffff;
}

.review-heading p{
    font-family: "Lato", serif;
    font-weight: 500;
    max-width:600px;
    margin:auto;
    color:#ffffff;
    font-size: 16px;
}

/* ===========================
   CARD
=========================== */

.review-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
}

.google-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    background:#eef9f0;
    color:#0f9d58;

    padding:8px 15px;
    border-radius:30px;

    font-size:13px;
    font-weight:600;

    margin-bottom:15px;
}

.review-stars{
    font-family: "Lato", serif;
    color:#f4be00;
    font-size:16px;
    margin-bottom:20px;
}

.review-stars span{
    color:#222;
    font-weight:700;
    margin-left:8px;
}

.review-message{
    font-family: "Lato", serif;
    font-weight: 500;
    text-align: justify;
    color:#000000;
    line-height:1.9;
    margin-bottom:25px;
    font-size:16px;
}

/* ===========================
   USER
=========================== */

.review-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.review-user img{
    width:80px !important;
    height:80px !important;

    min-width:80px;
    max-width:80px;

    border-radius:50%;
    object-fit:cover;

    border:3px solid #f4be00;

    display:block;
    flex-shrink:0;
}

.review-user-info{
    flex:1;
}

.review-user-info h4{
    font-family: "Roboto Slab", serif;
    margin:0;
    font-size:15px;
    font-weight:400;
    color:#111;
}

.review-user-info span{
    display:block;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color:#595858;
    margin-top:4px;
}

.review-user-info small{
    font-family: "Lato", serif;
    display:block;
    margin-top:4px;
    color:#999;
}

/* ==========================================
   OWL CAROUSEL NAVIGATION & DOTS
========================================== */

.review-slider .owl-nav{
    display: block !important;
    text-align:center;
    margin-top:30px;
}

.review-slider .owl-prev,
.review-slider .owl-next{

    width:55px;
    height:55px;

    display:inline-flex !important;
    align-items:center;
    justify-content:center;

    margin:0 8px;

    border:none !important;
    border-radius:50% !important;

    background:#f4be00 !important;
    color:#000 !important;

    font-size:22px !important;
    font-weight:700;

    cursor:pointer;
    transition:all .3s ease;
}

/* Hover Effect */

.review-slider .owl-prev:hover,
.review-slider .owl-next:hover{

    background:#008037 !important;
    color:#fff !important;

    transform:translateY(-3px);
}

/* Active Click Effect */

.review-slider .owl-prev:active,
.review-slider .owl-next:active{

    transform:scale(.95);
}


/* Mobile */

@media(max-width:768px){

    .review-slider .owl-nav{
        margin-top:20px;
    }

    .review-slider .owl-prev,
    .review-slider .owl-next{

        width:50px;
        height:50px;

        font-size:18px !important;
    }

}


.call-part ul li {
    position: fixed;
    z-index: 999;
    right: -124px;
    width: 180px;
    list-style: none;
    transition: 1.7s;
    bottom: 30px;
}
.call-part ul li a {
   background: rgb(2, 2, 2);
    padding: 0 0 6px 0;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border: solid 1px #88888852;
}
.call-part ul li a i {
    width: 45px;
    height: 50px;
    background: #eed603;
    padding: 12px 11px;
    font-size: 25px;
    margin-top: 5px;
    margin-left: 5px;
    color: #ffffff;
    margin-right: 10px;
}

.call-part ul li .phone {
    color: black !important;
}
.call-part ul li.whats {
    margin-top: 79px;
}
.call-part ul li.whats {
    bottom: 100px;
}
.call-part ul li.whats i {
    background: #129122;
    color: #fff;
}
.call-part ul li:hover {
    right: 0;
}

.bhb-footer{
    background:#000;
    color:#fff;
    padding:70px 0 25px;
}

.bhb-footer hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,0.15);
    margin:35px 0;
}

/* Top */

.bhb-footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.bhb-footer-logo{
    display:flex;
    justify-content: space-evenly;
    align-items: center;
}

.bhb-footer-logo img{
    width: 300px;
}

.bhb-footer-h2 h2{
    font-family: "Philosopher", sans-serif;
    font-size:35px;
    color:#fff;
    text-align: center;
    font-weight:600;
}

.bhb-footer-social{
    display:flex;
    gap:15px;
}

.bhb-footer-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#008037;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-size:20px;

    border:2px solid #fff;

    transition:.3s;
}

.bhb-footer-social a:hover{
    background:#f4be00;
    color:#000;
}

/* Middle */

.bhb-footer-content{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:50px;
}

.bhb-footer-box h3{
    font-family: "Philosopher", sans-serif;
    font-size:30px;
    margin-bottom:20px;
    color:#fff;
}

.bhb-footer-box p{
    font-family: "Lato", serif;
    text-align: justify;
    color:#ddd;
    line-height:1.5;
    font-size:16px;
}

.bhb-footer-box ul{
    list-style:none;
    padding:0;
}

.bhb-footer-box ul li{
    margin-bottom:15px;
}

.bhb-footer-box ul li a{
    color:#fff;
    text-decoration:none;
    transition: .3s;
    font-size: 16px;
    font-family: "Lato", serif;
}

.bhb-footer-box ul li a:hover{
    color:#f4be00;
}

.bhb-contact-list li{
    color:#fff;
    font-size:20px;
}

.bhb-contact-list i{
    color:#f4be00;
    margin-right:10px;
}

/* Bottom */

.bhb-footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.bhb-footer-links{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.bhb-footer-links a{
    font-family: "Lato", serif;
    font-size: 16px;
    font-weight: 500;
    color:#fff;
    text-decoration:none;
    border-right:1px solid rgba(255,255,255,.4);
    padding-right:20px;
}

.bhb-footer-links a:last-child{
    border-right:none;
}

.bhb-footer-links a:hover{
    color:#f4be00;
}

.bhb-copyright{
    font-family: "Lato", serif;
    font-size: 16px;
    color:#fff;
}

/* Responsive */

@media(max-width:992px){

    .bhb-footer-top{
        flex-direction:column;
        text-align:center;
    }

    .bhb-footer-logo{
        flex-direction:column;
    }

    .bhb-footer-logo img {
        width: 100%;
    }

    .bhb-footer-h2 h2 {
        font-size: 1.5rem;
    }

    .bhb-footer-social i {
        font-size: 1.2rem;
    }
    .bhb-footer-box h3 {
        text-align: left;
    }
    .bhb-footer-box ul li {
        text-align: left !important;
    }
    
    .bhb-footer-logo h2{
        font-size:30px;
    }

    .bhb-footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .bhb-footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .bhb-footer-links{
        justify-content:center;
    }
    .bhb-footer-links a {
        padding-right: 10px;
        font-size: 0.9rem;
    }
    .bhb-footer-links {
        gap: 10px;
        flex-wrap: nowrap;
    }
}

/* ===========================
   OTHER SERVICES SECTION
=========================== */

.other-services-sec{
    background-image: url(assests/svc-bg-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding:80px 0;
    position:relative;
}

.other-services-title{
    text-align:center;
    margin-bottom:50px;
}

.other-services-badge{
    font-family: "DM Sans", sans-serif;
    display:inline-block;
    background:#f4be00;
    color:#000;
    padding:10px 25px;
    border-radius:50px 50px 0 0;
    font-size:20px;
    font-weight:700;
}

.other-services-title h2{
    font-family: "Philosopher", sans-serif;
    text-align: center;
    color:#fff;
    font-size:60px;
    margin-top:15px;
    font-weight:800;
}

/* Grid */

.other-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* Card */

.other-services-card{
    background:#fff;
    border:2px solid #f4be00;
    border-radius:25px;
    padding:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.bhb-footer-box.other-services-card h3{
    background:#f4be00;
    color:#000;
    text-align:center;
    padding:12px;
    border-radius:10px;
    margin-bottom:15px;
    font-size:20px;
    font-weight:700;
}

.other-services-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.other-services-card ul li{
    font-family: "Lato", serif;
    padding:15px 10px;
    border-bottom:1px solid #ddd;
    font-size:16px;
    color:#222;
    transition:.3s;
    cursor: pointer;
}

.other-services-card ul li:last-child{
    border-bottom:none;
}

.other-services-card ul li:hover{
    color:#008037;
    padding-left:18px;
}

/* Responsive */

@media(max-width:992px){

    .other-services-grid{
        grid-template-columns:1fr;
    }

    .other-services-title h2{
        font-size:42px;
    }

    .other-services-card h3{
        font-size:24px;
    }

    .other-services-card ul li{
        font-size:18px;
    }
}