@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
:root{
    scroll-behavior: smooth;
}

body {
        font-family: "Open Sans", sans-serif;
        color: #431f03;
    }
    
    a {
        /* color: #ffb700;*/
        color: #ffe500;
        text-decoration: none;
    }
    
    a:hover {
        color: #964d0ab8;
        text-decoration: none;
    }
    
    h1,h2,h3,h4,h5,h6 {
        font-family: "Raleway", sans-serif, "Brush Script";
    }


    /*--- Preloader---*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #1100ff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #37517e;
    border-top-color: #ffe600;
    border-bottom-color: #fd9104;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
    /*--# Back to top button--*/
    
    .back-to-top {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        right: 15px;
        bottom: 15px;
        z-index: 996;
        background: #0000ea;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        transition: all 0.4s;
    }
    
    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }
    
    .back-to-top:hover {
        background: #ffff00;
        color: #fff;
    }
    
    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }
  

/*** Topbar Start ***/
.top-bg{
    background: #0000ea !important;
}
.topbar .top-info {
    letter-spacing: 1px;
}
.topbar .top-info a{
    color: #FFFF;
    font-size: 18px;
    font-weight: bold;
}

.topbar i{
    color: #ffffff;
}
.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
   
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 10s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/

/* Font Awesome animations */
.fa-spin {
    animation: spin 4s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.fa-flip {
    animation: flip 3s ease-in-out infinite;
}
@keyframes flip {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(-1); }
}
.fa-shake {
    animation: shake 1s infinite;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.fa-fade {
    animation: fade 2s linear infinite;
}
@keyframes fade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.fa-beat {
    animation: beat 1s ease-in-out infinite;
}
@keyframes beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Text and link styling */
#topbar span {
    margin-left: 10px;
}

.social-links a, .header-social-links a {
    color: #000;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover, .header-social-links a:hover {
    /*color: hsl(58, 100%, 50%);*/
    color: #061af7;
}
/*Center-align icons for header-social-links */
.header-social-links i:hover{
    color: #061af7;
}

.header-social-links {
    justify-content: center; 
    align-items: center; 
}

@media (max-width: 768px) {
    .social-links {
        display: none;
    }
}
  /*--# Header Social Links--*/
    
  .header-social-links {
    margin-left: 20px;
    border-left: 1px solid #0000ea;
}

.header-social-links a {
    color: #0000ea;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
    padding-left: 20px;
}

.header-social-links a i {
    line-height: 0;
    size: 12px;
}

.header-social-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .header-social-links {
        padding: 0 15px 0 0;
        border-left: 0;
    }
}


/*--# Header--*/

/*#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0);
}*/
#header{
    background: #fff;
    border-bottom: 2px solid #eceefe;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
    margin-right: 6px;
    /*width: 60vw;
    height: 35vh;*/
}

  #header .logo a {
    color: #fff;
  }

  
.scrolled-offset {
    margin-top: 70px;
}
    
        
    .navbar {
        padding: 0;
    }
    
    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    
    .navbar li {
        position: relative;
    }
    
    .navbar a,.navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 0 10px 30px;
        /*font-family: "Nunito", sans-serif;*/
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #061af7;
        white-space: nowrap;
        transition: 0.3s;
    }
    
    .navbar a i,.navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }
    
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #aa6a04;
    }
    
    
    .navbar .getstarted, .navbar .getstarted:focus {
        background: #f9ed00;
        padding: 9px 25px;
        margin-left: 30px;
        border-radius: 5px;
        font-weight: 600;
        /*color: #fff;*/
        color: #ff0000;
      }
      .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
        color: #fff;
        background: #3b4ef8;
      }
    
    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 24px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }
    
    .navbar .dropdown ul li {
        min-width: 200px;
    }
    
    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 14px;
        text-transform: none;
        color: #545454;
    }
    
    .navbar .dropdown ul a i {
        font-size: 12px;
    }
    
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: #e96b56;
    }
    
    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    
    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }
    
    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
    
    @media (max-width: 1366px) {
        .navbar .dropdown .dropdown ul {
            left: -90%;
        }
        .navbar .dropdown .dropdown:hover>ul {
            left: -100%;
        }
    }

   
    
    .mobile-nav-toggle {
        color: #545454;
        font-size: 28px;
        cursor: pointer;
        display: none;
        line-height: 0;
        transition: 0.5s;
    }
    
    .mobile-nav-toggle.bi-x {
        color: #fff;
    }
    
    @media (max-width: 991px) {
        .mobile-nav-toggle {
            display: block;
        }
        .navbar ul {
            display: none;
        }
    }
    
    .navbar-mobile {
        position: fixed;
        overflow: hidden;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(59, 59, 59, 0.9);
        transition: 0.3s;
        z-index: 999;
    }
    
    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }
    
    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #545454;
    }
    
    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover>a {
        color: #e96b56;
    }
    
    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }
    
    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }
    
    .navbar-mobile .dropdown ul li {
        min-width: 200px;
    }
    
    .navbar-mobile .dropdown ul a {
        padding: 10px 20px;
    }
    
    .navbar-mobile .dropdown ul a i {
        font-size: 12px;
    }
    
    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover>a {
        color: #e96b56;
    }
    
    .navbar-mobile .dropdown>.dropdown-active {
        display: block;
    }
    
   /**Carousels**/
.carousel {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.carousel-item {
    display: none;
    position: relative;
}

.carousel-item img {
    width: 100%;
    vertical-align: middle;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.active {
    display: block;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next {
    right: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
table {
   /* background-color: #0000b3;*/
    background-color: #fff;
    width: 100%;
    border-collapse: collapse;

    background: rgba(255, 255, 255, 0.2); 
    border-radius: 10px; 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    padding: 20px; 
    width: 100%; 
    text-align: center;    
}
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    color: #fff;
}
td span {
	font-size: 25px;
	font-weight: 400;
	display: inline-block;
	margin-top: 10px;
    color: #ff0000;
}

td a {
    color: #fff;
}
td a:hover{
    color: #fff;
    font-size: 48px;
}
table img{
    transition: all 0.3s ease-in-out;
    width: 100px;
    height: 100px;
    filter: grayscale(100%);
}
table img:hover{
    filter: none;
    transform: scale(1.1);
}

.disclaimer { 
    /*border: 1px solid #ccc; 
    padding: 15px; 
    background-color: #f9f9f9; 
    font-size: 14px; 
    color: #333; */
    color: #000;
    background: rgba(255, 255, 255, 0.2); 
    border-radius: 10px; 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.3); 
     padding: 20px; 
     width: 100%; 
     text-align: center;
}

#regForm .disclaimer{
    color: #000;
    border: 2px solid;
    border-image-source: linear-gradient(to right, #a76e0adc, #FFFF00, #0000ea, #fff);
    border-image-slice: 1;
    padding: 20px; 

}

.branch .disclaimer{
    background: rgba(255, 255, 255, 0.2); 
    border-radius: 10px; 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
     /*border: 2px solid #FFFF00;*/
     border: 2px solid;
     border-image-source: linear-gradient(to right, #a76e0adc, #FFFF00, #0000ea);
     border-image-slice: 1;
     padding: 20px; 
     width: 100%; 
     text-align: center;
}
.branch p{
    font-size: 14px;
    color: #000;
    padding-left: 4px;
}
.branch h3{
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;

}
.branch i{
    font-size: 20px;
    color: rgba(231, 139, 33, 0.977);
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
.branch p i{
    font-size: 20px;
    color: rgba(231, 139, 33, 0.977);
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
sup{
    color: #ed3c0d;
    font-size: 14px;
    font-weight: 400;
    padding: 0;
}
.branch sup{
    color: #000;
    font-size: 12px;
}
.branch a{
    color: #0000ea;
    font-weight: bold;
}
/**next of kin validation**/
.error-message {
    color: red;
    font-size: 0.875em;
    margin-top: 0.25em;
}
.form-group.invalid .form-control {
    border-color: red;
}
.kin-fieldset {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}
.remove-field {
    position: absolute;
    top: 10px;
    right: 10px;
}
/* Request Form */

.request-form {
	background-color: #0000b3;
	padding: 40px 0px;
	color: #fff;
}

.request-form h2 {
	font-size: 45px;
	font-weight: 600;
    color: #ffff00;
}

.request-form span {
	font-size: 15px;
	font-weight: 400;
	display: inline-block;
	margin-top: 10px;
}

.request-form a.border-button {
	margin-top: 12px;
	float: right;
}
.request-form a.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}

.request-form a.border-button:hover {
	background-color: #fff;
	color: #a4c639;
}
/* Partners Style */

.contact-partners {
	margin-top: -8px!important;
}

.partners {
	margin-top: 140px;
	background-color: #f7f7f7;
	padding: 60px 0px;
}

.partners .owl-item {
	text-align: center;
	cursor: pointer;
}

.partners .partner-item img {
	max-width: 156px;
	margin: auto;
}

/**SECTION---***/

.section-header {
        text-align: center;
        padding-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        margin: 0;
        color: #4154f1;
        text-transform: uppercase;
    }
    
    .section-header p {
        margin: 10px 0 0 0;
        padding: 0;
        font-size: 38px;
        line-height: 42px;
        font-weight: 700;
        color: #012970;
    }
    
    @media (max-width: 768px) {
        .section-header p {
            font-size: 28px;
            line-height: 32px;
        }
    }
       
    section {
        padding: 60px 0;
        overflow: hidden;
    }
    
    /*.section-bg {
        background-color: #f1f7fd;
    }
    */
    .section-title {
        text-align: center;
        padding-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: #000;
    }
    
    .section-title h2::before {
        content: '';
        position: absolute;
        display: block;
        width: 120px;
        height: 1px;
        background: #ddd;
        bottom: 1px;
        left: calc(50% - 60px);
    }
    
    .section-title h2::after {
        content: '';
        position: absolute;
        display: block;
        width: 40px;
        height: 3px;
        background: #1977cc;
        bottom: 0;
        left: calc(50% - 20px);
    }
    
    .section-title p {
        margin-bottom: 0;
    }
    /*Breadcrumbs*/
    
    .breadcrumbs {
        padding: 20px 0 20px 0;
        /*background: #4820da;*/
        background: #f7f7f7;
        border-bottom: 1px solid #ededed;
        margin-bottom: 40px;
    }
    /*
    .breadcrumbs h2 {
        font-size: 28px;
        font-weight: 700;
        color: #daa620;
    }*/
    
    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 0 5px 0;
        margin: 0;
        font-size: 14px;
    }
    
    .breadcrumbs ol li+li {
        padding-left: 10px;
    }
    
    .breadcrumbs ol li+li::before {
        display: inline-block;
        padding-right: 10px;
        color: #daa620;
        content: "/";
    }


        
    /*--Breadcrumb ---*/

.breadcrumb-option {
    width: 100%;
    height: auto;
	/*padding: 70px 0 65px;
    background-image: url(/zoghorisacco/assets/img/breadcrumb/savings.png);*/
    background-image: url(/zoghorisacco.com/zoghorisacco/assets/img/slide/saveborrowinvest.png);
    background-size: cover; /* Ensures the image covers the entire breadcrumb area */
    background-position: center;    /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
   padding: 10px 15px; /* Adds padding to the breadcrumb*/

}
.breadcrumb-option img{
    width: 100%;
    vertical-align: middle;
    z-index: -1;
}
.breadcrumb-option.contact-breadcrumb {
	padding: 70px 0 260px;
}

.breadcrumb-option.contact-breadcrumb h2 {
	margin-bottom: 0;
}

.breadcrumb__text h2 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.breadcrumb__links p {
	font-size: 25px;
	color: #ffffff;
	margin-right: 18px;
	display: inline-block;
	position: relative;
    z-index: 2;
}

.breadcrumb__links a:after {
	position: absolute;
	right: -15px;
	top: 0;
	content: "";
	font-family: "FontAwesome";
}

.breadcrumb__links span {
	font-size: 15px;
	color: #1100f9;
	display: inline-block;
}
    /*--- Featured---*/    
    .featured {
        position: relative;
        z-index: 2;
    }
    
    .featured .icon-box {
        padding: 40px 30px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        background: #fff;
        transition: all ease-in-out 0.3s;
        height: 100%;
    }
    
    .featured .icon-box i {
        color: #0000ea;
        font-size: 42px;
        margin-bottom: 15px;
        display: block;
        line-height: 0;
    }
    
    .featured .icon-box h3 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 20px;
    }
    
    .featured .icon-box p {
        color: #000000;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .featured .icon-box:hover {
        background: #cc7606;
        /* background: #e96b56;         
        background-image: url(/zoghorisacco/assets/img/clients/values.png);*/
    }
   
    
    .featured .icon-box:hover i,
    .featured .icon-box:hover p {
        color: #fff;
    }

    /*--- Choose ----*/

    .spad {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .choose {
        padding-bottom: 20px;
        padding-top: 80px;
    }
    
    .choose__item {
        background: #ffffff;
        -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 2px;
        text-align: center;
        padding: 0 30px 60px;
        margin-bottom: 80px;
    }
    
    .choose__item img {
        margin-top: -40px;
    }
    
    .choose__item h5 {
        font-size: 20px;
        color: #323232;
        font-weight: 700;
        margin-bottom: 12px;
        margin-top: 35px;
    }
    
    .choose__item p {
        margin-bottom: 0;
    }
    .choose__item:hover{
        background: #ffff00;
        color: #0000ea;
        font-size: 32px;
        
    }


    /*** Loan product about section***/
.loanp .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.loanp .about-img .about-img-inner {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;

}

.loanp .about-img .about-experience {
    position: absolute;
    top: 125px; 
    left: -125px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

#products .fa-chevron-down:hover{
    direction: ltr;
}


    /*---- About---*/
    .about {
       color: #ffffff;
        content: "";
        background: linear-gradient(rgb(0, 0, 234) 100%,rgb(44, 63, 120) 47%,rgb(5, 5, 4) 25%);
        /*transform: skewY(-1deg);90deg,*/

    }
    
    .about .container {
        position: relative;
        z-index: 10;
    }
    
    .about .content {
        padding: 30px 30px 30px 0;
    }
    
    .about .content h3 {
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 30px;
    }
    
    .about .content p {
        margin-bottom: 30px;
    }
    
    .about .content .about-btn {
        padding: 8px 30px 9px 30px;
        color: #fff;
        border-radius: 50px;
        transition: 0.3s;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        border: 2px solid #ffff00;
        /*border: 2px solid #0a22f6;*/
    }
    
    .about .content .about-btn i {
        font-size: 16px;
        padding-left: 5px;
    }
    
    .about .content .about-btn:hover {
        background: #0000ea;
    }
    
    .about .icon-boxes .icon-box {
        margin-top: 30px;
    }
    
    .about .icon-boxes .icon-box i {
        font-size: 40px;
        color: #0a22f6;
        margin-bottom: 10px;
    }
    
    .about .icon-boxes .icon-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    
    .about .icon-boxes .icon-box p {
        font-size: 15px;
        color: #848484;
    }
    
    @media (max-width: 1200px) {
        .about .content {
            padding-right: 0;
        }
    }
    
    @media (max-width: 768px) {
        .about {
            text-align: center;
        }
    }

    .sasra img{
        height: 15vh;
        width: 18vw;
    }

    /*--- HISTORY---*/
    
   #history .history {
        overflow: hidden;
    }
    
    #history .history .nav-tabs {
        border: 0;
    }
    
    #history .history .nav-link {
        border: 0;
        padding: 12px 15px 12px 0;
        transition: 0.3s;
        color: #2c4964;
        border-radius: 0;
        border-right: 2px solid #ebf1f6;
        font-weight: 600;
        font-size: 15px;
    }
    
    #history .history .nav-link:hover {
        color: #1977cc;
    }
    
    #history .history .nav-link.active {
        color: #1977cc;
        border-color: #1977cc;
    }
    
    #history .history .tab-pane.active {
        -webkit-animation: fadeIn 0.5s ease-out;
        animation: fadeIn 0.5s ease-out;
    }
    
    #history .history .details h3 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #2c4964;
    }
    #history .section-title h2{
        color: #000;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    #history .history .details p {
        color: #000;
    }
    
    #history .history .details p:last-child {
        margin-bottom: 0;
    }
    
    @media (max-width: 992px) {
        #history .history .nav-link {
            border: 0;
            padding: 15px;
        }
        #history .history .nav-link.active {
            color: #fff;
            background: #1977cc;
        }
    }

/*--------------------- MILESTONES -----------------------
.milestones .set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.milestones{
    background-image: url(/assets/img/hero-bg.png);
    background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}*/
.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}


.milestones .section-title h2 {
	color: #0018f3;
}

.milestones .section-title h4 {
	color: #2206f4;
}

.milestones .section-title span{
    font-weight: 900;
    color: #ad0000;
    font-size: 24px;
}
.history__img img {
	border-radius: 2px;
	width: 100%;
}

.history__text {
	position: relative;
	height: 460px;
	padding-left: 44px;
	padding-right: 15px;
	overflow-y: auto;
}

.history__text:before {
	position: absolute;
	left: 9px;
	top: 0;
	height: 100%;
	width: 2px;
	background: rgba(255, 255, 255, 0.1);
	content: "";
}

.history__item {
	position: relative;
	margin-bottom: 55px;
}

.history__item .history__indicator {
	position: absolute;
	left: -44px;
	top: 2px;
	height: 20px;
	width: 20px;
	background: rgba(255, 255, 255, 0.1);
	content: "";
	border-radius: 50%;
}

.history__item .history__indicator:after {
	position: absolute;
	left: 5px;
	top: 5px;
	height: 10px;
	width: 10px;
	background: #88C417;
    /*background: #0018f3;*/
	content: "";
	border-radius: 50%;
}

.history__indicator:hover {
    background: rgba(255, 255, 255, 0.3);
}

.history__indicator:after:hover {
    background: #ff0000; /* Change to red */
}


.history__item span {
	font-size: 24px;
    color:#ff0000;
}

.history__item h4 {
	color:#0004ff !important;
	font-weight: 700;
	margin-top: 4px;
	margin-bottom: 10px;
}

.milestones .history__item p {
	color:#000000 !important;
	margin-bottom: 0;
}

.history__date {
    position: absolute;
    left: -80px;
    top: 0;
    color: white;
    font-weight: bold;
    font-size: 14px;
}


@keyframes growLine {
    from { height: 0; }
    to { height: 100%; }
}

.history__text:before {
    animation: growLine 1s ease-in-out;
}

@media (max-width: 600px) {
    .history__text:before {
        left: 5px;
        width: 1px;
    }
    
    .history__item {
        margin-bottom: 30px;
    }

    .history__indicator {
        left: -30px;
    }
}







    /*--SERVICES SECTION---*/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2) ;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item .service-img::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
    
}

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}
.service-content{
    /*border: 1px solid #ccc; 
    border-radius: 10px;
    padding: 15px; 
    background-color: #f9f9f9; 
    font-size: 14px; 
    color: #333; */

    background: rgba(255, 255, 255, 0.2); 
    border: 1px solid #ccc; 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.3); 
     padding: 20px; 
     width: 100%; 
     text-align: center;
}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #FFFF00;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: #cc7606;
    height: 100%;

}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service-item .service-content-inner h5{
color: #0004ff !important;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-secondary);
}

.service-content-inner .disclaimer p, li{
    text-align: justify;
}

.custom-list { 
    list-style-type: none; /* Remove default bullets */ 
    padding: 0;
 } 
    .custom-list li { 
        background: #f0f0f0; /* Background color */ 
        margin: 5px 0; /* Space between items */ 
        padding: 10px; /* Padding inside items */ 
        border-radius: 5px; /* Rounded corners */ 
    } 
    .custom-list li::before { 
        content: "✔"; /* Custom bullet */ 
        color: rgb(176, 106, 7); /* Bullet color */ 
        margin-right: 10px; /* Space between bullet and text */
    }


/*** Section Title Start ***/
.service .section-title {
    /*max-width: 900px;*/
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
  /*** Service End ***/

  /**TESTIMONIAL CSS**/
    .testimonial-container {
        display: flex;
        overflow: hidden;
        margin: 0 auto;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background-color: #c2bdb3;
        width: 50%;
        height: 50%;
    }
    
    .testimonial {
        min-width: 100%;
        box-sizing: border-box;
        padding: 16px;
        text-align: center;
    }
    
    .testimonial img.avatar {
        border-radius: 50%;
        width: 90px;
        margin-bottom: 10px;
    }
    
    .testimonial span {
        font-size: 20px;
        font-weight: bold;
        display: block;
    }
    .youtube-widget {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        background: #000;
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .youtube-widget iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
/*--- Counter----*/

.counter {
	padding-top: 80px;
	padding-bottom: 60px;
}

.counter__item {
	text-align: center;
	margin-bottom: 30px;
}

.counter__item .counter__number {
	margin-top: 10px;
}

.counter__item .counter__number h2 {
	font-size: 40px;
	color: #323232;
	font-weight: 700;
	display: inline-block;
}

.counter__item .counter__number span {
	font-size: 40px;
	color: #323232;
	font-weight: 700;
	display: inline-block;
}


    /*------# Counts--*/
    
    .counts .count-box {
        box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
        padding: 30px;
        width: 100%;
    }
    
    .counts .count-box i {
        display: block;
        font-size: 30px;
        color: #e96b56;
        float: left;
        line-height: 0;
    }
    
    .counts .count-box span {
        font-size: 42px;
        line-height: 24px;
        display: block;
        font-weight: 700;
        color: #545454;
        margin-left: 50px;
    }
    
    .counts .count-box p {
        padding: 30px 0 0 0;
        margin: 0;
        font-family: "Raleway", sans-serif;
        font-size: 14px;
    }
    
    .counts .count-box a {
        font-weight: 600;
        display: block;
        margin-top: 20px;
        color: #7a7a7a;
        font-size: 15px;
        font-family: "Poppins", sans-serif;
        transition: ease-in-out 0.3s;
    }
    
    .counts .count-box a:hover {
        color: #a1a1a1;
    }




    /*----# Our Clients----*/
    
    .clients .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }
    
    .clients .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        background: #00008b;
        opacity: 1;
        border: 1px solid #e96b56;
    }
    
    .clients .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #e96b56;
    }
    
    .clients .swiper-slide img {
        /* opacity: 0.5;*/
        transition: 0.3s;
        /*filter: grayscale(100);*/
    }
    
    .clients .swiper-slide img:hover {
        filter: none;
        opacity: 1;
    }
    
    .card-img-top {
        border-radius: 50%;
    }

    /*----# Team----*/
    
    .team {
        background: #fff;
        padding: 60px 0 30px 0;
      }
      
      .team .member {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
      }
      
      .team .member .pic {
        border-radius: 4px;
        overflow: hidden;
      }
      
      .team .member img {
        transition: all ease-in-out 0.4s;
      }
      
      .team .member:hover img {
        transform: scale(1.1);
      }
      
      .team .member .member-info {
        position: absolute;
        bottom: -48px;
        left: 20px;
        right: 20px;
        /*background: linear-gradient(360deg, #5c768d 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%);*/
        background: linear-gradient(360deg, #061af7 45%, rgba(254, 212, 1, 0.9) 35%, rgb(255, 146, 4) 10%);
        padding: 15px 0;
        border-radius: 4px;
        
      }
      
      .team .member h4 {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 16px;
        color: #fff;
        position: relative;
        padding-bottom: 10px;
      }
      
      .team .member h4::after {
        content: '';
        position: absolute;
        display: block;
        width: 50px;
        height: 1px;
        background: #fff;
        bottom: 0;
        left: calc(50% - 25px);
      }
      
      .team .member span {
        font-style: italic;
        display: block;
        font-size: 13px;
        color: #fff;
      }
      
      .team .member .social {
        margin-top: 15px;
      }
      
      .team .member .social a {
        transition: color 0.3s;
        color: #fff;
      }
      
      .team .member .social a:hover {
        color: #9eccf4;
      }
      
      .team .member .social i {
        font-size: 16px;
        margin: 0 2px;
      }
      
      @media (max-width: 992px) {
        .team .member {
          margin-bottom: 100px;
        }
      }
      

    /*---# Recent Blog Posts---*
    
    .recent-blog-posts .post-box {
        box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
        transition: 0.3s;
        height: 100%;
        overflow: hidden;
        padding: 30px;
        border-radius: 8px;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .recent-blog-posts .post-box .post-img {
        overflow: hidden;
        margin: -30px -30px 15px -30px;
        position: relative;
    }
    
    .recent-blog-posts .post-box .post-img img {
        transition: 0.5s;
    }
    
    .recent-blog-posts .post-box .post-date {
        font-size: 16px;
        font-weight: 600;
        color: rgba(1, 41, 112, 0.6);
        display: block;
        margin-bottom: 10px;
    }
    
    .recent-blog-posts .post-box .post-title {
        font-size: 24px;
        color: #012970;
        font-weight: 700;
        margin-bottom: 18px;
        position: relative;
        transition: 0.3s;
    }
    
    .recent-blog-posts .post-box .readmore {
        display: flex;
        align-items: center;
        font-weight: 600;
        line-height: 1;
        transition: 0.3s;
    }
    
    .recent-blog-posts .post-box .readmore i {
        line-height: 0;
        margin-left: 4px;
        font-size: 18px;
    }
    
    .recent-blog-posts .post-box:hover .post-title {
        color: #4154f1;
    }
    
    .recent-blog-posts .post-box:hover .post-img img {
        transform: rotate(6deg) scale(1.2);
    }
  */
  .recent-blog-posts {
    padding: 60px 0;
}
.recent-blog-posts .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}
.recent-blog-posts .post-box {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}
.recent-blog-posts .post-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.recent-blog-posts .post-date {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin: 15px 20px;
}
.recent-blog-posts .post-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 20px 15px;
    color: #333;
}
.recent-blog-posts .readmore {
    display: inline-flex;
    align-items: center;
    color: #0d6efd;
    font-weight: 500;
    margin: 0 20px 20px;
    text-decoration: none;
}
.recent-blog-posts .readmore i {
    margin-left: 5px;
}
.recent-blog-posts .readmore:hover {
    color: #0056b3;
}
    
/*----  Contact ---*/
.contact .info {
    /*border-top: 3px solid #47b2e4;*/
    border-bottom: 3px solid #ffff00;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  }
  
  .contact .info i {
    font-size: 20px;
    color: rgba(231, 139, 33, 0.977);
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0d00fa;
  }
  
  .contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #000;
  }
  
  .contact .info .email p {
    padding-top: 5px;
  }
  
  .contact .info .social-links {
    padding-left: 60px;
  }
  
  .contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
  }
  
  .contact .info .social-links a:hover {
    background: #47b2e4;
    color: #fff;
  }
  
  .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: #47b2e4;
    color: #fff;
  }
  
  .contact .php-email-form {
    width: 100%;
    /*border-top: 3px solid #47b2e4;*/
    border-bottom: 3px solid #0000ff;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }
  
  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }
  
  .contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .error-message br + br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact .php-email-form label {
    padding-bottom: 8px;
  }
  
  .contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #47b2e4;
  }
  
  .contact .php-email-form input {
    height: 44px;
  }
  
  .contact .php-email-form textarea {
    padding: 10px 12px;
  }
  
  .contact .php-email-form button[type="submit"] {
    background: #061af7;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }
  
  .contact .php-email-form button[type="submit"]:hover {
    background: #0000ff;
  }
  
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  


    .blog {
        padding: 40px 0 20px 0;
    }
    
    .blog .entry {
        padding: 30px;
        margin-bottom: 60px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .entry .entry-img {
        max-height: 440px;
        margin: -30px -30px 20px -30px;
        overflow: hidden;
    }
    
    .blog .entry .entry-title {
        font-size: 28px;
        font-weight: bold;
        padding: 0;
        margin: 0 0 20px 0;
    }
    
    .blog .entry .entry-title a {
        color: #545454;
        transition: 0.3s;
    }
    
    .blog .entry .entry-title a:hover {
        color: #e96b56;
    }
    
    .blog .entry .entry-meta {
        margin-bottom: 15px;
        color: #bababa;
    }
    
    .blog .entry .entry-meta ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    
    .blog .entry .entry-meta ul li+li {
        padding-left: 20px;
    }
    
    .blog .entry .entry-meta i {
        font-size: 16px;
        margin-right: 8px;
        line-height: 0;
    }
    
    .blog .entry .entry-meta a {
        color: #777777;
        font-size: 14px;
        display: inline-block;
        line-height: 1;
    }
    
    .blog .entry .entry-content p {
        line-height: 24px;
    }
    
    .blog .entry .entry-content .read-more {
        -moz-text-align-last: right;
        text-align-last: right;
    }
    
    .blog .entry .entry-content .read-more a {
        display: inline-block;
        background: #e96b56;
        color: #fff;
        padding: 6px 20px;
        transition: 0.3s;
        font-size: 14px;
        border-radius: 4px;
    }
    
    .blog .entry .entry-content .read-more a:hover {
        background: #ec7f6d;
    }
    
    .blog .entry .entry-content h3 {
        font-size: 22px;
        margin-top: 30px;
        font-weight: bold;
    }
    
    .blog .entry .entry-content blockquote {
        overflow: hidden;
        background-color: #fafafa;
        padding: 60px;
        position: relative;
        text-align: center;
        margin: 20px 0;
    }
    
    .blog .entry .entry-content blockquote p {
        color: #444444;
        line-height: 1.6;
        margin-bottom: 0;
        font-style: italic;
        font-weight: 500;
        font-size: 22px;
    }
    
    .blog .entry .entry-content blockquote::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background-color: #545454;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .blog .entry .entry-footer {
        padding-top: 10px;
        border-top: 1px solid #e6e6e6;
    }
    
    .blog .entry .entry-footer i {
        color: #a1a1a1;
        display: inline;
    }
    
    .blog .entry .entry-footer a {
        color: #616161;
        transition: 0.3s;
    }
    
    .blog .entry .entry-footer a:hover {
        color: #e96b56;
    }
    
    .blog .entry .entry-footer .cats {
        list-style: none;
        display: inline;
        padding: 0 20px 0 0;
        font-size: 14px;
    }
    
    .blog .entry .entry-footer .cats li {
        display: inline-block;
    }
    
    .blog .entry .entry-footer .tags {
        list-style: none;
        display: inline;
        padding: 0;
        font-size: 14px;
    }
    
    .blog .entry .entry-footer .tags li {
        display: inline-block;
    }
    
    .blog .entry .entry-footer .tags li+li::before {
        padding-right: 6px;
        color: #6c757d;
        content: ",";
    }
    
    .blog .entry .entry-footer .share {
        font-size: 16px;
    }
    
    .blog .entry .entry-footer .share i {
        padding-left: 5px;
    }
    
    .blog .entry-single {
        margin-bottom: 30px;
    }
    
    .blog .blog-author {
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .blog-author img {
        width: 120px;
        margin-right: 20px;
    }
    
    .blog .blog-author h4 {
        font-weight: 600;
        font-size: 22px;
        margin-bottom: 0px;
        padding: 0;
        color: #545454;
    }
    
    .blog .blog-author .social-links {
        margin: 0 10px 10px 0;
    }
    
    .blog .blog-author .social-links a {
        color: rgba(84, 84, 84, 0.5);
        margin-right: 5px;
    }
    
    .blog .blog-author p {
        font-style: italic;
        color: #b7b7b7;
    }
    
    .blog .blog-comments {
        margin-bottom: 30px;
    }
    
    .blog .blog-comments .comments-count {
        font-weight: bold;
    }
    
    .blog .blog-comments .comment {
        margin-top: 30px;
        position: relative;
    }
    
    .blog .blog-comments .comment .comment-img {
        margin-right: 14px;
    }
    
    .blog .blog-comments .comment .comment-img img {
        width: 60px;
    }
    
    .blog .blog-comments .comment h5 {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .blog .blog-comments .comment h5 a {
        font-weight: bold;
        color: #444444;
        transition: 0.3s;
    }
    
    .blog .blog-comments .comment h5 a:hover {
        color: #e96b56;
    }
    
    .blog .blog-comments .comment h5 .reply {
        padding-left: 10px;
        color: #545454;
    }
    
    .blog .blog-comments .comment h5 .reply i {
        font-size: 20px;
    }
    
    .blog .blog-comments .comment time {
        display: block;
        font-size: 14px;
        color: #6e6e6e;
        margin-bottom: 5px;
    }
    
    .blog .blog-comments .comment.comment-reply {
        padding-left: 40px;
    }
    
    .blog .blog-comments .reply-form {
        margin-top: 30px;
        padding: 30px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .blog-comments .reply-form h4 {
        font-weight: bold;
        font-size: 22px;
    }
    
    .blog .blog-comments .reply-form p {
        font-size: 14px;
    }
    
    .blog .blog-comments .reply-form input {
        border-radius: 4px;
        padding: 10px 10px;
        font-size: 14px;
    }
    
    .blog .blog-comments .reply-form input:focus {
        box-shadow: none;
        border-color: #f5bab0;
    }
    
    .blog .blog-comments .reply-form textarea {
        border-radius: 4px;
        padding: 10px 10px;
        font-size: 14px;
    }
    
    .blog .blog-comments .reply-form textarea:focus {
        box-shadow: none;
        border-color: #f5bab0;
    }
    
    .blog .blog-comments .reply-form .form-group {
        margin-bottom: 25px;
    }
    
    .blog .blog-comments .reply-form .btn-primary {
        border-radius: 4px;
        padding: 10px 20px;
        border: 0;
        background-color: #545454;
    }
    
    .blog .blog-comments .reply-form .btn-primary:hover {
        background-color: #616161;
    }
    
    .blog .blog-pagination {
        color: #878787;
    }
    
    .blog .blog-pagination ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .blog .blog-pagination li {
        margin: 0 5px;
        transition: 0.3s;
    }
    
    .blog .blog-pagination li a {
        color: #545454;
        padding: 7px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .blog .blog-pagination li.active,
    .blog .blog-pagination li:hover {
        background: #e96b56;
    }
    
    .blog .blog-pagination li.active a,
    .blog .blog-pagination li:hover a {
        color: #fff;
    }
    
    .blog .sidebar {
        padding: 30px;
        margin: 0 0 60px 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .blog .sidebar .sidebar-title {
        font-size: 20px;
        font-weight: 700;
        padding: 0 0 0 0;
        margin: 0 0 15px 0;
        color: #545454;
        position: relative;
    }
    
    .blog .sidebar .sidebar-item {
        margin-bottom: 30px;
    }
    
    .blog .sidebar .search-form form {
        background: #fff;
        border: 1px solid #ddd;
        padding: 3px 10px;
        position: relative;
    }
    
    .blog .sidebar .search-form form input[type=text] {
        border: 0;
        padding: 4px;
        border-radius: 4px;
        width: calc(100% - 40px);
    }
    
    .blog .sidebar .search-form form button {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border: 0;
        background: none;
        font-size: 16px;
        padding: 0 15px;
        margin: -1px;
        background: #e96b56;
        color: #fff;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
        line-height: 0;
    }
    
    .blog .sidebar .search-form form button i {
        line-height: 0;
    }
    
    .blog .sidebar .search-form form button:hover {
        background: #eb7b68;
    }
    
    .blog .sidebar .categories ul {
        list-style: none;
        padding: 0;
    }
    
    .blog .sidebar .categories ul li+li {
        padding-top: 10px;
    }
    
    .blog .sidebar .categories ul a {
        color: #545454;
        transition: 0.3s;
    }
    
    .blog .sidebar .categories ul a:hover {
        color: #e96b56;
    }
    
    .blog .sidebar .categories ul a span {
        padding-left: 5px;
        color: #aaaaaa;
        font-size: 14px;
    }
    
    .blog .sidebar .recent-posts .post-item+.post-item {
        margin-top: 15px;
    }
    
    .blog .sidebar .recent-posts img {
        width: 80px;
        float: left;
    }
    
    .blog .sidebar .recent-posts h4 {
        font-size: 15px;
        margin-left: 95px;
        font-weight: bold;
    }
    
    .blog .sidebar .recent-posts h4 a {
        color: #545454;
        transition: 0.3s;
    }
    
    .blog .sidebar .recent-posts h4 a:hover {
        color: #e96b56;
    }
    
    .blog .sidebar .recent-posts time {
        display: block;
        margin-left: 95px;
        font-style: italic;
        font-size: 14px;
        color: #aaaaaa;
    }
    
    .blog .sidebar .tags {
        margin-bottom: -10px;
    }
    
    .blog .sidebar .tags ul {
        list-style: none;
        padding: 0;
    }
    
    .blog .sidebar .tags ul li {
        display: inline-block;
    }
    
    .blog .sidebar .tags ul a {
        color: #949494;
        font-size: 14px;
        padding: 6px 14px;
        margin: 0 6px 8px 0;
        border: 1px solid white;
        display: inline-block;
        transition: 0.3s;
    }
    
    .blog .sidebar .tags ul a:hover {
        color: #fff;
        border: 1px solid #e96b56;
        background: #e96b56;
    }
    
    .blog .sidebar .tags ul a span {
        padding-left: 5px;
        color: #ededed;
        font-size: 14px;
    }


    /*--FORMS REGISTRATION------*/
    
    #register .container {
        max-width: 700px;
        width: 100%;
        background-color: #fff;
        padding: 25px 30px;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    }
    
    .content form .user-details {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px 0 12px 0;
    }
    
    form .user-details .input-box {
        margin-bottom: 15px;
        width: calc(100% / 2 - 20px);
    }
    
    form .input-box span.details {
        display: block;
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .user-details .input-box input {
        height: 45px;
        width: 100%;
        outline: none;
        font-size: 16px;
        border-radius: 5px;
        padding-left: 15px;
        border: 1px solid #ccc;
        border-bottom-width: 2px;
        transition: all 0.3s ease;
    }
    
    .user-details .input-box input:focus,
    .user-details .input-box input:valid {
        border-color: #FBAB7E;
    }
    
    form .gender-details .gender-title {
        font-size: 20px;
        font-weight: 500;
    }
    
    form .category {
        display: flex;
        width: 80%;
        margin: 14px 0;
        justify-content: space-between;
    }
    
    form .category label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    
    form .category label .dot {
        height: 18px;
        width: 18px;
        border-radius: 50%;
        margin-right: 10px;
        background: #d9d9d9;
        border: 5px solid transparent;
        transition: all 0.3s ease;
    }
    
    #dot-1:checked~.category label .one,
    #dot-2:checked~.category label .two,
    #dot-3:checked~.category label .three {
        background: #9b59b6;
        border-color: #d9d9d9;
    }
    
    form input[type="radio"] {
        display: none;
    }
    
    form .button {
        height: 45px;
        margin: 35px 0
    }
    
    form .button input {
        height: 100%;
        width: 100%;
        border-radius: 5px;
        border: none;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        background-color: #FBAB7E;
        background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
    }
    
    form .button input:hover {
        transform: scale(0.99);
        background-color: #FBAB7E;
        background-image: linear-gradient(250deg, #FBAB7E 0%, #F7CE68 100%);
    }
    
    @media(max-width: 584px) {
        .container {
            max-width: 100%;
        }
        form .user-details .input-box {
            margin-bottom: 15px;
            width: 100%;
        }
        form .category {
            width: 100%;
        }
        .content form .user-details {
            max-height: 300px;
            overflow-y: scroll;
        }
        .user-details::-webkit-scrollbar {
            width: 5px;
        }
    }
    
    @media(max-width: 459px) {
        .container .content .category {
            flex-direction: column;
        }
    }
    
    .entry-content blockquote {
        overflow: hidden;
        background-color: #00008b;
        padding: 60px;
        position: relative;
        text-align: center;
        margin: 20px 0;
    }
    
    .entry-content blockquote p {
        color: #fff;
        line-height: 1.6;
        margin-bottom: 0;
        font-weight: 500;
        font-size: 22px;
        text-transform: capitalize !important;
    }
    
    .entry-content blockquote::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        /*background-color: #545454;*/
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    /* Style for the input field when it is invalid (not filled) */
input:invalid {
    border: 2px solid red;
  }
  
  /* Optional: Style the input field when it is valid (filled) */
  input:valid {
    border: 2px solid green;
  }

/* Contact Information */

.contact-information {
	margin-top: 140px;
}

.contact-information .contact-item {
	padding: 60px 30px;
	background-color: #f7f7f7;
	text-align: center;
}

.contact-information .contact-item i {
	color: #a4c639;
	font-size: 48px;
	margin-bottom: 40px;
}

.contact-information .contact-item h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
}

.contact-information .contact-item p {
	margin-bottom: 20px;
}

.contact-information .contact-item a {
	font-weight: 600;
	color: #a4c639;
	font-size: 15px;
}





/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(253, 249, 2, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/

/*----# Courses-----*/
.courses .course-item {
    border-radius: 5px;
    border: 4px solid #eef0ef;
  }
  
  .courses .course-content {
    padding: 15px;
  }
  
  .courses .course-content h3 {
    font-weight: 700;
    font-size: 20px;
    /*color: #000;*/
  }
  
  .courses .course-content h3 a {
    color: #37423b;
    transition: 0.3s;
  }
  
  .courses .course-content h3 a:hover {
    color: #5fcf80;
  }
  */
  .courses .course-content p {
    font-size: 14px;
    /*color: #777777;*/
  }
  .courses .course-content button a{
    color: #000;
  }
  .courses .course-content h3 {
    font-size: 14px;
    background: #800000;
    padding: 7px 14px;
    color: #fff;
    margin: 0;
  }

  /* Fun Facts */

.fun-facts {
	margin-top: 140px;
	background-image: url(../img/breadcrumb/fun-facts-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 140px 0px;
	color: #fff;
}

.fun-facts span {
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.fun-facts h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.fun-facts em {
	font-style: normal;
	color: #ffff00;
}

.fun-facts p {
	color: #fff;
	margin-bottom: 40px;
}

.fun-facts .left-content {
	margin-right: 45px;
}

.count-area-content {
	text-align: center;
	background-color: rgba(250,250,250,0.1);
	padding: 25px 30px 35px 30px;
	margin: 15px 0px;
}

.count-digit {
    margin: 5px 0px;
    color: #a4c639;
    font-weight: 700;
    font-size: 36px;
}
.count-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

#regForm {
background-color: #f0f0f0;
margin: 100px auto;
padding: 40px;
width: 90vw;
text-decoration: #000;
}
/* Style the input fields */

#regForm input {
padding: 10px;
width: 100%;
font-size: 20px;
font-family: Raleway;
border: 2px solid #061af7;
border-radius: 12px;
}
/* Mark input boxes that gets an error on validation: */

#regForm  input .invalid {
background-color: #e90f0f;
}
/* Hide all steps by default: */

#regForm .tab {
display: none;
}
/* Make circles that indicate the steps of the form: */
 .card-header{
    background: #ff910098;
 }
#regForm .step {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #ffe600;
border: none;
border-radius: 50%;
display: inline-block;
opacity: 0.5;
}
/* Mark the active step: */

#regForm .step .active {
opacity: 1;
}
/* Mark the steps that are finished and valid: */

#regForm .step .finish {
background-color: #04AA6D;
}

#regForm .form-group {
    margin-bottom: 20px;
} 
#regForm .form-control {
    border-radius: 0;
} 
#regForm .btn-primary {
    border-radius: 0;
}

#nextBtn, #prevBtn{
    background-color: #0000ff; 
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    transition-duration: 0.4s;
}
/*#regForm select*/

#regForm .input-box {
    margin-bottom: 20px;
}

#regForm .details {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#regForm select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    appearance: none; /* Removes default dropdown arrow in some browsers */
    -webkit-appearance: none; /* For Webkit browsers */
    -moz-appearance: none; /* For Firefox */
    cursor: pointer;
}

#regForm select:hover {
    border-color: #2200ff;
}

#regForm select:focus {
    outline: none;
    border-color: #0004ff;
    box-shadow: 0 0 5px rgba(102, 175, 233, 0.5);
}

/* Custom styling for the placeholder option */
#regForm option[value=""] {
    color: #999;
}

/* Remove the oninput attribute from options since it's not standard for dropdowns

#regForm .profile-photo-container {
    text-align: center;
   
  } */
  
  #regForm .profile-photo {
    width: 150px;
    height: 150px;
    border: 2px solid #333;
    border-radius: 0; /* Use 0 for square */
    overflow: hidden; /* Hides any image overflow */
    display: inline-block;
    margin-bottom: 10px;
  }
  
  #regForm .profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  #regForm .upload-button {
    background-color: #0000ff; /* Green */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  #regForm .profile-photo:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transform: scale(1.05);
    transition: all 0.3s ease;
  }
  input[type="checkbox"], label {
    vertical-align: middle;
}
label {
    margin-left: 5px;
}

 .terms-checkbox {
    margin: 20px 0;
  }
  
  .terms-checkbox input[type="checkbox"] {
    display: flex;
    align-items: center;
  }
  
  .terms-checkbox label {
    vertical-align: middle;
    font-size: 14px;
    cursor: pointer;
  }
  
  .terms-checkbox a {
    color: #007BFF;
    text-decoration: underline;
  }
  
  .terms-checkbox a:hover {
    color: #0056b3;
  }
  
  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
  }
  
  .close {
    color: #ff0000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

.ContributionAmount {
    display: flex;
    flex-direction: column;
}

.ContributionAmount label {
    margin-bottom: 5px;
}

.ContributionAmount input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
  .remittance-options {
    display: flex;
    flex-direction: row;
    align-items: center;

}

.remittance-option {
    display: flex;
    align-items: center;
}

.remittance-option input[type="checkbox"] {
    margin-right: 10px;
}

.remittance-option.others {
    flex-direction: row;
    align-items: center;
}

.remittance-option.others input[type="text"] {
    margin-left: 10px;
    padding: 5px;
    width: 150px;
}

.remittance-option.others input[type="text"]:disabled {
    background: #f4f4f4;
    color: #999;
    cursor: not-allowed;
}
.signature-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.signature-canvas {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
    display: block;
    margin-bottom: 1rem;
}

.upload-signature {
    margin-bottom: 1rem;
}

.upload-signature label {
    cursor: pointer;
    color: #007bff;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.upload-signature input[type="file"] {
    display: none;
}

.error-message {
    color: red;
    font-size: 0.875em;
}

.signature-section button {
    margin-right: 0.5rem;
}

.signature-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.signature-section p {
    margin-bottom: 1rem;
}

#clearSignature, #saveSignature {
    margin-top: 10px;
    padding: 5px 15px;
    margin-right: 10px;
    cursor: pointer;
}

.validation-messages {
    margin-top: 10px;
}


#referee .referee h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}


#referee .form-group input[type="text"] {
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease;
}

#referee .form-group input[type="text"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

#referee .terms-checkbox {
    margin-top: 1.5rem;
}
/*
#referee .disclaimer {
    background-color: #e9ecef;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}
*/
#referee .disclaimer h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

#referee .disclaimer p {
    font-size: 0.875em;
    color: #000;
}

#referee .form-check-label {
    font-size: 0.9rem;
}

#referee .form-check-label a {
    color: #007bff;
    text-decoration: underline;
}

#referee .form-check-label a:hover {
    color: #0056b3;
}

/* Modal styling */
#referee .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
}

#referee .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 0.25rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#referee .modal-content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

#referee .modal-content p {
    font-size: 0.9rem;
}

#referee .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    cursor: pointer;
}

#referee .close:hover {
    color: #000;
    opacity: 0.75;
}

/*--------credit-product Section----------*/

  #hero{
    width: 100%;
    /*height: fit-content;*/
    height: auto;
  }

 .background-image{
    position: relative;
    /*background: url(/zoghorisacco/assets/img/breadcrumb/smiled.png) center center no-repeat;
   background: url(/zoghorisacco/assets/img/breadcrumb/creditproducts.png) center center no-repeat;
   background: url(/zoghorisacco.com/zoghorisacco/assets/img/slide/smiled-p.png) center center no-repeat;*/
 }
 .background-image::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 75%; /* Adjust the width as needed */ 
    height: 100%; 
    background: linear-gradient(to right, rgb(255, 255, 0), rgba(5, 5, 5, 0)); /* Adjust the colors and opacity as needed */ 
    z-index: 1;
}
#hero .container{
    z-index: 5;
}
  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #0000ff;
    z-index: -1;
  }
  #hero h2 {
    color: #000;
    margin-bottom: 50px;
    font-size: 24px;
    z-index: 5;
  }
  #hero .get-started-icon {
    font-size: 24px;
    background: #0000ff;
    padding: 14px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    z-index: 5;
    box-shadow: 10px 2px 15px rgb(255, 234, 1);
  }
  #hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    margin-left: -10px;
    padding: 8px 26px 8px 26px;
    color: #fff;
    background: #3002fc;
    border-radius: 0 50px 50px 0;
    position: relative;
    z-index: 4;
  }
  #hero .btn-get-started:hover {
    background: #ff5821;
  }
  
 .background-imaged{
    position: relative;
    background: url(/zoghorisacco/assets/img/breadcrumb/join.webp) center center no-repeat;
   
 }
 .background-imaged::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 75%; /* Adjust the width as needed */ 
    height: 100%; 
    background: linear-gradient(to right, rgb(255, 255, 0), rgba(5, 5, 5, 0)); /* Adjust the colors and opacity as needed */ 
    z-index: 1;
}

/**e-banking css*/
#zapp {
    width: 100%;
    height: 100vh;
   /**background: #37517e;**/
   background: #0000ea;
  }

  
  #zapp h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }
  
  #zapp h2 {
    color: rgb(255, 255, 255);
    margin-bottom: 50px;
    font-size: 24px;
  }
    
  #zapp .btn-download-app {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
  }
  
  #zapp .btn-download-app i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
  }
  
  #zapp .btn-download-app:hover i {
    color: #47b2e4;
  }
  
  #zapp .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  #zapp .zapp-img img{
    height: 95%;
    width: 100%;
  }
  
  @media (max-width: 991px) {
    #zapp {
      height: 100%;
      text-align: center;
    }
    #zapp .animated {
      -webkit-animation: none;
      animation: none;
    }
    #zapp .zapp-img {
      text-align: center;
    }
    #zapp .zapp-img img {
      width: 50%;
      height: 75%;
    }
  }
  
  @media (max-width: 768px) {
    #zapp h1 {
      font-size: 28px;
      line-height: 36px;
    }
    #zapp h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
    #zapp .zapp-img img {
      width: 70%;
      height: 75%;
    }
  }
  
  @media (max-width: 575px) {
    #zapp .zapp-img img {
      width: 80%;
      height: 75%;
    }
    #zapp .btn-get-started {
      font-size: 16px;
      padding: 10px 24px 11px 24px;
    }
  }
  
  @-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  
  /* USSD CODE---*/


.accordion-button {
    background-color: #37517e;
    color: #fff;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #ffc801;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #e9ecef;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-top: none;
}

.accordion-body ul {
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .accordion-button {
        font-size: 14px;
    }

    .accordion-body {
        padding: 15px;
    }
}


/*--DOWNLOADS--*/
#downloads-container {
    max-width: 800px;
    margin: 0 auto;
}

.download-section {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

.download-section h2 {
    margin-bottom: 10px;
}

.download-section ul {
    list-style-type: none;
    padding-left: 0;
}

.download-section li {
    margin-bottom: 5px;
}

.download-link {
    text-decoration: none;
    color: #007BFF;
}

.download-link:hover {
    text-decoration: underline;
}

.download-count {
    color: #6c757d;
}


.payment-header {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.payment-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.payment-header p {
    opacity: 0.9;
}

.payment-process .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.payment-process .card-header {
    background-color: #e9ecef;
    color: #2c3e50;
    font-weight: 600;
    padding: 1.25rem;
}

.payment-process .card-body {
    background-color: #ffffff;
    line-height: 1.6;
}

.payment-process .highlight {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}

.payment-process .container {
    max-width: 800px;
}

.payment-process .list-group-item {
    border: none;
    padding: 1rem 1.25rem;
}
/*
.faq-header {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.faq-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-header p {
    opacity: 0.9;
}

.faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq .accordion-button {
    background-color: #ffffff;
    color: #2c3e50;
    font-weight: 600;
    padding: 1.25rem;
}

.faq .accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #2c3e50;
}

.faq .accordion-body {
    background-color: #ffffff;
    color: #495057;
    line-height: 1.6;
}

.faq .container {
    max-width: 800px;
}
**/

/**fag css**/
.faq-header {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.faq-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-header p {
    opacity: 0.9;
}

.faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq .accordion-button {
    background-color: #ffffff;
    color: #2c3e50;
    font-weight: 600;
    padding: 1rem;
}

.faq .accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #2c3e50;
}

.faq .accordion-body {
    background-color: #ffffff;
    color: #495057;
    line-height: 1.6;
    padding: 1rem;
}

.faq .container {
    max-width: 1400px; /* Wide container for 4 columns */
}


.faq .col-lg-3 {
    margin-bottom: 2rem;
}
/*.faq h3{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   font-size: 2.5rem;
   color: #0000ff;
}*/
.faq ul li{
    color: #0000ff;
}

/*--- Footer---*/
#footer {
    font-size: 14px;
    /*background: #37517e;*/
    background: #cc7606;
  }
  
  #footer .footer-newsletter {
    padding: 50px 0;
    /*background:#cc6913;*/
    text-align: center;
    font-size: 15px;
    color: #ffffff;
  }
  
 /* #footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #1900ff;
  }
  */
  #footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
  }
  
  #footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
  }
  
  #footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  #footer .footer-newsletter form input[type="submit"]:hover {
    background: #061af7;
  }
 

  #footer .footer-top {
    background: #000000;
    padding: 60px 0 30px 0;
  }
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
 /* #footer .footer-top .footer-info, .footer-contact, .footer-links h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
  }*/
  #footer .footer-top .footer-info p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Times New Roman', Times, serif;
    color: #fff;

  }
  #footer .footer-top .social-links a {
    font-size: 16px;
    display: inline-block;
    background: rgb(255, 255, 255);
    color: #0800ff;
    line-height: 1;
    padding: 10px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  #footer .footer-top .social-links a:hover {
    background: #f6b024;
    color: #ffffff;
    text-decoration: none;
  }
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
  }
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #5db1f9;
    font-size: 18px;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul a:hover {
    color: #ffff00;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact p {
    line-height: 26px;
    color: #fff;
  }
  #footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #fff;
    font-size: 18px;
  }
  #footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #fff;
  }
  #footer .credits a {
    color: #fff;
  }







  .is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* Custom styles for the terms section */
.terms-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.terms-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.terms-checkbox {
    margin-bottom: 1rem;
}

.form-check-label {
    font-size: 0.9rem;
    color: #555;
}

.form-check-label a {
    color: #007bff;
    text-decoration: underline;
}

.form-check-label a:hover {
    color: #0056b3;
}


.payment-instructions {
    background-color: #e9ecef;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.payment-instructions h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.payment-instructions p {
    font-size: 0.875em;
    margin-bottom: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input[type="text"] {
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease;
}

.form-group input[type="text"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.error-message {
    color: red;
    font-size: 0.875em;
    margin-top: 0.25em;
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 0.25rem;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.modal-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    cursor: pointer;
}

.close:hover {
    color: #000;
    opacity: 0.75;
}
/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-warning);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/

/*.tab-pane img{
    object-fit: scale-down;
}*/