/*******************************/
/********* General CSS *********/
/*******************************/
:root {
    --bg-primary: #020617;
    --bg-surface: #0b1329;
    --bg-surface-hover: #152244;
    --bg-darker: #030816;
    --accent-gold: #fdbe33;
    --accent-gold-hover: #e5a91c;
    --accent-gold-glow: rgba(253, 190, 51, 0.2);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(253, 190, 51, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(253, 190, 51, 0.2);
}

/* ── Light Mode Variable Overrides ── */
html.light-mode {
    --bg-primary: #f5f7fa;
    --bg-surface: #ffffff;
    --bg-surface-hover: #eef1f6;
    --bg-darker: #e8ecf1;
    --accent-gold: #d4a017;
    --accent-gold-hover: #b8890f;
    --accent-gold-glow: rgba(212, 160, 23, 0.15);
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(212, 160, 23, 0.3);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 25px rgba(212, 160, 23, 0.12);
}

body {
    color: var(--text-secondary);
    background: var(--bg-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: var(--text-primary);
    font-weight: 700;
}

a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

a:hover,
a:active,
a:focus {
    color: var(--accent-gold);
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    overflow-x: hidden;
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--accent-gold);
    color: var(--bg-primary);
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
    right: 30px;
    bottom: 30px;
    transition: var(--transition-smooth);
    z-index: 99;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.back-to-top:hover {
    color: var(--accent-gold);
    background: var(--bg-surface);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top i {
    padding-top: 0;
}

.btn {
    transition: var(--transition-smooth);
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: auto;
    padding: 15px 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.top-bar .logo {
    padding: 5px 0;
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: 0;
    color: var(--text-primary);
    font-size: 36px;
    line-height: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 50px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: var(--accent-gold);
    font-size: 32px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 3px 0;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 15px 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
        margin-bottom: 10px;
    }
    .top-bar .top-bar-item {
        justify-content: center;
        margin-bottom: 10px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: var(--bg-surface) !important;
    transition: var(--transition-smooth);
}

.nav-bar .container-fluid {
    padding: 0;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100% !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    background: rgba(11, 19, 41, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-bar .navbar {
    height: 100%;
    background: transparent !important;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-gold);
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-surface);
}

.nav-bar .dropdown-item {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.nav-bar .dropdown-item:hover {
    color: var(--accent-gold);
    background: var(--bg-surface-hover);
}

.nav-bar .btn {
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
}

.nav-bar .btn:hover {
    color: var(--bg-primary);
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 0 75px;
    }
    
    .nav-bar.nav-sticky {
        padding: 0;
    }
    
    .nav-bar .navbar {
        padding: 15px 20px;
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
        background: transparent;
        border: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
@keyframes heroPageLoad {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel {
    position: relative;
    width: 100%;
    height: 650px;
    margin: 0 auto;
    overflow: hidden;
    animation: heroPageLoad 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Background Image and Overlay */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.8) 0%, rgba(2, 6, 23, 0.45) 50%, rgba(2, 6, 23, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-slider-container {
    position: relative;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
}

.hero-slider-container .row {
    width: 100%;
    height: auto;
}

/* Content Area styling */
.hero-text-content {
    max-width: 850px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight {
    color: var(--accent-gold);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgba(253, 190, 51, 0.2);
    bottom: 2px;
    left: 0;
    border-radius: 2px;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Call-to-action buttons */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-cta .btn-premium {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
}

.hero-cta .btn-premium:hover {
    background: transparent;
    color: var(--accent-gold);
    box-shadow: none;
    transform: translateY(-2px);
}

.hero-cta .btn-outline-premium {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-cta .btn-outline-premium:hover {
    border-color: var(--accent-gold);
    color: var(--bg-primary);
    background: var(--accent-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Custom Navigation Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    z-index: 5;
    opacity: 0;
    transition: var(--transition-smooth);
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.carousel-control-prev:hover .carousel-control-icon-wrapper,
.carousel-control-next:hover .carousel-control-icon-wrapper {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(253, 190, 51, 0.6);
    transform: scale(1.08);
}

/* Custom Pagination Indicators */
.carousel-indicators {
    bottom: 25px;
    margin-bottom: 0;
    z-index: 5;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0 6px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.carousel-indicators li.active {
    width: 28px;
    border-radius: 5px;
    background-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

/* Animation Keyframes */
@keyframes heroFadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-45px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(253, 190, 51, 0.4);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 25px rgba(253, 190, 51, 0.75);
    }
}

@keyframes heroBgPan {
    0% {
        transform: scale(1.05) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-1%, -0.5%);
    }
    100% {
        transform: scale(1.05) translate(0, 0);
    }
}

/* Set initial states for elements inside carousel items for clean entry */
.carousel-item .hero-title,
.carousel-item .hero-desc,
.carousel-item .hero-cta {
    opacity: 0;
    will-change: transform, opacity;
}

/* Trigger Animations on Active slide */
.carousel-item.active .hero-title {
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.carousel-item.active .hero-desc {
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.carousel-item.active .hero-cta {
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.carousel-item.active .btn-premium {
    animation: buttonPulse 2.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.carousel-item.active .hero-bg-img {
    animation: heroBgPan 25s ease-in-out infinite;
}

/* Premium Bengali Typography and Text Effects */
.hero-title.bangla {
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: normal;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.75);
}

.hero-desc.bangla-desc {
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.7;
    color: #e1eaf5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.bangla-btn {
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(253, 190, 51, 0.45));
}

/* Responsive & Mobile Stacking Layout */
@media (max-width: 991.98px) {
    .carousel {
        height: 500px;
    }
    
    .hero-text-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 38px;
        margin-bottom: 15px;
    }
    
    .hero-title.bangla {
        font-size: 32px;
        line-height: 1.4;
    }
    
    .hero-desc {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-desc.bangla-desc {
        font-size: 16px;
        line-height: 1.65;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .carousel {
        height: 460px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title.bangla {
        font-size: 24px;
        line-height: 1.45;
    }
    
    .hero-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-desc.bangla-desc {
        font-size: 13.5px;
        line-height: 1.55;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin-left: 0 !important;
        text-align: center;
        padding: 10px 20px;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-surface) 100%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.page-header h2 {
    position: relative;
    color: var(--text-primary);
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    left: calc(50% - 30px);
    bottom: 0;
    background: var(--accent-gold);
    border-radius: 2px;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.page-header a:hover {
    color: var(--accent-gold);
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -1px;
    right: -7px;
    text-align: center;
    color: var(--text-muted);
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 40px;
    }
    
    .page-header a {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 32px;
    }
    
    .page-header a {
        font-size: 14px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.section-header p {
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 28px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    background: var(--bg-primary);
    padding: 100px 0;
    overflow: hidden;
}

.feature .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.feature .feature-row {
    margin: 0;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.feature [class*="col-"] {
    padding: 15px;
    display: flex;
}

.feature .feature-item {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    width: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.feature .feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(253, 190, 51, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--border-hover);
}

.feature .feature-item:hover::before {
    opacity: 1;
}

.feature .feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    margin-right: 25px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 0 1px rgba(253, 190, 51, 0.15);
}

.feature .feature-item:hover .feature-icon {
    background: var(--accent-gold);
    box-shadow: inset 0 0 0 1px var(--accent-gold), 0 0 20px rgba(253, 190, 51, 0.4);
    transform: scale(1.05);
}

.feature .feature-icon [class^="flaticon-"]::before {
    margin: 0;
    color: var(--accent-gold);
    font-size: 36px;
    line-height: 1;
    transition: var(--transition-smooth);
}

.feature .feature-item:hover .feature-icon [class^="flaticon-"]::before {
    color: var(--bg-primary);
}

.feature .feature-text {
    flex-grow: 1;
}

.feature .feature-text h3 {
    margin: 0 0 8px 0;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.feature .feature-item:hover .feature-text h3 {
    color: var(--accent-gold);
}

.feature .feature-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .feature .feature-row {
        padding: 0 20px;
    }
}
@media (max-width: 767.98px) {
    .feature .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 35px 20px;
    }
    .feature .feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 190, 51, 0.08) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about .section-header {
    margin-bottom: 40px;
}

.about .about-img {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: visible;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    padding: 10px;
    background: linear-gradient(135deg, rgba(253, 190, 51, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

html.light-mode .about .about-img {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(0, 0, 0, 0.02) 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about .about-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    opacity: 0.25;
    z-index: -1;
    transition: var(--transition-smooth);
}

.about:hover .about-img::before {
    transform: translate(8px, 8px);
    opacity: 0.5;
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: var(--transition-smooth);
}

.about:hover .about-img img {
    transform: scale(1.03);
}

.about .about-text p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid rgba(253, 190, 51, 0.3);
    border-radius: 0 12px 12px 0;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

html.light-mode .about .about-text p {
    background: rgba(0, 0, 0, 0.015);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border-left-color: rgba(212, 160, 23, 0.4);
}

.about .about-text p:hover {
    background: rgba(255, 255, 255, 0.04);
    border-left-color: var(--accent-gold);
    transform: translateX(6px);
    box-shadow: var(--shadow-glow);
}

html.light-mode .about .about-text p:hover {
    background: rgba(0, 0, 0, 0.03);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.08);
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--bg-primary);
    border-radius: 30px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.about .about-text a.btn:hover {
    color: var(--accent-gold);
    background: transparent;
    transform: translateY(-2px);
    box-shadow: none;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-top: 20px;
        margin-bottom: 40px;
        height: auto;
    }
    .about .about-text p {
        padding: 16px 20px;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 5px 15px 0 15px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 50px;
    line-height: 50px;
    background-image: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 80px;
    padding-bottom: 80px;
}

.fact .fact-text h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.fact .fact-text p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact .fact-left {
    color: var(--accent-gold);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-surface) 100%);
}

.fact .fact-right {
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
}

.fact .fact-left h2 {
    color: var(--text-primary);
}

.fact .fact-left p {
    color: var(--accent-gold);
}

.fact .fact-right h2 {
    color: var(--bg-primary);
}

.fact .fact-right p {
    color: rgba(3, 15, 39, 0.7);
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 100px 0 70px 0;
    background: var(--bg-primary);
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
    transition: var(--transition-smooth);
}

.service .service-item:hover .service-img img {
    transform: scale(1.08);
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 70px;
    background: var(--bg-surface);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-top: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 70px);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: var(--transition-smooth);
}

.service .service-item:hover .service-text h3 {
    color: var(--text-primary);
}

.service .service-item a.btn {
    width: 70px;
    height: 70px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 70px;
    font-weight: 200;
    color: var(--bg-primary);
    background: var(--accent-gold);
    border-radius: 0;
    transition: var(--transition-smooth);
    margin-left: auto;
}

.service .service-item:hover a.btn {
    color: var(--text-primary);
    background: var(--accent-gold-hover);
}

.service .service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--border-hover);
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    padding: 150px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(2, 6, 23, 0.75), rgba(2, 6, 23, 0.75)), url(../img/video-back.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 40px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    cursor: pointer;
    background: transparent;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    box-shadow: var(--shadow-glow);
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.video .btn-play:hover:after {
    background-color: var(--accent-gold-hover);
    transform: translateX(-50%) translateY(-50%) scale(1.08);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bg-primary);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.6);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 80px auto 0 auto;
}

#videoModal .modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 36px;
    height: 36px;
    right: 15px;
    top: 15px;
    z-index: 9999;
    font-size: 24px;
    font-weight: normal;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    line-height: 1;
    padding-bottom: 4px;
}

#videoModal .close:hover {
    opacity: 1;
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: rotate(90deg);
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #030f27;
    transition: .5s;
}

.team .team-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fdbe33;
    transition: .5s;
}

.team .team-text p {
    margin: 0;
    color: #ffffff;
}

.team .team-item:hover .team-text {
    background: #fdbe33;
}

.team .team-item:hover .team-text h2 {
    color: #030f27;
    letter-spacing: 1px;
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    font-size: 0;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.team .team-item:hover .team-social a:first-child {
    background: #00acee;
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: #3b5998;
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: #0e76a8;
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: #3f729b;
    left: 50px;
    transition: .3s .3s;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #fdbe33;
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #fdbe33;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #fdbe33;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #030f27;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.85)), url(../img/customer-back.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonial .container {
    max-width: 760px;
}

.about-page .testimonial {
    padding-bottom: 100px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0.4;
    transition: var(--transition-smooth);
    transform: scale(0.8);
    cursor: pointer;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 0.7;
    transform: scale(1.0);
}

.testimonial .testimonial-slider-nav .slick-center {
    opacity: 1;
    transform: scale(1.3);
    z-index: 2;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: var(--transition-smooth);
}

.testimonial .testimonial-slider-nav .slick-center img {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 30px;
    padding-top: 60px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
    background: url(../img/quote.png) top center no-repeat;
    opacity: 0.15;
    filter: invert(1);
}

.testimonial .testimonial-slider h3 {
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.3px;
}

.testimonial .testimonial-slider h4 {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial .testimonial-slider p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 100px 0 70px 0;
    background: var(--bg-primary);
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.blog .blog-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--border-hover);
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
    transition: var(--transition-smooth);
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.06);
}

.blog .blog-title {
    display: flex;
    align-items: center;
    height: 70px;
    background: var(--bg-surface);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 70px);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: var(--transition-smooth);
}

.blog .blog-item:hover .blog-title h3 {
    color: var(--text-primary);
}

.blog .blog-title a.btn {
    width: 70px;
    height: 70px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 70px;
    font-weight: 200;
    color: var(--bg-primary);
    background: var(--accent-gold);
    border-radius: 0;
    transition: var(--transition-smooth);
    margin-left: auto;
}

.blog .blog-item:hover a.btn {
    color: var(--text-primary);
    background: var(--accent-gold-hover);
}

.blog .blog-meta {
    position: relative;
    padding: 15px 25px;
    background: var(--bg-surface);
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.blog .blog-meta::after {
    display: none;
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
    color: var(--accent-gold);
}

.blog .blog-text {
    padding: 25px;
    background: var(--bg-surface);
    text-align: justify;
}

.blog .blog-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.blog .pagination {
    justify-content: center;
    margin-top: 30px;
}

.blog .pagination .page-link {
    color: var(--text-primary);
    background: var(--bg-surface);
    border-color: var(--border-color);
    padding: 10px 18px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: var(--bg-primary);
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.blog .pagination .disabled .page-link {
    color: var(--text-muted);
    background: var(--bg-darker);
    border-color: var(--border-color);
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .single-tags a:hover {
    color: #fdbe33;
    background: #030f27;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030f27;
    background: #fdbe33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #fdbe33;
    background: #030f27;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #030f27;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #fdbe33;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: #030f27;
    background: #fdbe33;
}

.single .comment-form .btn:hover {
    color: #fdbe33;
    background: #030f27;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #fdbe33;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #fdbe33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #030f27;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #fdbe33;
    background: #030f27;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #030f27;
    background: #fdbe33;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fdbe33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
    color: #fdbe33;
    background: #030f27;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 100px 0;
    background: var(--bg-primary);
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 40px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    padding: 10px 24px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

#load-more {
    cursor: pointer;
    display: inline-block;
    padding: 10px 24px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.portfolio #load-more {
    text-align: center;
    margin-top: 40px;
}

.portfolio #load-more .btn {
    padding: 14px 35px;
    font-size: 15px;
    letter-spacing: 1px;
}

.portfolio #load-more .btn:hover {
    color: var(--bg-primary);
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.portfolio .portfolio-warp:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--border-hover);
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: var(--transition-smooth);
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 70px;
    background: var(--bg-surface);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-top: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 70px);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp:hover .portfolio-text h3 {
    color: var(--text-primary);
}

.portfolio .portfolio-warp a.btn {
    width: 70px;
    height: 70px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 70px;
    font-weight: 200;
    color: var(--bg-primary);
    background: var(--accent-gold);
    border-radius: 0;
    transition: var(--transition-smooth);
    margin-left: auto;
}

.portfolio .portfolio-warp:hover a.btn {
    color: var(--text-primary);
    background: var(--accent-gold-hover);
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact .col-md-6 {
    padding: 40px;
}

.contact .col-md-6:first-child {
    background: var(--bg-darker);
    border-radius: 16px 0 0 16px;
    border: 1px solid var(--border-color);
    border-right: none;
}

.contact .col-md-6:last-child {
    background: var(--bg-surface);
    border-radius: 0 16px 16px 0;
    border: 1px solid var(--border-color);
}

.contact .contact-info {
    position: relative;
    width: 100%;
    padding: 0;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 25px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.contact .contact-item:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    color: var(--accent-gold);
    font-size: 32px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .contact-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    padding: 0;
}

.contact .contact-form .control-group {
    margin-bottom: 20px;
}

.contact .contact-form input {
    color: var(--text-primary);
    height: 50px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.contact .contact-form textarea {
    color: var(--text-primary);
    height: 165px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-gold);
    background: var(--bg-surface-hover);
    outline: none;
}

.contact .contact-form .form-control::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.contact .contact-form .btn {
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-primary);
    background: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact .contact-form .btn:hover {
    color: var(--accent-gold);
    background: transparent;
    box-shadow: none;
    transform: translateY(-2px);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media (max-width: 767.98px) {
    .contact .col-md-6:first-child {
        border-radius: 16px 16px 0 0;
        border-right: 1px solid var(--border-color);
        border-bottom: none;
    }

    .contact .col-md-6:last-child {
        border-radius: 0 0 16px 16px;
    }
}


/*******************************/
/********* Footer CSS **********/
/*******************************/

/* ── Footer Shell ── */
.footer {
    position: relative;
    margin-top: 0;
    padding: 90px 0 0;
    width: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(253,190,51,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 100%, rgba(253,190,51,0.04) 0%, transparent 50%),
        linear-gradient(180deg, #030a1a 0%, #020617 60%, #01040f 100%);
    color: var(--text-secondary);
    border-top: 1px solid rgba(253,190,51,0.12);
    overflow: hidden;
}

/* Subtle mesh overlay */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Gold top accent line */
.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold) 30%, var(--accent-gold) 70%, transparent);
    opacity: 0.6;
}

.footer .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

/* ── Footer Columns ── */
.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 50px;
    padding-right: 20px;
}

/* ── Footer Headings ── */
.footer h2 {
    position: relative;
    margin-bottom: 28px;
    padding-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 32px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
}

/* ── Footer Links ── */
.footer .footer-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #8fa3be;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.footer .footer-link a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.5;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer .footer-link a:hover {
    color: var(--text-primary);
    padding-left: 6px;
}

.footer .footer-link a:hover::before {
    opacity: 1;
    box-shadow: 0 0 8px rgba(253, 190, 51, 0.6);
    transform: scale(1.3);
}

/* ── Contact Info ── */
.footer .footer-contact p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #8fa3be;
}

.footer .footer-contact p i {
    width: 18px;
    min-width: 18px;
    color: var(--accent-gold);
    font-size: 14px;
    margin-top: 3px;
    opacity: 0.85;
}

.footer .footer-contact p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-contact p a:hover {
    color: var(--accent-gold);
}

/* ── Social Icons ── */
.footer .footer-social {
    position: relative;
    margin-top: 28px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.footer .footer-social a i {
    font-size: 14px;
    color: #8fa3be;
    transition: all 0.3s ease;
}

.footer .footer-social a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(253,190,51,0.3);
    transform: translateY(-4px);
}

.footer .footer-social a:hover i {
    color: #020617;
}

/* ── Newsletter ── */
.footer .newsletter p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
    color: #8fa3be;
}

.footer .newsletter .form {
    position: relative;
    max-width: 100%;
    margin: 0;
}

.footer .newsletter input {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    color: var(--text-primary);
    padding: 0 130px 0 20px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.footer .newsletter input::placeholder {
    color: #556070;
}

.footer .newsletter input:focus {
    border-color: rgba(253,190,51,0.4);
    box-shadow: 0 0 20px rgba(253,190,51,0.08);
    outline: none;
    background: rgba(255,255,255,0.05);
}

.footer .newsletter .btn {
    position: absolute;
    top: 6px;
    right: 6px;
    height: 40px;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #020617;
    background: linear-gradient(135deg, var(--accent-gold), #e5a91c);
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(253,190,51,0.25);
}

.footer .newsletter .btn:hover {
    background: linear-gradient(135deg, #ffe066, var(--accent-gold));
    box-shadow: 0 6px 22px rgba(253,190,51,0.4);
    transform: translateY(-1px);
}

/* ── Footer Divider Row ── */
.footer .footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07) 30%, rgba(255,255,255,0.07) 70%, transparent);
    margin: 0 0 0;
}

/* ── Footer Bottom Menu (hidden by comment in HTML but styled if re-enabled) ── */
.footer .footer-menu .f-menu {
    position: relative;
    padding: 22px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer .footer-menu .f-menu a {
    color: #8fa3be;
    font-size: 13px;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.footer .footer-menu .f-menu a:hover {
    color: var(--accent-gold);
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* ── Copyright Bar ── */
.footer .copyright {
    position: relative;
    padding: 28px 0;
    margin-top: 0;
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
}

.footer .copyright p {
    margin: 0;
    color: #556070;
    font-size: 13px;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .copyright p a:hover {
    color: #fff;
}

/* ── Footer Responsive ── */
@media (max-width: 991.98px) {
    .footer {
        padding-top: 70px;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding-top: 60px;
    }

    .footer .footer-contact,
    .footer .footer-link,
    .footer .newsletter {
        margin-bottom: 36px;
        padding-right: 0;
    }

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        text-align: center;
        margin: 4px 0;
    }
}


/*******************************/
/** Light Mode Section Tweaks **/
/*******************************/

/* Hero overlay — lighter in light mode */
html.light-mode .hero-overlay {
    background: linear-gradient(180deg, rgba(245, 247, 250, 0.75) 0%, rgba(245, 247, 250, 0.3) 50%, rgba(245, 247, 250, 0.8) 100%);
}

html.light-mode .hero-desc {
    color: #4a5568;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}

html.light-mode .hero-title {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html.light-mode .hero-cta .btn-outline-premium {
    border-color: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
}

html.light-mode .carousel-control-icon-wrapper {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
}

html.light-mode .carousel-indicators li {
    background: rgba(0, 0, 0, 0.3);
}

html.light-mode .carousel-indicators li.active {
    background: var(--accent-gold);
}

/* Nav bar sticky — light background */
html.light-mode .nav-bar.nav-sticky {
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Facts section */
html.light-mode .fact {
    background: linear-gradient(135deg, #e8ecf1 0%, #f5f7fa 100%);
}

html.light-mode .fact-left,
html.light-mode .fact-right {
    background: #ffffff;
}

/* Video section */
html.light-mode .video {
    background: linear-gradient(135deg, #e8ecf1 0%, #dde2e8 100%);
}

/* Footer — light mode */
html.light-mode .footer {
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(212,160,23,0.04) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 100%, rgba(212,160,23,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #e8ecf1 0%, #dde2e8 60%, #d4d9e0 100%);
    border-top-color: rgba(0, 0, 0, 0.06);
}

html.light-mode .footer::before {
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
}

html.light-mode .footer::after {
    background: linear-gradient(90deg, transparent, var(--accent-gold) 30%, var(--accent-gold) 70%, transparent);
}

html.light-mode .footer .footer-link a,
html.light-mode .footer .footer-contact p,
html.light-mode .footer .newsletter p {
    color: #4a5568;
}

html.light-mode .footer .footer-social a {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
}

html.light-mode .footer .footer-social a i {
    color: #4a5568;
}

html.light-mode .footer .newsletter input {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

html.light-mode .footer .newsletter input::placeholder {
    color: #718096;
}

html.light-mode .footer .copyright {
    background: rgba(0, 0, 0, 0.04);
    border-top-color: rgba(0, 0, 0, 0.06);
}

html.light-mode .footer .copyright p {
    color: #718096;
}

/* Blog section */
html.light-mode .blog-item {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

/* Service section */
html.light-mode .service-item {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Section headers */
html.light-mode .section-header h2::after {
    background: var(--accent-gold);
}

/* Page header */
html.light-mode .page-header {
    background: linear-gradient(135deg, #e8ecf1 0%, #f5f7fa 100%);
}

/* Back to top */
html.light-mode .back-to-top:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
