@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
*
{
    font-family: "Nunito Sans", sans-serif;
    padding: 0;
    margin: 0px;
    scrollbar-width: thin;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  }
  
  ::-webkit-scrollbar-button {
    display: none; 
  }
  
  ::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
  }

  
body {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100, "YTLC" 500;
    overflow-x: hidden;
    
}
/* Page Loader Style */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1.0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#page-loader img {
    width: 200px; 
    height: auto;
    margin-bottom: 20px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1); 
    border-top: 4px solid #DA0811; 
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    #page-loader img {
        width: 80px; 
    }

    .spinner {
        width: 30px;
        height: 30px;
        border-width: 3px;
    }
}

/* Navbar Section Style */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand img {
    margin-left: 0px;
    height: 40px;
}

.navbar-brand h1 {
    margin-top: 5px;
    text-align: center;
    font-size: 25px !important;
    font-weight: 900;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #ff0000, #002d5e);
}

.nav-link {
    font-size: 16px;
    color: #474747;
    text-decoration: none;
    font-weight: bold;
    font-family: "Nunito Sans", sans-serif;
}

.nav-link.active {
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.btn-signup {
    background-color: #DA0913;
    border: none;
    border-radius: 20px;
    color: white;
    padding: 5px 15px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-family: "Nunito Sans", sans-serif;
}

.btn-signup:hover {
    background-color: #DA0913;
    color: #fff;
}

.nav-item {
    margin-left: 15px;
}

.navbar-toggler {
    border: none;
    outline: none;
}

/* Mobile View */
@media only screen and (max-width: 768px) {
    .navbar-brand img {
        margin-left: 0px;
        height: 35px; 
        content: url('../images/logo.jpg'); /* Change the image for mobile */
    }

    .navbar-brand h1 {
        display: none; /* Hide the company name in mobile view */
    }

    .nav-item {
        margin-left: 0px;
    }

    .nav-link {
        font-size: 14px;
    }

    .btn-signup {
        padding: 5px 10px;
    }

    .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .d-flex .nav-link, .d-flex .btn-signup {
        margin-bottom: 10px;
        margin-left: 0px;
    }
}

/* Hero Section Style */

.hero-section {
    position: relative;
    padding: 50px 0; 
    margin-top: -50px;
}
.corner-vector {
    position: absolute;
    height: auto; 
}
.top-left-vector {
    top: 20%; 
    left: 0;
    margin-left: -10px;
    transform: translateY(-50%) translateX(-100%); 
}
.bottom-right-vector {
    bottom: 50%; 
    right: 0; 
    margin-right: -40px;
    transform: translateY(50%) translateX(100%); 
}
.custom-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px !important;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: white !important; 
    background: linear-gradient(to right, #ff4d4d, #336699);
    border: none;
    border-radius: 10px !important;
    transition: background 0.3s ease;
}

.display-content
{
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 44.5px;
}
.click-container {
    display: inline-block;
    position: relative;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
     background-image: linear-gradient(to right, #ff0000, #5a1fc7);
}

.click-image {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px; 
    height: auto;
    margin-left: 90px;
}

.hero-desc
{
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    color: #474747;
}

.list-custom-layout {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.list-custom-layout li {
    display: flex;
    align-items: center;
    flex: 1 1 calc(50% - 5px); 
    box-sizing: border-box;
}

.list-custom-layout li img {
    margin-right: 8px; 
}
.list-custom-layout li:nth-child(4) {
    flex: 1 1 calc(50% - 5px); 
}

.list-custom-layout li:nth-child(5) {
    flex: 1 1 calc(50% - 5px); 
}
.more-button
{
    font-size: 14px;
    color: #968a8a;
    text-decoration: underline;
}
.more-button:hover
{
    font-size: 14px;
    color: #968a8a;
}
@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
        margin-top: 0;
        height: auto;
    }
    .corner-vector {
        width: 100px; 
        height: auto;
    }

    .top-left-vector {
        top: 10%;
        left: 0;
        margin-left: -5px;
        transform: translateY(-50%) translateX(-50%);
    }

    .bottom-right-vector {
        bottom: 10%;
        right: 0;
        margin-right: -5px;
        display: none;
        transform: translateY(50%) translateX(50%);
    }
    .custom-button {
        padding: 8px 16px;
        font-size: 14px !important;
        border-radius: 4px;
    }
    .display-content {
        font-size: 2.5rem;
        margin: 0;
        padding: 10px 0;
    }
    .click-container {
        font-size: 2.5rem;
    }
    .click-image {
        top: -10px;
        width: 25px;
    }
    .hero-desc {
        font-size: 14px;
        text-align: center;
        padding: 10px;
        color: #474747;
    }
    .list-custom-layout {
        flex-direction: column;
        font-size: 14px;
    }

    .list-custom-layout li {
        flex: 1 1 100%;
        padding: 10px;
    }

    .list-custom-layout li img {
        width: 30px;
        margin-right: 5px;
    }
}
/* Services Section */
.services-section
{
    background-color: #F5F5F5;
}
.services {
    padding: 50px 0;
  }
  .services-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 50px;
  }

  .services-title span {
    color: #d12028;
  }

  .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .service-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%; 
    display: block;
    height: 160px;
    align-items: center;
    background-color: #ffffff;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
    font-size: 3rem;
    color: #d12028; 
  }

  .service-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .services-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .service-card {
        height: 140px;
        flex: 1 1 calc(50% - 10px);
    }
}
/* About Us Section */
.about-container {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
    margin: 0; 
}

.about-title {
    font-size: 1.8rem;
    font-weight: bold;
}

.about-highlight {
    color: #DA0811;
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .about-text {
        margin-right: 10px;
        margin-left: 10px;
    }
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Process Flow Section */
.process-section
{
    background-color: #F5F5F5;
    width: auto;
}
.process-title
{
    font-weight: bold;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
     background-image: linear-gradient(to right, #ff0000, #5a1fc7);
}
.process-subheading
{
    font-size: 18px !important;
    font-weight: bold;
    color: #AFAFAF;
}
.card-title {
    font-weight: bold;
  }
  .card-body p {
    font-size: 14px;
    color: #6c757d;
  }
  .custom-icon {
    height: 40px;
    margin: -30px auto 15px;
    display: block;
    z-index: 10;
  }
  .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 20px !important; 
    overflow: hidden;
  }
  .card-img-top {
    height: 150px;
    width: 100%;
    object-fit: cover;
  }
  @media only screen and (max-width: 768px) {
    .process-title {
        font-size: 24px !important; 
        text-align: center;
    }

    .process-subheading {
        font-size: 16px !important; 
        text-align: center;
    }

    .card {
        margin-bottom: 20px;
        border-radius: 15px !important; 
    }

    .card-body p {
        font-size: 12px !important; 
        text-align: center;
    }

    .custom-icon {
        height: 30px; 
        margin: -25px auto 10px; 
    }

    .card-img-top {
        height: 120px !important; 
        width: 100%;
        object-fit: cover; 
    }

    .process-section {
        padding: 15px; 
    }
}

/* Social Networks */
.social-networks {
    text-align: center;
    padding: 20px;
    background-color: #111111;
    color: #ffffff;
    height: 350px;
    max-width: auto;
    align-items: center;
  }
  
  .social-networks h2 {
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
    margin-top: 60px;
  }
  
  .social-networks p {
    margin-bottom: 30px;
    text-align: center;
    font-size: 20px;
  }
  
  .social-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .icon {
    text-align: center;
  }
  
  .icon img {
    width: 50px;
    height: 50px;
  }
  
  .telegram img,
  .whatsapp img {
    margin-top: -100px;
    width: 80px;
    height: 80px;
    margin-left: 80px;
    margin-right: 80px;
  }
  
  .icon p {
    margin-top: -15px;
    font-size: 30px;
    font-weight: bold;
  }
  
  .telegram {
    margin-right: auto;
  }
  
  .whatsapp {
    margin-left: auto;
  }
  
@media (max-width: 768px) {
    .social-networks {
      padding: 15px; 
      height: auto;
    }
  
    .social-networks h2 {
      font-size: 24px; 
      margin-top: 20px; 
      margin-bottom: 10px; 
    }
  
    .social-networks p {
      font-size: 16px; 
      margin-bottom: 20px; 
    }
  
    .social-icons {
      flex-direction: column;
      gap: 10px; 
    }
  
    .icon img {
      width: 40px; 
      height: 40px;
    }
  
    .telegram img,
    .whatsapp img {
      margin-top: 0;
      width: 60px; 
      height: 60px;
      margin-left: auto; 
      margin-right: auto;
    }
  
    .icon p {
      margin-top: 5px; 
      font-size: 20px; 
    }
  
    .telegram, .whatsapp {
      justify-content: center;
      display: flex;
    }
}
/* Why Choose Us Section */
.finix-text h6 {
    color: #e73c3e;
    font-weight: 400;
    font-size: 12px;
}

.finix-text h2 {
    font-weight: 400;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.finix-text p {
    color: #606060;
    font-size: 16px;
    line-height: 1.8rem;
}

.why-choose-us {
    margin-top: 90px;
    background-color: #ffffff;
}

.why-choose-us .finix-text h2 {
    font-weight: 500;
}

.why-choose-us .ct-btn {
    display: inline-block;
    width: 85px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    border-radius: 50%;
    font-size: 60px;
    background: #fff;
    position: absolute;
    top: 77%;
    right: 43%;
}

.why-choose-us .ct-btn::before {
    content: "";
    height: 85px;
    width: 85px;
    position: absolute;
    top: 0;
    left: 0;
    background: #e73a3e;
    border-radius: 50%;
    animation: choose 1.6s ease-out infinite;
}

@keyframes choose {
    0%, 30% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: .7;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.why-choose-us .ct-btn a {
    color: #e73c3e;
}

.why-choose-us .feature-box {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

.why-choose-us .feature-box:hover {
    transform: translateY(-10px);
}

.why-choose-us .feature-box:hover .fbc-btn {
    background: #e73c3e;
    color: #fff;
}

.why-choose-us .feature-box::before {
    content: "";
    position: absolute;
    top: -115px;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    height: 70%;
    background: #fdebeb;
    border-radius: 50%;
}

.why-choose-us .fbc-btn {
    display: inline-block;
    height: 90px;
    width: 90px;
    line-height: 90px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    color: #e73a3e;
    position: relative;
    transition: .4s;
}

.active-feature {
    margin-top: -30px;
}

.why-choose-us .finix-text {
    position: relative;
}

/* Mobile CSS */
@media (max-width: 767px) {
    .finix-text h6 {
        font-size: 15px;
    }

    .finix-text h2 {
        font-size: 28px; 
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .finix-text p {
        font-size: 14px; 
        line-height: 1.6rem; 
    }

    .why-choose-us {
        margin-top: 60px; 
    }

    .why-choose-us .ct-btn {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 45px;
        top: 75%;
        right: 30%;
    }

    .why-choose-us .ct-btn::before {
        height: 60px;
        width: 60px;
    }

    .why-choose-us .feature-box {
        padding: 20px; 
    }

    .why-choose-us .fbc-btn {
        height: 70px;
        width: 70px;
        line-height: 70px;
        font-size: 45px; 
    }

    .why-choose-us .feature-box::before {
        top: -80px;
        height: 50%;
    }

    .active-feature {
        margin-top: -20px; 
    }
}
/* Stats Section */
.stats-section {
    position: relative;
    overflow: hidden;
    background-color: #F5F5F5;
}
.stars-section {
    height: 150px;
    align-items: center;
}
.skewed {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #000;
    z-index: 0;
    margin-top: 100px;
    transform: skewY(4deg);
    transform-origin: top left;
}
.container {
    position: relative;
    z-index: 1;
}

.stat-card {
    background-color: white;
    border-radius: 20px !important;
    height: 100%;
    width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.stat-number {
    font-size: 55px;
    background: linear-gradient(to right, #ff0000, #5a1fc7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.stat-desc {
    font-size: 20px !important;
    font-weight: 800 !important;
}
@media (max-width: 767px) {
    .stars-section {
        height: 100px;
    }

    .stat-card {
        width: 100%; 
        margin-bottom: 20px; 
    }

    .stat-number {
        font-size: 40px; 
    }

    .stat-desc {
        font-size: 16px !important; 
        font-weight: 700 !important; 
    }
    .container {
        padding: 15px;
    }
    .skewed
    {
        transform: skewY(65deg);
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .stat-card {
        width: 100%; 
    }

    .stat-number {
        font-size: 50px; 
    }

    .stat-desc {
        font-size: 18px !important; 
        font-weight: 800 !important;
    }
}

/* Whatsapp CTA Section */
.bg-black {
    background-color: #000 !important;
}

.btn-whatsapp {
    background-color: #28a745 !important; 
    border-color: #28a745; 
    border-radius: 10px !important;
    color: white !important;
}

.btn-whatsapp:hover {
    background-color: #218838; 
    border-color: #1e7e34; 
}


/* Footer Section */
footer {
    background-color: #f8f9fa;
    height: 200px;
    width: auto;
}

footer h5 {
    font-weight: bold;
}

footer a {
    text-decoration: none;
    color: #212529;
}

footer a:hover {
    color: #d12028; 
}

footer p {
    color: #6c757d;
}
.list-unstyled
{
    margin: 20px;
}
.text-danger {
    color: #d12028 !important;
}

@media (max-width: 768px) {
    footer .col-md-4, footer .col-md-2 {
        margin-bottom: 20px;
    }
}

/* Project Header */
.project-header {
    background-color: #f64242;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 24px;
    align-items: center;
    margin-top: 10px;
    background-image: url('../images/bg_icon_wave.svg'); /* Ensure this image is responsive or adjusts well on smaller screens */
}

.project-header h1 {
    margin: 0;
    padding: 0;
}

.table-container {
    border: 1px solid #d12028;
    margin: 10px; /* Reduced margin for smaller screens */
    margin-top: 50px;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
}

.table-container thead {
    background-color: #d12028;
    color: #ffffff;
    align-items: center;
}

.table-container th, .table-container td {
    border: 1px solid #d12028;
    text-align: center; /* Center align text for better mobile readability */
    padding: 8px;
    border: 1px solid #ffffff;
}

.table-container td {
    border: 1px solid #d12028;
    text-align: left;
    padding: 8px;
}

.table-container a {
    text-decoration: none;
    color: black;
}

.table-container a:hover {
    text-decoration: none;
    color: black;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .project-header {
        padding: 10px 5px; /* Reduced padding */
        font-size: 20px; /* Smaller font size */
    }

    .table-container {
        margin: 5px; /* Smaller margin */
    }

    .table-container th, .table-container td {
        padding: 5px; /* Smaller padding */
        font-size: 12px; /* Smaller font size for table contents */
    }
}
