* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Poppins';
    src: url('../Font/Poppins/Poppins-Light.ttf') format('ttf'), url('../Font/Poppins/Poppins-Italic.ttf') format('ttf'), url('../Font/Poppins/Poppins-Medium.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar */
.custom-navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    display: flex;
    color: #203e80;
    align-items: center;
    position: relative;
    z-index: 1000;
    width: 100%;
    top: 0;
}

@media (max-width: 768px) {
    .custom-navbar {
        padding: 8px 16px;
        margin-bottom: 0;
        background: #ffffff;
    }
    .custom-navbar .ArkonlogoImg {
        margin-bottom: 0;
    }
    .custom-navbar .nav-link {
        padding: 8px 10px;
        font-size: 16px;
    }
    section.py-5.whatwedo {
        margin-top: -200px;
    }
}

.custom-navbar .nav-link {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.65);
    padding: 10px 15px;
}

.custom-navbar .nav-link:hover {
    color: #1f8b4c;
}

.ArkonlogoImg img {
    height: 35px;
    margin: 0;
}

/* ======= DESKTOP STYLES ======= */
/* ======= DESKTOP STYLES ======= */
.banner-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ======= DESKTOP STYLES (Reduced Height) ======= */
.banner-section {
    width: 100%;
    height: 60vh;
    /* Changed from 100vh to 60vh */
    position: relative;
    overflow: hidden;
}

.banner-slide {
    width: 100%;
    height: 60vh;
    /* Changed from 100vh to 60vh */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 100%;
    transition: left 0.5s ease;
}

.banner-slide.active {
    left: 0;
}

.banner-slide.prev {
    left: -100%;
}

.banner-controls {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #1f8b4c;
}

/* ======= MOBILE ONLY STYLES ======= */
@media (max-width: 768px) {
    .banner-section {
        height: auto;
        overflow: hidden;
        position: relative;
    }
    .banner-slide {
        display: none;
    }
    .mobile-banner {
        display: block;
        width: 100%;
    }
    .mobile-banner img {
        width: 100%;
        height: auto;
        display: block;
    }
    .banner-controls {
        display: none;
    }
    section.py-5.whatwedo {
        margin-top: -200px;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(#203e80, #203e80);
    padding: 60px 20px;
    text-align: center;
}

.site-footer h6,
.site-footer p,
.site-footer a {
    color: #ccc;
}

.site-footer a.footer-link:hover {
    color: #ffeb3b;
}

/* Buttons */
.btn-primary,
.btn-search,
.btn-orange,
.btn-purple {
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background: #6f42c1;
}

.btn-primary:hover {
    background: #5936a6;
}

.btn-orange {
    background: #ff5722;
}

.btn-orange:hover {
    background: #e64a19;
}

.btn-purple {
    background: #7e57c2;
}

.btn-purple:hover {
    background: #5e35b1;
}

.btn-search {
    background: #203e80;
    color: white;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Common fixes */
ul {
    list-style: none;
    padding-left: 0;
}

a.nav-link {
    font-size: 17px;
}

a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.fw-bold {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    section h2 {
        font-size: 1.5rem;
    }
    section p {
        font-size: 0.95rem;
    }
    section.py-5.whatwedo {
        margin-top: -200px;
    }
}

@media (max-width: 768px) {
    section h2 {
        font-size: 1.5rem;
    }
    section p,
    section ul li {
        font-size: 0.95rem;
    }
}

.tech-section {
    background-color: #f9f9f9;
}

.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.learn-link {
    display: inline-block;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.learn-link .icon {
    font-size: 1rem;
    margin-left: 5px;
    transition: margin-left 0.2s ease;
}

.learn-link:hover .icon {
    margin-left: 10px;
    color: #1f8b4c;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    transition: 0.3s ease;
}

.timeline {
    border-left: 3px solid #d9e0ec;
    padding-left: 2.5rem;
}

.timeline-item {
    position: relative;
}

.timeline-step {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consideration-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #203e80;
    /* Bootstrap primary color */
}

.consideration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .consideration-card {
        text-align: center;
    }
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f3f5;
}

.icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-grid img {
    object-fit: cover;
    height: 100px;
    width: 100%;
}

@media (max-width: 767.98px) {
    .image-grid img {
        height: 80px;
    }
}

/* SCROLL CONTAINER */
/* INDIVIDUAL CARD STYLES */
.info-card {
    scroll-snap-align: start;
    background-color: #f9fbfe;
    border-left: 4px solid #203e80;
    min-width: 320px;
    max-width: 380px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575.98px) {
    .banner-section {
        height: 40vh;
        background-position: center top;
        padding: 20px 15px;
    }
}

@media (max-width: 991.98px) {
    .banner-navbar {
        margin-left: -15px;
    }
}

@media (max-width: 575.98px) {
    #key-considerations .row {
        row-gap: 1rem !important;
    }
    #key-considerations .consideration-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 1rem !important;
        text-align: left;
        gap: 0.5rem;
    }
    #key-considerations .icon-box {
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }
    #key-considerations .icon-box i {
        font-size: 1.5rem;
    }
    #key-considerations .consideration-card h5 {
        font-size: 15px;
        margin-bottom: 0.25rem;
        line-height: 1.4;
    }
    #key-considerations .consideration-card p {
        font-size: 13.5px;
        line-height: 1.6;
        margin: 0;
        text-align: justify;
    }
}

.imgbanner {
    width: 100%;
    height: 60%;
    position: relative;
}

.banner-img {
    width: 100%;
    height: 990px;
    /* You can increase/decrease as needed */
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .banner-img {
        height: 250px;
        /* Adjust height for mobile view */
    }
}

/* ========== CARD DESIGN ========== */
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Modal Content */
.popup-content {
    width: 90%;
    max-width: 750px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

/* Close Button Styling */
.popup-content .btn-close {
    filter: invert(1);
}

/* Read More Button (inside cards) */
.read-more-text {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-style: italic;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.95;
}

.read-more-text:hover {
    background-color: #ffffff;
    color: #1e2a45;
}

/* Responsive Video Box */
.ratio {
    aspect-ratio: 16 / 9;
}

/* Parking Step Card */
.parking-step {
    background-color: #1e2a45;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Icon Container */
.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #d9f3f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Section Padding */
.parking-process-section {
    overflow: hidden;
}

/* Hide center graphic on small devices */
@media (max-width: 767px) {
    .d-md-block {
        display: none !important;
    }
    .popup-content {
        width: 95%;
        padding: 20px;
    }
    section.py-5.whatwedo {
        margin-top: -200px;
    }
}

/* Base Button Style */
.toggle-btn {
    padding: 10px 20px;
    font-weight: 600;
    color: #1e2a45;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hover State */
.toggle-btn:hover,
.toggle-btn:focus {
    background-color: #1e2a45;
    color: #ffffff;
    border-color: #1e2a45;
}

/* Active Button */
.toggle-btn.active-btn {
    background-color: #1e2a45 !important;
    color: #ffffff !important;
    border-color: #1e2a45;
}

.responsive-subtext,
.responsive-title,
.responsive-heading {
    font-family: 'Poppins', sans-serif;
}

.responsive-heading1 {
    color: #203e80;
    font-weight: 400;
    font-size: 1rem;
    /* Base size for small screens */
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
}

/* Medium screens (tablet) */
@media (min-width: 768px) {
    .responsive-heading1 {
        font-size: 2.5rem;
    }
    section.py-5.whatwedo {
        margin-top: -200px;
    }
}

/* Large screens (desktop) */
@media (min-width: 992px) {
    .responsive-heading1 {
        font-size: 3rem;
    }
    section.py-5.whatwedo {
        margin-top: -200px;
    }
}

.p,
.responsive-subtext {
    text-align: left !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    word-spacing: normal !important;
    letter-spacing: normal !important;
    color: #203e80;
    display: block;
    width: 100%;
}

.responsive-heading {
    font-size: 20px;
}

.responsive-title {
    color: #203e80;
}

.text-success {
    color: #203e80 !important;
}

.parentstext {
    color: #203e80 !important;
}

.custom-compliance-btn {
    background-color: #203e80 !important;
}

.namepatientimport {
    color: #203e80 !important;
}

.center-paragraph {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #203e80;
}

/* Page-specific helpers */
.banner-slide-wwd {
    background-image: url('../Banner_Home/What_we_do.webp');
}

.heading-bar {
    width: 60px;
    height: 4px;
    background-color: #203e80;
}

.img-cover-stretch {
    object-fit: cover;
    height: 100%;
    min-height: 100%;
}

.certification-section {
    background-color: #f5f7fa;
}

.cert-logo {
    max-height: 80px;
    object-fit: contain;
}

.footer-section {
    background-color: #203e80;
}

.footer-logo {
    max-width: 120px;
}
