/* ===== GOOGLE FONTS ===== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* ===== CSS VARIABLES ===== */

:root {
    --primary: #ffffff;
    --primary-light: #f8f9fa;
    --accent: #0e8a6d;
    --accent-glow: rgba(14, 138, 109, 0.1);
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --white: #1a1a2e;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.08);
    --danger: #e74c3c;
    --gold: #f0b35a;
    --gradient-hero: linear-gradient( 135deg, #0e8a6d 0%, #0a7c8c 40%, #1565a0 100%);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    --radius: 12px;
    --radius-sm: 8px;
}


/* ===== BASE RESET ===== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
    text-decoration: none;
}

.text-justify {
    text-align: justify;
}

.container {
    width: 95%;
    margin: 0 auto;
}


/* ===== UTILITY / SECTION ===== */

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    border-bottom: none;
    padding-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title span {
    color: var(--accent);
}

.section-desc {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 15px;
}


/* ===== TOP BAR ===== */

.top-bar {
    background: var(--primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar .social-link {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(14, 138, 109, 0.25);
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.top-bar .social-link:hover {
    background: var(--accent-glow);
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}


/* ===== HERO SECTION ===== */

.hero {
    min-height: 400px;
    position: relative;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero) center center / cover no-repeat;
    opacity: 0.75;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, #ffffff);
    opacity: 0.75;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-profile-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    /* box-shadow: 0 0 30px rgba(14, 138, 109, 0.25); */
    flex-shrink: 0;
}

.hero-text h4 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.hero-text .hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.hero-text .hero-subtitle span {
    color: #64ffda;
    font-weight: 600;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.hero-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}


/* ===== NAVBAR ===== */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1047;
    transition: var(--transition);
}

.navbar ul {
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    position: relative;
}

.navbar .dropdown {
    position: static;
}

.navbar a {
    display: block;
    padding: 16px 16px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    /* letter-spacing: 0.5px; */
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.navbar a:hover {
    color: var(--accent);
    background: rgba(14, 138, 109, 0.05);
}

.navbar .active,
.nav-link.active {
    color: var(--accent) !important;
    background: rgba(14, 138, 109, 0.08) !important;
    border-bottom: 2px solid var(--accent);
}

.navbar .active:hover {
    background: rgba(14, 138, 109, 0.12) !important;
}

.navbar-toggler {
    border-color: var(--accent) !important;
}

.navbar-toggler-icon {
    filter: none;
}

.search-icon {
    margin-left: auto;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-secondary);
}


/* ===== MEGA MENU ===== */

.mega-menu {
    position: absolute;
    /*left: 0;*/
    /*right: 0;*/
    top: 100%;
    /*width: 100%;*/
    /*max-width: 100vw;*/
    background: var(--primary-light);
    display: none;
    padding: 0;
    border: 1px solid var(--card-border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    z-index: 999;
}

.mega-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
}

.mega-column {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-column:last-child {
    border-right: none;
}

.mega-header {
    background: linear-gradient(135deg, var(--accent), #2bbbad);
    padding: 14px 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.mega-links {
    padding: 16px 20px;
}

.mega-links a {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    padding: 6px 0;
    text-decoration: none;
    border-bottom: none;
    transition: var(--transition);
}

.mega-links a:hover {
    color: var(--accent);
    padding-left: 8px;
    text-decoration: none;
    background: transparent;
}

.dropdown:hover .mega-menu {
    display: block;
}


/* ===== CONTENT CARDS ===== */

.content-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.content-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: rgba(14, 138, 109, 0.2);
}

.content-card h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-card h4 .card-icon {
    color: var(--accent);
    font-size: 22px;
}

.content-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}


/* ===== PROFILE SIDEBAR ===== */

.profile-sidebar {
    position: sticky;
    top: 80px;
}


/* ===== VIDEO SECTION ===== */

.video-section {
    background: var(--primary-light);
    padding: 60px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--accent);
}

.video-card h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.video-card p {
    color: var(--text-secondary);
    margin: 0;
}


/* ===== POST ITEMS ===== */

.post-item {
    display: grid;
    grid-template-columns: 80px 220px 1fr;
    gap: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.post-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: rgba(14, 138, 109, 0.2);
}

@media (max-width: 768px) {
    .post-item {
        display: flex;
        flex-direction: column;
    }
}

.post-date {
    background: linear-gradient(135deg, var(--accent), #2bbbad);
    text-align: center;
    padding: 14px 8px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.post-date h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.post-date span {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.7;
}

.post-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.post-content h3 {
    margin: 0 0 8px;
    font-size: 17px;
    color: var(--white);
    font-weight: 600;
}

.post-content .meta {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.post-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.read-more {
    float: right;
    font-size: 13px;
    text-decoration: none;
    color: var(--accent);
    font-weight: 500;
    margin-top: 8px;
    transition: var(--transition);
}

.read-more:hover {
    text-decoration: none;
    color: var(--accent);
    transform: translateX(4px);
}

.read-more::after {
    content: " →";
}


/* ===== TIMELINE (Professional Qualifications) ===== */

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--primary-light));
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: 22px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border: 3px solid var(--accent);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 12px rgba(14, 138, 109, 0.3);
}

.timeline-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.timeline-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(14, 138, 109, 0.25);
}

.timeline-card h2 {
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-card h5 {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
}

.timeline-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.timeline-duration {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid rgba(14, 138, 109, 0.3);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}


/* ===== FOOTER ===== */

.footer-main {
    background: #1a1a2e;
    border-top: 1px solid var(--card-border);
    padding: 60px 0 30px;
}

.footer-main h3 {
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-main h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

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

.footer-list li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.footer-list li:hover {
    color: #64ffda;
    padding-left: 6px;
}

.footer-list li:last-child {
    border-bottom: none;
}

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

.footer-contact strong {
    color: #ffffff;
}

.copyright {
    background: #111122;
    color: rgba(255, 255, 255, 0.5);
    padding: 18px 0;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.copyright span {
    color: #64ffda;
}


/* ===== CONTACT PAGE ===== */

.contact-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.contact-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--text-primary);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.contact-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 138, 109, 0.1);
}

.contact-input::placeholder {
    color: #b0b0b0;
}

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

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--accent), #2bbbad);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 138, 109, 0.3);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--card-border);
}

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

.contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 16px;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.contact-social-btn i {
    font-size: 18px;
    color: var(--accent);
}

.contact-social-btn:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent);
    transform: translateX(4px);
}


/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .hero-profile-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .navbar {
        padding: 0 15px;
    }
    .mega-menu {
        position: static;
        width: 100%;
        border-radius: 0;
        max-height: 60vh;
        overflow-y: auto;
    }
    .mega-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    .hero-profile-img {
        width: 120px;
        height: 120px;
    }
    .section-title {
        font-size: 22px;
    }
    .content-card {
        padding: 24px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 50px;
    }
    .timeline-dot {
        left: 12px;
    }
}


/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.section-subtitle {
    font-size: 0.85rem;
    color: #0e8a6d;
    font-weight: 600;
}


/* profile card  */


/* Custom Colors */

.bg-surface {
    background: #f8f9fa;
}

.bg-card {
    background: #ffffff;
}

.bg-soft {
    background: #f3f4f5;
}

.bg-contact {
    background: #edeeef;
}

.text-muted-custom {
    color: #3e4946;
}

.text-outline {
    color: #6e7976;
}

.text-secondary-custom {
    color: #046b5e;
}

.bg-secondary-custom {
    background: #046b5e;
    color: #fff;
}

.bg-secondary-light {
    background: #9defde;
    color: #0f6f62;
}


/* Card */

.profile-card {
    border-radius: 24px;
    box-shadow: 0px 24px 48px rgba(25, 28, 29, 0.06);
    overflow: hidden;
    position: relative;
}


/* Decorative */

.decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: #0e8a6d;
    opacity: 0.05;
    border-bottom-left-radius: 100%;
}


/* Avatar */

.avatar-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.avatar-ring {
    padding: 3px;
    border-radius: 50%;
    border: 2px solid #046b5e;
}

.avatar-ring img {
    width: 140px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}

.verified {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #0e8a6d;
    color: #fff;
    border-radius: 50%;
    padding: 6px;
    height: 30px;
    width: 30px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Contact */

.contact-box {
    background: #edeeef;
    border-radius: 12px;
    padding: 20px;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #046b5e;
}


/* serve carrer */

.headline {
    font-family: "Newsreader", serif;
    color: #002045 !important;
}

.label-font {
    font-family: "Inter", sans-serif;
    letter-spacing: 1px;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--primary-light));
    opacity: 0.2;
}

.service-timeline {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
    background: var(--primary);
    border: 3px solid var(--accent);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 12px rgba(14, 138, 109, 0.3);
}

.card-custom {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.timeline-item:hover .card-custom {
    transform: translateX(8px);
}

.tag {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    background: #f3f4f5;
}

.border-left-accent {
    border-left: 2px solid #adcebe;
    padding-left: 12px;
}

.badge-custom {
    background: #e7e8e9;
    font-size: 10px;
    padding: 4px 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #002045;
    border-radius: 6px;
}

.muted {
    color: #74777f;
}

.secondary {
    color: #476558;
    font-weight: 600;
}

.icon {
    font-size: 30px;
    color: #1a365d;
}

.icon-bg {
    background: #e6f3f0;
    padding: 10px;
    border-radius: 50%;
    color: black;
}

.card-alart {
    background: #e6f3f0;
    border-radius: 0px 12px 12px 0px;
    border-left: 3px solid #002045;
    padding: 16px;
}

.text-theme {
    color: #199d86;
}

.theme-btn {
    background: linear-gradient(135deg, var(--accent), #2bbbad);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 187, 173, 0.35);
    filter: brightness(1.05);
}

.theme-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(43, 187, 173, 0.2);
}

.theme-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}


/* Variants */

.theme-icon-box.primary {
    background: #199d86;
}

.theme-icon-box.secondary {
    background: #2bbbad;
}

.theme-icon-box.dark {
    background: #1f6f78;
}


/* Hover Effect */

.theme-icon-box:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 18px rgba(25, 157, 134, 0.25);
}


/* traning card  */

.card-custom {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 77, 68, 0.08);
    transition: 0.4s ease;
}

.card-custom:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 77, 68, 0.15);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: 1s;
}

.card-custom:hover .card-img-top {
    /* transform: scale(1.1); */
}

.rating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
}

.time-btn {
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.time-btn.active {
    background: #004d44;
    color: #fff;
}

.btn-custom {
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.left-sidebar {
    width: 310px !important;
}

.timelineCenter {
    position: relative;
}

.timelineCenter::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    top: 0;
    bottom: 0;
    background: #199d86;
}

.center-timeline-item {
    position: relative;
    margin-bottom: 80px;
}

.center-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px !important;
    height: 14px;
    border-radius: 50%;
    transition: transform 0.3s;
    background: var(--primary);
    border: 3px solid var(--accent);
    z-index: 1;
    box-shadow: 0 0 12px rgba(14, 138, 109, 0.3);
}

.center-timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.center-timeline-content:hover {
    background: #f1f3f5;
}

.badge-custom {
    background: #eee;
    font-size: 10px;
    letter-spacing: 1px;
}

.text-theme {
    color: #198754;
}

@media (max-width: 768px) {
    .timelineCenter::before {
        left: -3px;
    }
    .center-timeline-dot {
        left: 8px;
    }
}

.break-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    /* পুরনো ব্রাউজার সাপোর্ট */
    white-space: normal;
}

.activity-card {
    max-width: 100%;
    border: none;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.activity-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.activity-category {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}

.activity-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.3;
    margin-top: 10px;
    color: #111;
    font-weight: 600;
}

.activity-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 10px;
}

.activity-body {
    padding: 15px 18px 20px;
}

.activity-border-top {
    border-top: 1px solid #eee;
    padding-top: 8px;
    margin-top: 10px;
}

.activity-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

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

@media (max-width: 768px) {
    .activity-title {
        font-size: 1.2rem;
    }
}


/* Gradient border */

.activity-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #2bbbad);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.3s ease;
}

.activity-card:hover::before {
    opacity: 1;
}


/* FILTER CARD */

.filter-card {
    background: #ffffff;
    border: 1px solid rgba(0, 77, 68, 0.08);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 77, 68, 0.06);
    transition: 0.3s ease;
}

.filter-card:hover {
    box-shadow: 0 12px 30px rgba(0, 77, 68, 0.12);
    transform: translateY(-2px);
}


/* LABEL */

.filter-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #199d86;
    /* accent */
}


/* SELECT INPUT */

.filter-select {
    border-radius: 10px;
    border: 1px solid rgba(0, 77, 68, 0.15);
    padding: 10px 12px;
    font-size: 0.9rem;
    transition: 0.3s ease;
    background: #fff;
}

.filter-select:focus {
    border-color: #199d86;
    box-shadow: 0 0 0 0.2rem rgba(25, 157, 134, 0.15);
}


/* INFO TEXT */

.filter-info {
    font-style: italic;
    font-size: 0.85rem;
    color: #004d44;
    /* primary */
    opacity: 0.8;
}


/* FILTER BUTTON */

.btn-filter {
    background: #199d86;
    color: #ffffff;
    border: 1px solid rgba(25, 157, 134, 0.3);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 6px 16px rgba(25, 157, 134, 0.15);
}

.btn-filter:hover {
    background: #148872;
    box-shadow: 0 10px 24px rgba(25, 157, 134, 0.25);
    transform: translateY(-2px);
}

.btn-filter:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(25, 157, 134, 0.18);
}

.btn-filter:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(25, 157, 134, 0.2);
}

.filter-select option {
    background: #199d87b5;
    color: #ffffff;
    border: 1px solid rgba(25, 157, 134, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 6px 16px rgba(25, 157, 134, 0.15);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* hover effect */


/* RESPONSIVE ALIGNMENT */

@media (max-width: 768px) {
    .filter-info {
        text-align: left !important;
    }
}
