@font-face {
    font-family: "Gilroy";
    src: url("../assets/font/gilroy/Gilroy-SemiBold.ttf") format("truetype");
    font-weight: 600; /* SemiBold weight */
}

@font-face {
    font-family: "Gilroy";
    src: url("../assets/font/gilroy/Gilroy-Bold.ttf") format("truetype");
    font-weight: 700; /* Bold weight */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gilroy", sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Gradient Background Start*/

.bg {
    position: fixed;
    inset: 0;
    justify-content: center;
    display: inline-flex;
    flex-direction: row;
    z-index: -10;
}

.bg1 {
    width: 500px;
    height: 500px;
    position: relative;
    left: 800px;
    top: 200px;
    border-radius: 50%;
    animation: one 10s infinite;
    background: linear-gradient(180deg, #4191bd80, #ef65b880);

    opacity: 50;
    filter: blur(100px);
}
.bg2 {
    width: 500px;
    height: 500px;
    position: relative;
    right: 850px;
    top: 100px;
    border-radius: 50%;
    animation: one 10s infinite;
    background: linear-gradient(180deg, #acbd4180, #ef65b880);

    opacity: 50;
    filter: blur(90px);
}

/* Gradient Background End*/

.margin40 {
    margin: 40px;
}

.width-100 {
    width: 100%;
}

.hight100 {
    height: 100%;
}

.navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999;
}

.navbar-text ul li a {
    font-size: 16px;
    font-family: "Gilroy", sans-serif;
    color: #292929;
    font-weight: 600;
}

.main-heading-dark {
    font-size: 50px;
    letter-spacing: -0.01em;
    color: #000;
}
.main-heading-gray {
    font-size: 50px;
    letter-spacing: -0.01em;
    color: #525960;
}

.circlegif {
    /* transform: translate(60px, -60px); */
    display: flex;
    align-content: center;
    justify-content: center;
}

.circlegif img {
    width: 80%;
}

.hero-desc {
    max-width: 500px;
}

.contact-us-details p {
    font-size: 1.5rem;
}

.client-logos {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

/* .logos {
  display: flex;
  margin: 40px;
  justify-content: space-between;
}



.logos img {
  width: 100%;
  aspect-ratio: 0/2;
  object-fit: contain;
} */

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.sectors {
    overflow: hidden;
    padding: 0 0 50px 0;
    /* background-color: white; */
    white-space: nowrap;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.sectors-slide img {
    height: 200px;
    margin: 0 10px;
}

.sectors:hover .sectors-slide {
    animation-play-state: paused;
}

.sectors-slide {
    display: inline-block;
    animation: slide 15s infinite linear;
}

.findout-img {
    justify-content: center;
}

.findout-img img {
    /* width: 80%; */
    aspect-ratio: 3/2;
    object-fit: contain;
}

.about-img {
    justify-content: center;
}

.about-img img {
    width: 80%;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.card {
    width: 600px;
    /* height: 300px; */
    /* box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25); */
    border-radius: 16px;
    /* border: 1px solid rgb(85, 85, 85); */
    border: 1px solid rgb(185, 185, 185);

    /* background-color: rgba(222, 222, 222, 0.2); */
    background-color: transparent !important;
    padding: 24px;
    display: flex;
    gap: 10px;
}

.card-heading {
    font-size: 20px;
    letter-spacing: -0.01em;
    /* font-weight: 600; */
    color: #1c1c1c;
    text-align: left;
    display: inline-block;
}

.pic-cards img {
    width: 50%;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.pic-cards {
    height: 800px;
}

.btn img {
    width: 18px;
}

.data-container {
    margin: 100px 40px;
}

.product-cards {
    display: flex;
    justify-content: space-between;
    /* margin: 20px 40px; */
}

.product-card {
    align-items: flex-end;
    justify-content: space-between;
}

.text {
    margin: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text .bio ul {
    /* margin: 10px 0px; */
    margin: 1rem 0px !important;
    padding: 0rem !important;
}

.text .bio ul li {
    list-style: none;
}
.text .bio ul li:before {
    content: "\2714\0020";
}

.product-card-heading {
    display: flex;
    flex-direction: column;
}

.product-name {
    background: black;
    color: white;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    min-height: 6rem;
}
.product-price {
    /* background: black; */
    /* color: white; */
    align-items: center;
    justify-content: center;
    text-align: center;
    /* border: #000 solid 2px; */
    border: 1px solid rgb(185, 185, 185);

    border-radius: 5px;
    padding: 5px;
    animation: pricing-shake 0.5s ease-in-out 1; /* Apply the shake animation */
    display: ruby;
}
.new-price{font-size: xx-large;}

@keyframes pricing-shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}

.product-card-heading img {
    width: 32px;
}

.product-wheel-container .product-wheel-img img {
    width: 80%;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.product-wheel-container {
    margin: 200px 100px;
}

.products-name {
    display: flex;
    gap: 40px;
    /* margin-left: 80px; */
    align-items: center;
    font-size: 24px;
    justify-content: center;
}

.join-other-container {
    margin: 50px 0px;
}

.product-pricing-cards {
    gap: 40px;
}

.pricing-card {
    /* width: 600px; */
    /* height: 300px; */
    /* box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25); */
    border: 1px solid rgb(185, 185, 185);

    border-radius: 16px;
    /* background-color: rgba(222, 222, 222, 0.2); */
    /* background-color: transparent !important; */
    /* background: linear-gradient(117deg, rgba(252, 181, 68, 0.736) 0%, rgba(255, 255, 255, 0) 100%); */

    padding: 24px;
    display: flex;
    /* gap: 10px; */
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.faq-container {
    margin: 100px 40px;
}

.accordion {
    /* box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25); */
    border-radius: 0.375rem;
}

.gap-20 {
    gap: 20px;
}

.gap-10 {
    gap: 10px;
}

.gap-100 {
    gap: 100px;
}

.pro-pic img {
    width: 100%;
    /* aspect-ratio: 3/2; */
    object-fit: contain;
}

/* FOOTER */

footer {
    background-color: #000000;
    color: white;
    /* padding: 20px; */
    /* position: fixed; */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px;
    /* gap: 40px; */
}

.footer-item {
    /* padding: 10px; */
}

.footer-item h4 {
    margin-top: 0;
}

.footer-item ul {
    list-style: none;
    padding: 0;
}

.footer-item ul li {
    margin: 5px 0;
}

.footer-item a {
    color: #fff;
    text-decoration: none;
}

.footer-item a:hover {
    text-decoration: underline;
}

.footer-item .footer-img img {
    width: 40%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

#customInput {
    background-color: #fff !important;
}

.padding-40 {
    padding: 40px;
}

.email-submit-btn {
    display: flex;
    align-items: center;
    border: 1px solid white;
    border-radius: 50%;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.email-submit-btn:hover {
    background-color: #424649;
    transform: scale(1.05);
}

.AM-container {
    margin: 50px 0px;
}

.AM-container .AM-vid video {
    max-width: 600px;
    border-radius: 3px;
}

/* .AM-container .AM-vid video  {
    max-width: 600px;
} */

.maxWidth {
    max-width: 600px;
}

.product-pricing-page-container {
    margin: 100px 0px;
}

.Contact-us-page-container {
    margin: 100px 0px;
}

form {
    /* border: 1px solid black; */
    border: 1px solid rgb(185, 185, 185);

    padding: 40px;
    /* width: 500px; */
    border-radius: 0.375rem;
}

.form-control {
    background-color: transparent !important;
    /* border: 1px solid #000000 !important; */
    border: 1px solid rgb(185, 185, 185);

    color: #000000 !important;
}

#text-no-field::placeholder {
    color: #0000008d;
}

.blog-section {
    margin: 100px 0px;
}

.blog-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-item div img {
    /* width: 100%; */
    /* aspect-ratio: 3 / 2; */
    /* object-fit: contain; */
}

.product-pricing-cards .pricing-card img {
    width: 80%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.event-card {
    /* width: 600px; */
    /* height: 300px; */
    /* box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25); */
    border-radius: 16px;
    /* background-color: rgba(222, 222, 222, 0.2); */
    background-color: transparent !important;
    padding: 24px;
    display: flex;
    /* gap: 10px; */
    flex-direction: column;
    /* justify-content: space-between; */
    /* min-height: 400px; */
}

.events-webinar-section {
    margin: 100px 0px;
    gap: 70px;
}

.event-card-text {
    padding: 20px;
}

.event-card-img img {
    width: 350px;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.events-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.webinar-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-pricing-container {
    margin: 50px 0px;
}

.margin50 {
    margin: 50px 0px;
}

/* Change the color of pagination links to black */
.pagination .page-link {
    color: black; /* Set link color to black */
    border-color: #ddd; /* Optional: change the border color */
}

.pagination .page-item.active .page-link {
    background-color: #000; /* Set active button background to black */
    border-color: #000; /* Optional: set border to black */
    color: white; /* Set text color of active page to white */
}

.pagination .page-link:hover {
    color: white; /* Set link color to white when hovered */
    background-color: #333; /* Darken the background on hover */
    border-color: #333; /* Optional: change border on hover */
}

.pagination .page-link:focus,
.pagination .page-item.active .page-link:focus {
    outline: none; /* Remove focus outline */
    box-shadow: none; /* Optional: remove shadow on focus */
}
.date-author img {
    width: 18px;
}
.blog-img {
    width: 100%;
    height: 230px;
    /* object-fit: cover; */
}

.blog-icon img {
    width: 20px;
}



.blog-detail-img img {
    /* width: 80%; */
    /* aspect-ratio: 3/2; */
    /* object-fit: contain; */
}

p.copyright {
    margin-top: 20px;
    text-align: center;
    color: #fff;
    background: #1e1e1e;
    line-height: 40px;
    font-size: 0.7em;
}

.event-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.title {
    display: block;
    white-space: normal;
    max-width: 100%;
    word-wrap: break-word;
    font-weight: bold;
    line-height: normal;
}

/* Loader styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(
        255,
        255,
        255,
        0.8
    ); /* Optional: Adds a semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures the loader appears on top of all content */
}

/* Spinner styles */
#loader .spinner {
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #000000; /* Black top border */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

/* Spinner rotation animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.phone-number-field {
    /* margin-bottom: 1rem;  */
}

.phone-no-group {
    margin-bottom: 1rem;
}

.phoneNumbersContainer {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.pro-image{
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: contain;
}

/*
#footer-alert {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

#footer-alert.show {
    display: block;
    opacity: 1;
} */
