/* 
==================================================
   ACCOUNTING & AUDITING - PREMIUM BIZLY STYLE
==================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Color Palette - Bizly Inspired Accounting Theme */
    --primary-color: #d97706; /* Warm corporate Gold/Amber */
    --primary-hover: #b45309;
    --secondary-color: #0b0f19; /* Premium Dark Navy */
    --card-bg-dark: #111827; /* Dark Grey/Blue */
    --card-bg-light: #ffffff;
    --text-dark-primary: #0f172a;
    --text-dark-secondary: #475569;
    --text-light-primary: #f8fafc;
    --text-light-secondary: #cbd5e1;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(217, 119, 6, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark-secondary);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

body.body-bg {
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-weight: 800; }

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 24px;
}

/* ==================================================
   1. PRELOADER
================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.fade-out {
    transform: translateY(-100%);
}

.animation-preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(217, 119, 6, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

.txt-loading {
    display: flex;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 4px;
}

.letters-loading {
    position: relative;
    color: rgba(255, 255, 255, 0.1);
    animation: letters-loading-delay 1.4s infinite alternate;
}

.letters-loading::before {
    content: attr(data-text-preloader);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-color);
    width: 0;
    overflow: hidden;
    animation: letters-loading-fill 1.4s infinite alternate;
}

.letters-loading:nth-child(2), .letters-loading:nth-child(2)::before { animation-delay: 0.2s; }
.letters-loading:nth-child(3), .letters-loading:nth-child(3)::before { animation-delay: 0.4s; }
.letters-loading:nth-child(4), .letters-loading:nth-child(4)::before { animation-delay: 0.6s; }
.letters-loading:nth-child(5), .letters-loading:nth-child(5)::before { animation-delay: 0.8s; }
.letters-loading:nth-child(6), .letters-loading:nth-child(6)::before { animation-delay: 1.0s; }
.letters-loading:nth-child(7), .letters-loading:nth-child(7)::before { animation-delay: 1.2s; }
.letters-loading:nth-child(8), .letters-loading:nth-child(8)::before { animation-delay: 1.4s; }
.letters-loading:nth-child(9), .letters-loading:nth-child(9)::before { animation-delay: 1.6s; }

.preloader p {
    color: var(--text-light-secondary);
    font-size: 0.9rem;
    margin-top: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

@keyframes letters-loading-delay {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes letters-loading-fill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ==================================================
   2. CUSTOM MOUSE CURSOR
================================================== */
.mouse-cursor {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
}

.cursor-outer {
    width: 35px;
    height: 35px;
    border: 1.5px solid var(--primary-color);
    transition: transform 0.1s ease-out;
}

.cursor-inner {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    transition: transform 0.05s ease-out;
}

.cursor-hover .cursor-outer {
    width: 55px;
    height: 55px;
    background-color: rgba(217, 119, 6, 0.05);
    border-color: var(--primary-color);
}

.cursor-hover .cursor-inner {
    transform: translate(-50%, -50%) scale(2);
}

@media (max-width: 991px) {
    .mouse-cursor { display: none; }
}

/* ==================================================
   3. BUTTONS
================================================== */
.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-light-primary) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.theme-btn span {
    position: relative;
    z-index: 2;
}

.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
    border-radius: 30px;
}

.theme-btn:hover {
    border-color: var(--secondary-color);
    color: var(--text-light-primary) !important;
}

.theme-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.theme-btn.btn-white {
    background-color: #ffffff;
    color: var(--secondary-color) !important;
    border-color: #ffffff;
}

.theme-btn.btn-white::before {
    background-color: var(--primary-color);
}

.theme-btn.btn-white:hover {
    border-color: var(--primary-color);
    color: var(--text-light-primary) !important;
}

/* ==================================================
   4. HEADER & TOP BANNER
================================================== */
header {
    width: 100%;
    z-index: 999;
}

.header-top-section {
    background-color: var(--secondary-color);
    color: var(--text-light-secondary);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-left ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-left li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-left li .icon {
    color: var(--primary-color);
    font-size: 16px;
}

.top-left li .content p {
    margin: 0;
    line-height: 1.4;
}

.top-left li .content a {
    color: var(--text-light-secondary);
}

.top-left li .content a:hover {
    color: var(--primary-color);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-right ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.top-right a:hover {
    color: var(--primary-color);
}

.top-right .theme-btn {
    padding: 8px 18px;
    font-size: 13px;
}

/* Main Header Navbar */
.header-2 {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.header-2.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.mean__menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 30px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.header-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
}

.header-logo-container i {
    font-size: 28px;
    color: var(--primary-color);
}

.header-logo-container span {
    color: var(--primary-color);
}

.main-menu > ul {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0;
    margin: 0;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 16px;
    padding: 24px 0;
    display: block;
    position: relative;
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-menu ul li a:hover::after,
.main-menu ul li.active a::after {
    width: 100%;
}

.main-menu ul li a:hover,
.main-menu ul li.active > a {
    color: var(--primary-color);
}

/* Dropdown Menu styling */
.main-menu ul li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    border-top: 3px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 99;
    padding: 12px 0;
}

.main-menu ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu ul li .submenu li a {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
}

.main-menu ul li .submenu li a::after {
    display: none;
}

.main-menu ul li .submenu li a:hover {
    background-color: var(--bg-gray);
    color: var(--primary-color);
    padding-left: 30px;
}

/* Header Right Elements */
.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.icon-items .icon {
    width: 44px;
    height: 44px;
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.icon-items .content p {
    font-size: 13px;
    margin: 0;
    line-height: 1.3;
}

.icon-items .content a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary-color);
}

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

.search-trigger, .sidebar__toggle {
    font-size: 18px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.search-trigger:hover, .sidebar__toggle:hover {
    color: var(--primary-color);
}

/* ==================================================
   5. OFFCANVAS DRAWER MENU
================================================== */
.offcanvas__info {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1001;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    padding: 40px;
}

.offcanvas__info.show {
    right: 0;
}

.offcanvas__wrapper {
    display: flex;
    flex-direction: column;
}

.offcanvas__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.offcanvas__close button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--secondary-color);
    transition: var(--transition);
}

.offcanvas__close button:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.offcanvas__content p {
    margin-bottom: 30px;
    font-size: 15px;
}

.offcanvas__contact {
    margin-top: 30px;
}

.offcanvas__contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-gray);
    padding-bottom: 8px;
}

.offcanvas__contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.offcanvas__contact-icon {
    color: var(--primary-color);
    font-size: 18px;
}

.offcanvas__contact-text a {
    color: var(--text-dark-secondary);
}

.offcanvas__contact-text a:hover {
    color: var(--primary-color);
}

.offcanvas__contact .social-icon {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.offcanvas__contact .social-icon a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-gray);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.offcanvas__contact .social-icon a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.offcanvas__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.offcanvas__overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Toggle classes */
.mobile-menu-toggle {
    display: none;
    font-size: 22px;
    color: var(--secondary-color);
    cursor: pointer;
}

/* ==================================================
   6. SEARCH OVERLAY
================================================== */
.search-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-wrap.show {
    opacity: 1;
    visibility: visible;
}

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

.search-close {
    position: absolute;
    top: -60px;
    right: 24px;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.main-search-input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 16px 0;
    color: #ffffff;
    font-size: 24px;
    font-family: var(--font-heading);
}

.main-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ==================================================
   7. HERO BANNER
================================================== */
.hero-section {
    position: relative;
    min-height: 800px;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.5) 100%);
}

.hero-shape {
    position: absolute;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.arrow-image {
    position: absolute;
    bottom: -80px;
    right: 0;
    animation: float 4s ease-in-out infinite alternate;
}

/* ==================================================
   8. FEATURE STEP SECTION (STEPS TO SUCCESS)
================================================== */
.section-padding {
    padding: 120px 0;
}

.section-bg-2 {
    background-color: var(--bg-gray);
}

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

.section-title span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
}

.section-title.text-center {
    text-align: center;
}

.feature-step-items-2 {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.feature-step-items-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transform: translateY(102%);
    transition: var(--transition);
    z-index: 1;
}

.feature-step-items-2:hover::before {
    transform: translateY(0);
}

.feature-step-items-2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-step-items-2 > * {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.feature-step-items-2 .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(217, 119, 6, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.feature-step-items-2 .icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
    transition: var(--transition);
}

.feature-step-items-2:hover .icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-step-items-2:hover .icon svg {
    fill: #ffffff;
}

.feature-step-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-step-content .number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(217, 119, 6, 0.08);
    position: absolute;
    top: 20px;
    right: 40px;
    line-height: 1;
}

.feature-step-items-2:hover h3 {
    color: #ffffff;
}

.feature-step-items-2:hover p {
    color: var(--text-light-secondary);
}

.feature-step-items-2:hover .number {
    color: rgba(255, 255, 255, 0.05);
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-button {
    margin-top: 50px;
}

/* ==================================================
   9. ABOUT SECTION
================================================== */
.about-section-2 {
    position: relative;
    background-color: #ffffff;
}

.about-wrapper-2 {
    display: grid;
    grid-template-columns: 12fr 12fr;
    gap: 60px;
    align-items: center;
}

.about-thumb {
    position: relative;
}

.about-thumb img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.about-thumb .box-shape {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.author-area {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--bg-gray);
    padding-top: 30px;
}

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

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-image .content h4 {
    font-size: 18px;
    margin: 0;
}

.author-image .content p {
    font-size: 13px;
    margin: 0;
    color: var(--text-dark-secondary);
}

/* ==================================================
   10. SERVICES SECTION / FEATURES
================================================== */
.feature-section {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card-items {
    background-color: var(--card-bg-dark);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.feature-card-items:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.circle-border {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(217, 119, 6, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card-items:hover .circle-border {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.feature-card-items .icon {
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

.feature-card-items:hover .icon {
    color: #ffffff;
}

.feature-content h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-light-secondary);
    margin: 0;
}

/* ==================================================
   11. COUNTER SECTION
================================================== */
.counter-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: #ffffff;
}

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

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

.counter-items .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-items .icon svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.counter-items h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.counter-items p {
    margin: 0;
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

/* ==================================================
   12. PROJECT / CASE STUDIES SECTION
================================================== */
.project-section {
    background-color: var(--bg-light);
}

.project-section .section-title h2 {
    margin-bottom: 0;
}

.project-wrapper {
    margin-top: 50px;
}

.grid-project-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.project-card-items {
    background-size: cover;
    background-position: center;
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 40px;
    cursor: pointer;
}

.project-card-items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0) 40%, rgba(11, 15, 25, 0.9) 100%);
    transition: var(--transition);
}

.project-card-items::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(217, 119, 6, 0.85);
    opacity: 0;
    transition: var(--transition);
}

.project-content {
    position: relative;
    z-index: 2;
    transition: var(--transition);
    width: 100%;
}

.project-content h4 {
    margin-bottom: 12px;
}

.project-content h4 a {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.project-content p {
    color: var(--text-light-secondary);
    font-size: 14px;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.project-content .icon {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: -60px;
    opacity: 0;
    transition: var(--transition);
}

.project-content .icon img {
    width: 16px;
    height: 16px;
}

.project-card-items:hover::after,
.project-card-items.active::after {
    opacity: 1;
}

.project-card-items:hover::before,
.project-card-items.active::before {
    opacity: 0;
}

.project-card-items:hover .project-content p,
.project-card-items.active .project-content p {
    transform: translateY(0);
    opacity: 1;
    margin-top: 10px;
}

.project-card-items:hover .project-content .icon,
.project-card-items.active .project-content .icon {
    bottom: 0;
    opacity: 1;
}

/* ==================================================
   13. MARQUEE SECTION
================================================== */
.marquee-sections {
    background-color: var(--secondary-color);
    overflow: hidden;
    padding: 40px 0;
}

.mycustom-marque {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
}

.scrolling-wrap {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 40px;
    animation: scroll 20s linear infinite;
}

.comm {
    display: flex;
    gap: 40px;
}

.cmn-textslide {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    letter-spacing: 2px;
}

.cmn-textslide:hover {
    color: var(--primary-color);
    -webkit-text-stroke: 1px var(--primary-color);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* ==================================================
   14. TESTIMONIALS SECTION
================================================== */
.testimonial-section {
    background-color: #ffffff;
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: 14fr 10fr;
    gap: 60px;
    align-items: center;
}

.testimonial-card-items-2 {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card-items-2::after {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 6rem;
    color: rgba(217, 119, 6, 0.05);
    position: absolute;
    top: 20px;
    right: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.info-item .image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.info-content .content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 6px;
}

.info-content h6 {
    font-size: 18px;
    margin: 0;
}

.info-content .star {
    color: #f59e0b;
    font-size: 13px;
}

.info-content span {
    font-size: 13px;
    color: var(--text-dark-secondary);
}

.testimonial-card-items-2 p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.video-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* Brand slider */
.brand-section {
    padding: 60px 0;
    background-color: var(--bg-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-image {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: rgba(11, 15, 25, 0.25);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.brand-image:hover {
    color: var(--primary-color);
}

/* ==================================================
   15. BLOG SECTION
================================================== */
.news-box-items {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.news-box-items:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    overflow: hidden;
    height: 240px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-box-items:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.post-list {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-dark-secondary);
    margin-bottom: 16px;
}

.post-list li {
    position: relative;
}

.post-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.news-content h4 {
    margin-bottom: 16px;
}

.news-content h4 a {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.news-content h4 a:hover {
    color: var(--primary-color);
}

.news-content p {
    font-size: 15px;
    margin-bottom: 24px;
}

.link-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.link-btn i {
    transition: var(--transition);
}

.link-btn:hover {
    color: var(--primary-color);
}

.link-btn:hover i {
    transform: translateX(5px);
}

/* ==================================================
   16. CTA BANNER
================================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.85);
}

.cta-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

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

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

/* ==================================================
   17. WIDGETIZED FOOTER
================================================== */
footer.footer-section {
    background-color: var(--secondary-color);
    color: var(--text-light-secondary);
    padding: 100px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widget-wrapper {
    padding-bottom: 80px;
}

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

.single-footer-widget .widget-head {
    margin-bottom: 30px;
}

.single-footer-widget .widget-head h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.single-footer-widget .widget-head h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-content p {
    font-size: 15px;
    margin-bottom: 30px;
}

.company-info h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.company-info .content {
    margin-bottom: 16px;
}

.company-info .content span {
    font-size: 12px;
    display: block;
    color: var(--text-light-secondary);
    margin-bottom: 4px;
}

.company-info .content h6, 
.company-info .content h6 a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.company-info .content h6 a:hover {
    color: var(--primary-color);
}

.list-items li {
    margin-bottom: 14px;
}

.list-items li a {
    color: var(--text-light-secondary);
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.list-items li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 13px;
    transition: var(--transition);
}

.list-items li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* Contact form in Footer */
.footer-input-card {
    background-color: var(--card-bg-dark);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-input-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 24px;
}

.form-clt input, .form-clt textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 14px 20px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.form-clt textarea {
    min-height: 100px;
    resize: vertical;
}

.form-clt input:focus, .form-clt textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-input-card .theme-btn {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom .social-icon {
    display: flex;
    gap: 24px;
}

.footer-bottom .social-icon a {
    color: var(--text-light-secondary);
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.footer-bottom .social-icon a:hover {
    color: var(--primary-color);
}

.footer-bottom p a {
    color: var(--text-light-secondary);
    font-size: 14px;
}

.footer-bottom p span {
    color: var(--primary-color);
    font-weight: 700;
}

/* ==================================================
   18. INNER PAGE STYLES (ABOUT, SERVICES, CONTACT)
================================================== */
.page-banner {
    position: relative;
    padding: 140px 0 100px;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.85);
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.page-banner .breadcrumb {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-banner .breadcrumb a {
    color: var(--primary-color);
}

.page-banner .breadcrumb span {
    color: var(--text-light-secondary);
    margin-left: 8px;
}

/* Contact specific styling */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-info-box {
    background-color: #ffffff;
    padding: 50px 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.contact-info-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-info-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.contact-info-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-info-box p {
    color: var(--text-dark-secondary);
}

.contact-form-section {
    background-color: #ffffff;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 12fr 12fr;
}

.contact-form {
    padding: 60px;
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--bg-gray);
    background-color: var(--bg-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
}

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

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* ==================================================
   19. RESPONSIVE BREAKPOINTS
================================================== */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.8rem; }
    .grid-4-col { grid-template-columns: repeat(2, 1fr); }
    .grid-project-col { grid-template-columns: repeat(2, 1fr); }
    .project-card-items { min-height: 400px; }
    .counter-wrapper { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .header-top-section { display: none; }
    .main-menu { display: none; }
    .mobile-menu-toggle { display: block; }
    .header-right { gap: 16px; }
    .header-right .icon-items { display: none; }
    
    .hero-section { min-height: 650px; }
    .hero-content h1 { font-size: 3.2rem; }
    
    .grid-3-col { grid-template-columns: 1fr; }
    .about-wrapper-2 { grid-template-columns: 1fr; gap: 40px; }
    .testimonial-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-section { grid-template-columns: 1fr; }
    .contact-map iframe { min-height: 350px; }
}

@media (max-width: 767px) {
    .container { padding: 0 16px; }
    .hero-content h1 { font-size: 2.6rem; }
    .section-title h2 { font-size: 32px; }
    .feature-step-items-2 { padding: 40px 24px; }
    .grid-4-col { grid-template-columns: 1fr; }
    .grid-project-col { grid-template-columns: 1fr; }
    .counter-wrapper { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .offcanvas__info { width: 100%; right: -100%; }
}
