/* Root Variables */
:root {
    --primary-color: #082c3c;
    --light-color: #e0dcdc;
    --deep-black: #080404;
}

@font-face {
    font-family: 'Aeonik';
    src: url('Aeonik/Aeonik-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('Aeonik/Aeonik-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('Aeonik/Aeonik-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Apply it to the whole website */

/* Base Styles */
body {
    background-color: var(--light-color);
    font-family: 'Aeonik', sans-serif;
}

/* Navigation Styles */
.navbar {
    height: 60px;
    background-color: #05202c;
    border-radius: 50px;
    padding: 10px 20px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 95%;
    width: 900px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar-brand {
    margin-right: 30px;
}

.navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding: 10px 20px;
    margin: 0 5px;
    transition: all 0.3s;
}
.logo-img {
    max-height: 50px; /* Set a reasonable fixed size */
    width: auto;
}

/* Adjust logo size for tablets */
@media (max-width: 991px) {
    .logo-img {
        max-height: 50px;
    }
}

/* Further reduce logo size for mobile phones */
@media (max-width: 576px) {
    .logo-img {
        max-height: 40px;
    }
}
.navbar-nav .nav-link:hover {
    color: rgba(255,255,255,0.8);
}

.btn{
    z-index: 10;
}
.contact-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50px;
    padding: 10px 25px;
    margin-left: 10px;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}
.dropdown-menu {
    background-color: #05202c;
    border: none;
    display: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown:not(:hover) .dropdown-menu {
    transition-delay: 0.5s;
}

.dropdown-item {
    color: var(--light-color);
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(var(--primary-color), var(--primary-color)), url('/api/placeholder/1200/400');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 8rem 0 4rem;
    z-index: 100;
}

/* Card Styles */
.service-card,
.compliance-card,
.feature-card,
.team-card,
.process-card {
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover,
.compliance-card:hover,
.feature-card:hover,
.process-card:hover {
    transform: translateY(-5px);
}

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

/* Icon Styles */
.icon-circle,
.benefit-icon,
.feature-icon {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    color: var(--light-color);
    font-size: 1.5rem;
}

/* Compliance Specific */
.fa-credit-card,
.fa-hospital-user,
.fa-shield-alt {
    color: var(--primary-color);
}

.framework-badge {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin: 0.25rem;
}

.checklist-item {
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 1rem;
    background-color: white;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}
.timeline2 {
    position: relative;
    padding-left: 3rem;
}
.timeline2::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}



.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

/* Stats Section */
.stats-card {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Mission Section */
.mission-section {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* CTA Styles */
.cta-button {
    background-color: var(--light-color);
    color: var(--primary-color);
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-section {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Media Queries */
@media (max-width: 768px) {
    .timeline::before {
        left: 31px;
    }
}
section.bg-white {
    width: 100%;
   
}

.scramble {
    transition: color 0.2s ease;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;

}
#animated-text {
    display: inline-block;
    font-family: monospace;
    transition: all 0.5s ease-in-out;
}

.client-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.client-carousel {
    padding: 2rem 0;
}

.client-item {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.client-item img {
    max-height: 80px;
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.client-item:hover img {
    filter: grayscale(0%);
}

/* Testimonial Styles */
.testimonial-section {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 10px;
    height: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: var(--primary-color);
    opacity: 0.1;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: #f0f0f0;
}

.client-details h5 {
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.client-details p {
    margin-bottom: 0;
    color: #777;
}

.stars {
    color: gold;
    margin-bottom: 10px;
}




/* Control Buttons */
.carousel-control {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-control:hover {
    background-color: #0a3e56;
}

.carousel-control.prev {
    left: -20px;
}

.carousel-control.next {
    right: -20px;
}

.client-carousel-container {
    position: relative;
    max-width: 100%;
    min-height: 15vh;
    overflow: hidden;
    padding: 20px 0;
}

.client-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.client-item img {
    max-width: 150px;  /* Adjust as needed */
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #333;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    padding: 10px;
    transition: 0.3s ease-in-out;
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .client-item img {
        max-width: 120px;
        max-height: 60px;
    }

    .carousel-control {
        font-size: 20px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .client-item img {
        max-width: 100px;
        max-height: 50px;
    }

    .carousel-control {
        font-size: 18px;
        padding: 6px;
    }
}
