/* Abubakar Abdul Malik */
/* 02/09/2025 */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
    font-style: normal;
    scroll-behavior: smooth;
}

/* .btn-primary{
    background: #0169b4 !important;
    color: #fff !important;
    border: none !important;
}

a{
    color: #0169b4 !important;
} */

::selection {
    background: #31333e;
    color: #fff;
    text-shadow: none;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.navbar .navbar-brand img{
    height: 50px;
}

.navbar .nav-link{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

.navbar .nav-link:hover{
    color: #0169b4;
}

.navbar .nav-link.active{
    color: #0169b4;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .nav-item .dropdown-menu {
    display: block;            /* ensures it's ready for animation */
    visibility: hidden;        /* hides it initially */
    opacity: 0;                /* fully transparent */
    transform: rotateX(-75deg); 
    transform-origin: top;     /* pivot from the top */
    border: 0;
    transition: all 0.5s ease; /* smooth transition */
    position: absolute;        /* keeps it out of normal flow */
    top: 100%;
    left: 0;
    z-index: 1000;
}

.navbar .nav-item:hover .dropdown-menu {
    visibility: visible;  
    opacity: 1;
    transform: rotateX(0deg);
    margin-top: 0;             /* removes the 19px jump */
}

@media (max-width: 767.98px) {
    .navbar .nav-item:hover .dropdown-menu{
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .navbar .navbar-brand img{
        height: 40px;
    }
}

@media (max-width: 991.98px) {}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }
  

}

.login-page{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.login-page .screen{
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    /* text-align: center; */
}

.login-page .screen .logo{
    margin-bottom: 20px;
}

.login-page .screen .logo img{
    height: 60px;
}

#MemberLoginForm_LoginForm_Email,
#MemberLoginForm_LoginForm_Password,
#LostPasswordForm_lostPasswordForm_Email,
#ChangePasswordForm_ChangePasswordForm_OldPassword,
#ChangePasswordForm_ChangePasswordForm_NewPassword1,
#ChangePasswordForm_ChangePasswordForm_NewPassword2{
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 0.375rem;
    outline: none;
    margin-bottom: 10px;
}

#MemberLoginForm_LoginForm_action_doLogin,
#LostPasswordForm_lostPasswordForm_action_forgotPassword,
#MemberLoginForm_LoginForm_action_logout,
#ChangePasswordForm_ChangePasswordForm_action_doChangePassword{
    background-color: #0d6efd;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 0.375rem;
    margin-right: 10px;
    margin-top: 10px;
}

#MemberLoginForm_LoginForm_error{
    color: red;
}

#ForgotPassword{
    margin-top: 20px;
}

#ForgotPassword a{
    text-decoration: none;
}

/*******************************/
/********** welcome ************/
/******************************/
.welcome {
    height: 90vh;
    /* background-image: url(../images/backgrounds-flatlay-craft-diy-school.jpg); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    color: white;
    text-align: center;
    justify-content: center;
}

.overlay .wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column;
    /* height: calc(100vh - 170px); */
    /* min-height: 400px; */
}

.wrapper h1 {
    font-size: 60px;
    font-weight: 700;
}

.wrapper h1 span {
    letter-spacing: 5px;
}

.wrapper p {
    max-width: 50%;
    margin-bottom: 30px;
}

.wrapper a{
    font-weight: 500;
    padding: 10px 20px;
}

@media (max-width: 767.98px) {
    .wrapper h1 {
        font-size: 35px;
        font-weight: 700;
    }

    .wrapper p {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .wrapper h1 {
        font-size: 35px;
        font-weight: 700;
    }

    .wrapper p {
        max-width: 90%;
    }
}

@media (max-width: 991.98px) {
    .wrapper h1 {
        font-size: 35px;
        font-weight: 700;
    }

    .wrapper p {
        max-width: 90%;
    }
}

.breadcrumbs{
    font-size: 22px;
    text-decoration: none;
}

.breadcrumbs a{
    text-decoration: none;
}


/*******************************/
/********** about ************/
/******************************/
.about p{
    text-align: justify;
}

.about .left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about .right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about .homeabout-image img{
    height: 430px;
    object-fit: contain;
    margin: auto;
    border-radius: 20px;
    max-width: 100%;    
}

.about a {
    text-decoration: none;
}
.animated-icon {
  color: #1877f2;       /* pick your color */
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

a:hover .animated-icon {
  transform: translateX(6px);  /* slide right on hover */
  color: #0d65d9;              /* darker shade on hover */
}

.home-about-section {
  padding: 60px 40px;
  margin: 60px auto;
  max-width: auto;
}

.home-about-section h6 {
  color: #0169B4;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-about-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.home-about-section p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}

.home-about-section .btn-custom {
  background: linear-gradient(135deg, #0169B4, #014476);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.home-about-section .btn-custom:hover {
  background: linear-gradient(135deg, #014476, #0169B4);
  color: #fff;
  transform: translateY(-2px);
}

.home-about-section .img-card1 {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.home-about-section .img-card1 img {
  width: 100%;
  height: 350px;
  object-fit: cover;  
}

.home-about-section .img-card2 {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 110px;
}

.home-about-section .img-card2 img {
  width: 250px;
  height: 350px;
  object-fit: cover;
}

.home-about-section .stat-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 16px;
  position: relative;
  top: -370px;
  left: 280px;
  right: 0;
  width: 250px;
}

.home-about-section .stat-card .number {
  font-weight: 700;
  font-size: 20px;
}

.stat-card .meta {
  color: #6b7280;
  font-size: 13px;
}

.rating-emojis {
  font-size: 18px;
  margin-top: 6px;
}

.about-section {
  padding: 60px 40px;
  margin: 60px auto;
  max-width: auto;
}

.about-section h6 {
  color: #0169B4;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}

.about-section .btn-custom {
  background: linear-gradient(135deg, #0169B4, #014476);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-section .btn-custom:hover {
  background: linear-gradient(135deg, #014476, #0169B4);
  color: #fff;
  transform: translateY(-2px);
}

.about-section .img-card1 {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-section .img-card1 img {
  width: 100%;
  height: 350px;
  object-fit: cover;  
}

.about-section .img-card2 {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 110px;
}

.about-section .img-card2 img {
  width: 250px;
  height: 350px;
  object-fit: cover;
}

.about-section .stat-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 16px;
  position: relative;
  top: -370px;
  left: 280px;
  right: 0;
  width: 250px;
}

.about-section .stat-card .number {
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 767.98px) {
    .about .header,
    .about .readmore{
        text-align: center;
    } 

    .about a{
        display: none;
    }

    .about-section,
    .home-about-section {
        padding: 20px;
        margin: 20px 0px;
        text-align: justify;    
    }

    .about-section .img-card1,
    .home-about-section .img-card1{
        display: none;
    }

    .about-section .img-card2,
    .home-about-section .img-card2{
        display: none;
    }

    .about-section .stat-card,
    .home-about-section .stat-card{
        display: none;
    }
}

@media (max-width: 768px) {}

@media (max-width: 991.98px) {}

/******************************/
/********** Service ***********/
/******************************/
.services{
    padding: 65px 0px;
}
.services .header{
    text-align: center;
    margin-bottom: 30px;
}

.services h2{
    font-weight: 700;
}

.services .card{
    height: 250px;
    margin: auto;
    text-align: center;
    border: none;
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.services .card .icon{
    font-size: 25px;
    margin-bottom: 15px !important;
    color: #fff;
    background: #0169b4;
    border-radius: 10px;
    max-width: 35%;
    padding: 10px;
    margin: auto;
}

.services .card .title{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services .card .readmorebtn a{
    text-decoration: none;
}

.services .card:hover{
    box-shadow: 5px 5px 25px #ccc;
}

@media (max-width: 767.98px) {
    .services .card{
        max-width: 90%;
        margin-bottom: 20px;
    }

    .services .card .icon{
        font-size: 30px;
        margin-bottom: 30px !important;
        color: #fff;
        background: #0169b4;
        border-radius: 10px;
        max-width: 40%;
        padding: 10px;
        margin: auto;
    }

    .services .card .title{
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    
}

@media (max-width: 991.98px) {
  
}

/******************************/
/********** Rating ************/
/******************************/
.rating{
    background-image: url('../images/pano.jpg'); /* Replace with your image path */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    height: 200px;
    position: relative;
    z-index: 1;
}

.rating .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    color: white;
    text-align: center;
    justify-content: center;
}

.rating .overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/******************************/
/********** Partners **********/
/******************************/
.partners{
    max-width: 80%;
    margin: auto;
}

.partner-images .owl-carousel {
  text-align: center;
}

.partner-images .owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.partners .partner-images img{
    display: block;
    margin: 0 auto;
    height: 60px;
    max-width: 70%;
    filter: grayscale(100%);
    text-align: center !important;
    object-fit: contain;
    transition: .3s;
}

.partners .partner-images img:hover{
    filter: none;
    cursor: pointer;
}

@media (max-width: 767.98px) {
    .partners .partner-images img{
        height: 80px;
        width: 100%;
        object-fit: contain;
    }
    .rating .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    
}

@media (max-width: 991.98px) {
  
}

/******************************/
/********** Products **********/
/******************************/

/* .products{
     background-image: url(../images/backgr.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
} */

.products .header{
    text-align: center;
    margin-bottom: 30px;
}

.products .product{
    text-decoration: none;
}

.products .viewbtn{
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.products .viewbtn:hover{
    letter-spacing: 1px;
}

.product-cat {
    position: relative;
    width: 320px !important;
    height: 300px !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: #eee;
    box-shadow: 5px 5px 25px #ccc;
    border: none !important;
    margin: auto;
}

.product-cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-cat .card-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #0d6efd;
    /* box-shadow: 5px 5px 25px #ccc; */
    box-shadow: 0 10px 18px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 80%;
}

.product-cat .card-button:hover {
    background: #0d65d9;
    color: #fff;
}

.product-cat .card-button i {
    font-size: 20px;
    font-weight: 600 !important;
}

.product-listing .product-single{
    text-decoration: none;
    margin: auto;
    transition: all 0.3s ease;
}

.product-listing .product-single .product-image{
    width: 100%;
    height: 250px;
    margin-bottom: 15px !important;
    margin: auto;
}

.product-listing .product-single .product-image img{
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    border-radius: 18px; 
    margin: auto !important;
}

.product-single .product-des{
    margin-bottom: 10px;
}

.product-single .product-des .name{
    color: #31333e;
    font-size: 18px;
    font-weight: 500;
}

.product-single .product-des .des{
    color: gray;
    text-align: justify;
    margin-bottom: 10px;
    font-size: 14px;
}

.product-single .pro .action .btnn{
    background: #0d65d9 !important;
    color: #fff;
    font-size: 16px;
}


/* .product-detail .product-image{
    height: 300px;
    width: 100%;
    max-width: 80%;
    margin: auto;
} */

.product-detail .product-image img{
        height: 300px;
        width: 100% !important;
        object-fit: cover;
        border-radius: 20px;
        margin: auto !important;
    }

    .product-detail .description{
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .product-detail .description .det{
        border: 1px solid black;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 5px 10px;
        width: 24%;
        text-align: center;
        margin-bottom: 20px;
    }

     .product-detail .description .info .name{
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 20px;
     }

      .product-detail .description .info .des{
        margin-bottom: 20px;
        color: gray;
      }

@media (max-width: 767.98px) {
    .products .product{
        margin: auto;
        margin-bottom: 30px !important;
    }
    /* .products .product .product-item{
        max-width: 90%;
    } */
     .products .product .product-item .product-image{
        height: 250px;
        width: 330px;
        margin: auto;
        margin-bottom: 10px;
    }

    .products .product .product-item .product-image img{
        height: 250px;
        width: 330px;
        border-radius: 20px;
        object-fit: cover;
        margin: auto;
    }

    .product-detail .product-image img{
        margin-bottom: 10px !important;
    }

    .product-detail .description .det{
        display: none;
    }
}

@media (max-width: 767.98px) {}

@media (max-width: 768px) {}

@media (max-width: 991.98px) {}

/*******************************/
/********** Why Us ************/
/******************************/
.whyUs{
    padding: 65px 0px;
    width: 100%;
}

.whyUs .header{
    text-align: center;
    margin-bottom: 25px;
}

.whyUs .card{
    border: none;
    border-radius: 20px;
    padding: 10px;
    height: 250px;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.whyUs .card .icon h2{
    color: #0d65d9;
    transition: 0.5s;
}

.whyUs .card .title{
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0;
}

.whyUs .card p{
    text-align: justify;
    color: gray;
    transition: 0.3s;
}

.whyUs .card a{
    text-decoration: none;
    display: none;
}

.whyUs .card:hover{
    box-shadow: 5px 5px 25px #ccc;
    background: #0d6efd;
    color: #fff;
}

.whyUs .card:hover .icon h2{
    color: #fff;
    letter-spacing: 1px;
}

.whyUs .card:hover p{
    color: #fff;
}

@media (max-width: 767.98px) {

}

@media (max-width: 768px) {}

@media (max-width: 991.98px) {}

/*******************************/
/********** FAQs ************/
/******************************/
.faq-section h1{
    font-weight: 700;
}

.faq-section p{
    color: grey;
}

.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: #0d6efd;
    font-size: 18px;
    border-radius: 0px;
    box-shadow: none;
}
/* 
.faq-section .accordion .accordion-item .accordion-header .accordion-button:focus{
    outline: none;
    box-shadow: none;
} */

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
}

.faq-section .accordion-item .accordion-body{
    color: grey;
    font-weight: 500;
}

.faq-section .accordion-item button {
    /* font-weight: 500; */
}

.subscription{
    padding: 65px 0;
    max-width: 60%;
    text-align: center;
}

@media (max-width: 767.98px) {
    .subscription{
        max-width: 80%;
    }
}

@media (max-width: 768px) {}

@media (max-width: 991.98px) {}

/*******************************/
/********** footer ************/
/******************************/
.footer {
    background: var(--bs-dark);
    font-size: 14px;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
    text-decoration: none;
}

.footer .foot-img img{
    height: 45px;
}
.footer .footer-item p {
    padding-top: 10px;
    text-align: justify;
    font-size: 14px;
    color: gray;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}

@media (max-width: 767.98px) {
    .footer .footer-item .foot-img img{
        height: 45px !important;
    }
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);  
    text-align: center !important;  
}

.copyright a{
    text-decoration: none;
}


/*** copyright end ***/

/*******************************/
/**********  about **********/
/*******************************/
.about-page .banner {
    background-image: url(../images/pano.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
    position: relative;
    z-index: 1;
}

.about-page .overlay .wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.contact-heading{
    max-width: 60%;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}

.contact-section{

}

@media (max-width: 767.98px) {
    .contact-heading{
        max-width: 90%;
    }

    .contact-section form{
        margin-top: 20px;
    }
}

@media (max-width: 768px) {}

@media (max-width: 991.98px) {}