@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body, html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif !important;
}
/* ========================
   Header Section
   ======================== */
header{
    gap: 5rem;
    height: 7rem;
    padding: 0 1rem;
    position: relative;
}

header img, .down-img{
    height: auto;
    width: 2.5rem;
    
}
.mobile{
    display: none;
}
.nav-list li {
    list-style: none;
    position: relative;
    padding-left: 1rem;
}
.nav-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.4em;
    height: 0.4em;
    background-color: transparent;
    border-radius: 50%;
    transition: background-color 0.4s ease-in-out, transform 0.5s ease-in-out;
}
.nav-list li:hover::before {
    background-color: #0A7DC4;
    transform: scale(1.2);
}
.nav-list li.active::before {
  background-color: #0A7DC4;
  transform: scale(1.2);
  list-style-type: disc;
}
.nav-list a.active {
  color: #0A7DC4;
  font-weight: 600;
  text-decoration: overline;
  list-style-type: disc !important;
}
.nav-list a{
    text-decoration: none;
    display: block;
    color: #ffffff;
    transition: color 0.5s ease-in-out;
}
.nav-list a:hover{
    color: #0A7DC4;
    font-weight: 600;
}
.container{
    margin: 5rem 0;
}
.utton {
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    background-color: #0A7DC4;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}
.utton:hover {
    background-color: #ffffff;
    color: #0A7DC4;
    border: 1px solid #0A7DC4;
    transform: scale(1);
}
/* ========================
   Header Section Responsive
   ======================== */
@media (min-width: 0px) and (max-width: 1024px) {
    header{
        height: 6rem;
    }
     .web{
        display: none;
    }
    .mobile{
        display: block;
    }
    header img{
    height: auto;
    width: 2.5rem;
}
body{
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }
}

    /* ========================
   Drop down menu mobile Section
   ======================== */
@media (min-width: 768px) {
    .menu-label, .menu-checkbox, .menu {
        display: none; /* Hide the mobile menu for larger screens */
    }
    .desktop-nav {
        display: block; /* Show desktop navigation */
    }
}
/* Mobile Navigation Styles */
@media (min-width: 0px) and (max-width: 1024px) {
    .desktop-nav {
        display: none; /* Hide desktop nav on mobile */
    }
    /* Mobile menu button (Hamburger) */
    .menu-label {
        font-size: 35px;
        cursor: pointer;
        display: block;
        position: absolute;
        top: 20px;
        right: 15px;
        color: #ffffff;
        font-weight: bold;
    }
    /* Hidden checkbox that controls the menu */
    .menu-checkbox {
        display: none;
    }
    /* Menu container (hidden by default) */
    .menu {
        display: none;
        position: absolute;
        top: 5rem;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px 10px;
        z-index: 999;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    /* List style inside the menu */
    .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
      
    }
    /* Menu item styling */
    .menu ul li {
        margin: 15px 0;
    }
    .menu ul li a {
        text-decoration: none;
        display: block;
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 10px 0;       
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
        color: #000000;
    }
    /* When the checkbox is checked, show the menu */
    .menu-checkbox:checked ~ .menu {
        display: block;
    }
}

/* ========================
   Hero Styling Section
   ======================== */
.hero{
    position: relative;
    height: 30rem;
    display: flex;
    justify-content: center;
    align-items: center;  
}
.my-hero-text, .my-hero-text2{
    font-size: 3rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif !important;
}
.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; height: 100%;
    /* filter: blur(1px); */
    z-index: -1;
    margin: 0;
    background-image: url("../Images/Hero\ Image.jpg");
    backdrop-filter: blur(60px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hero-paragraph{
    margin: 0rem 25rem 0rem 0rem;
}
.button1{
     border: none;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    background-color: #0A7DC4;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    width: fit-content;
    margin: 0 auto;
}
.button2{
     border: none;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    background-color: #0A7DC4;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    width: fit-content;
}
.button1:hover, .button2:hover{
    background-color: #ffffff;
    color: #0A7DC4;
    border: 1px solid #0A7DC4;
    transform: scale(1);   
}


/* ========================
   Fintech Styling Section
   ======================== */
.fintech-image{
    height: 10rem;
  width: 14rem;
  border-radius: 0.2rem;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  /* border: 2px solid #0A7DC4; */
}
.fintech-group{
    display: flex ;
    gap: 2rem;
}
.a{
    order: 1;
}
.b{
    order: 2;
}
/* .services{
    background-color: rgb(247, 253, 255);
    box-shadow: 0 1px 6px rgb(143, 143, 143);
} */

@media (min-width: 0px) and (max-width: 1024px) {
    .fintech-image{
    height: 13rem;
  width: auto;
  border-radius: 0.2rem;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  /* border: 2px solid #0A7DC4; */
}
.fintech-group{
    display: flex ;
    flex-direction: column;
    gap: 2rem;
}
.a{
    order: 2;
}
.b{
    order: 1;
}
}
.each-img{
    display: flex;
    gap: 1rem;
}

.services-img{
     height: 10rem;
  width: 100%;
  /* border-radius: 0.2rem; */
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
/* ========================
   Testimonials Styling Section
   ======================== */
.testimonial-image {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 2px solid #0A7DC4; /* Optional */
}
/* ========================
   Footer Styling Section
   ======================== */
.my-footer{
    display: flex;
    gap: 2rem;
}
.footer-description{
    width: 30rem;
}

@media (min-width: 0px) and (max-width: 1024px) {
    .my-footer{
        flex-direction: column;
        gap: 1rem;
    }
    .footer-description{
    width: 15rem;
}
    .each-img{
    display: flex;
    flex-direction: column;
    width: 100%;
}

}
.footer-nav{
    text-align: start;
}
.footer-nav li{
    list-style: none;
}
.footer-nav a{
    text-decoration: none;
    color: #ffffff;
}
.footer-nav a:hover {
  color: #0A7DC4;
  font-weight: 600;
  text-decoration: overline;
  list-style-type: disc !important;
}
.footer-nav a.active {
  color: #0A7DC4;
  font-weight: 600;
  text-decoration: overline;
  list-style-type: disc !important;
}
.social-icons a i {
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s, color 0.3s;
}
.social-icons a:hover i.bi-facebook { color: #0A7DC4; transform: scale(1.2); }
.social-icons a:hover i.bi-linkedin { color: #0A66C2; transform: scale(1.2); }
.social-icons a:hover i.bi-instagram { color: #b20963; transform: scale(1.2); }
.social-icons a:hover i.bi-twitter-x { color: #0d131a; transform: scale(1.2); }

/* ========================
   Styling Section Responsive
   ======================== */
@media (max-width: 768px) {
    .hero{
        height: 40rem;
    }

    .hero-paragraph{
    margin: 0rem 1rem;
}
.fintech-image{
  width: 100%;
}
    /* footer{
        height: 64rem;
    }

    .my-footer{
        gap: 2rem;
        padding: 2rem;
    } */
}
 /* ========================
   BackToTop Section
   ======================== */
.backtotop img {
    width: 50px;          /* Set the width of the logo */
    height: auto;         /* Keep the aspect ratio */
    margin-bottom: 10px;
    padding: 0;
    margin-right: 20px;  
}
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
.backtotop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(100px);
    z-index: 9999;
}
.backtotop a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    margin-right: 30px;
    margin-bottom: 30px;
}
.backtotop.show {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact{
    background-color: #0A7DC4;
    color: #ffffff !important;
    border-radius: 2rem;
    width: fit-content;
    padding: 0.5rem 2rem !important;
}




   /* ========================
   About Page Styling Section
   ======================== */
.get-to-know{
    padding: 0.5rem 1rem;
    box-shadow: 0 3px 6px rgb(63, 63, 63);
    font-weight: normal;
}
.hero2{
    position: relative;
    height: 30rem;
    display: flex;
    justify-content: center;
    align-items: center;  
}
.hero2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; height: 100%;
    /* filter: blur(3px); */
    z-index: -1;
    margin: 0;
    background-image: url("../Images/Hero\ Image.jpg");
    backdrop-filter: blur(60px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.button3{
     border: none;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    background-color: #ffffff;
    color: #0A7DC4;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    width: fit-content;
    margin: 0 auto;
}
.button3:hover{
    background-color: #0A7DC4;
    color: #ffffff;
    transform: scale(1);   
}
@media (max-width: 768px) {
    .hero2{
        height: 40rem;
    }
}
.about-image{ 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
}
.about-image img{
     height: 10rem;
  width: 13rem;
  border-radius: 0.2rem;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  display: block;
  /* border: 2px solid #0A7DC4; Optional */
}
.text-prim{
    color: #0A7DC4 !important;
}

@media (max-width: 768px) {
    .about-image{ 
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
}
.about-image img{
     height: 10rem;
  width: 100%;
}
}
.value-card {
  background-color: #ffffff;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}




   /* ========================
   Contact Page Styling Section
   ======================== */
.contact-form {
  background-color: #f8f9fa;
  border-left: 4px solid #0A7DC4;
  border-radius: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0A7DC4;
  box-shadow: 0 0 0 0.2rem rgba(10, 125, 196, 0.25);
}
.send:hover{
    background-color: #07598c !important;
}
/* .contact-header{
    background-color: #0A7DC4;
}
.contact-header a{
    color: #ffffff;
}
.contact-header a:hover{
    text-decoration: overline;
    color: #afafaf;
} */


 /* ========================
   Products Page Styling Section
   ======================== */
.card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.card {
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}
