:root {
    --primary-color: linear-gradient(180deg, #03AED2 0%, #03A0C1 100%);
    --warm-gradient:linear-gradient(247.46deg, rgba(125, 46, 0, 0.05) 0%, rgba(125, 46, 0, 0.12) 64.67%);
    --card-bg:linear-gradient(180deg, #F6F6F6 0%, #F4F4F4 100%);
    --bg1: linear-gradient(90deg, #956034 0%, rgba(149, 96, 52, 0.4) 100%);
    --bg2: linear-gradient(90deg, #CE9364 0%, rgba(206, 147, 100, 0.6) 100%);
    --bg3:linear-gradient(90deg, #FFEACF 0%, rgba(255, 234, 207, 0.5) 100%);
}



/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    direction: rtl;
    font-family: "regular";
}

@font-face {
    font-family: "regular";
    src: url("../assets/fonts/SomarSans-Regular.otf");
}
@font-face {
    font-family: "bold";
    src: url("../assets/fonts/SomarSans-Bold.otf");
}
@font-face {
    font-family: "light";
    src: url("../assets/fonts/SomarSans-Light.otf");
}
@font-face {
    font-family: "medium";
    src: url("../assets/fonts/SomarSans-Medium.otf");
}

/* Header */
header {
    border-bottom: 1px solid #F0EFEF;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures it appears above other elements */
    background-color: white; /* Add a background color if needed */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for better visibility */
  }
section .first-section {
    padding-top: 80px; /* Add padding equal to the header's height to prevent content overlap */

}
button{
    cursor: pointer;
}
#menuButton{
    display: none ;
}
/* Overlay background */
.overlay {
    height: 100%; /* Full-height */
    width: 0; /* Initially hidden */
    position: fixed; /* Stay in place */
    z-index: 1000; /* On top of everything */
    top: 0;
    left: 0;
    opacity: 1;
    background-color: #141414aa; /* Black with transparency */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.2s; /* Smooth open/close transition */
  }
  
  /* Overlay content */
  .overlay-content {
    position: relative;
    top: 25%;
    width: 80%;
    text-align: center;
    margin: auto;
    background: var(--primary-color);
    padding: 16px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .sidemenu-btns{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .overlay-content a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
    color: white;
    text-decoration: none;
    transition: 0.3s; /* Smooth hover effect */
  }
  
  .overlay-content a:hover {
    color: #f1c40f; /* Highlight link on hover */
  }
  
  /* Close button */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
  }
  
  /* Open side menu (when width is 100%) */
  .overlay.open {
    width: 100%; /* Full width */
  }
.white{
    color: #fff !important;
}
header .container {
    max-width: 1200px;
    margin: 0 auto;
}
.logo-whatsapp{
    width: 30px;
    cursor: pointer;
    height:  auto;
}
#whatsapp span{
    font-size: 12px;
    cursor: pointer;
}
#whatsapp{
    border: 1px solid #956034;
    border-radius: 8px;
    color: #956034 !important;
    padding-inline: 8px;
}

.container .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
}
.navbar ul{
    gap: 20px;
}
.nav-link{
font-size: 16px;
font-weight: 500;
line-height: 26.02px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}
a{
    text-decoration: none !important;
}


/* Buttons */
.header .btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .btns button {
    min-height: 40px;
    padding: 0 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: "medium";
}

button.main {
    background: #fff;
    border: 1px solid #03AED2;
}

.main a {
    color: #03AED2 !important;
}

button.sec {
    font-size: 12px;
    font-weight: 600;
    line-height: 19.51px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    
    background: var(--primary-color);
    border: 1px solid #03AED2;
}

.sec a {
    color: #fff !important;
}

/* First Section */
section.first-section {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 180px 16px;
    padding-bottom: 70px !important;
}

.first-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.first-section .container h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    text-align: right;
}

.first-section .container h1 span {
    color: #03AED2;
}

.first-section .container p {
    font-size: 18px;
    font-weight: 500;
    line-height: 29.27px;
    text-align: right;
    color: #2A2A2A;
}

.first-section .container button {
    padding: 10px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
}

.first-section .container button a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.first-section .container .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.first-section .container .left img {
    object-fit: cover;
    max-width: 100%;
}

.card{
    user-select: none !important;
}

section.second-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 16px;
    text-align: center;
}
section.second-section .container .card img{
    max-width: 125px;
    max-height: 125px;
    text-align: center;
}
section.second-section .container .top p {
    font-size: 18px;
    font-weight: 400;
    line-height: 29.27px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2A2A2A;
}
    section.second-section .container .top h1{
    font-size: 32px;
    font-weight: 600;
    line-height: 52.03px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2A2A2A;

}

section.second-section .container .card{
    max-height: 296px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    text-align: center;
}
section.second-section .container .card .card-body h5{
    font-size: 20px;
    font-weight: 500;
    line-height: 32.67px;
    text-align: center;
    color: #2A2A2A;
}
section.second-section .container .card .card-body p{
    font-size: 14px;
    font-weight: 400;
    line-height: 26.02px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #747474;
}


section.third-section{
    background: var(--warm-gradient); 
    
}

section.third-section .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 16px;
    display: flex;
    flex-direction: column;
    /* gap: 40px; */
}

section.third-section .container .top{
    text-align: right;
}
section.third-section .container .top h1{
    font-size: 32px;
    font-weight: 600;
    line-height: 52.03px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2A2A2A;
}
section.third-section .container .top p{
    font-size: 20px;
    font-weight: 400;
    line-height: 29.27px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2A2A2A;
}

.carousel-item {
    animation:  1s ease-in-out 0s 1 slideInFromLeft;
    display: flex;
    justify-content: center; /* Center align slides */
}

.carousel-inner {
    overflow: hidden;
}

.carousel-item{
    display: flex ;
}

.my-swiper-content {
    display: flex;
    flex-direction: column;
    text-align: right;
    width:100%;
}
.my-swiper-content h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32.52px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2A2A2A;
}
.my-swiper-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26.02px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #747474;
}
.hastag{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}
.hastag p{
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 26.02px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #808080;
}

.swiper-slide{
    display: flex;
    width: 100%;
    position: relative;
}
.absolute-swiper-img{
    position: absolute;
    bottom: 10%;
    right: 0;
    object-fit: cover;
    cursor: pointer;
    background: #fff;
    border-radius: 8px;
}
.carousel-control-prev{
    right: 15%;
    width: 50px !important;
    height: 50px !important;
    top: 105% !important;
    border-radius: 50% !important;
    background: #fff;
}
.carousel-control-next{
    right: 10% !important;
    width: 50px !important;
    height: 50px !important;
    top: 105% !important;
    background: #fff;
    border-radius: 50% !important;
}

section.fourth-section .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 16px;
}
section.fourth-section .container .card .card-body{
    display: block;
    flex-direction: column;

}
.inner-card-body{
    display: flex;
    flex-direction: column;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.primary{
    color: #03AED2 !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 26.02px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}
.no-padding{
    padding: 0 !important;
}
.bg-w{
    background: #fff;
    /* padding: 0 !important; */
    border: 1px solid #D9D9D9;
    border-radius: 16px;
    
    /* height: 100%; */
}

.bg-w img.cheveron {
    width: 50px;
    cursor: pointer;
}


    section.fourth-section .container .card{
    width: 100%;
    background: var(--card-bg);
    border: 0;
    height: 293px;
    border-radius: 16px;
}
section.fourth-section .container p{
    font-size: 14px;
    font-weight: 400;
    line-height: 22.76px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #808080;
    margin:0;
}
    section.fourth-section .container h5{
    font-size: 16px;
    margin:0;
    font-weight: 500;
    line-height: 26.02px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2A2A2A;
}
section.fourth-section .container h4{
    font-size: 17px;
    font-weight: 400;
    line-height: 29.27px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2A2A2A;
}

section.fifth-section .card{
    /* width: 400px; */
    margin: 8px;
    position: relative;
}

section.fifth-section .card button{
    position: absolute;
    bottom: -32px;
    right: 19%;
    color: #fff;
    outline: none;
    border: none;
    padding: 8px 16px;
    background: var(--primary-color);
    border-radius: 8px;
    font-size: 16px;
}

section.fifth-section .row{
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    align-items: center;
    gap: 0px;
    flex-wrap: wrap;
    
}
section.fifth-section .top p{
    font-size: 18px;
    font-weight: 400;
    line-height: 29.27px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2A2A2A;

}
    section.fifth-section .top h1{
    font-size: 32px;
    font-weight: 600;
    line-height: 52.03px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #2A2A2A;
}
    section.fifth-section .card{
    border-radius: 16px !important;
    padding-bottom: 16px;
    
}
.pro-price{
    color: #956034 !important;
    font-weight: 700 !important;
}

.price-col .card{
    height: 550px !important;
    padding: 0 !important;
}
.bg1{
    background: var(--bg1) !important;
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}

.bg2{
    background: var(--bg2) !important;
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}

.bg3{
    background: var(--bg3) !important;
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}

.bg1, .bg2 ,.bg3 p{
    font-size: 16px;
    font-weight: 500;
    line-height: 26.02px;
    text-align: right !important;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFF;
}
.bg3 p{
    font-size: 16px;
    font-weight: 500;
    line-height: 26.02px;
    text-align: right !important;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #808080;
}
.pricing1{
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
}
.pricing1 h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 20.02px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFF;
    display: flex;
    flex-direction: column;
}
.pricing1 h2 span:nth-child(2){
    font-size: 16px;
}

.pricing3{
    display: flex;
    justify-content: space-between;
}
.pricing3 h2{
    font-size: 24px;
    font-weight: 600;
    line-height: 39.02px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFF;
}

.pricing3 h2:nth-child(1){
    color: #2A2A2A;
    font-size: 24px;
    font-weight: 600;
    line-height: 39.02px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.pricing2 h2{
    font-size: 24px;
    font-weight: 600;
    line-height: 39.02px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFF;
}
section.fifth-section .card .card-body ul li{
    padding: 6px 10px;
    text-align: right;
    border: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}
section.fifth-section .card .card-body ul li p {
    margin: 0;
}
.card{
    border-color:#E5E5E5 !important;
}

section.sixth-section{
    padding: 100px 0;
}
section.sixth-section .container {
    /* background-image: url("cover-landing.jpg") !important; */
    background-size: cover !important;
    min-height: 700px !important;
    padding-top: 40px !important;
    /* Add opacity using a pseudo-element */
    position: relative;
    z-index: 0;
}
.cover-img{
    width:100%;
    height: 900px;
    object-fit: cover;
}

section.sixth-section .container{ 
    margin: 0;
    position: relative;
    backdrop-filter: blur(5px);
}
section.sixth-section .content{
    position: absolute;
    top: 20%;
    right: 10%;
}

    section.sixth-section .content p{
    font-size: 18px;
    font-weight: 500;
    line-height: 29.27px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
}
section.sixth-section .content h1{
font-size: 40px;
font-weight: 700;
line-height: 60px;
text-align: right;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: #FFFFFF;
}
section.sixth-section .content button{
    max-width: 294px;
    border: none;
    outline: none;
    padding: 16px 0;
    background: var(--primary-color);
    color: #fff;
   border-radius: 6px;
    cursor: pointer;
}

section.sixth-section .content{
    text-align: right;
   transform: scaleX(1);
   display: flex;
    flex-direction: column;
    max-width: 550px;
    margin: 150px 100px;
}
.sixth-section .container::before {
    content: "";
    position: absolute;
    /* top: 0; */
    left: 0;
    width: 100%;
    height: 900px;
    background: rgba(0, 0, 0, 0.1); /* Black overlay with 50% opacity */
    z-index: 1; /* Ensures it appears behind the content */
    pointer-events: none; /* Allows interaction with the content */
}

.sixth-section .content {
    position: relative; /* Keeps content above the overlay */
    z-index: 2; /* Ensures content appears above the overlay */
    color: white; /* Makes text readable over the dark overlay */
    text-align: center; /* Center-aligns text */
}


section.seventh-section{
    padding: 50px 16px;
    padding-bottom: 16px;
    text-align: right;
}
section.seventh-section .container{
    display: flex;
    gap: 16px;
}
section.seventh-section .container .left{
    background: linear-gradient(180deg, #F6F6F6 0%, #F4F4F4 100%);
    border-radius: 16px;
    padding: 16px;
    height: fit-content;
}

section.seventh-section .container .left .brand{
    color:#808080;
    font-size: 14px;
    font-weight: 500;
    line-height: 22.76px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
section.seventh-section .container .left .info{
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    /* justify-content: flex-end;  */
}
section.seventh-section .container .left .info p{
    margin: 0;
font-size: 14px;
font-weight: 400;
line-height: 22.76px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: #2A2A2A;
}
section.seventh-section .right, section.seventh-section .left{
    width: 50%;
}
section.seventh-section .right a{
    color:#2A2A2A ;
    text-decoration: none;
}
section.seventh-section .card{
    border-radius: 16px;
    padding: 16px;
}
section.seventh-section .logo{
    display: flex;
    align-items: center;
    padding: 30px 0;
    gap: 8px;
}
section.seventh-section .logo p{
font-size: 24px;
margin: 0;
font-weight: 700;
line-height: 39.02px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: #03AED2;
}
section.seventh-section ul{
    display: flex;
    /* grid-template-columns: repeat(4, 2fr); */
    gap: 8px;
    flex-wrap: wrap;
    max-width: 80%;
}
section.seventh-section ul li{
    list-style: none;
    padding: 6px 4px;
    width: fit-content;
    white-space: nowrap;
}
button{
    outline: none !important;
}
.rights span{
    color: #16B677 !important;
}
.rights{
margin-top: 16px;
font-size: 14px;
font-weight: 700;
line-height: 22.76px;
text-align: right;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: #555555;
}


 .myimage{
    width: 60% !important;
    background: #d2b6a5;
    height: 400px;
    border-radius: 20px;
    object-fit: contain;
    margin: 30px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.15); */
}
.user-img{
    width: 70px;
    width: 70px;
    border: 3px solid #c6a694;
    padding: 12px;
    border-radius: 50%;
    margin-block: 8px;
    background: #fff;
}
#phone {
    cursor: pointer;
}
#email {
    cursor: pointer;
}
/* ______________________________________________________________________________________________________ */
/* ______________________________________________________________________________________________________ */
/* ______________________________________________________________________________________________________ */
/* Responsive Design */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px !important;
    }
}
@media screen and (min-width: 1200px){
    section.sixth-section .special-container{
        max-width: 100% !important;
    }
}

@media screen and (min-width: 992px){
    section.sixth-section .special-container{
        max-width: 100% !important;
    }
}

@media screen and (min-width: 768px){
    section.sixth-section .special-container{
        max-width: 100% !important;
    }
}
@media screen and (min-width: 540px){
    section.sixth-section .special-container{
        max-width: 100% !important;
    }
}
@media screen and (max-width: 1000px) {
.navbar{
    display: none !important;
}
.btns{
    display: none !important;
}
#menuButton{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    padding-bottom: 10px;
}
}
    @media screen and (max-width: 1200px) {
    
    #menuButton{
        /* display: none; */
        /* display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: transparent;
        padding-bottom: 10px; */
    }
    .carousel-control-prev{
        right: 25%;
    }
    .carousel-control-next{
        right: 18% !important;
    }
    .swiper-slide{
        display: flex;
        flex-direction: column;
        max-width: 100%;
        align-items: center;
        text-align: center;
        position: relative;
    }
    header .container {
        padding: 4px 16px;
    }
 
    .header .menu ul {
        gap: 20px;
    }
    section.first-section {
        padding: 180px 16px;
        padding-bottom: 14px !important;
    }
    .first-section .container {
        flex-direction: column;
        gap: 20px;
    }
    .first-section .container h1 {
        font-size: 36px;
        line-height: 50px;
    }
    .first-section .container p {
        font-size: 16px;
        line-height: 24px;
    }
    .first-section .container .left {
        /* width:  100%; */
        flex: 1;
   
    }

    .first-section .container .left img {
        max-width: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width: 768px) {
    header .container {
        padding: 16px 16px;
    }
    .container .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }
    .myimage{
        width: 100% !important;
        background: #d2b6a5;
        height: 100%;
        border-radius: 20px;
        object-fit: contain;
        margin: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.15);
    }
    .btns{
        display: none !important;
    }
    .sidemenu-btns{
        display: flex !important;
    }
    #menuButton{
        display: block; 
    }
    .navbar{
        display: none !important;
    }
    section.seventh-section .container{
        flex-direction: column-reverse;
    }
    section.seventh-section .right, section.seventh-section .left{
        width: 100% ;
    }
    section.sixth-section .content{
        text-align: center;
        margin: 100px 16px;
    }
    .card-header h2{
        font-size: 18px;
    }
    .row-sm{
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .absolute-swiper-img {
        bottom: 0 !important;
    }
    .carousel-control-prev{
        right: 30%;
    }
    .carousel-control-next{
        right: 22% !important;
    }
    .swiper-slide{
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .header .menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .menu{
        display: none;
    }
    .header .btns {
        /* flex-direction: column; */
        gap: 5px;
    }
    .first-section .container h1 {
        font-size: 30px;
        line-height: 40px;
        text-align: center;
    }
    .first-section .container p {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }
    .first-section .container {
        align-items: center;
    }
    .first-section .container .left img {
        width: 100%;
    }
}


@media screen and (max-width: 480px) {
    .navbar{
        display: none !important;
    }
    .row-sm {
        display: flex !important;
        justify-content: center !important;
    }
    .carousel-control-prev{
        right: 40%;
    }
    .carousel-control-next{
        right: 25% !important;
    }
    .swiper-slide{
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .header .menu ul {
        display: none; /* Hide menu for smaller screens, replace with a burger menu if needed */
    }
    .first-section .container h1 {
        font-size: 24px;
        line-height: 30px;
    }
    .first-section .container p {
        font-size: 12px;
        line-height: 18px;
    }
    .header .btns button {
        font-size: 12px;
        padding: 0 12px;
    }
}
/* Entire scrollbar */
::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
    height: 5px; /* Height for horizontal scrollbar */
  }
  
  /* Track (background of the scrollbar) */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light grey background */
    border-radius: 5px; /* Rounded corners for the track */
  }
  
  /* Thumb (scroll handle) */
  ::-webkit-scrollbar-thumb {
    background: #03AED2; /* Darker grey on hover */
    border-radius: 5px; /* Rounded corners for the thumb */
  }
  /* Thumb hover */
  ::-webkit-scrollbar-thumb:hover {
    background:#555 !important; /* Dark grey handle */
  }
  