
/* Font Definitions */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1s.ttf) format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1s.ttf) format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1s.ttf) format('truetype');
}

/* General Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    
}

body {
    
}
h1, h2 {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #daac00, #ffe259, #ffa751);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-justify-custom {
    text-align: justify;
}

    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        z-index: -1;
    }

#top_nav {
    background: linear-gradient(135deg, #daac00, #ffe259, #ffa751);
    color: transparent;
    padding: 0 8%;
    position: sticky;
    z-index: 1000;
}

.navbar-dark .navbar-nav .nav-link {
    color: #4a1c64;
    font-size: 14px;
    padding-right:1em;
}
/* Search box styling */
.search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
}

/* Input search styling */
.input-search {
    height: auto;
    width: 40px;
    border-style: none;
    padding: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all 0.5s ease-in-out;
    background-color: transparent;
    padding-right: 40px;
    color: #4a1c64;
}

    .input-search::placeholder {
        color: #4a1c64;
        font-size: 12px;
        letter-spacing: 1px;
        font-weight: 300;
    }

/* Button styling */
.btn-search {
    width: auto;
    height: 41px;
    border-style: none;
    font-size: 14px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: #4a1c64;
    background-color: transparent;
    pointer-events: painted;
}

    /* Focus and hover effects */
    .btn-search:focus ~ .input-search,
    .input-search:focus {
        width: auto;
        border-radius: 0px;
        background-color: transparent;
        border-bottom: 1.5px solid rgba(253, 254, 255, 0.5) ;
        transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
    }

.search-box:hover .input-search {
    width: auto;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1.5px solid #4a1c64;
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

#banner {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: lightcyan;
    overflow: hidden;
}

#bannertext {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 2rem;
}

    #bannertext h1 {
        color: forestgreen;
        font-size: 4rem;
        margin-top: 0;
    }

    #bannertext p {
        color: ;
        font-size: 1.25rem;
        margin: 30px 0 20px;
    }

#bannerimg {
    padding-right: 2rem;
    flex: 1;
}

    #bannerimg img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

#banner-btn-1, #banner-btn-2 {
    margin-top: 10px;}

.service-box .learn-more-link {
    display: none; /* Hide the link initially */
    position: absolute;
    /* Adjust position as needed */
    bottom: 2px;    
    color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    text-align: right;
}

    .service-box:hover .learn-more-link {
        display: block;
    }

    .service-box .learn-more-link::after {
        
        display: block;
        font-size: 12px;
        color: #000;
        margin-top: auto;
    }
#counter-section {
    background: blueviolet;
    padding: 50px 0;
    background-position: center;
    background-size: cover;
}

.counter-item {
    transition: transform 0.3s, box-shadow 0.3s;
}

    .counter-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

.counter-icon {
    font-size: 4rem;
    transition: color 0.3s;
}

.counter-item:hover .counter-icon {
    color: #ffd700;
}


.btn-primary {
    margin-top: 10px;
}

.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.data-sourcing-warning {
    background-color: #fffbeb; /* Light yellow background */
    border-left: 4px solid #f59e0b; /* Orange left border */
    padding: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem; /* Slightly rounded corners for the warning box */
    color: #78350f; /* Darker brown text */
}
#footer {
    background: #34403a;
    color: white;
    padding: 50px 20px;
}
.nav-link.footer-nav-link {
    color: lightgray; /* Initial color */
    transition: color 0.3s ease; /* Smooth transition for color change */
    font-size: 0.80em;
}

    .nav-link.footer-nav-link:hover {
        color: lightgoldenrodyellow;
        font-size: 0.85em; /* Color on hover */
    }



@media only screen and (max-width: 1200px) {
    #bannertext h1 {
        font-size: 3.5rem;
    }

    #bannertext p {
        font-size: 1.15rem;
    }

    #bannerimg {
        padding-right: 1.5rem;
    }
}

@media only screen and (max-width: 768px) {
    #bannertext h1 {
        font-size: 3rem;
    }

    #bannertext p {
        font-size: 1rem;
    }

    #service-img {
        padding: 10%;
    }
}

@media only screen and (max-width: 500px) {
    .counter-icon {
        font-size: 2.5rem;
    }

    #top_nav {
        padding: 0;
    }
}

.scrolling-text {
    font-size: 1rem;
    font-weight: bold;
    color: #272836;
    
    display: inline-block;
    animation: scroll-left-right 20s linear infinite;
}

    .scrolling-text:hover {
        color: #394b5e;
        transition: background-color 0.3s ease, color 0.3s ease;
        animation-play-state: paused;
    }

@keyframes scroll-left-right {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

.blinking-cursor {
    user-select: none;
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    to {
        visibility: hidden;
    }
}

.bi-chevron-double-right {
    font-size: 1rem;
    color:sienna;
}
    .bi-chevron-double-right:hover {
         /* Adjust the value to move it further or less */
        animation: oscillate 1s infinite alternate;
    }
@keyframes oscillate {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(10px);
    }
}


.testimonials-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.testimonial-item {
    flex: 0 0 auto;
    width: 100%;
}

.testimonial-card {
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial-item {
        width: 50%; /* Two items per row on medium screens */
    }
}

@media (min-width: 992px) {
    .testimonial-item {
        width: 33.33%; /* Three items per row on large screens */
    }
}

/* Hide scrollbar */
.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonials-wrapper {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}


/* Small screens */
@media (max-width: 576px) {
    .col {
        font-size: 10px;
    }
}

/* Medium screens */
@media (min-width: 577px) and (max-width: 768px) {
    .col {
        font-size: 20px;
    }
}

/* Large screens */
@media (min-width: 769px) {
    .col {
        font-size: 22px;
    }
}
.circle-logo {
    width: 35px; /* Adjust size as needed */
    height: 35px; /* Ensures it's perfectly circular */
    border-radius: 10%;
    object-fit: cover;
}

.cookiee-content{
    width:100%;
    flex-wrap: wrap;
    bottom:0;
    left:0;
    right:0;
    color:darkturquoise;
    box-shadow: none;
    padding: 7px, 2em;
    z-index: 999;
}
.cookiee-text {
    text-align:center;
}
#flip {
    height: 50px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}

    #flip > div > div {
        color: #fff;
        padding:5px 3px;
        height: 50px;
        /* margin-bottom: 45px; */
        display: inline-block;
    }

    #flip div:first-child {
        animation: show 7.5s linear infinite;
    }

    #flip div div {
        background: #42c58a;
    }

    #flip div:nth-child(1) div {
        background: none;
        color: #30B700;
    }

    #flip div:nth-child(2) div {
        background: none;
        color: #980002;
    }

    #flip div:nth-child(3) div {
        background: none;
        color: #f39c12;
    }

@keyframes show {
    0% {
        margin-top: -45px;
    }

    5% {
        margin-top: 0px;
    }

    33% {
        margin-top: 0px;
    }

    38% {
        margin-top: -45px;
    }

    66% {
        margin-top: -45px;
    }

    71% {
        margin-top: -90px;
    }

    99.99% {
        margin-top: -90px;
    }

    100% {
        margin-top: -45px;
    }
}

@keyframes flowIn {
    from {
        opacity: 0;
        transform: translateX(+85px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.img-flow-in {
    animation: flowIn 2s ease-out forwards;
}

.small-circle {
    width: 100px; /* Adjust this value to your desired size */
    height: 100px; /* Ensure height matches width for a perfect circle */
    object-fit: cover; /* Ensures the image fits within the container */
}
/* Dropdown multi-column styles */
.dropdown-menu.multi-column {
    width: 600px; /* Adjust width as needed */
}

.dropdown-menu .row {
    display: flex;
}

.dropdown-menu .col-lg-4 {
    padding: 10px;
}

.dropdown-menu .dropdown-item {
    color: #ffa751;
    transition: background-color 0.3s, color 0.3s;
}

    .dropdown-menu .dropdown-item:hover {
        background-color: #ffe259;
        color: #78350f;
    }

