@charset "UTF-8";

/* Fonts */
:root {}

body {
    overflow-x: hidden;
}

:root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Raleway", sans-serif;
    --background-color: #ffffff;
    --default-color: #37423b;
    --heading-color: #0f2a44;
    --accent-color: #e8672c;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    scroll-behavior: smooth;
    --nav-color: #37423b;
    --nav-hover-color: #e8672c;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #37423b;
    --nav-dropdown-hover-color: #e8672c;
}

.light-background {
    --background-color: #f7f5f2;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #0f1f2e;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #223040;
    --contrast-color: #ffffff;
}

.bold {
    font-weight: 600;
    color: #e8672c !important;
}

body {}

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

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0.9);
    --default-color: #37423b;
    --heading-color: #0f2a44;
    background: color-mix(in srgb, var(--background-color) 92%, transparent);
    padding: 16px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    transition: all 0.3s ease;
    z-index: 997;
}

.header .logo {
    gap: 12px;
}

.header .logo .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--accent-color) 15%, transparent);
    color: var(--accent-color);
    font-size: 20px;
}

.header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .header-actions {
    margin: 0 16px;
}

.header .header-actions .action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--default-color);
}

.header .header-actions .action-link i {
    font-size: 18px;
    color: var(--accent-color);
}

.header .btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 24px;
    border-radius: 24px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header .btn-quote:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, black);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
        margin-right: auto;
    }

    .header .btn-quote {
        order: 2;
        margin-right: 12px;
        padding: 10px 20px;
    }

    .header .header-actions {
        display: none !important;
    }

    .header .navmenu {
        order: 3;
    }
}

@media (max-width: 576px) {
    .header .logo {
        gap: 8px;
    }

    .header .logo .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

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

.scrolled .header {
    background: color-mix(in srgb, var(--background-color) 98%, transparent);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color) 12%, transparent);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.98);
    --default-color: #37423b;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        gap: 8px;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 16px 14px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a:after,
    .navmenu a:focus:after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 8px;
        height: 2px;
        background: var(--accent-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu li:hover>a:after,
    .navmenu .active:after,
    .navmenu .active:focus:after {
        transform: scaleX(1);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 12px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 0;
        top: 120%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 8px;
        z-index: 99;
        box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color) 12%, transparent);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a:after {
        display: none;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 70px 20px 20px 20px;
        padding: 12px 0;
        margin: 0;
        border-radius: 12px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0 18px 40px color-mix(in srgb, var(--default-color) 12%, transparent);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 12px 20px;
        font-family: var(--nav-font);
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color) 12%, transparent);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: color-mix(in srgb, var(--accent-color) 6%, transparent);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: var(--contrast-color);
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: color-mix(in srgb, var(--default-color) 75%, transparent);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

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

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 40px 0;
    scroll-margin-top: 88px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    padding: 96px 0 0;
    overflow: hidden;
}

.hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 42, 68, 0.92) 0%, rgba(15, 42, 68, 0.75) 100%);
}

.hero .container {
    z-index: 2;
}

.hero .badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero .badge-label i {
    font-size: 16px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--contrast-color);
}

.hero h1 .accent {
    color: var(--accent-color);
}

.hero .lead {
    font-size: 18px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    max-width: 580px;
    margin-bottom: 32px;
}

.hero .hero-actions {
    margin-bottom: 80px;
}

.hero .hero-actions .btn-main {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.hero .hero-actions .btn-main:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-actions .btn-outline {
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero .hero-actions .btn-outline:hover {
    background: var(--contrast-color);
    color: var(--heading-color);
}

.hero .hero-counters {
    background: var(--accent-color);
    border-radius: 8px 8px 0 0;
    padding: 32px;
}

.hero .hero-counters .counter-item {
    text-align: center;
}

.hero .hero-counters .counter-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--contrast-color);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.hero .hero-counters .counter-item p {
    font-size: 14px;
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    margin: 4px 0 0;
}

@media (max-width: 991px) {
    .hero {
        padding: 80px 0 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero .hero-actions {
        margin-bottom: 48px;
    }
}

@media (max-width: 575px) {
    .hero {
        padding: 64px 0 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero .lead {
        font-size: 16px;
    }

    .hero .hero-actions {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .hero .hero-actions .btn-main,
    .hero .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero .hero-counters {
        padding: 24px 16px;
    }

    .hero .hero-counters .counter-item h3 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-gallery {
    position: relative;
    padding-right: 80px;
    padding-bottom: 80px;
}

.about .about-gallery .gallery-main {
    border-radius: 8px;
    overflow: hidden;
}

.about .about-gallery .gallery-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about .about-gallery .gallery-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid var(--background-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about .about-gallery .gallery-secondary img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about .about-gallery .experience-badge {
    position: absolute;
    top: 24px;
    right: 48px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.about .about-gallery .experience-badge .number {
    font-size: 28px;
    font-weight: 800;
    color: var(--contrast-color);
    line-height: 1;
}

.about .about-gallery .experience-badge .text {
    font-size: 11px;
    font-weight: 600;
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
    text-align: center;
    line-height: 1.2;
}

.about .about-content .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about .about-content .section-label i {
    font-size: 16px;
}

.about .about-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about .about-content .lead {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 32px;
}

.about .about-highlights {
    margin-bottom: 32px;
}

.about .about-highlights .highlight-item .highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.about .about-highlights .highlight-item .highlight-icon i {
    font-size: 22px;
    color: var(--accent-color);
}

.about .about-highlights .highlight-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.about .about-highlights .highlight-item p {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.5;
    margin: 0;
}

.about .about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about .about-cta .btn-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.about .about-cta .btn-about:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
}

.about .about-cta .btn-about:hover i {
    transform: translateX(4px);
}

.about .about-cta .btn-about i {
    transition: transform 0.3s ease;
}

.about .about-cta .btn-about-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    transition: all 0.3s ease;
}

.about .about-cta .btn-about-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .about .about-gallery {
        padding-right: 48px;
        padding-bottom: 48px;
        margin-bottom: 16px;
    }

    .about .about-gallery .experience-badge {
        right: 16px;
    }

    .about .about-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .about .about-gallery {
        padding-right: 32px;
        padding-bottom: 32px;
    }

    .about .about-gallery .experience-badge {
        width: 80px;
        height: 80px;
        right: 0;
    }

    .about .about-gallery .experience-badge .number {
        font-size: 22px;
    }

    .about .about-gallery .experience-badge .text {
        font-size: 9px;
    }

    .about .about-content h2 {
        font-size: 26px;
    }

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

    .about .about-cta .btn-about,
    .about .about-cta .btn-about-outline {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .isotope-filters {
    list-style: none;
    padding: 0;
    margin: 0 0 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.projects .isotope-filters li {
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--default-color);
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    transition: all 0.3s ease;
}

.projects .isotope-filters li:hover,
.projects .isotope-filters li.filter-active {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.projects .isotope-container .isotope-item {
    width: 33.333%;
    padding: 0 calc(var(--bs-gutter-x) * 0.5);
    margin-bottom: calc(var(--bs-gutter-y));
}

@media (max-width: 991px) {
    .projects .isotope-container .isotope-item {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .projects .isotope-container .isotope-item {
        width: 100%;
    }
}

.projects .project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    /* height: 300px; */
}

.projects .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.projects .project-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(15, 42, 68, 0.95) 0%, rgba(15, 42, 68, 0.2) 100%);
}

.projects .project-card:hover .card-content .tag {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.projects .project-card:hover .card-actions .card-action {
    opacity: 1;
    transform: translateY(0);
}

.projects .project-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 42, 68, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    transition: background 0.4s ease;
}

.projects .project-card .card-content .tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: color-mix(in srgb, var(--contrast-color), transparent 80%);
    color: var(--contrast-color);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.projects .project-card .card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.projects .project-card .card-content p {
    font-size: 14px;
    color: color-mix(in srgb, #ffffff, transparent 25%);
    margin: 8px 0 0;
    line-height: 1.5;
}

.projects .project-card .card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: flex-end;
}

.projects .project-card .card-action {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.projects .project-card .card-action:nth-child(2) {
    transition-delay: 0.1s;
}

.projects .project-card .card-action:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 991px) {
    .projects .project-card {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .projects .project-card {
        height: 240px;
    }

    .projects .project-card .card-content h3 {
        font-size: 18px;
    }

    .projects .project-card .card-actions .card-action {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process .process-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.process .process-step .step-number {
    font-size: 56px;
    font-weight: 800;
    color: color-mix(in srgb, var(--accent-color), transparent 85%);
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--heading-font);
}

.process .process-step .step-icon {
    color: white;
    font-size: 23px;
    font-weight: 700;
    width: 180px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.process .process-step .step-icon i {
    font-size: 32px;
    color: var(--contrast-color);
}

.process .process-step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.process .process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

@media (min-width: 992px) {
    .process .process-step::after {
        content: "";
        position: absolute;
        top: 70px;
        right: -16px;
        width: 32px;
        height: 2px;
        background: color-mix(in srgb, var(--accent-color), transparent 60%);
    }

    .process .col-lg-3:last-child .process-step::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .process .process-step {
        padding: 24px 16px;
    }

    .process .process-step .step-number {
        font-size: 44px;
    }

    .process .process-step .step-icon {
        width: 64px;
        height: 64px;
    }

    .process .process-step .step-icon i {
        font-size: 24px;
    }

    .process .process-step h3 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card-team {
    background: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team .member-card-team:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.team .member-card-team:hover .member-img-team .social-links {
    opacity: 1;
    bottom: 16px;
}

.team .member-img-team {
    position: relative;
    overflow: hidden;
}

.team .member-img-team img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

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

.team .member-img-team .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team .member-img-team .social-links a:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
}

.team .member-info {
    padding: 24px;
    text-align: center;
}

.team .member-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team .member-info span {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 400;
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .hero-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.project-details .hero-banner .banner-slider .swiper-wrapper {
    height: auto !important;
}

.project-details .hero-banner .banner-slider .swiper-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.project-details .hero-banner .banner-slider .slider-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    background: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 6px 14px;
    border-radius: 30px;
}

.project-details .hero-banner .banner-slider .swiper-button-next,
.project-details .hero-banner .banner-slider .swiper-button-prev {
    position: static;
    width: 30px;
    height: 30px;
    margin: 0;
}

.project-details .hero-banner .banner-slider .swiper-button-next::after,
.project-details .hero-banner .banner-slider .swiper-button-prev::after {
    font-size: 14px;
    color: var(--contrast-color);
}

.project-details .hero-banner .banner-slider .swiper-pagination {
    position: static;
    width: auto;
    color: var(--contrast-color);
    font-size: 13px;
    font-weight: 600;
}

.project-details .hero-banner .banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px 24px;
    background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 10%), transparent);
    z-index: 5;
}

.project-details .hero-banner .banner-overlay .tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.project-details .hero-banner .banner-overlay h2 {
    color: var(--contrast-color);
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.project-details .detail-tabs .nav-tabs {
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    gap: 4px;
}

.project-details .detail-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.project-details .detail-tabs .nav-tabs .nav-link i {
    font-size: 16px;
}

.project-details .detail-tabs .nav-tabs .nav-link:hover {
    color: var(--accent-color);
    border-bottom-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.project-details .detail-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    background: transparent;
}

.project-details .detail-tabs .tab-content {
    padding: 28px 0;
}

.project-details .detail-tabs .tab-content .summary {
    font-size: 17px;
    line-height: 1.75;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 16px;
    font-weight: 500;
}

.project-details .detail-tabs .tab-content p {
    font-size: 15px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.project-details .photo-grid h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.project-details .photo-grid img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: all 0.3s;
    cursor: pointer;
}

.project-details .photo-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 80%);
}

.project-details .sticky-sidebar {
    position: sticky;
    top: 100px;
}

.project-details .sticky-sidebar .meta-header {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--default-color) 30%));
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    color: var(--contrast-color);
}

.project-details .sticky-sidebar .meta-header .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: color-mix(in srgb, var(--contrast-color), transparent 80%);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.project-details .sticky-sidebar .meta-header .status-badge i {
    font-size: 14px;
}

.project-details .sticky-sidebar .meta-header .meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.project-details .sticky-sidebar .meta-header .meta-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.project-details .sticky-sidebar .meta-header .meta-row i {
    font-size: 16px;
    opacity: 0.85;
}

.project-details .sticky-sidebar .specs-card {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.project-details .sticky-sidebar .specs-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
}

.project-details .sticky-sidebar .specs-card .spec-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.project-details .sticky-sidebar .specs-card .spec-row:last-child {
    margin-bottom: 0;
}

.project-details .sticky-sidebar .specs-card .spec-item {
    flex: 1;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.project-details .sticky-sidebar .specs-card .spec-item .spec-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--heading-font);
}

.project-details .sticky-sidebar .specs-card .spec-item .spec-label {
    display: block;
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

.project-details .sticky-sidebar .capabilities-card {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.project-details .sticky-sidebar .capabilities-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
}

.project-details .sticky-sidebar .capabilities-card .capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag i {
    color: var(--accent-color);
    font-size: 15px;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 82%);
}

.project-details .sticky-sidebar .client-card {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    padding: 24px;
}

.project-details .sticky-sidebar .client-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
}

.project-details .sticky-sidebar .client-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-details .sticky-sidebar .client-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.project-details .sticky-sidebar .client-card ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.project-details .sticky-sidebar .client-card ul li:first-child {
    padding-top: 0;
}

.project-details .sticky-sidebar .client-card ul li .label {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.project-details .sticky-sidebar .client-card ul li .value {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
}

.project-details .bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 24px 0;
    border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.project-details .bottom-nav .btn-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.project-details .bottom-nav .btn-nav i {
    font-size: 20px;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.project-details .bottom-nav .btn-nav .btn-text {
    display: flex;
    flex-direction: column;
}

.project-details .bottom-nav .btn-nav .btn-text .btn-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.project-details .bottom-nav .btn-nav .btn-text .btn-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--default-color);
    transition: color 0.3s;
}

.project-details .bottom-nav .btn-nav.prev-btn:hover i {
    transform: translateX(-4px);
}

.project-details .bottom-nav .btn-nav.prev-btn:hover .btn-title {
    color: var(--accent-color);
}

.project-details .bottom-nav .btn-nav.next-btn {
    text-align: right;
}

.project-details .bottom-nav .btn-nav.next-btn:hover i {
    transform: translateX(4px);
}

.project-details .bottom-nav .btn-nav.next-btn:hover .btn-title {
    color: var(--accent-color);
}

.project-details .bottom-nav .btn-nav.center-btn {
    padding: 10px 28px;
    border-radius: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 600;
    font-size: 14px;
}

.project-details .bottom-nav .btn-nav.center-btn i {
    color: var(--contrast-color);
}

.project-details .bottom-nav .btn-nav.center-btn span {
    color: var(--contrast-color);
}

.project-details .bottom-nav .btn-nav.center-btn:hover {
    background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 992px) {
    .project-details .hero-banner .banner-overlay h2 {
        font-size: 24px;
    }

    .project-details .sticky-sidebar {
        position: static;
        margin-top: 20px;
    }

    .project-details .detail-tabs .nav-tabs .nav-link {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .project-details .hero-banner .banner-overlay {
        padding: 30px 20px 18px;
    }

    .project-details .hero-banner .banner-overlay h2 {
        font-size: 20px;
    }

    .project-details .hero-banner .banner-overlay .tag {
        font-size: 11px;
        padding: 3px 10px;
    }

    .project-details .hero-banner .banner-slider .slider-controls {
        bottom: 10px;
        right: 10px;
        padding: 4px 10px;
    }

    .project-details .detail-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .project-details .detail-tabs .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 10px 12px;
        font-size: 12px;
    }

    .project-details .sticky-sidebar .specs-card .spec-item .spec-number {
        font-size: 20px;
    }

    .project-details .sticky-sidebar .meta-header,
    .project-details .sticky-sidebar .specs-card,
    .project-details .sticky-sidebar .capabilities-card,
    .project-details .sticky-sidebar .client-card {
        padding: 20px;
    }

    .project-details .bottom-nav {
        flex-direction: column;
        gap: 16px;
    }

    .project-details .bottom-nav .btn-nav.center-btn {
        order: -1;
    }

    .project-details .bottom-nav .btn-nav.prev-btn .btn-text .btn-title,
    .project-details .bottom-nav .btn-nav.next-btn .btn-text .btn-title {
        font-size: 13px;
    }
}

/* --------------------------latest news----------------------- */
.publication-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.section-heading span {
    color: #f26a2a;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.section-heading h2 {
    color: #18324A;
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 50px;
}

.publication-item {
    position: relative;
    background: #fff;
    border-left: 6px solid #f26a2a;
    padding: 35px 35px 35px 110px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.publication-number {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: #18324A;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.publication-content h3 {
    color: #18324A;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
}

.publication-content p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.8;
}

.publication-content strong {
    color: #f26a2a;
    font-size: 18px;
}

.submit-btn {
    display: inline-block;
    margin-top: 10px;
    background: #f26a2a;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.submit-btn:hover {
    background: #18324A;
    text-decoration: none;
}

/* ----------------------------------inner pages-------------------------- */
/* =========================
   ABOUT SECTION
========================= */
.about-section {
    padding: 0px 0;
    background: #f7f9fc;
}

.about-content {
    padding: 50px;
}

.section-tag {
    display: inline-block;
    background: #f26b2c;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-content h2 {
    color: #15395b;
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
}

.about-content p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* =========================
   TITLE
========================= */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #f26b2c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    color: #15395b;
    font-size: 38px;
    font-weight: 800;
    margin-top: 10px;
    position: relative;
}

.section-title h2:after {
    content: '';
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #15395b, #f26b2c);
    display: block;
    margin: 15px auto;
    border-radius: 50px;
}

/* =========================
   PLACE CARDS
========================= */
.place-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .07);
    transition: .4s;
}

.place-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: .6s;
}

.place-card:hover img {
    transform: scale(1.08);
}

.place-content {
    padding: 40px;
    position: relative;
}

.place-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 70px;
    font-weight: 800;
    color: rgba(242, 107, 44, .08);
    line-height: 1;
}

.place-content h3 {
    color: #15395b;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.place-content h3:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #f26b2c;
    margin-top: 12px;
    border-radius: 50px;
}

.place-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
}

/* =========================
   CTA BOX
========================= */
.explore-box {
    background: linear-gradient(135deg, #15395b, #214f7a);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.explore-box:before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -120px;
    right: -80px;
}

.explore-box h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.explore-box p {
    font-size: 18px;
    opacity: .9;
    position: relative;
    z-index: 2;
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {
    .about-content {
        padding: 30px;
    }

    .about-content h2 {
        font-size: 28px;
    }

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

    .place-content {
        padding: 25px;
    }

    .place-content h3 {
        font-size: 24px;
    }

    .place-number {
        font-size: 50px;
    }
}

.about-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
    margin-bottom: 70px;
}

/* Banner Image */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .5s;
}

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

/* Dark Overlay */
.about-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px;
    background: linear-gradient(to top,
            rgba(21, 57, 91, .95),
            rgba(21, 57, 91, .2),
            transparent);
}

.section-tag {
    display: inline-block;
    background: #f26b2c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-overlay h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Content Card */
.about-content {
    background: #fff;
    padding: 40px 50px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

@media(max-width:768px) {
    .about-image img {
        height: 250px;
    }

    .about-overlay {
        padding: 25px;
    }

    .about-overlay h2 {
        font-size: 28px;
    }

    .about-content {
        padding: 25px;
    }
}

/* --------------------------------------call for paper----------------------------------- */
.container.mb-5 {
    margin-top: 25px;
}

/* Content Wrapper */
.container.mb-5 .col-lg-12 {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .05);
}

/* Paragraphs */
.container.mb-5 p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    text-align: justify;
}

/* Links */
.container.mb-5 a {
    color: #f26b2c;
    font-weight: 600;
    transition: .3s;
}

.container.mb-5 a:hover {
    color: #15395b;
    text-decoration: none;
}

/* Section Heading (Submissions etc.) */
.container.mb-5 p u strong {
    color: #15395b !important;
    font-size: 24px;
    text-decoration: none;
}

/* Topic Headings */
.container.mb-5 h3,
.container.mb-5 p strong span[style*="#c0392b"] {
    color: #15395b !important;
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    border-left: 4px solid #f26b2c;
    padding-left: 12px;
}

/* Lists */
.container.mb-5 ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.container.mb-5 ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Highlight Orange Text */
.container.mb-5 span[style*="#c0392b"] {
    color: #f26b2c !important;
}

/* Submission Box */
.container.mb-5 hr {
    border: 0;
    height: 1px;
    background: #e5e5e5;
    margin: 30px 0;
}

.container.mb-5 hr+p {
    background: #15395b;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.container.mb-5 hr+p strong {
    color: #fff;
}

/* CMT Link */
.container.mb-5 hr+p+p {
    background: #f8f9fb;
    border-left: 4px solid #f26b2c;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
}

/* Mobile */
@media(max-width:767px) {
    .container.mb-5 .col-lg-12 {
        padding: 20px;
    }

    .container.mb-5 h3 {
        font-size: 18px;
    }

    .container.mb-5 p {
        font-size: 14px;
    }
}

/* ------------------------TABLE CODE--------------------------- */
/* Registration Fee Table */
.registration-table-wrapper {
    margin: 20px 0;
}

.registration-table {
    margin-bottom: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.registration-table thead th {
    background: linear-gradient(135deg, #f15e1a, #f15e1acb);
    color: #fff;
    text-align: center;
    border: none !important;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
}

.registration-table thead small {
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
}

.registration-table tbody td {
    padding: 18px;
    text-align: center;
    vertical-align: middle;
    border-color: #e8edf3 !important;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.registration-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.registration-table tbody tr:hover {
    background: #fff5ef;
    transition: .3s;
}

.registration-table tbody td:first-child {
    font-weight: 600;
    color: #15395b;
    width: 40%;
}

.price-india {
    display: inline-block;
    color: #15395b;
    font-size: 18px;
    font-weight: 700;
}

.price-foreign {
    display: inline-block;
    color: #f26b2c;
    font-size: 18px;
    font-weight: 700;
}

.registration-table a {
    color: #f26b2c;
    font-size: 13px;
    font-weight: 600;
}

.registration-table a:hover {
    color: #15395b;
    text-decoration: none;
}

@media (max-width: 767px) {
    .registration-table thead th {
        font-size: 13px;
        padding: 12px;
    }

    .registration-table tbody td {
        font-size: 13px;
        padding: 12px;
    }

    .price-india,
    .price-foreign {
        font-size: 15px;
    }
}

/* ---------------------------------------contact us page------------------------- */
.contact-box {
    background: #f8f9fa;
    padding: 15px 20px;
    border-left: 4px solid #f26b2c;
    border-radius: 5px;
}

.contact-box a {
    color: #15395b;
    text-decoration: none;
}

.platform-badge {
    background: #15395b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
}

/* --------------------------------------venue css------------------------------ */
.contact-box {
    background: #f8f9fa;
    padding: 15px 20px;
    border-left: 4px solid #f26b2c;
    border-radius: 5px;
}

.contact-box a {
    color: #15395b;
    text-decoration: none;
}

.platform-badge {
    background: #15395b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
}

/* ---------------------------------------member-2 css--------------------------- */
.committee-row {
    display: flex;
    flex-wrap: wrap;
}

.committee-row>[class*="col-"] {
    display: flex;
    margin-bottom: 20px;
}

.member-card {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 15px 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
    border-top: 4px solid #ff7a00;
    display: flex;
    flex-direction: column;
}

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

.member-img {
    margin-bottom: 10px;
}

.member-img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #0d6efd,
        0 0 0 8px #ff7a00;
    transition: .4s;
}

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

.member-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0d3b66;
    margin: 0 0 5px;
}

.member-content span {
    color: #ff7a00;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.member-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    flex: 1;
}

/* -------------------------------member css------------------------ */
.committee-row {
    display: flex;
    flex-wrap: wrap;
}

.committee-row>[class*="col-"] {
    display: flex;
    margin-bottom: 20px;
}

.member-card {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 15px 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
    border-top: 4px solid #ff7a00;
    display: flex;
    flex-direction: column;
}

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

.member-img {
    margin-bottom: 10px;
}

.member-img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #0d6efd,
        0 0 0 8px #ff7a00;
    transition: .4s;
}

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

.member-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0d3b66;
    margin: 0 0 5px;
}

.member-content span {
    color: #ff7a00;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.member-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    flex: 1;
}

.nav-badge {
    position: absolute;
    top: -4px;
    right: -18px;
    background: #ff3b3b;
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: blink 1s infinite;
}