
:root {
    --primary-color: #1a3a5c;
    --secondary-color: #3d9a4d;
    --success-color: #3d9a4d;
    --dark-color: #0d2e4d;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --gray-color: #e9ecef;
    --white: #ffffff;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}
    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
}

/* ======================================
   Hero Section
   ====================================== */
.hero-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.hero-bg {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 60px 0;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    padding: 10px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--primary-color);
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url('../../assets/img/home_banner_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    min-height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* ======================================
   Button Styles
   ====================================== */

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn i,
.btn .fa,
.btn .fas,
.btn .far,
.btn .ti {
    font-size: inherit;
    line-height: 1;
}

/* Primary Button - Logo Color */
.btn-primary,
.btn-primary.disabled {
    background-color: #00AEE1 !important;
    border-color: #00AEE1 !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.disabled:hover {
    background-color: #0095c4 !important;
    border-color: #0095c4 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 174, 225, 0.3);
}

.btn-primary.active,
.btn-primary:active:focus {
    background-color: #007fa8 !important;
    border-color: #007fa8 !important;
}

.btn-primary.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-primary.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

.btn-primary.btn-block {
    width: 100%;
}

/* Default/Secondary Button */
.btn-default,
.btn-secondary,
.btn-default.disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-default.disabled:hover {
    background-color: #5a6268 !important;
    border-color: #545b62 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Danger Button */
.btn-danger,
.btn-danger.disabled {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.disabled:hover {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-danger.active,
.btn-danger:active:focus {
    background-color: #bd2130 !important;
    border-color: #b21f2d !important;
}

/* Success Button */
.btn-success,
.btn-success.disabled {
    background-color: #3d9a4d !important;
    border-color: #3d9a4d !important;
    color: #fff !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.disabled:hover {
    background-color: #328a40 !important;
    border-color: #2d7a39 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 154, 77, 0.3);
}

/* Warning Button */
.btn-warning,
.btn-warning.disabled {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #212529 !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.disabled:hover {
    background-color: #e0a800 !important;
    border-color: #d39e00 !important;
    color: #212529 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Info Button - Same as Primary for consistency */
.btn-info,
.btn-info.disabled {
    background-color: #00AEE1 !important;
    border-color: #00AEE1 !important;
    color: #fff !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.disabled:hover {
    background-color: #0095c4 !important;
    border-color: #0095c4 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 174, 225, 0.3);
}

/* Outline Buttons */
.btn-outline-primary {
    background-color: transparent !important;
    border-color: #00AEE1 !important;
    color: #00AEE1 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: #00AEE1 !important;
    color: #fff !important;
}

.btn-outline-danger {
    background-color: transparent !important;
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
    background-color: #dc3545 !important;
    color: #fff !important;
}

/* Link Button */
.btn-link {
    background: none !important;
    border: none !important;
    color: #00AEE1 !important;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-link:hover {
    color: #0095c4 !important;
    text-decoration: underline;
}

/* Search Buttons Row */
.d-flex.gap-2 {
    gap: 10px !important;
}

.d-flex.flex-wrap {
    flex-wrap: wrap;
}

/* Equal height buttons in search row */
.d-flex.gap-2 .btn {
    height: 38px;
    min-height: 38px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1;
}

/* Ensure buttons stay in one line on larger screens */
@media (min-width: 576px) {
    .d-flex.gap-2 .btn {
        flex-shrink: 0;
    }
}

/* Mobile responsive for button row */
@media (max-width: 575px) {
    .d-flex.gap-2 {
        gap: 8px !important;
    }

    .d-flex.gap-2 .btn {
        height: 34px;
        min-height: 34px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ======================================
   Hospital Section
   ====================================== */
.hospital-section {
    padding: 60px 0;
    background-color: var(--white);
}

.hospital-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
}

.grid-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 120px;
}

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

.grid-item-1 {
    grid-column: 1;
    grid-row: 1;
}

.grid-item-2 {
    grid-column: 2;
    grid-row: 1;
}

.grid-item-3 {
    grid-column: 1;
    grid-row: 2;
}

.grid-item-4 {
    grid-column: 2;
    grid-row: 2;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(91, 63, 237, 0.2);
    min-width: 120px;
}

.experience-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.experience-text {
    display: block;
    font-size: 12px;
}

.hospital-content {
    position: relative;
}

.section-label {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-color);
}

.feature-icon {
    font-size: 24px;
    display: block;
}

/* ======================================
   Works Section
   ====================================== */
.works-section {
    padding: 60px 0;
    background-color: var(--light-color);
    position: relative;
}

.works-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: rgba(91, 63, 237, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.work-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.work-card:hover::before {
    transform: scaleX(1);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.work-card-2 {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.work-card-2 .card-number,
.work-card-2 .card-title,
.work-card-2 .card-description {
    color: var(--white);
}

.work-card-2 .btn-link {
    color: var(--white);
}

.work-card-2:hover {
    background: #e55a2b;
}

.card-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.work-card-2 .card-description {
    color: rgba(255, 255, 255, 0.9);
}

/* ======================================
   Appointment Section
   ====================================== */
.appointment-section {
    padding: 60px 0;
    background-color: var(--white);
}

.appointment-form-wrapper {
    background: linear-gradient(135deg, rgba(91, 63, 237, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(91, 63, 237, 0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 32px;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}


.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.appointment-image {
    text-align: center;
}

.appointment-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* ======================================
   Services Section
   ====================================== */
.services-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-card-highlight {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

.service-card-highlight:hover {
    background: #4a2ed9;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-card-highlight .service-title {
    color: var(--white);
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-highlight .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-card-highlight .btn-link {
    color: var(--white);
}

/* ======================================
   Testimonials Section
   ====================================== */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.testimonial-card {
    background: var(--primary-color);
    color: var(--white);
    padding: 48px;
    border-radius: var(--border-radius);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.testimonial-quote {
    font-size: 72px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    font-size: 12px;
    opacity: 0.9;
}

/* ======================================
   Responsive Design
   ====================================== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .hospital-content {
        margin-top: 40px;
    }

    .experience-badge {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    .work-card-2 {
        transform: scale(1);
    }

    .service-card-highlight {
        transform: scale(1);
    }

    .work-card {
        padding: 32px 24px;
    }

    .appointment-form-wrapper {
        padding: 32px 24px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .card-title {
        font-size: 20px;
    }

    .service-title {
        font-size: 20px;
    }

    .form-title {
        font-size: 24px;
    }

    .features-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 0 1 calc(50% - 8px);
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-bg {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-primary.btn-lg {
        padding: 14px 32px;
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .section-label {
        font-size: 12px;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hospital-section {
        padding: 40px 0;
    }

    .hospital-content {
        margin-top: 30px;
    }

    .image-grid {
        gap: 8px;
    }

    .grid-item {
        height: 100px;
    }

    .experience-badge {
        padding: 16px;
        min-width: 110px;
    }

    .experience-number {
        font-size: 28px;
    }

    .experience-text {
        font-size: 11px;
    }

    .feature-item {
        flex: 0 1 100%;
    }

    .works-section {
        padding: 40px 0;
    }

    .work-card {
        padding: 24px 16px;
        margin-bottom: 16px;
    }

    .card-number {
        font-size: 36px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 13px;
    }

    .appointment-section {
        padding: 40px 0;
    }

    .appointment-form-wrapper {
        padding: 24px 16px;
    }

    .form-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .form-control {
        padding: 12px 14px;
        font-size: 13px;
    }

    .appointment-form {
        gap: 12px;
    }

    .appointment-image {
        margin-top: 30px;
    }

    .services-section {
        padding: 40px 0;
    }

    .service-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 13px;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-card {
        padding: 24px 16px;
    }

    .testimonial-quote {
        font-size: 48px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-title {
        font-size: 11px;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .card-number {
        font-size: 32px;
    }

    .experience-badge {
        min-width: 100px;
    }

    .experience-number {
        font-size: 24px;
    }
}

/* ======================================
   Utility Classes
   ====================================== */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-5 {
    margin-bottom: 48px;
}

.mb-lg-0 {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .mb-lg-0 {
        margin-bottom: 24px;
    }
}

/* ======================================
   Container Padding
   ====================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
}

/* ======================================
   About Section
   ====================================== */
.about-section {
    padding: 60px 0;
    background-color: var(--white);
}

.about-image {
    text-align: center;
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(91, 63, 237, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    padding: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.about-content {
    padding-left: 40px;
}

/* ======================================
   Services Grid Section
   ====================================== */
.services-grid-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card-highlight {
    background: var(--secondary-color);
    color: var(--white);
}

.service-card-highlight .service-title,
.service-card-highlight .service-description {
    color: var(--white);
}

.service-card-highlight .btn-link {
    color: var(--white);
}

.service-card-highlight:hover {
    background: #4a2ed9;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ======================================
   Lab Finder Section
   ====================================== */
.lab-finder-section {
    padding: 60px 0;
    background-color: var(--white);
}

.lab-finder-content {
    position: relative;
}

.phone-mockup {
    background: linear-gradient(135deg, rgba(91, 63, 237, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    padding: 80px 40px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.app-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-app {
    flex: 1;
    min-width: 200px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.btn-app:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.app-icon {
    font-size: 32px;
    display: block;
}

.app-label {
    font-size: 12px;
    opacity: 0.8;
}

.app-name {
    font-size: 16px;
    font-weight: 700;
}

/* ======================================
   Lab Services Section
   ====================================== */
.lab-services-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.lab-benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.lab-benefit-card:hover {
    transform: translateX(8px);
    border-left-color: var(--primary-color);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ======================================
   Registration Section
   ====================================== */
.registration-section {
    padding: 60px 0;
    background-color: var(--white);
}

.registration-bodies {
    background: linear-gradient(135deg, rgba(91, 63, 237, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
}

.registration-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(91, 63, 237, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: var(--border-radius);
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.body-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.body-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.body-icon {
    font-size: 24px;
    display: block;
    flex-shrink: 0;
}

.body-text {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

/* ======================================
   Steps Container
   ====================================== */
.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 40px;
}

.step-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.step-connector {
    width: 3px;
    height: 100px;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
    align-self: stretch;
}

.steps-conclusion {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 500;
}

/* ======================================
   Vision Section
   ====================================== */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(91, 63, 237, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.vision-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(91, 63, 237, 0.1);
}

.vision-text {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 500;
}

/* ======================================
   CTA Section
   ====================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #4a2ed9 100%);
}

.cta-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

/* ======================================
   Icon Utilities
   ====================================== */
.icon-large {
    font-size: 80px;
    display: block;
}

/* ======================================
   Hero Button Styles
   ====================================== */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-illustration {
    display: none;
}

/* ======================================
   Responsive Design Updates
   ====================================== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }

    .app-buttons {
        flex-direction: column;
    }

    .btn-app {
        min-width: auto;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-secondary {
        width: 100%;
    }

    .vision-card {
        padding: 40px 30px;
    }

    .cta-card {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 28px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }

    .services-grid-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 24px 16px;
    }

    .service-icon {
        font-size: 36px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 13px;
    }

    .lab-finder-section {
        padding: 40px 0;
    }

    .phone-mockup {
        padding: 40px 20px;
        min-height: 250px;
    }

    .registration-bodies {
        padding: 24px 16px;
    }

    .subsection-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .body-item {
        gap: 12px;
        padding: 8px 0;
    }

    .body-icon {
        font-size: 20px;
    }

    .body-text {
        font-size: 14px;
    }

    .step-card {
        padding: 24px 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 13px;
    }

    .vision-section {
        padding: 40px 0;
    }

    .vision-card {
        padding: 30px 20px;
    }

    .vision-text {
        font-size: 15px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-card {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cta-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .btn-primary.btn-lg,
    .btn-secondary.btn-lg {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .lab-benefit-card {
        padding: 24px 16px;
    }

    .benefit-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .benefit-title {
        font-size: 16px;
    }

    .benefit-description {
        font-size: 13px;
    }

    .lab-services-section {
        padding: 40px 0;
    }

    .registration-section {
        padding: 40px 0;
    }

    .registration-image {
        margin-top: 30px;
        min-height: 250px;
    }

    .icon-large {
        font-size: 60px;
    }

    .hero-illustration {
        display: none;
    }

    .hero-image {
        min-height: 250px;
    }

    .image-placeholder {
        padding: 40px;
        min-height: 250px;
    }

    .app-buttons {
        margin-top: 24px;
    }

    .btn-app {
        font-size: 13px;
        padding: 12px 16px;
    }

    .app-icon {
        font-size: 28px;
    }

    .app-name {
        font-size: 14px;
    }

    .app-label {
        font-size: 11px;
    }
}

/* ======================================
   ESIC Style Header - Top Navigation Bar
   ====================================== */
.esic-top-nav {
    background: linear-gradient(180deg, #1a3a5c 0%, #0d2e4d 100%);
    padding: 0;
    position: relative;
    z-index: 1000;
}

.esic-top-nav .container-fluid {
    max-width: 100%;
    padding: 0 20px;
}

.top-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.top-nav-menu > li {
    position: relative;
}

.top-nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.top-nav-menu > li > a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.top-nav-menu > li > a i {
    font-size: 11px;
}

/* Dropdown Menu */
.top-nav-menu .has-dropdown .dropdown-menu,
.user-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 1001;
    padding: 8px 0;
    list-style: none;
    margin: 0;
}

.top-nav-menu .has-dropdown .dropdown-menu li a,
.user-dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.top-nav-menu .has-dropdown .dropdown-menu li a:hover,
.user-dropdown .dropdown-menu li a:hover {
    background: #3d9a4d;
    color: #fff;
}

/* Top Nav Right Section */
.top-nav-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    cursor: pointer;
}

.user-btn:hover {
    background: rgba(0, 0, 0, 0.3);
}

.profile-pic-small {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.user-dropdown .dropdown-menu {
    right: 0;
    left: auto;
}

.user-dropdown.active .dropdown-menu {
    display: block;
}

/* ======================================
   ESIC Style Header - Main Section
   ====================================== */
.esic-header-main {
    background: #fff;
    padding: 15px 0;
    border-bottom: 3px solid #3d9a4d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: block;
}

.main-logo {
    height: 70px;
    width: auto;
}

.org-info {
    border-left: 2px solid #ddd;
    padding-left: 20px;
}

.org-name-primary {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.org-name-secondary {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin: 0;
    line-height: 1.3;
}

.org-tagline {
    font-size: 13px;
    color: #777;
    margin: 3px 0 0 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gov-logo {
    height: 60px;
    width: auto;
}

/* ======================================
   Mobile Navigation
   ====================================== */
.mobile-nav-wrapper {
    display: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.mobile-logo img {
    height: 50px;
    width: auto;
}

.mobile-menu-toggle {
    background: #1a3a5c;
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #0d2e4d;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.mobile-nav-list > li > a:hover {
    background: #3d9a4d;
    color: #fff;
}

.mobile-nav-list .has-submenu > a {
    justify-content: space-between;
}

.mobile-submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9f9f9;
}

.has-submenu.open .mobile-submenu {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.mobile-submenu li a:hover {
    background: #3d9a4d;
    color: #fff;
}

/* ======================================
   Header Responsive Styles
   ====================================== */
@media (max-width: 1200px) {
    .top-nav-menu > li > a {
        padding: 12px 10px;
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .esic-top-nav {
        display: none;
    }

    .esic-header-main {
        display: none;
    }

    .mobile-nav-wrapper {
        display: block;
    }

    .d-lg-none {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .mobile-nav-wrapper {
        display: none !important;
    }

    .d-lg-none {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-main-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-left {
        flex-direction: column;
        text-align: center;
    }

    .org-info {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #ddd;
        padding-top: 15px;
    }

    .org-name-primary {
        font-size: 18px;
    }

    .org-name-secondary {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .mobile-header {
        padding: 8px 10px;
    }

    .mobile-logo img {
        height: 40px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .mobile-nav-list > li > a {
        padding: 12px 15px;
        font-size: 13px;
    }

    .mobile-submenu li a {
        padding: 10px 15px 10px 30px;
        font-size: 12px;
    }
}

/* ======================================
   New Footer Styles (Flatsome Style)
   ====================================== */
.new-footer {
    background: #3a3a3a;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-top {
    padding: 15px 0;
    border-bottom: 1px solid #4a4a4a;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-nav > p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
    text-align: left;
    line-height: 1.6;
}

.footer-nav > p span {
    font-size: 12px;
    color: #999;
}

.footer-nav > p i {
    color: #3d9a4d;
    margin-right: 5px;
}

.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.footer-nav-list li {
    position: relative;
}

.footer-nav-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #666;
}

.footer-nav-list li a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.footer-nav-list li a:hover {
    color: #3d9a4d;
}

.footer-bottom-new {
    padding: 12px 0;
    background: #333;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright p {
    margin: 0;
    color: #999;
    font-size: 12px;
}

.footer-copyright strong {
    color: #fff;
}

.footer-copyright a {
    color: #3d9a4d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #fff;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.store-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.store-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.store-icon {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-nav {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav > p {
        text-align: center;
    }

    .footer-nav-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-nav-list {
        gap: 5px;
    }

    .footer-nav-list li a {
        font-size: 11px;
        padding: 5px 8px;
    }

    .footer-nav-list li:not(:last-child)::after {
        display: none;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact-info {
        justify-content: center;
    }

    .store-icon {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 15px 0;
    }

    .footer-nav > p {
        font-size: 13px;
    }

    .footer-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-nav-list li a {
        font-size: 12px;
    }

    .footer-bottom-new {
        padding: 15px 0;
    }

    .footer-copyright p {
        font-size: 11px;
    }

    .store-icon {
        height: 32px;
    }
}

/* ======================================
   New Home Page Sections (Based on Reference)
   ====================================== */

/* Hero Section - Get Into Business */
.hero-new {
    padding: 80px 0 100px;
    background: #fff;
    position: relative;
    overflow: visible;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 0px;
    width: 300px;
    height: 300px;
    background: rgba(0, 174, 225, 0.08);
    border-radius: 50%;
}

.hero-new::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(61, 154, 77, 0.06);
    border-radius: 50%;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f7fc;
    color: #00AEE1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge-new i {
    font-size: 14px;
}

.hero-title-new {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description-new {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-signup {
    background: #00AEE1;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-signup:hover {
    background: #0095c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 174, 225, 0.3);
    color: #fff;
}

.hero-images-stack {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 280px;
}

.hero-avatar {
    width: 275px;
    height: 275px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: absolute;
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-avatar-1 {
    top: -76px;
    right: -48px;
    z-index: 3;
}

.hero-avatar-2 {
    top: 60px;
    right: 0;
    z-index: 2;
    width: 120px;
    height: 120px;
}

.hero-avatar-3 {
    top: -15px;
    right: 160px;
    z-index: 1;
    height: 380px;
    width: 380px;
    max-width: 380px;
    border-radius: 50%;
}

/* Brand Logos Strip */
.brand-logos-strip {
    padding: 30px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.brand-logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.brand-logo-item {
    color: #aaa;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.brand-logo-item:hover {
    color: #666;
}

.brand-logo-item i {
    font-size: 20px;
}

/* PM Made Simple Section */
.pm-simple-section {
    padding: 80px 0;
    background: #fff;
	border-top: 1px solid #f0f0f0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-main {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: #888;
}

.section-subtitle a {
    color: #00AEE1;
    text-decoration: none;
}

.feature-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-item-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-item-row i {
    color: #00AEE1;
    font-size: 18px;
    margin-top: 3px;
}

.feature-item-row span {
    font-size: 14px;
    color: #555;
}

/* Feature Card Grid */
.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card-item {
    padding: 20px 0;
}

.feature-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-card-title i {
    color: #00AEE1;
}

.feature-card-text {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* Manage Projects Section */
.manage-projects-section {
    padding: 80px 0;
    background: #fafbfc;
}

.project-image-wrapper {
    position: relative;
}

.project-dashboard-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.project-content {
    padding-left: 40px;
}

.project-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.project-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Attach Files Section */
.attach-files-section {
    padding: 80px 0;
    background: #fff;
}

.attach-content {
    padding-right: 40px;
}

.attach-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.attach-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.file-list-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.file-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.file-list-item:hover {
    background: #f8f9fa;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.file-icon.pdf {
    background: #ffebee;
    color: #e53935;
}

.file-icon.doc {
    background: #e3f2fd;
    color: #1976d2;
}

.file-icon.zip {
    background: #fff3e0;
    color: #f57c00;
}

.file-icon.img {
    background: #e8f5e9;
    color: #43a047;
}

.file-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.file-size {
    font-size: 12px;
    color: #999;
}

.file-action {
    color: #aaa;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.file-action:hover {
    color: #00AEE1;
}

/* Secure Content Section */
.secure-content-section {
    padding: 80px 0;
    background: #fafbfc;
}

.secure-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secure-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
}

.secure-lock-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: #00AEE1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 174, 225, 0.3);
}

.secure-content-wrapper {
    padding-left: 40px;
}

.secure-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.secure-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Try Demo Section */
.try-demo-section {
    padding: 80px 0;
    background: #fff;
}

.demo-header {
    text-align: center;
    margin-bottom: 50px;
}

.demo-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.demo-subtitle {
    font-size: 15px;
    color: #888;
}

.demo-subtitle a {
    color: #00AEE1;
    text-decoration: none;
}

.demo-dashboard {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 60px;
}

.demo-dashboard img {
    width: 100%;
    display: block;
}

.demo-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.demo-feature-card {
    text-align: left;
}

.demo-feature-icon {
    width: 50px;
    height: 50px;
    background: #e8f7fc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.demo-feature-icon i {
    font-size: 22px;
    color: #00AEE1;
}

.demo-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.demo-feature-text {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.demo-cta {
    text-align: center;
    margin-top: 50px;
}

/* We Build Trust Section */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.trust-subtitle {
    font-size: 15px;
    color: #888;
}

.trust-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
}

.trust-logo-item {
    color: #aaa;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.trust-logo-item:hover {
    color: #666;
    transform: translateY(-3px);
}

.trust-logo-item i {
    font-size: 24px;
}

.trust-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-outline-primary {
    background: transparent;
    color: #00AEE1;
    border: 2px solid #00AEE1;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-primary:hover {
    background: #00AEE1;
    color: #fff;
}

/* Testimonials Section */
.testimonials-new-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2e4d 100%);
    color: #fff;
}

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

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.testimonials-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card-new {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #00AEE1;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-size: 18px;
    font-weight: 600;
    color: #00AEE1;
    margin-bottom: 20px;
}

.testimonial-text-new {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #00AEE1;
    transform: scale(1.2);
}

/* Testimonial Slider Owl Carousel Styles */
.testimonial-slider.owl-carousel {
    display: block !important;
    max-width: 800px;
    margin: 0 auto;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
}

.testimonial-slider.owl-carousel .owl-stage-outer {
    overflow: hidden;
    width: 100%;
}

.testimonial-slider.owl-carousel .owl-stage {
    display: flex !important;
    align-items: stretch;
}

.testimonial-slider.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-slider.owl-carousel .owl-item.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-slider .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-slider .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-slider .owl-dot:hover {
    background: rgba(255, 255, 255, 0.5) !important;
}

.testimonial-slider .owl-dot.active {
    background: #00AEE1 !important;
    transform: scale(1.2);
}

.testimonial-slider .owl-dot span {
    display: none;
}

.testimonial-slide {
    padding: 10px;
    width: 100%;
}

.testimonial-slider .testimonial-card-new {
    margin: 0 auto;
    max-width: 100%;
}

/* Free Trial Section */
.free-trial-section {
    padding: 80px 0;
    background: #fff;
}

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

.trial-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.trial-subtitle {
    font-size: 15px;
    color: #888;
}

.trial-form {
    max-width: 600px;
    margin: 0 auto;
}

.trial-input-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.trial-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.trial-input:focus {
    outline: none;
    border-color: #00AEE1;
    box-shadow: 0 0 0 3px rgba(0, 174, 225, 0.1);
}

.btn-trial {
    background: #00AEE1;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-trial:hover {
    background: #0095c4;
    transform: translateY(-2px);
}

/* Responsive Styles for New Sections */
@media (max-width: 991px) {
    .hero-new {
        padding: 60px 0 40px;
        overflow: hidden;
    }

    .hero-title-new {
        font-size: 40px;
    }

    .hero-images-stack {
        margin-top: 40px;
        justify-content: center;
        min-height: 300px;
        position: relative;
    }

    .hero-avatar {
        position: absolute;
    }

    .hero-avatar-1 {
        width: 180px;
        height: 180px;
        top: 0;
        right: 10%;
        left: auto;
        transform: none;
    }

    .hero-avatar-3 {
        width: 250px;
        height: 250px;
        top: 50px;
        right: auto;
        left: 10%;
    }

    .feature-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-content,
    .attach-content,
    .secure-content-wrapper {
        padding: 30px 0 0 0;
    }

    .demo-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-new {
        padding: 40px 0 30px;
        overflow: hidden;
    }

    .hero-images-stack {
        min-height: 220px;
        margin-top: 30px;
    }

    .hero-avatar-1 {
        width: 140px;
        height: 140px;
        top: 0;
        right: 5%;
    }

    .hero-avatar-3 {
        width: 180px;
        height: 180px;
        top: 40px;
        left: 5%;
    }

    .hero-title-new {
        font-size: 32px;
    }

    .hero-description-new {
        font-size: 15px;
    }

    .brand-logos-wrapper {
        gap: 30px;
    }

    .brand-logo-item {
        font-size: 14px;
    }

    .pm-simple-section,
    .manage-projects-section,
    .attach-files-section,
    .secure-content-section,
    .try-demo-section,
    .trust-section,
    .testimonials-new-section,
    .free-trial-section {
        padding: 50px 0;
    }

    .section-title-main,
    .project-title,
    .attach-title,
    .secure-title,
    .demo-title,
    .trust-title,
    .testimonials-title,
    .trial-title {
        font-size: 28px;
    }

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

    .feature-card-grid {
        grid-template-columns: 1fr;
    }

    .trust-logos-grid {
        gap: 25px 40px;
    }

    .testimonial-card-new {
        padding: 30px 20px;
    }

    .trial-input-group {
        flex-direction: column;
    }

    .trial-input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-new {
        padding: 30px 0 20px;
        overflow: hidden;
    }

    .hero-title-new {
        font-size: 24px;
        text-align: center;
    }

    .hero-badge-new {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-description-new {
        font-size: 14px;
        text-align: center;
        max-width: 100%;
    }

    .hero-new .col-lg-6:first-child {
        text-align: center;
    }

    .btn-signup {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-images-stack {
        min-height: 180px;
        margin-top: 25px;
    }

    .hero-avatar-1 {
        width: 110px;
        height: 110px;
        top: 0;
        right: 10%;
        left: auto;
    }

    .hero-avatar-3 {
        width: 140px;
        height: 140px;
        top: 30px;
        left: 10%;
        right: auto;
    }

    .brand-logos-wrapper {
        gap: 20px;
    }

    .brand-logo-item {
        font-size: 12px;
    }

    .section-title-main,
    .project-title,
    .attach-title,
    .secure-title,
    .demo-title,
    .trust-title,
    .testimonials-title,
    .trial-title {
        font-size: 24px;
    }

    .demo-features-grid {
        grid-template-columns: 1fr;
    }

    .trust-logos-grid {
        gap: 20px 30px;
    }

    .trust-logo-item {
        font-size: 14px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-author-name {
        font-size: 16px;
    }

    .testimonial-text-new {
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-new {
        padding: 25px 0 15px;
    }

    .hero-title-new {
        font-size: 22px;
    }

    .hero-badge-new {
        font-size: 10px;
        padding: 5px 10px;
    }

    .hero-description-new {
        font-size: 13px;
    }

    .hero-images-stack {
        min-height: 150px;
        margin-top: 20px;
    }

    .hero-avatar-1 {
        width: 90px;
        height: 90px;
        right: 5%;
    }

    .hero-avatar-3 {
        width: 110px;
        height: 110px;
        left: 5%;
        top: 25px;
    }

    .btn-signup {
        padding: 10px 20px;
        font-size: 13px;
    }
}
