 @tailwind base;
@tailwind components;
@tailwind utilities; 
* {
    box-sizing: border-box;
    font-family: "Outfit", sans-serif !important;
}

  html {
    font-size: 95%; /* Reduce the base font size (default is 100%) */
  }
  
  /* h1 {
    font-size: 1.75rem;
  } 
  
  h2 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 0.9rem;
  } */
    
.features-class {
    background-color: #008cff;
    height: 500px;
    border-radius: 25px;
}

.align {
    display: block;
    width: 15%;
    min-width: 150px;
    margin: auto;
    margin-top: 3%;
    text-decoration: none;
}
.align > a {
    text-decoration: none;
    color: black;
}

.fix-table {
    width: 50%;
}

.center-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 400px;
}
.margin-top {
    margin-top: 1rem;
}

.margin-top-testimonials {
    margin-top: 5rem;
}


.space-between-grid-items {
    justify-content: space-between;
    grid-gap: 1rem;
}

@media only screen and (max-width: 600px) {
    body {
        .center-modal {
            max-width: 400px;
            max-height: 150px;
            padding-left: 10px;
            padding-right: 10px;
            margin-right: 15px;
        }
        .hide {
            display: none;
        }
    }
}
@media only screen and (min-width: 600px) {
    .testimonials-container {
        width: 50%;
    }
}
.center_title {
    margin-left: auto;
    margin-right: auto;
}

.payment_list {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-left: 10%;
    width: 100%;
    padding: 0;
}

.payment_list li {
    list-style-type: none;
    text-align: center;
    padding: 5px;
    width: fit-content;
    /* border: 2px rgb(49, 111, 220) solid; */
    border-radius: 25%;
}
.payment_list li button {
    border-radius: 30px;
}

.payment_list li button img {
    border-radius: 25%;
    color: transparent;
}

@media only screen and (max-width: 768px) {
    .payment_list {
        margin-left: 0;
    }
    
}

/* .message-sender {
    background-color: #008cff;
    color: white;
    padding: 10px;
    width: fit-content;
    border: 2px solid greenyellow;
    border-radius: 2%;
}

.message-receiver {
    background-color: #000a13;
    color: white;
    padding: 10px;
    width: fit-content;
    border: 2px solid greenyellow;
    border-radius: 2%;
} */

.typing {
    display: inline-block;
    position: static;
    overflow: auto;
    padding: 30px, 70px, 0, 35px;
    height: 70px;
    max-height: fit-content;
    width: 100%;
}
/* 
.chat {
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: flex;
    flex-direction: column; 
    width: auto;
    gap: 10px;
    scrollbar-width: none;

} */

.message-sender {
    background-color: #008cff;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid greenyellow;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
    align-self: flex-start; /* Align messages to the left */
}

.message-receiver {
    background-color: #000a13;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: inline-block;
    max-width: 80%;
    border: 2px solid greenyellow;
    word-wrap: break-word;
    align-self: flex-end; /* Align messages to the right */
}

.chat {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 5px;
    max-height: 400px;
    overflow-y: scroll;
    margin-bottom: 20px;
    width: 80%;
    margin: auto;
}

#width-align {
    width: 80%;
    margin: auto;
}

.closed-status {
    color: rgb(235, 94, 94);
}

.wrapper-error {
    background-color: #13171f;
    text-align: center;
}

.error404 {
    font-size: 30em;
    border: 10px solid #0172ad;
    color: #0172ad;
    border-radius: 50%;
}

nav, .navbar-nav .nav-link {
    color: #0172ad;
}
/* Basic Nav Styling */
/* nav {
    display: flex;
    letter-spacing: 0.1rem;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 1000;
    box-sizing: border-box;
    font-weight: 1000 !important;
}

.nav-left, .nav-right {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-right li, .nav-right form li {
    margin-left: 15px;
    display: block;
}

.nav-right a, .nav-right form li a {
    text-decoration: none;
    color: #0172ad;
    /* font-weight: bold; 
}
.nav-right form {
    margin:0;
    padding: 0;
} */
.flex-balance {
    margin-left: auto;  /* Pushes the balance to the right */
    padding-right: 1.25rem; /* Adds some spacing from the edge */
}
/* Mobile Styles */
@media (max-width: 768px) {
    .nav-right {
        display: none; /* Hide menu by default */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background-color: white;
        z-index: 1000;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    }
    .nav-right ul {
        display: flex;
        flex-direction: column;
    }
    .nav-right li {
        display: block;
        width: 100%;
        /* text-align: center; */
        border-bottom: 1px solid #ddd; /* Thin line between items */
    }
    .nav-right li:last-child {
        border-bottom: none;
    }
    .mobile-only {
        display: block; /* Show hamburger button */
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #0172ad;
    }

    .nav-right.active {
        display: flex; /* Show menu when active */
    }
}

/* Hide hamburger button on desktop */
@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
}

.table-container {
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
}

.table-container table {
    min-width: 700px; /* Ensures table does not shrink too much */
    border-collapse: collapse; /* Improves spacing */
}

/* Optional: Style table for better readability */
.table-container th, .table-container td {
    padding: 10px;
    text-align: left;
    /* border: 1px solid #ddd; */
}

/* Hide scrollbar on desktop but keep scrollability on mobile */
@media (min-width: 768px) {
    .table-container {
        overflow-x: visible;
    }
}

/* CSS */
.button-click-here {
  align-items: center;
  appearance: button;
  background-color: #ffffff;
  border-radius: 8px;
  border:2px solid #0172ad;
  border-width: 1px;
  box-shadow: rgba(255, 255, 255, 0.26) 0 1px 2px inset;
  box-sizing: border-box;
  color: black;
  cursor: pointer;
  flex-shrink: 0;
  /* font-family: "RM Neue",sans-serif; */
  /* font-size: 100%; */
  line-height: 1.15;
  /* margin: 0; */
  padding: 15px 21px;
  text-align: center;
  /* text-transform: none; */
  /* user-select: none; */
  /* -webkit-user-select: none; */
  touch-action: manipulation;
  /* text-decoration: none; */
}

.button-click-here:active {
  background-color: #0172ad;
}

.button-click-here:hover {
  background-color: #0172ad;
}
article a {
    text-decoration: none;
}

/* .bebas-neue-regular {

    font-family: "Bebas Neue";
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
  } */
  
  /* .manjari-regular {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
    font-size: small !important;
  } */
.breadcrumb-z {
    z-index: -10;
}

  /* CSS from React */

  .App-space {
    padding: 50px;
}

.App-home {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 40px;
    margin: 3rem auto;
}

.App-home .left-container {
    width: 50%;
    /* text-align:start; */
    /* padding-left: 3rem; */
}
.App-home .left-container h1{
    font-size: 4rem;
    margin-bottom: 2rem;
}
.App-home .left-container h1 span{
    color: rgb(97, 96, 96);
    font-weight: 300;
    font-size: 4rem;
}
.App-home .left-container p{
    color: #212529BF;
    font-size: 20px;
    margin: 0 0 16px;
    padding: 0 0 16px;
}
.App-home .left-container .left-container-second-item {
    border: 2px solid black;
    padding: 5px 2px 5px 10px;
    border-radius: 100px;
    width: 80%;
    margin-bottom: 5rem;
    text-align: start;
    position: relative;
    overflow-x: hidden;
}
.App-home .left-container .left-container-second-item input{
    position: absolute;
    border: none;
    width: 50%;
    padding: 2px 0;
    margin: 2px auto;

}

.App-home .left-container .left-container-second-item button{
    width: 35%;
    float: inline-end;
    color: white;
    background-color: #0172ad;
    font-weight: bold;
    padding: 18px 32px;
    border: none;
    border-radius: 100px;
    font-size: 14px;
}
.App-home .left-container .left-container-third-item {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: space-between;
}
.App-home .left-container .left-container-third-item p{
    font-size: 14px;
}
.App-home .left-container .left-container-third-item .left-container-item{
    font-size: 2rem;
    font-weight: bold;
}
.App-home .right-container {
    width: 50%;
    text-align: end;
    /* padding-right: 5rem; */
}
.App-home .right-container img{
    width: 550px;
    height: 500px;
    /* margin-right: 3rem; */
}


.App-about {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 1.9rem;
    text-align: center;
    background-color: #b8e6ffd8;
    padding: 6rem;
}

.App-about .about-item{
    width: 20rem;
}
.App-about .about-item h1{
    color: #0172ad;
    font-size: 5.5rem;
    margin-bottom: 10px;
}
.App-about .about-item h2{
    
}
.App-about .about-item p{
    padding: 10px;
    color: #878787;
    font-size: 14px;
}

.App-about2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
    /* flex-wrap: wrap; */
    /* padding: 3rem; */
}

.App-about2 .left-container {
    width: 50%;
    text-align: center;
}

.App-about2 .left-container img{
    width: 600px;
    height: 500px;
    margin-right: 3rem;
    margin: 3rem 3rem 0 0;
}
.App-about2 .right-container {
    width: 50%;
    padding: 0 10px;

}
.App-about2 .right-container h1{
    font-size: 4rem;
    margin-bottom: 1rem;
}
.App-about2 .right-container h1 span{
    color: rgb(97, 96, 96);
    font-weight: 300;
    font-size: 4rem;
}
.App-about2 .right-container p{
    color: #212529BF;
    font-size: 20px;
    margin: 0 0 10px;
    padding: 0 0 16px;
}
.App-about2 .right-container .right-container-list .right-container-item h4{
    /* font-weight: bold; */
    padding: 10px 0;
}
.App-about2 .right-container .right-container-list .right-container-item p{
    /* font-weight: bold; */
    font-size: 14px;
}
.App-footer {
    color: white;
    background-color: #b8e6ffd8;
    width: 100%;
}

.App-footer .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 0 4px;
    /* padding: 6.5rem 5rem 24px; */
    gap: 1rem;
}
.App-footer .footer-first-column {
    width: 35rem;
    margin: 0 0 48px;
    padding: 0 0 24px;
    font-weight: 400;
}

.App-footer .footer-first-column h1{
    /* font-size: 20px; */
    padding: 30px 0 0 ;
}
.App-footer .footer-first-column h4{
    /* margin: 24px 0 8px; */
    margin: 0 0 4px;
}
.App-footer .footer-first-column p{
    margin: 0 0 16px;
    /* font-size: 14px; */
    font-weight: 400;
    color: rgb(84, 84, 84);

}
.App-footer .footer-second-column {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 400px;
    margin: 0 0 48px 7rem;
    padding: 0 0 24px;
    text-decoration: none;
}
.App-footer .footer-second-column h2{
    margin: 0 0 8px;
    padding: 0 0 16px;
}
.App-footer .footer-second-column ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* background-color: blueviolet; */
}
.App-footer .footer-second-column ul li{
    list-style: none;
    font-weight: 400;
    color: rgb(84, 84, 84);
    /* background-color: rgb(59, 8, 106); */
    /* padding-right: 100px; */
}
.App-footer .footer-second-column ul li a{
    color: inherit;
    text-decoration: none;
}
.App-footer .footer-third-column {
    display: flex;
    flex-direction: column;
    /* font-size: 24px; */
    margin: 0 0 48px;
    padding: 0 0 24px;
    width: 50rem;
    font-weight: 400;
}
.App-footer .footer-third-column h4{
    /* font-size: 24px; */
}
.App-footer .footer-third-column h4 span{
    font-size: inherit;
    color: #0172ad;
}
.App-footer .footer-third-column .contact-info {
    width: 100%;
    display: flex;
    flex-direction: row;
    text-align: start;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 30px;
    color: rgb(84, 84, 84);
}
.App-footer .footer-third-column .contact-info div {

}
.App-footer .footer-end {
    color: rgb(91, 91, 91);
    background-color: #aae1ffd8;
    /* padding: 2.5rem 3rem; */
    margin: auto;
    text-align: center;
}
.App-footer .footer-end p{

}
@media (max-width: 1032px) {
    .home-page-image {
        display: none;
    }
    .App-home, .App-about2 {
        flex-direction: column;
        /* justify-content: center; */
        /* align-items: center; */
    }
    .App-home .left-container, .App-about2 .right-container {
        width: 100%;
    }
    .App-home .right-container, .App-about2 .left-container {
        width: 100%;
        padding: 0;
        margin: auto;
        text-align: center;
    }
    .App-about {
        flex-wrap: wrap;
    }
    
    .App-footer .container {
      /* flex-direction: column;  */
      flex-wrap: wrap;
      gap: 0;
      padding: 0;
      margin: 10px 10px 0;
      text-align: start;
      justify-content: start;
    }
    .App-footer .footer-second-column, .App-footer .footer-first-column {
        margin: 0 0 0 1rem;
        text-decoration: none;
    }

  }

  @media (min-width: 1032px) {
    .margin-bottom {
        margin-bottom: 2rem;
    }
    .center-article {
        margin: auto;
        width: 50%;
    }
}

.green {
    color: green;
}

.padding {
    padding: 2rem;
}

.link-button {
    all: unset; /* Resets all styles */
    color: var(--pico-primary); /* Uses Pico's primary color */
    text-decoration: underline; /* Makes it look like a link */
    cursor: pointer; /* Shows pointer cursor like a link */
}

.link-button:hover {
    text-decoration: none; /* Removes underline on hover for a natural link effect */
}



.account-card {
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
    background: var(--card-background-color, #fff);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* gap: 0.5rem; */
    /* padding: 0.5rem; */
    border-radius: var(--pico-border-radius);
    box-shadow: var(--pico-card-box-shadow);
    background-color: var(--pico-background);
    text-align: center;
    max-width: 350px;
}

.account-image {
    width: 100%;
    height: auto;
    border-radius: var(--pico-border-radius);
}

.price {
    font-weight: bold;
    color: var(--pico-primary);
}

.view-account {
    background: none;
    border: 1px solid var(--pico-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--pico-border-radius);
    color: var(--pico-primary);
    cursor: pointer;
    transition: background 0.2s ease;
}

.view-account:hover {
    background: var(--pico-primary);
    color: var(--pico-contrast);
}
.grid-parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 2px;

}

@media (max-width: 768px) {
    .grid-parent {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
    .about2-title {
        font-size: 12px;
    }
}


.tabs {
    display: grid;
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
}

.tab {
    color: #000a13;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border: 1px solid var(--pico-primary);
    background-color: var(--pico-background);
    cursor: pointer;
    border-radius: var(--pico-border-radius);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab.active {
    background-color: var(--pico-primary);
    color: white;
}

.tab:hover {
    background-color: var(--pico-primary);
    color: white;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
}

.account-details {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
    background: var(--card-background-color, #fff);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.account-details img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.account-details h1 {
    font-size: 1.8rem;
    color: var(--primary, #333);
    margin-bottom: 10px;
}

.account-details p {
    font-size: 1rem;
    color: var(--muted-color, #555);
    margin: 8px 0;
}

.account-details strong {
    color: var(--primary, #222);
}

.alert {
    background: var(--warning, #ffcc00);
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
}

.buy-now {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: var(--primary, #007bff);
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease;
}

.buy-now:hover {
    background: var(--primary-hover, #0172ad);
}
/* 
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Modal */
/* .modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
} */

/* Modal Header 
.modal header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Close Button 
.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

/* Modal Form 
.modal p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Buttons 
.confirm-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.cancel-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 10px;
} */

.faq-questions {
    background: #fff;
    padding: 20px 16px;
    border-radius: 8px;
    /* font-size: 18px; */
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    width: 50%;
}

.faq-questions:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-questions:active {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

/* Optional: Add a subtle animation when expanding */
details[open] .faq-questions {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.faq-answers {
    /* padding-left: 0.5rem; */
    width: 50%;
    margin: auto;
}

.faq-center {
    margin: auto;
    padding: auto;
    text-align: center;
}
.faq-center h2 {
    margin: auto;
    padding: 5rem;
    text-align: center;
}
.faq-question-details {
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-questions, .faq-answers {
        width: 100%;
    }
}
/* @media (min-width: 480px) {
    .testimonials {
        display: none;
    }
     */
/* } */
.big-margin {
    margin-top: 10rem;
}

/* Services Page Styles */
.services {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #0172ad;
    margin-bottom: 10px;
}

.services-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Services Container */
.services-container {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    /* gap: 30px; */
    justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    text-align: center;
}

/* Service Cards */
.service-card {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

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

.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #0172ad;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.service-card .btn {
    text-decoration: none;
    background-color: #0172ad;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.service-card .btn:hover {
    background-color: #005f8b;
}

/* Call to Action Section */
.cta {
    text-align: center;
    background-color: #b8e6ffd8;
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
    border-radius: 8px;
}

.cta h3 {
    font-size: 2rem;
    /* color: white; */
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta .primary-btn {
    background-color: #fff;
    color: #0172ad;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta .primary-btn:hover {
    background-color: #f8f9fa;
    color: #0172ad;
}


/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
    padding: 30px 20px;
    /* max-width: 380px; */
    text-align: center;
    /* gap: 20px; */
    margin-top: 5rem;

}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: #0172ad;
    margin-bottom: 10px;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: #6c757d;
    padding: 2rem !important;
}

/* Testimonials Cards Container */
.testimonials-container {
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
    /* gap: 5rem; */
    justify-items: center;
    /* padding: 50px; */
    
}

/* Individual Testimonial Card */
.testimonial-card {
    background-color: #fff !important;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
    border-color: #0172ad;
    text-align: center;
    padding-bottom  : 10px !important;
    /* max-height: 500px;
    min-height: 500px; */
}

/* .testimonial-card:hover {
    transform: translateY(-10px);
} */

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50% !important;
    object-fit: cover;
    margin-bottom: 2rem !important;
    margin-top: 2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-size: 1.4rem;
    color: #0172ad;
    margin-bottom: 5px;
}

.client-role {
    font-size: 1.1rem;
    color: #6c757d;
    padding-bottom: 3rem;
}

/* Responsive Design for Testimonials*/
@media (max-width: 768px) {
    .testimonial-card {
        max-height: 500px;
        min-height: 500px;
    }
}

/* .swiper {
    max-width: 600px;
    max-height: 600px;
  } */
.subscribe-form {
    justify-content: center;
    /* display: flex; */
    justify-content: center;
    margin-top: 5rem;
    align-items: center;
}

.small-input {
    width: 30%;
}

.about-section {
    max-width: 800px;
    margin: 20px;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-section h1 {
    color: #0172ad;
    text-align: center;
    margin-bottom: 3rem;
}

.about-section h2 {
    color: #0172ad;
    margin-top: 20px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.about-section p {
    line-height: 1.6;
    text-align: justify;
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-section ul {
    padding-left: 2rem;
    padding-right: 2rem;

}

.about-section ul li {
    margin-bottom: 8px;
    padding-left: 2rem;
    padding-right: 2rem;
    list-style: none;
}

.about-section a {
    color: #007bff;
    text-decoration: underline;
}

.about-section a:hover {
    color: #0172ad;
}
/* Container for the chat messages */
.chat-container {
    margin: 0 auto;
    padding: 10px;
    max-width: 100%;  /* Ensures the chat container does not stretch too wide */
}

/* Individual message styling */
.message {
    display: flex;
    margin-bottom: 15px;
    
}

/* Sent message (right side) */
.message.sent {
    justify-content: flex-end;
}

/* Received message (left side) */
.message.received {
    justify-content: flex-start;
}

/* Message bubble styling */
.message-bubble {
    background-color: #b8e6ffd8;  /* Light green for received messages */
    border-radius: 20px;
    padding: 10px 15px;
    max-width: 70%;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid cornflowerblue;

}

/* Sent message bubble styling */
.message.sent .message-bubble {
    background-color: #b8e6ffd8;  /* WhatsApp-style green for sent messages */
    color: white;
}

/* Sender's name styling */
.message-bubble strong {
    display: block;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 5px;
}

/* Adjust the arrow pointing to the message (for received messages) */
.message.received .message-bubble::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #b8e6ffd8;  /* Color of the received message */
    transform: translateY(-50%);
}

/* Adjust the arrow for sent messages */
.message.sent .message-bubble::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #b8e6ffd8;  /* Color of the sent message */
    transform: translateY(-50%);
}

/* Form styling for sending messages */
textarea.form-control {
    border-radius: 10px;
    font-size: 14px;
}

/* Styling the form for sending messages */
.form-for-sending-message {
    background-color: #f7f7f7;  /* Light grey background for the form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-for-sending-message .form-group {
    margin-bottom: 20px;
}

.form-for-sending-message .form-label {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.form-for-sending-message .form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    font-size: 14px;
    background-color: #fff;
}

.form-for-sending-message .btn-submit {
    background-color: #b8e6ffd8;  /* WhatsApp-style green */
    color: black;
    /* font-weight: bold; */
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.form-for-sending-message .btn-submit:hover {
    background-color: #98d9fcd8;
}

.form-for-sending-message .form-group textarea:focus,
.form-for-sending-message .form-control:focus {
    outline: none;
    border-color: #b8e6ffd8;  /* Highlight border on focus */
}

/* Responsive layout for the chat */
@media (max-width: 768px) {
    .chat-container {
        max-width: 100%;
    }

    .message-bubble {
        max-width: 85%;
    }

    .form-for-sending-message {
        padding: 15px;
    }

    .btn-submit {
        width: 100%;
    }
    .services-container {
        grid-template-columns: repeat(1, 1fr);

    }
}

/* Badge styling for ticket status */
.status-open {
    color: #fff;
    background-color: #69c77f; /* Green for 'open' status */
    padding: 15px 20px;
    border: 2px solid #69c77f;
    border-radius: 20px;
}

.status-closed {
    color: #fff;
    background-color: #dc3545; /* Red for 'closed' status */
}

.ticket-description {
    padding: 25px;
    width: 100%;
    background-color: #b8e6ffd8;
    float: inline-end;
    border-radius: 15px;
    text-align: center;
}

.created-at {
    background-color: #eef0f1;
    padding: 10px;
    border-radius: 25px;
    margin-top: 20px;
    font-size: 14px;
}

.header-reply {
    margin-top: 10rem;
    text-align: center;
    width: 100%;
}

.reply-container {
    width: 100%;
    margin-top: 8rem;
}

/* Additional layout and text fixes */
.ticket-info {
    margin-bottom: 30px;
}

/* Making the date and status more prominent */
.created-at, .ticket-description {
    margin-top: 10px;
}

.ticket-subject {
    text-align: center;;
}
.conatiner-support {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.conatiner-support h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.btn-new-ticket {
    background-color: #0172ad;
    border-color: #0172ad;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    text-decoration: none;
    margin-bottom: 300px;
    text-align: center;
}

.btn-new-ticket:hover {
    background-color: #0389d1;
}
.btn-container {
    width: 100%;
    text-align: center;
    margin-bottom: 6rem;
}

/* General Table Styling */
/* .table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */

/* Table Header Styling */
/* .table thead {
    background-color: #f8f9fa;
}

.table thead th {
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 2px solid #dee2e6;
}

/* Table Body Styling 
.table tbody tr {
    border-bottom: 1px solid #f1f3f5;
}

.table tbody td {
    padding: 12px 15px;
    font-size: 14px;
    color: #495057;
    text-align: left;
}

/* Row Hover Effect 
.table tbody tr:hover {
    background-color: #f1f3f5;
    cursor: pointer;
}

/* Action Button Styling 
.table .btn-info {
    background-color: #3c8dbc;
    color: white;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}

.table .btn-info:hover {
    background-color: #217fa2;
}

/* No tickets message */
/* .table tbody td[colspan="4"] {
    text-align: center;
    padding: 15px;
    background-color: #f8f9fa;
    color: #6c757d;
    font-style: italic;
} */

/* Responsive Design
@media (max-width: 768px) {
    .table {
        font-size: 12px;
    }

    .table thead th, .table tbody td {
        padding: 10px;
    }

    .table tbody tr {
        display: block;
        margin-bottom: 10px;
    }

    .table tbody td {
        display: block;
        text-align: right;
        font-size: 14px;
    }

    .table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #495057;
        text-transform: uppercase;
    }
} */


/* BOOTSTRAP */

body {
    background-color: #fff;
}

.selector-for-some-widget {
    box-sizing: content-box;
}
.info-box {
	padding: 60px 45px;
	min-height: 100%;
	background: var(--white);
	border-radius: 10px;
	box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
}
.btn-primary {
    background-color: #0172ad !important;
}
/* Style for all tabs */
.nav-pills .nav-link {
    color: #6c757d;  /* Default text color */
    background-color: #f8f9fa;  /* Default background color */
    border-radius: 20px;  /* Rounded corners */
    border: 1px solid #ddd;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

/* Hover effect for tabs */
.nav-pills .nav-link:hover {
    background-color: #e2e6ea;  /* Light gray background on hover */
    color: #495057;  /* Darker text color on hover */
}

/* Style for the active tab */
.nav-pills .nav-link.active {
    color: #fff;  /* White text for the active tab */
    background-color: #0172ad !important;  /* Bootstrap's primary blue for active tab */
    border-color: #0172ad !important;  /* Border color to match the background */
}
.my-color {
    color: #0172ad !important;
}