@import url('https://fonts.googleapis.com/css2?family=Poppins: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&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

:root {
    --default-font: "Poppins",  sans-serif !important;
    --heading-font: "Poppins",  sans-serif !important;
    --nav-font: "Poppins",  sans-serif !important;
  }

.text-primary { 
    color: var(--accent-color) !important;
}


  /* header custom styles  */
.header .topbar { 
    height: 30px; 
}

.header .logo img {
    max-height: 45px;
}

.header .branding {
    padding: 0;
}

@media (max-width: 768px) {
.header .branding {
    padding: 12px 0;
}
}

@media (min-width: 1200px) {
    .navmenu a, .navmenu a:focus { 
        padding: 30px 20px;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase; 
        border-bottom: 3px solid transparent;   
    }

    .navmenu li:hover>a, .navmenu .active, .navmenu .active:focus {
        color: var(--nav-hover-color);
        border-bottom: 3px solid #ee8742;  
    }
    .navmenu li ul li:hover>a { 
        border-bottom: 3px solid transparent;  
    }
}

@media (min-width: 1200px) {
    .navmenu li:last-child a.lang-link {
        font-size: 1.25em;
        padding: 27px 20px;
    }
}

/* content custom styles */

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev {
    left: 20px;
}

.hero .carousel-item::before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 90%) !important;
    position: absolute;
    inset: 0;
}

.hero .carousel-container { 
    background: transparent;
}
 
.hero .featured-item { 
    border-radius: 20px;
}

.hero .featured-item:hover:before { 
    border-radius: 20px;
}
 
.hero .carousel-control-next-icon, .hero .carousel-control-prev-icon { 
    color: #ffffff; 
}

.carousel-container h2, 
.carousel-container p { 
    text-align: center;
    text-shadow:  0 2px 1px rgba(0,0,0,.5);
     
}

.carousel-container p { 
    padding: 15px;
    background: rgba(0,0,0,.3);
}

@media (min-width: 1024px) {
   
    .hero p {
        max-width: fit-content;
        
    }

    .carousel-container p {
        max-width: 40% !important;
        margin: 0 auto; 
        font-size: 1.3em;
        
    }
}

.about .content .fst-italic { 
    font-size: 1.15em;
}

.about-img {
    border-radius: 3em 3em 3em 1.5em;
}
 
.section.services {
    background: #efefef;
    padding: 70px 0; 
}

.section.branches {
    padding: 70px 0; 
}

.services .service-item { 
    border-radius: 20px;
    padding: 40px 20px;
}

.branches p{
    margin-top: 2.5em;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.5em;
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 40%);

}

/* map custom styles */

.map-container {
    margin: 20px auto;
    background: #ffffff;
}

svg {
    width: 100%;
    height: auto;
}

.region {
    fill: #e5e5e5;
    stroke: #999;
    stroke-width: 2px;
}

.city-dot {
    fill: #ffffff;
    stroke: #42556c;
    stroke-width: 10;
    cursor: pointer;
    transition: fill 0.3s;
}

.city-dot:hover {
    stroke: #ee8742;
}

.city-label {
    font-size: 1.1em;
    text-anchor: middle;
    fill: #ffffff;
    pointer-events: none;
    font-weight: 500;
}

g path:hover {
    fill: #6f8e9c;
}


/* footer custom styles */

.footer .footer-about a { 
    font-size: inherit;
    font-weight: inherit; 
}

.footer .copyright {
    padding-top: 15px;
    padding-bottom: 15px; 
}

