
@font-face {
    font-family: 'Cairo';
    src: url('../webfonts/Cairo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

html, body {
    font-family: Cairo, Calibri;
    font-weight: bold;
}


.header {
    height: 60vh;
    position: relative;
}

.header-title {
    color: #bbd4ce;
    position: absolute;
    width: 50%;
    left: 40%;
    right: 40%;
    top: 40%;
}

.header-details {
    font-size: 20px;
}
.pro-container{
    border: 1px solid #264e70;
    border-radius: 5px;
}
.pro-icon{
    font-size: 100px;
    color: #264e70;
}
.product-title{
    color: #264e70;
}
.product-details {
    color: #264e70;
    font-size: 20px;
}
.pro-container:hover .pro-icon {
    scale: 1.1;
}
.title {
    color: #264e70;
    cursor: pointer;
    text-decoration: none;
    font-size: 25px;
    font-weight: 500;
}
.feature{
    border: 1px solid #fdebd3;
    border-radius: 10px;
  box-shadow: 2px 2px #c4c4c4;
}
.feature-title{
    color: #264e70;
}
.feature-number{
    background-color: #264e70;
    width: 50px;
    height: 50px;
}
.check-icon{
    font-size: 22px;
    color: #f9b4ab;
}
.price-container{
    border-radius: 8px;
    background-color: #bbd4ce;
    border: 1px solid #679186;
}
.buy-btn{
    background-color: #f9b4ab !important;
    color: #264e70 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}
.buy-btn:hover{
    background-color: #264e70 !important;
    color: #f9b4ab !important;
}
.about-img{
    display: block;
}
.footer-bg{
    background-color: #264e70 !important;
}
.content-icon{
    color: #f9b4ab;
}
.img-footer-logo{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
/* overlay */

#popupDialog {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 10px;
    width: 50%;
}
.colse-icon{
    font-size: 18px;
    cursor: pointer;
}
.pop-header{
    background-color: #fdebd3;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.pop-header-title{
    color: #264e70;
}
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
select {
    border-radius: 8px;
    border: 1px solid #264e70 !important; 
    height: 40px;
}
select:focus {
    border-color: #f9b4ab !important; 
    box-shadow: 0 0 0 1px #ccc !important; 
}

.form-control { 
    border: 1px solid #264e70 !important; 
}
.form-control:focus {
    border-color: #f9b4ab !important; 
    box-shadow: 0 0 0 1px #ccc !important; 
}
.btn-send{
    background-color: #264e70 !important;
    color: #f9b4ab !important;
    height: 50px;
    border-radius: 15px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 10px;
}
  
  /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: grey;
    }
  .row {
    margin-right: 0px !important; 
    margin-left: 0px !important; 
}
@media only screen and (max-width: 1115px) {
    .about-img{
        display: none;
    }
    #popupDialog{
        width: 70%;
    }
  }
@media only screen and (max-width: 721px) {
    .header-title {
        width: 80%;
        left: 20%;
        right: 20%;
        top: 20%;
    }
}
  #scrolling-area {
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    direction: ltr;
  }
  
  #scrolling-element-inside {
    direction: ltr;
  }
  
  body {
    margin: 0;
    overflow: auto;
  }

.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: #264e70;
    color: white;
    border: none;
    cursor: pointer;
    display: none;
}