/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:    Numbers Right | Financial Services Website
VERSION:    1.0.0
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]

1. BASE
    1.1. Google Fonts Import
    1.2. Typography
    1.3. Common Styles
    1.4. Button Styles
    1.5. Utility Classes

2. PRELOADER

3. TOP HEADER

4. NAVIGATION

5. SEARCH FORM OVERLAY

6. HERO SECTION

7. PAGE TITLE (Inner Pages)

8. SECTION SPACING & TITLES

9. TRUST BAR (Stats Counter)

10. SERVICE CARDS

11. MEDICAL SPOTLIGHT

12. INDUSTRY CARDS

13. WHY CHOOSE US / FEATURE BOXES

14. TESTIMONIALS

15. TEAM SECTION

16. BLOG CARDS

17. BLOG SINGLE

18. CTA BANNER

19. FAQ ACCORDION

20. CONTACT FORM & SIDEBAR

21. TIMELINE (About Page)

22. FOOTER

23. BACK TO TOP

24. ANIMATIONS & LAZY LOADING

25. RESPONSIVE (Media Queries)

-------------------------------------------------------------------*/


/* =================================================================
   1. BASE
   ================================================================= */

/* -----------------------------------------------------------------
   1.1. Google Fonts Import
   ----------------------------------------------------------------- */
/* Google Fonts loaded via inc_head.php <link> tag for better performance */


/* -----------------------------------------------------------------
   1.2. Typography
   ----------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #4A5568;
    font-size: 16px;
    line-height: 1.7;
    background-color: #F8F9FA;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1A1A2E;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

.font-secondary {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

a {
    color: #D4A843;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover,
a:focus {
    color: #E8BC52;
    text-decoration: none;
    outline: none;
}

a:active {
    color: #C49A3A;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
}

::selection {
    background: #D4A843;
    color: #fff;
}

::-moz-selection {
    background: #D4A843;
    color: #fff;
}

/* Skip to content (accessibility) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #D4A843;
    color: #fff;
    padding: 10px 20px;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
    color: #fff;
}


/* -----------------------------------------------------------------
   1.3. Common Styles
   ----------------------------------------------------------------- */
.bg-white {
    background-color: #ffffff !important;
}

.bg-light {
    background-color: #F8F9FA !important;
}

.shadow-sm {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06) !important;
}

.shadow {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
}

.rounded {
    border-radius: 8px !important;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: #D4A843;
    display: block;
    margin: 15px 0;
}

.separator-center {
    margin-left: auto;
    margin-right: auto;
}

.text-muted {
    color: #718096 !important;
}

.lead {
    font-size: 18px;
    line-height: 1.8;
    color: #4A5568;
}

.list-style-none {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    list-style: none;
}

.list-check li::before {
    content: "\e64c";
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 2px;
    color: #D4A843;
    font-size: 14px;
    font-weight: 700;
}

.overlay {
    position: relative;
}

.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 38, 71, 0.7);
    z-index: 1;
}

.overlay > * {
    position: relative;
    z-index: 2;
}


/* -----------------------------------------------------------------
   1.4. Button Styles
   ----------------------------------------------------------------- */
.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
    border: 2px solid transparent;
}

.btn:focus {
    box-shadow: none;
    outline: none;
}

.btn-primary {
    background-color: #D4A843;
    border-color: #D4A843;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #E8BC52;
    border-color: #E8BC52;
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.35);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    background-color: #C49A3A;
    border-color: #C49A3A;
    color: #fff;
}

.btn-outline-primary {
    background-color: transparent;
    border-color: #D4A843;
    color: #D4A843;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: #D4A843;
    border-color: #D4A843;
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.35);
}

.btn-secondary {
    background-color: #0A2647;
    border-color: #0A2647;
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #144272;
    border-color: #144272;
    color: #fff;
    box-shadow: 0 4px 15px rgba(10, 38, 71, 0.35);
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
    background-color: #0D3259;
    border-color: #0D3259;
    color: #fff;
}

.btn-outline-secondary {
    background-color: transparent;
    border-color: #0A2647;
    color: #0A2647;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
    background-color: #0A2647;
    border-color: #0A2647;
    color: #fff;
}

.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: #0A2647;
}

.btn-white:hover,
.btn-white:focus {
    background-color: #D4A843;
    border-color: #D4A843;
    color: #fff;
}

.btn-outline-white {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background-color: #fff;
    border-color: #fff;
    color: #0A2647;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

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

.btn-link {
    color: #D4A843;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    padding: 0;
    border: none;
}

.btn-link:hover {
    color: #E8BC52;
    text-decoration: none;
}

.btn-link i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.btn-link:hover i {
    margin-left: 10px;
}


/* -----------------------------------------------------------------
   1.5. Utility Classes
   ----------------------------------------------------------------- */
.bg-navy {
    background-color: #0A2647 !important;
}

.bg-light-gray {
    background-color: #F8F9FA !important;
}

.bg-gold {
    background-color: #D4A843 !important;
}

.text-gold {
    color: #D4A843 !important;
}

.text-navy {
    color: #0A2647 !important;
}

.text-white {
    color: #fff !important;
}

.text-body-color {
    color: #4A5568 !important;
}

.text-success-green {
    color: #2D8B4E !important;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Section header utilities (used on homepage) */
.section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D4A843;
    margin-bottom: 10px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

h2.section-title {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
    color: #1A1A2E;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #D4A843;
}

p.section-subtitle {
    color: #4A5568;
    max-width: 600px;
    font-size: 16px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

/* Service card icons */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 28px;
    color: #D4A843;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    background: #D4A843;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card .card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.service-card:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1) !important;
}

.service-card .card-title {
    color: #1A1A2E;
    font-weight: 600;
}

.service-card .card-text {
    color: #4A5568;
    font-size: 14px;
}

/* Industry icon cards (homepage) */
.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.industry-icon i {
    font-size: 24px;
    color: #D4A843;
}

/* Why Choose Us icons */
.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.why-icon i {
    font-size: 32px;
    color: #D4A843;
}

/* Blog card image wrapper */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-wrapper img {
    transition: transform 0.5s ease;
}

.blog-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.border-gold {
    border-color: #D4A843 !important;
}

.border-navy {
    border-color: #0A2647 !important;
}

.border-left-gold {
    border-left: 4px solid #D4A843;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-size-sm {
    font-size: 14px;
}

.font-size-lg {
    font-size: 18px;
}

.w-80 {
    width: 80%;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-600 {
    max-width: 600px;
}


/* =================================================================
   2. PRELOADER
   ================================================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.preloader .spinner {
    width: 50px;
    height: 50px;
    position: relative;
}

.preloader .spinner::before,
.preloader .spinner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #D4A843;
}

.preloader .spinner::before {
    animation: spin 1s linear infinite;
}

.preloader .spinner::after {
    border-top-color: #0A2647;
    animation: spin 0.5s linear infinite reverse;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preloader .brand-text {
    position: absolute;
    bottom: 40%;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0A2647;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 20px;
}


/* =================================================================
   3. TOP HEADER
   ================================================================= */
.top-header {
    background-color: #0A2647;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header a {
    color: #fff;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: #D4A843;
}

.top-header .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header .contact-info li {
    list-style: none;
    display: inline-flex;
    align-items: center;
}

.top-header .contact-info li i {
    margin-right: 6px;
    color: #D4A843;
    font-size: 13px;
}

.top-header .social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.top-header .social-links li {
    list-style: none;
}

.top-header .social-links a {
    font-size: 14px;
    opacity: 0.8;
}

.top-header .social-links a:hover {
    opacity: 1;
    color: #D4A843;
}

.top-header .search-icon {
    cursor: pointer;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 10px;
}

.top-header .search-icon:hover {
    color: #D4A843;
}


/* =================================================================
   4. NAVIGATION
   ================================================================= */
.navigation {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.navigation.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navigation .navbar {
    padding: 5px 0;
}

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

.navigation .navbar-brand img {
    max-height: 45px;
    transition: max-height 0.3s ease;
}

.navigation.scrolled .navbar-brand img {
    max-height: 38px;
}

.navigation .nav-item {
    margin: 0 2px;
}

.navigation .nav-link {
    color: #1A1A2E;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.navigation .nav-link:hover {
    color: #D4A843;
}

.navigation .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #D4A843;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.navigation .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navigation .nav-item.active .nav-link {
    color: #D4A843;
}

.navigation .nav-item.active .nav-link::after {
    transform: scaleX(1);
}

/* Dropdown */
.navigation .dropdown-menu {
    border: none;
    border-top: 3px solid #D4A843;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 220px;
    margin-top: 0;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navigation .dropdown-item {
    color: #1A1A2E;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navigation .dropdown-item:hover,
.navigation .dropdown-item:focus {
    background-color: #F8F9FA;
    color: #D4A843;
    border-left-color: #D4A843;
    padding-left: 25px;
}

.navigation .dropdown-item.active {
    background-color: #F8F9FA;
    color: #D4A843;
}

/* CTA button in nav */
.navigation .nav-cta {
    margin-left: 15px;
}

.navigation .nav-cta .btn {
    padding: 8px 22px;
    font-size: 13px;
}

/* Navbar toggler (mobile) */
.navigation .navbar-toggler {
    border: 1px solid #0A2647;
    padding: 4px 8px;
    border-radius: 4px;
}

.navigation .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%230A2647' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* =================================================================
   5. SEARCH FORM OVERLAY
   ================================================================= */
.search-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 38, 71, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.search-form.open {
    display: flex;
}

.search-form .search-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 30px;
    position: relative;
}

.search-form input[type="search"],
.search-form input[type="text"] {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    padding: 15px 0;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
}

.search-form input[type="search"]:focus,
.search-form input[type="text"]:focus {
    border-bottom-color: #D4A843;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-form .close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    background: transparent;
    border: none;
}

.search-form .close-search:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #D4A843;
}

.search-form .search-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}


/* =================================================================
   6. HERO SECTION
   ================================================================= */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.88) 0%, rgba(10, 38, 71, 0.6) 100%);
    z-index: 1;
}

.hero-bg > .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-slider .hero-slider-item {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slider .hero-slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.85) 0%, rgba(10, 38, 71, 0.55) 100%);
    z-index: 1;
}

/* Static hero (non-slider) */
.hero-static {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-static::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.85) 0%, rgba(10, 38, 71, 0.55) 100%);
    z-index: 1;
}

.hero-static > .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 40px 0;
}

.hero-content .hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D4A843;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
}

.hero-content .hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-content .hero-cta .btn {
    padding: 14px 35px;
}

.hero-content .hero-cta .btn-outline-white {
    border-width: 2px;
}

/* Hero decorative element */
.hero-decoration {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    border: 40px solid rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    z-index: 1;
}


/* =================================================================
   7. PAGE TITLE (Inner Pages)
   ================================================================= */
.page-title {
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #0A2647;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.9) 0%, rgba(10, 38, 71, 0.7) 100%);
    z-index: 1;
}

.page-title > .container {
    position: relative;
    z-index: 2;
}

.page-title h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
}

.page-title .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    margin-top: 15px;
}

.page-title .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-title .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.page-title .breadcrumb-item a:hover {
    color: #D4A843;
}

.page-title .breadcrumb-item.active {
    color: #D4A843;
}

.page-title .breadcrumb-item + .breadcrumb-item::before {
    content: "\e649";
    font-family: 'themify';
    color: #D4A843;
    font-size: 10px;
    padding-right: 10px;
}


/* =================================================================
   8. SECTION SPACING & TITLES
   ================================================================= */
.section {
    padding: 100px 0;
    position: relative;
}

.section-sm {
    padding: 60px 0;
}

.section-lg {
    padding: 120px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D4A843;
    margin-bottom: 10px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
    color: #1A1A2E;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #D4A843;
}

.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #4A5568;
    max-width: 600px;
    font-size: 16px;
    line-height: 1.7;
}

.section-title.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* White section title (for dark backgrounds) */
.section-title-white .subtitle {
    color: #D4A843;
}

.section-title-white h2 {
    color: #fff;
}

.section-title-white h2::after {
    background-color: #D4A843;
}

.section-title-white p {
    color: rgba(255, 255, 255, 0.8);
}


/* =================================================================
   9. TRUST BAR (Stats Counter)
   ================================================================= */
.trust-bar {
    background-color: #0A2647;
    padding: 40px 0;
    color: #fff;
    position: relative;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 38, 71, 1) 0%, rgba(20, 66, 114, 0.8) 100%);
}

.trust-bar .container {
    position: relative;
    z-index: 1;
}

.trust-item {
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.trust-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.trust-item:last-child::after {
    display: none;
}

.trust-item .icon {
    font-size: 28px;
    color: #D4A843;
    margin-bottom: 10px;
}

.trust-item .count {
    font-size: 42px;
    font-weight: 700;
    color: #D4A843;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}

.trust-item .count-suffix {
    font-size: 24px;
    font-weight: 600;
    color: #D4A843;
}

.trust-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}


/* =================================================================
   10. SERVICE CARDS
   ================================================================= */
.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 40px 30px;
    transition: all 0.4s ease;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #D4A843;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.service-card .icon {
    width: 80px;
    height: 80px;
    background-color: #F8F9FA;
    border-radius: 50%;
    line-height: 80px;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #D4A843;
    transition: all 0.4s ease;
}

.service-card:hover .icon {
    background-color: #D4A843;
    color: #fff;
    transform: rotateY(180deg);
}

.service-card .service-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(10, 38, 71, 0.04);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1A1A2E;
}

.service-card p {
    color: #4A5568;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.service-card .read-more {
    color: #D4A843;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.service-card .read-more i {
    margin-left: 5px;
    font-size: 12px;
    transition: margin-left 0.3s;
}

.service-card:hover .read-more i {
    margin-left: 10px;
}

/* Service card horizontal variant */
.service-card-horizontal {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
}

.service-card-horizontal .icon {
    flex-shrink: 0;
    margin: 0 20px 0 0;
}

.service-card-horizontal .service-content {
    flex: 1;
}

/* Service detail page */
.service-single-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-single-content p {
    line-height: 1.8;
}

.service-single-content ul {
    padding-left: 0;
    list-style: none;
}

.service-single-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.service-single-content ul li::before {
    content: "\e64c";
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 10px;
    color: #D4A843;
    font-size: 12px;
}

.service-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 30px;
    margin-bottom: 30px;
}

.service-sidebar .sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F8F9FA;
}

.service-sidebar .service-menu {
    list-style: none;
    padding: 0;
}

.service-sidebar .service-menu li {
    margin-bottom: 0;
}

.service-sidebar .service-menu li a {
    display: block;
    padding: 12px 15px;
    color: #4A5568;
    border-left: 3px solid transparent;
    font-weight: 500;
    transition: all 0.3s;
}

.service-sidebar .service-menu li a:hover,
.service-sidebar .service-menu li.active a {
    color: #D4A843;
    background-color: #F8F9FA;
    border-left-color: #D4A843;
    padding-left: 20px;
}

.service-sidebar .brochure-download {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #F8F9FA;
    border-radius: 8px;
    color: #1A1A2E;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.service-sidebar .brochure-download:hover {
    background: #D4A843;
    color: #fff;
}

.service-sidebar .brochure-download i {
    margin-right: 10px;
    font-size: 20px;
    color: #D4A843;
}

.service-sidebar .brochure-download:hover i {
    color: #fff;
}


/* =================================================================
   11. MEDICAL SPOTLIGHT
   ================================================================= */
.medical-spotlight {
    background-color: #0A2647;
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.medical-spotlight::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(212, 168, 67, 0.05);
    border-radius: 50%;
}

.medical-spotlight::after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border: 40px solid rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.medical-spotlight .spotlight-content {
    border-left: 4px solid #D4A843;
    padding-left: 30px;
    position: relative;
    z-index: 2;
}

.medical-spotlight .spotlight-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.medical-spotlight .spotlight-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.medical-spotlight .spotlight-content .highlight-text {
    color: #D4A843;
    font-weight: 600;
}

.medical-spotlight .spotlight-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.medical-spotlight .spotlight-stats .stat {
    text-align: center;
}

.medical-spotlight .spotlight-stats .stat .number {
    font-size: 36px;
    font-weight: 700;
    color: #D4A843;
    font-family: 'Inter', sans-serif;
    display: block;
}

.medical-spotlight .spotlight-stats .stat .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    display: block;
}

.medical-spotlight .spotlight-image {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
}

.medical-spotlight .spotlight-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.medical-spotlight .spotlight-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.medical-spotlight .spotlight-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.medical-spotlight .spotlight-list li::before {
    content: "\e64c";
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 10px;
    color: #D4A843;
    font-size: 12px;
}


/* =================================================================
   12. INDUSTRY CARDS
   ================================================================= */
.industry-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    margin-bottom: 30px;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 38, 71, 0.85) 0%, rgba(10, 38, 71, 0.2) 50%, transparent 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.industry-card:hover::before {
    background: linear-gradient(to top, rgba(10, 38, 71, 0.9) 0%, rgba(10, 38, 71, 0.4) 60%, rgba(10, 38, 71, 0.1) 100%);
}

.industry-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: #fff;
    z-index: 3;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.industry-card:hover .content {
    transform: translateY(0);
}

.industry-card .content .icon {
    font-size: 28px;
    color: #D4A843;
    margin-bottom: 10px;
    display: block;
}

.industry-card .content h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.industry-card .content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
    overflow: hidden;
}

.industry-card:hover .content p {
    opacity: 1;
    max-height: 60px;
    margin-top: 8px;
}

.industry-card .content .learn-more {
    color: #D4A843;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: inline-block;
    margin-top: 10px;
}

.industry-card:hover .content .learn-more {
    opacity: 1;
}


/* =================================================================
   13. WHY CHOOSE US / FEATURE BOXES
   ================================================================= */
.feature-box {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 30px;
}

.feature-box:hover {
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.feature-box .icon {
    color: #D4A843;
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-box:hover .icon {
    transform: scale(1.1);
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1A1A2E;
}

.feature-box p {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Feature box with left icon */
.feature-box-left {
    text-align: left;
    display: flex;
    align-items: flex-start;
    padding: 25px;
}

.feature-box-left .icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #D4A843;
    margin-right: 20px;
    margin-bottom: 0;
}

.feature-box-left .feature-content {
    flex: 1;
}

.feature-box-left h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Why choose us - numbered */
.feature-numbered {
    position: relative;
    padding-left: 80px;
    text-align: left;
    min-height: 80px;
}

.feature-numbered .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 55px;
    background: #D4A843;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}


/* =================================================================
   14. TESTIMONIALS
   ================================================================= */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-section .quote-bg {
    position: absolute;
    font-size: 300px;
    color: rgba(212, 168, 67, 0.05);
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    text-align: center;
    padding: 40px 20px;
}

.testimonial-item .stars {
    color: #D4A843;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-item blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: #4A5568;
    border: none;
    padding: 0;
    margin: 0 0 25px;
    position: relative;
}

.testimonial-item blockquote::before {
    content: '\201C';
    font-size: 60px;
    color: #D4A843;
    font-family: Georgia, serif;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    opacity: 0.4;
}

.testimonial-item .author {
    margin-top: 25px;
}

.testimonial-item .author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D4A843;
    margin-bottom: 12px;
}

.testimonial-item .author h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #1A1A2E;
}

.testimonial-item .author .position {
    font-size: 14px;
    color: #D4A843;
    font-weight: 500;
}

.testimonial-item .author .company {
    font-size: 13px;
    color: #718096;
}

/* Testimonial slider arrows */
.testimonial-slider .slick-arrow,
.testimonial-slider .prevArrow,
.testimonial-slider .nextArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    background: #fff;
    color: #0A2647;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.testimonial-slider .slick-arrow:hover,
.testimonial-slider .prevArrow:hover,
.testimonial-slider .nextArrow:hover {
    background: #D4A843;
    border-color: #D4A843;
    color: #fff;
}

.testimonial-slider .prevArrow {
    left: -60px;
}

.testimonial-slider .nextArrow {
    right: -60px;
}

/* Testimonial card style (alternative layout) */
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    color: rgba(212, 168, 67, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .stars {
    color: #D4A843;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card .author-info {
    display: flex;
    align-items: center;
}

.testimonial-card .author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #D4A843;
}

.testimonial-card .author-info h6 {
    margin-bottom: 2px;
    font-weight: 600;
}

.testimonial-card .author-info span {
    font-size: 13px;
    color: #D4A843;
}


/* =================================================================
   15. TEAM SECTION
   ================================================================= */
.team-member {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member .team-img {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #D4A843;
    transition: all 0.3s ease;
}

.team-member:hover img {
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
}

.team-member .team-social {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .team-social {
    opacity: 1;
    bottom: -5px;
}

.team-member .team-social a {
    width: 32px;
    height: 32px;
    background: #D4A843;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.3s;
}

.team-member .team-social a:hover {
    background: #0A2647;
}

.team-member h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1A1A2E;
}

.team-member .position {
    color: #D4A843;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.team-member .bio {
    color: #4A5568;
    font-size: 14px;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Team card variant (rectangular) */
.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card .team-info {
    padding: 25px;
    text-align: center;
}

.team-card .team-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card .team-info .position {
    color: #D4A843;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =================================================================
   16. BLOG CARDS
   ================================================================= */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.blog-card .blog-img {
    position: relative;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card .blog-img .category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D4A843;
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-card .content {
    padding: 25px;
}

.blog-card .date {
    color: #D4A843;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
}

.blog-card .date i {
    margin-right: 5px;
    font-size: 12px;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #718096;
}

.blog-card .blog-meta span {
    display: inline-flex;
    align-items: center;
}

.blog-card .blog-meta i {
    margin-right: 5px;
    font-size: 12px;
    color: #D4A843;
}

.blog-card h4 {
    font-size: 20px;
    margin: 10px 0;
    line-height: 1.4;
}

.blog-card h4 a {
    color: #1A1A2E;
    transition: color 0.3s;
}

.blog-card h4 a:hover {
    color: #D4A843;
}

.blog-card p {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card .read-more {
    color: #D4A843;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.blog-card .read-more i {
    margin-left: 5px;
    font-size: 12px;
    transition: margin-left 0.3s;
}

.blog-card:hover .read-more i {
    margin-left: 10px;
}

/* Blog list sidebar */
.blog-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 30px;
    margin-bottom: 30px;
}

.blog-sidebar .sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F8F9FA;
    position: relative;
}

.blog-sidebar .sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4A843;
}

.blog-sidebar .categories li {
    list-style: none;
    margin-bottom: 0;
}

.blog-sidebar .categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #4A5568;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    transition: all 0.3s;
}

.blog-sidebar .categories li a:hover {
    color: #D4A843;
    padding-left: 5px;
}

.blog-sidebar .categories li a span {
    background: #F8F9FA;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 13px;
}

.blog-sidebar .recent-posts li {
    list-style: none;
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-sidebar .recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-sidebar .recent-posts li img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0;
}

.blog-sidebar .recent-posts li .post-info {
    flex: 1;
}

.blog-sidebar .recent-posts li .post-info .date {
    font-size: 12px;
    color: #D4A843;
    font-weight: 600;
}

.blog-sidebar .recent-posts li .post-info h6 {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.4;
}

.blog-sidebar .recent-posts li .post-info h6 a {
    color: #1A1A2E;
}

.blog-sidebar .recent-posts li .post-info h6 a:hover {
    color: #D4A843;
}

.blog-sidebar .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-sidebar .tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background: #F8F9FA;
    border-radius: 3px;
    color: #4A5568;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.blog-sidebar .tag-cloud a:hover {
    background: #D4A843;
    color: #fff;
}

/* Pagination */
.pagination {
    margin-top: 30px;
}

.pagination .page-item .page-link {
    color: #0A2647;
    border-color: #e2e8f0;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination .page-item .page-link:hover {
    background: #D4A843;
    border-color: #D4A843;
    color: #fff;
}

.pagination .page-item.active .page-link {
    background: #D4A843;
    border-color: #D4A843;
    color: #fff;
}


/* =================================================================
   17. BLOG SINGLE
   ================================================================= */
.blog-single-header {
    margin-bottom: 30px;
}

.blog-single-header .blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #718096;
}

.blog-single-header .blog-meta span {
    display: inline-flex;
    align-items: center;
}

.blog-single-header .blog-meta i {
    margin-right: 5px;
    color: #D4A843;
}

.blog-single-header h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-single-header .featured-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-single-header .featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 28px;
}

.blog-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.blog-content h4 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 20px;
}

.blog-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.blog-content img {
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-content blockquote {
    border-left: 4px solid #D4A843;
    padding: 20px 25px;
    margin: 30px 0;
    background: #F8F9FA;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 18px;
    color: #4A5568;
    line-height: 1.7;
}

.blog-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: #D4A843;
    font-size: 14px;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.blog-content ul li,
.blog-content ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.blog-content pre {
    background: #1A1A2E;
    color: #e2e8f0;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
}

.blog-content code {
    background: #F8F9FA;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
    color: #D4A843;
}

.blog-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

/* Blog share & tags */
.blog-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 25px 0;
    margin-top: 30px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.blog-share .tags a {
    display: inline-block;
    padding: 4px 10px;
    background: #F8F9FA;
    border-radius: 3px;
    color: #4A5568;
    font-size: 13px;
    margin-right: 5px;
    transition: all 0.3s;
}

.blog-share .tags a:hover {
    background: #D4A843;
    color: #fff;
}

.blog-share .share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F8F9FA;
    color: #4A5568;
    margin-left: 5px;
    transition: all 0.3s;
}

.blog-share .share-links a:hover {
    background: #D4A843;
    color: #fff;
}

/* Blog author box */
.author-box {
    display: flex;
    align-items: flex-start;
    background: #F8F9FA;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    flex-shrink: 0;
    border: 3px solid #D4A843;
}

.author-box .author-content h5 {
    margin-bottom: 5px;
}

.author-box .author-content .author-title {
    color: #D4A843;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.author-box .author-content p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Blog comments */
.blog-comments {
    margin-top: 40px;
}

.blog-comments h3 {
    margin-bottom: 30px;
}

.comment-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    flex-shrink: 0;
}

.comment-item .comment-content .comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.comment-item .comment-content h6 {
    margin-bottom: 0;
    font-size: 16px;
}

.comment-item .comment-content .comment-date {
    font-size: 13px;
    color: #718096;
}

.comment-item .comment-content p {
    font-size: 15px;
    margin-bottom: 5px;
}

.comment-item .comment-content .reply-btn {
    font-size: 13px;
    color: #D4A843;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-reply {
    margin-left: 80px;
}

/* Comment form */
.comment-form {
    margin-top: 40px;
}

.comment-form h3 {
    margin-bottom: 25px;
}


/* =================================================================
   18. CTA BANNER
   ================================================================= */
.cta-banner {
    background: #D4A843;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 30px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border: 40px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-banner h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-banner .btn {
    position: relative;
    z-index: 2;
}

.cta-banner .btn-secondary,
.cta-banner .btn-navy {
    background: #0A2647;
    border-color: #0A2647;
    color: #fff;
}

.cta-banner .btn-secondary:hover,
.cta-banner .btn-navy:hover {
    background: #144272;
    border-color: #144272;
}

.cta-banner .btn-white {
    background: #fff;
    color: #D4A843;
    border-color: #fff;
}

.cta-banner .btn-white:hover {
    background: #0A2647;
    color: #fff;
    border-color: #0A2647;
}

/* CTA banner - navy variant */
.cta-banner-navy {
    background: #0A2647;
}

.cta-banner-navy .btn-primary {
    background: #D4A843;
    border-color: #D4A843;
}

.cta-banner-navy .btn-primary:hover {
    background: #E8BC52;
    border-color: #E8BC52;
}


/* =================================================================
   19. FAQ ACCORDION
   ================================================================= */
.faq-section .section-title {
    margin-bottom: 40px;
}

.faq-card {
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s;
}

.faq-card:hover {
    border-color: #D4A843;
}

.faq-card .card-header {
    background: #fff;
    cursor: pointer;
    padding: 18px 25px;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.faq-card .card-header:hover {
    background: #FEFCF5;
}

.faq-card .card-header h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
    margin-bottom: 0;
    flex: 1;
    padding-right: 15px;
    line-height: 1.4;
}

.faq-card .card-header .toggle-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F8F9FA;
    color: #0A2647;
    font-size: 14px;
    transition: all 0.3s;
}

.faq-card .card-header.active {
    background: #FEFCF5;
}

.faq-card .card-header.active h5 {
    color: #D4A843;
}

.faq-card .card-header.active .toggle-icon {
    background: #D4A843;
    color: #fff;
    transform: rotate(45deg);
}

.faq-card .card-body {
    padding: 0 25px 20px;
    color: #4A5568;
    line-height: 1.7;
    font-size: 15px;
}

.faq-card .card-body p {
    margin-bottom: 10px;
}

.faq-card .card-body p:last-child {
    margin-bottom: 0;
}


/* =================================================================
   20. CONTACT FORM & SIDEBAR
   ================================================================= */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 600;
    color: #1A1A2E;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.contact-form .form-control {
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    height: auto;
    font-size: 15px;
    color: #1A1A2E;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #D4A843;
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='%234A5568' d='M6 8L1 3h10z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
}

.contact-form .form-check-label {
    font-weight: 400;
    font-size: 14px;
    color: #4A5568;
}

.contact-form .form-message {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 500;
    display: none;
}

.contact-form .form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.contact-form .form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact sidebar */
.contact-sidebar {
    background: #0A2647;
    border-radius: 8px;
    padding: 40px;
    color: #fff;
}

.contact-sidebar h4 {
    color: #D4A843;
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-sidebar p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-sidebar .contact-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-sidebar .contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-sidebar .contact-info-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-sidebar .contact-info-list li .icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 168, 67, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-sidebar .contact-info-list li h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-sidebar .contact-info-list li p {
    margin-bottom: 0;
    font-size: 15px;
}

.contact-sidebar .contact-info-list li a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-sidebar .contact-info-list li a:hover {
    color: #D4A843;
}

/* Consultation box */
.consultation-box {
    background: #D4A843;
    border-radius: 8px;
    padding: 30px;
    margin-top: 20px;
    text-align: center;
}

.consultation-box h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.consultation-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 14px;
}

.consultation-box .phone-number {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: block;
    margin-bottom: 15px;
}

.consultation-box .phone-number:hover {
    color: #0A2647;
}

.consultation-box .btn {
    background: #0A2647;
    color: #fff;
    border-color: #0A2647;
    width: 100%;
}

.consultation-box .btn:hover {
    background: #144272;
    border-color: #144272;
}

/* Google Map */
.google-map {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}

.google-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}


/* =================================================================
   21. TIMELINE (About Page)
   ================================================================= */
.timeline {
    position: relative;
    padding: 20px 0;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item .timeline-content {
    width: 45%;
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 5%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 5%;
}

.timeline-item .timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-width: 8px 10px 8px 0;
    border-color: transparent #fff transparent transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #fff;
}

.timeline-item .year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #D4A843;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    z-index: 2;
    white-space: nowrap;
}

.timeline-item .timeline-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.timeline-item .timeline-content p {
    color: #4A5568;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Timeline start/end markers */
.timeline-start,
.timeline-end {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-start .marker,
.timeline-end .marker {
    width: 16px;
    height: 16px;
    background: #D4A843;
    border-radius: 50%;
    display: inline-block;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #D4A843;
}


/* =================================================================
   22. FOOTER
   ================================================================= */
footer {
    position: relative;
}

footer .bg-secondary {
    background-color: #0A2647 !important;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget .footer-logo {
    max-height: 45px;
    margin-bottom: 20px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4A843;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #D4A843;
    padding-left: 5px;
}

.footer-links a::before {
    content: "\e649";
    font-family: 'themify';
    margin-right: 8px;
    font-size: 10px;
    color: #D4A843;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer contact info */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact li i {
    margin-right: 12px;
    color: #D4A843;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: #D4A843;
}

/* Footer social icons */
.social-icon-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-icon-outline:hover {
    background: #D4A843;
    border-color: #D4A843;
    color: #fff;
    transform: translateY(-2px);
}

/* Newsletter subscribe */
.subscribe-form {
    position: relative;
    margin-top: 15px;
}

.subscribe-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    padding: 12px 50px 12px 15px;
    width: 100%;
    font-size: 14px;
    height: auto;
    transition: border-color 0.3s;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form input:focus {
    outline: none;
    border-color: #D4A843;
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-form .btn-subscribe {
    position: absolute;
    right: 0;
    top: 0;
    background: #D4A843;
    border: none;
    color: #fff;
    height: 100%;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.subscribe-form .btn-subscribe:hover {
    background: #E8BC52;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 0;
}

.footer-bottom a {
    color: #D4A843;
}

.footer-bottom a:hover {
    color: #E8BC52;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 0;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links li a:hover {
    color: #D4A843;
}

/* Certifications / trust badges in footer */
.footer-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-badges img {
    max-height: 45px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-badges img:hover {
    opacity: 1;
}


/* =================================================================
   23. BACK TO TOP
   ================================================================= */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #D4A843;
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    font-size: 18px;
    border: none;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.4);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #E8BC52;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 168, 67, 0.5);
}

.back-to-top.show {
    display: flex;
}


/* =================================================================
   24. ANIMATIONS & LAZY LOADING
   ================================================================= */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Fade in up animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(212, 168, 67, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 67, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Subtle float animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}


/* =================================================================
   25. RESPONSIVE (Media Queries)
   ================================================================= */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .testimonial-slider .prevArrow {
        left: -30px;
    }

    .testimonial-slider .nextArrow {
        right: -30px;
    }

    .trust-item .count {
        font-size: 36px;
    }

    .timeline-item .timeline-content {
        padding: 20px;
    }

    .medical-spotlight {
        padding: 80px 0;
    }

    .navigation .nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    .hero-static,
    .hero-slider .hero-slider-item {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .section {
        padding: 60px 0;
    }

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

    .section-title {
        margin-bottom: 35px;
    }

    .page-title {
        padding: 100px 0 60px;
    }

    .page-title h1 {
        font-size: 34px;
    }

    .trust-bar {
        padding: 30px 0;
    }

    .trust-item .count {
        font-size: 32px;
    }

    .trust-item p {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .trust-item::after {
        display: none;
    }

    .trust-item {
        margin-bottom: 15px;
    }

    .medical-spotlight {
        padding: 60px 0;
    }

    .medical-spotlight .spotlight-content {
        margin-bottom: 40px;
    }

    .medical-spotlight .spotlight-stats {
        gap: 25px;
    }

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

    .cta-banner h2 {
        font-size: 28px;
    }

    .blog-single-header h1 {
        font-size: 28px;
    }

    .team-member img {
        width: 150px;
        height: 150px;
    }

    .contact-sidebar {
        margin-top: 40px;
    }

    .navigation .navbar-collapse {
        background: #fff;
        padding: 15px 20px;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 3px solid #D4A843;
    }

    .navigation .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .navigation .nav-link::after {
        display: none;
    }

    .navigation .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navigation .dropdown-menu {
        border-top: none;
        box-shadow: none;
        padding-left: 15px;
        border-left: 2px solid #D4A843;
        margin-top: 0;
    }

    .navigation .nav-cta {
        margin-left: 0;
        margin-top: 10px;
    }

    .testimonial-slider .prevArrow,
    .testimonial-slider .nextArrow {
        display: none !important;
    }

    .footer-top {
        padding: 60px 0 30px;
    }

    /* Timeline responsive */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 50px;
    }

    .timeline-item .timeline-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .timeline-item .timeline-content::before {
        left: -10px !important;
        right: auto !important;
        border-width: 8px 10px 8px 0 !important;
        border-color: transparent #fff transparent transparent !important;
    }

    .timeline-item .year {
        left: 20px;
        transform: translateX(-50%);
        font-size: 12px;
        padding: 3px 10px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .hero-static,
    .hero-slider .hero-slider-item {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-content .hero-cta .btn {
        padding: 12px 25px;
        font-size: 13px;
    }

    .section {
        padding: 50px 0;
    }

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

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 24px;
        padding-bottom: 15px;
    }

    .section-title h2::after {
        width: 45px;
    }

    .page-title {
        padding: 80px 0 50px;
    }

    .page-title h1 {
        font-size: 28px;
    }

    .trust-item .count {
        font-size: 28px;
    }

    .trust-item p {
        font-size: 11px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card .icon {
        width: 65px;
        height: 65px;
        line-height: 65px;
        font-size: 26px;
    }

    .industry-card {
        height: 200px;
    }

    .medical-spotlight .spotlight-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .medical-spotlight .spotlight-stats .stat .number {
        font-size: 28px;
    }

    .team-member img {
        width: 140px;
        height: 140px;
    }

    .blog-card img {
        height: 180px;
    }

    .blog-card .content {
        padding: 20px;
    }

    .blog-card h4 {
        font-size: 18px;
    }

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

    .cta-banner h2 {
        font-size: 24px;
    }

    .cta-banner p {
        font-size: 16px;
    }

    .contact-sidebar {
        padding: 30px;
    }

    .consultation-box {
        padding: 25px;
    }

    .consultation-box .phone-number {
        font-size: 18px;
    }

    .footer-top {
        padding: 50px 0 20px;
    }

    .footer-widget h4 {
        margin-bottom: 20px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .top-header {
        display: none;
    }

    .top-header .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .top-header .social-links {
        justify-content: center;
        margin-top: 5px;
    }

    .search-form input[type="search"],
    .search-form input[type="text"] {
        font-size: 18px;
    }

    .blog-single-header h1 {
        font-size: 24px;
    }

    .blog-content blockquote {
        padding: 15px 20px;
        font-size: 16px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-box img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .comment-reply {
        margin-left: 30px;
    }

    .faq-card .card-header {
        padding: 15px 18px;
    }

    .faq-card .card-header h5 {
        font-size: 15px;
    }

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

    .btn-lg {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-static,
    .hero-slider .hero-slider-item {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-content .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .page-title {
        padding: 70px 0 40px;
    }

    .page-title h1 {
        font-size: 24px;
    }

    .page-title .breadcrumb-item {
        font-size: 12px;
    }

    .trust-bar {
        padding: 20px 0;
    }

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

    .trust-item p {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .feature-box {
        padding: 20px;
    }

    .feature-box .icon {
        font-size: 36px;
    }

    .feature-box h4 {
        font-size: 18px;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }

    .blog-card img {
        height: 160px;
    }

    .cta-banner h2 {
        font-size: 22px;
    }

    .contact-sidebar {
        padding: 25px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .social-icon-outline {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .blog-single-header h1 {
        font-size: 22px;
    }

    .testimonial-item {
        padding: 20px 10px;
    }

    .testimonial-item blockquote {
        font-size: 16px;
    }

    .search-form .close-search {
        top: 15px;
        right: 15px;
    }

    .back-to-top {
        width: 36px;
        height: 36px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-item .year {
        left: 15px;
        font-size: 11px;
    }

    .timeline-item .timeline-content {
        padding: 15px;
    }
}

/* Print styles */
@media print {
    .preloader,
    .navigation,
    .top-header,
    .back-to-top,
    .search-form,
    footer,
    .cta-banner {
        display: none !important;
    }

    body {
        color: #000;
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .page-title {
        padding: 20px 0;
        background: none !important;
    }

    .page-title::before {
        display: none;
    }

    .page-title h1 {
        color: #000;
    }

    .section {
        padding: 30px 0;
    }

    img {
        max-width: 100% !important;
    }
}
