/* ============================================
   GOOGLE FONTS & BASE
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   COLOR VARIABLES - NAVY, WHITE & GOLD THEME
============================================ */
:root {
    --navy-dark: #000000;
    --navy: #000000;
    --navy-light: #1a3a5c;
    --gold-dark: #b8860b;
    --gold: #d4a017;
    --gold-light: #e6b422;
    --white: #ffffff;
    --white-off: #f8f9fc;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --primary-color: var(--navy);
    --primary-dark: var(--navy-dark);
    --secondary-color: var(--gold);
    --title-color: var(--navy-dark);
    --text-color: var(--gray-700);
    --border-color: var(--gray-200);
    --bg-light: var(--white-off);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   UTILITY CLASSES
============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 32px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 {
    width: 100%;
    padding: 0 15px;
}

.col-lg-6 {
    width: 50%;
    padding: 0 15px;
}

.d-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.text-center {
    text-align: center;
}

.position-relative {
    position: relative;
}

.z-index2 {
    z-index: 2;
}

.section-gap {
    padding: 50px 0;
}

.bg-white {
    background: var(--white);
}

.bg-navy {
    background: var(--navy);
}

.bg-light {
    background: var(--bg-light);
}

.text-white {
    color: var(--white);
}

.text-gold {
    color: var(--gold);
}

/* ============================================
   BUTTONS
============================================ */
.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.theme-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.3);
    color: var(--white);
}

.theme-btn i {
    transition: transform 0.2s;
}

.theme-btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   HEADER STYLES - FORCE TRANSPARENT HEADER
============================================ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 99999;
}

.header.bg-color-1 {
    background: transparent !important;
    background-color: transparent !important;
}

/* Sticky Header */
.header.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* White Menu Initially */
.header:not(.sticky) .header-nav-menu > li > a {
    color: #ffffff !important;
}

/* Gold Active */
.header:not(.sticky) .header-nav-menu > li.active > a {
    color: #d4a017 !important;
}

/* White Button */
.header:not(.sticky) .theme-btn {
    background: #d4a017;
    color: #ffffff;
}

/* Sticky Colors */
.header.sticky .header-nav-menu > li > a {
    color: #0d1b3d !important;
}

.header.sticky .theme-btn {
    background: #d4a017;
    color: #ffffff;
}

/* Header Layout */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 95px;
    gap: 20px;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 72px;
    margin-top: 10px;
    width: auto;
    display: block;
    border-radius: 10px;
    border: 2px solid #d4a017;
    transition: all 0.3s ease;
}

/* Navigation */
.header-nav {
    flex: 1;
    overflow: visible !important;
}

.header-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible !important;
}

.header-nav-menu > li {
    position: relative;
}

.header-nav-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 35px 0;
    color: #0d1b3d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-nav-menu > li > a:hover {
    color: #d4a017;
}

.header-nav-menu > li.active > a {
    color: #d4a017;
}

/* Dropdown Parent */
.header-nav-menu .dropdown {
    position: static;
}

/* Hide by default */
.services-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(15px);
    padding: 0 !important;
    background: #fff;
    border: 3px solid #d4a017;
    border-radius: 12px;
    overflow: hidden;

    /* Important */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.3s ease;
    z-index: 99999;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Show on hover */
.header-nav-menu .dropdown:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    color: white;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.services-dropdown .column-1 {
    background: #000; /* light gold */
    color: #ffffff;
    padding: 25px;
}

.services-dropdown .column-2 {
    background: #000;
        color: #ffffff;

    padding: 25px;
}

.services-dropdown .column-3 {
    background: #000000; /* light gray */
    padding: 25px;
}
.services-dropdown .column-1,
.services-dropdown .column-2 {
    border-right: none;
}

/* Custom Scrollbar */
.services-dropdown::-webkit-scrollbar {
    width: 5px;
}

.services-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.services-dropdown::-webkit-scrollbar-thumb {
    background: #d4a017;
    border-radius: 10px;
}

/* Show Dropdown */
.header-nav-menu .dropdown:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */
.services-dropdown li {
    display: block;
    width: 100%;
}

.services-dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #ffff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all .3s ease;
    text-decoration: none;
}

.services-dropdown li a:hover {
    background: rgba(212,160,23,.08);
    color: #d4a017;
}

.services-dropdown li a.active-dropdown {
    background: rgba(212,160,23,.12);
    color: #d4a017 !important;
    font-weight: 700;
}
.services-dropdown {
    display: flex !important;
    padding: 0 !important;
}

.services-dropdown .column-1,
.services-dropdown .column-2,
.services-dropdown .column-3 {
    flex: 1;
    padding: 0;
}

.services-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
/* Dropdown Arrow */
.dropdown > a i {
    font-size: 12px;
    transition: 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}
/* Remove UL default spacing */
.services-dropdown ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

/* Make columns touch each other */
.services-dropdown {
    gap: 0 !important;
    column-gap: 0 !important;
    grid-column-gap: 0 !important;
}

.services-dropdown .column-1,
.services-dropdown .column-2,
.services-dropdown .column-3 {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}
/* Column 1 text white */
.services-dropdown .column-1 li a {
    color: #ffffff !important;
}

/* Column 1 hover text black */
.services-dropdown .column-1 li a:hover {
    color: #d4a017 !important;
    background: rgba(255,255,255,0.1);
}

/* Active item in Column 1 */
.services-dropdown .column-1 li a.active-dropdown {
    color: #000000 !important;
    background: rgba(255,255,255,0.35);
}
/* Column 3 text white */
.services-dropdown .column-3 li a {
    color: #ffffff !important;
}

/* Column 3 hover text gold */
.services-dropdown .column-3 li a:hover {
    color: #d4a017 !important;
    background: rgba(255,255,255,0.1);
}

/* Active item in Column 3 */
.services-dropdown .column-3 li a.active-dropdown {
    color: #d4a017 !important;
}
/* Button */
.header-actions {
    flex-shrink: 0;
}

.header-actions .theme-btn {
    background: #d4a017;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 26px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-actions .theme-btn:hover {
    background: #b88a0e;
    color: #ffffff;
    transform: translateY(-2px);
}

/* =================================
   MOBILE MENU BUTTON - FONT AWESOME ICON
================================= */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 24px;
    transition: all 0.3s ease;
}

/* White icon on transparent header */
.header:not(.sticky) .mobile-menu-toggle {
    color: #ffffff !important;
}

/* Dark icon on sticky header */
.header.sticky .mobile-menu-toggle {
    color: #0d1b3d !important;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

/* =================================
   MOBILE SERVICES DROPDOWN
================================= */
.mobile-services-item {
    border-bottom: 1px solid rgba(212,160,23,.15);
}

.mobile-services-header {
    background: transparent !important;
    color: #0d1b3d;
    font-size: 16px;
    font-weight:600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-services-header:hover {
    color: #d4a017;
}

.mobile-arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #0d1b3d;
}

.mobile-services-header.active .mobile-arrow {
    transform: rotate(180deg);
    color: #d4a017;
}

.mobile-services-list {
    list-style: none;
    margin: 0;
    padding: 0 0 10px 20px;
    background: transparent !important;
}

.mobile-services-list li {
    border-bottom: 1px solid rgba(212,160,23,.1);
}

.mobile-services-list li:last-child {
    border-bottom: none;
}

.mobile-services-list li a {
    display: block;
    padding: 10px 0 10px 15px;
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-services-list li a:hover {
    color: #d4a017;
    padding-left: 20px;
}

/* Transparent header - white text for mobile services */
@media (max-width: 991px) {
    .header:not(.sticky) .mobile-services-header {
        color: #ffffff;
    }
    
    .header:not(.sticky) .mobile-arrow {
        color: #ffffff;
    }
    
    .header.sticky .mobile-services-header {
        color: #0d1b3d;
    }
    
    .header.sticky .mobile-arrow {
        color: #0d1b3d;
    }
}

/* =================================
   MOBILE MENU MODAL STYLES
================================= */
.modal {
    z-index: 999999;
}

.modal-backdrop {
    z-index: 99999;
}

.modal-header {
    border-bottom: 1px solid rgba(212,160,23,.15);
}

.modal-body {
    padding: 20px;
}

.modal-content {
    background: #ffffff;
}

.mobile-nav-menu {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.offcanvas-men-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-men-list li {
    border-bottom: 1px solid rgba(212,160,23,.15);
}

.offcanvas-men-list li a {
    display: block;
    padding: 14px 0;
    color: #0d1b3d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}

.offcanvas-men-list li a:hover {
    color: #d4a017;
    padding-left: 10px;
}

/* =================================
   MAIN CONTENT PADDING
================================= */
body {
    padding-top: 0;
}

.header.sticky + main {
    padding-top: 95px;
}

@media (max-width: 991px) {
    .header.sticky + main {
        padding-top: 80px;
    }
}

/* Fix overflow */
.header,
.header-main,
.header-nav,
.header-nav-menu,
.container,
.container-expand {
    overflow: visible !important;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.hero {
    margin-top: -100px;
    padding-top: 100px;
}

.hero-content-wrapper .title-wrapper {
    font-size: 100px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--white);
}

.excellent-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.success-text {
    display: inline-block;
    color: var(--gold);
}

.hero-content-wrapper .title-row-1,
.hero-content-wrapper .title-row-2,
.hero-content-wrapper .title-row-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-content-wrapper .title-row-2 .text-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 32px;
    border-radius: 60px;
    font-size: 55px;
    font-weight: 600;
    color: var(--white);
}

.hero-content-wrapper .description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    text-align: center;
}

.text-pattern {
    max-width: 180px;
}

.h-text-arrow {
    max-width: 80px;
}

.hero-image-block {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
}

.hero-features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 45px 55px;
    margin-top: -10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-item {
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    transition: transform 0.3s ease;
}

.features-item:hover {
    transform: translateY(-5px);
}

.features-item .title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-left: 22px;
}

.features-item .title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.features-item .text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

.h-social-rotate {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    z-index: 10;
}

.h-social-rotate .social-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.h-social-rotate .social-list li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.h-social-rotate .social-list li a:hover {
    color: var(--gold);
}

.h-client-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 60px;
}

.h-client-list {
    display: flex;
    align-items: center;
}

.h-client-list img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin-left: -12px;
}

.h-client-list img:first-child {
    margin-left: 0;
}

.h-client-wrapper .text {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
    background: var(--white);
    position: relative;
}

.section-head {
    margin-bottom: 50px;
    text-align: center;
}

.section-head .sm-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
}

.section-head .sm-title::before,
.section-head .sm-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--gold);
    top: 50%;
    transform: translateY(-50%);
}

.section-head .sm-title::before {
    left: -40px;
}

.section-head .sm-title::after {
    right: -40px;
}

.section-head .title {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

.about-inner {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-img-block {
    flex: 1;
    min-width: 280px;
}

.about-img-block img {
    width: 100%;
    border-radius: 20px;
}

.about-content-block {
    flex: 1;
    min-width: 280px;
}

.about-content-main .text {
    font-size: 16px;
    color: var(--text-color);
    text-align: justify;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-rattings {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 20px 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.about-rattings .icon i {
    font-size: 40px;
    color: var(--gold);
}

.about-rattings .title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.about-content-img img {
    width: 100%;
    border-radius: 16px;
}

.vertical-text {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 80px;
    font-weight: 800;
    color: rgba(15, 42, 63, 0.03);
    text-transform: uppercase;
    letter-spacing: 10px;
    white-space: nowrap;
}

.vertical-text.left {
    left: 20px;
    right: auto;
}

/* ============================================
   TEXT MOVE AREA
============================================ */
.text-move-area {
    background: var(--navy);
    padding: 30px 0;
    overflow: hidden;
}

.text-slide-item {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.text-slide-item .text {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.text-slide-item .brust-pucker {
    width: 30px;
}
/* ============================================
   FUNFACT SECTION
============================================ */
.funfact {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.funfact-img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 40%;
    z-index: 1;
}

.funfact-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.funfact-content {
    position: relative;
    z-index: 2;
    padding: 20px 0 20px 60px;
}

.funfact-content .content-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.3;
}

.funfact-counter .title {
    font-size: 56px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
}

.funfact-counter .text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 400px;
}

/* ============================================
   FEATURES SECTION - DARK THEME
============================================ */
.features {
    background: var(--navy-dark);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    min-height: auto;
}

.features .container {
    height: 100%;
}

.features .row {
    height: 100%;
    align-items: center;
}

.features-content {
    padding-right: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-content .content-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 40px;
    line-height: 1.3;
}

.features-info {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.features-info:last-child {
    margin-bottom: 0;
}

.features-info-flex:first-child {
    flex: 0 0 70px;
    min-width: 70px;
}

.features-info-flex:last-child {
    flex: 1;
}

.features-info-flex .number {
    font-size: 52px;
    font-weight: 800;
    color: rgba(212, 160, 23, 0.3);
    line-height: 1;
    display: block;
    margin-top: 0;
    transition: all 0.3s ease;
}

.features-info:hover .features-info-flex .number {
    color: var(--gold);
    transform: scale(1.05);
}

.features-info-flex .title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.4;
}

.features-info-flex .text {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 0;
}

.features-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    max-width: 38%;
    z-index: 1;
    display: flex;
    align-items: center;
}

.features-img img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-dark) 40%, rgba(10, 25, 34, 0.8) 70%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.features .container,
.features-img {
    position: relative;
    z-index: 2;
}

/* ============================================
   TESTIMONIAL SECTION
============================================ */
.testimonial {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 300px;
    font-family: serif;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.testimonial::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 300px;
    font-family: serif;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.testimonial .section-head {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonial .section-head .title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.testimonial .section-head .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.testimonial-item {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    margin: 20px 15px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-item .number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(212, 160, 23, 0.1);
    font-family: monospace;
    transition: all 0.3s ease;
}

.testimonial-item:hover .number {
    color: rgba(212, 160, 23, 0.2);
    font-size: 52px;
}

.testimonial-item .content i {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.testimonial-item:hover .content i {
    opacity: 1;
}

.testimonial-item .text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-item .info {
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
    margin-top: 10px;
}

.testimonial-item .name {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.testimonial-item .designation {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Owl Carousel */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.owl-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    background: var(--white) !important;
    border-radius: 50% !important;
    color: var(--navy) !important;
    font-size: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.owl-carousel .owl-nav button:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
    transform: scale(1.1);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active {
    width: 30px;
    background: var(--gold);
    border-radius: 10px;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-style2 {
    background: var(--bg-light);
    padding: 80px 60px;
}

.faq-style2 .faq-content {
    max-width: 100%;
    margin: 0 auto;
}

.faq-style2 .section-head.style2 {
    margin-bottom: 50px;
}

.faq-style2 .section-head.style2 .title {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-dark);
    text-align: center;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    border: none;
    width: 100%;
    padding: 24px 60px 24px 28px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--navy-dark);
    position: relative;
    transition: 0.3s;
    cursor: pointer;
    text-align: left;
}

.accordion-button:not(.collapsed) {
    color: var(--gold);
    border-bottom: 1px solid var(--gray-200);
}

.accordion-button:hover {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.05) !important;
}

.accordion-button::before {
    content: "+";
    font-size: 28px;
    font-weight: 400;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-family: monospace;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
}

.accordion-button[aria-expanded="true"]::before {
    content: "−";
    background: var(--gold);
    color: var(--white);
}

.accordion-button::after {
    display: none !important;
}

.faq-accordion-body {
    padding: 24px 28px 28px 28px;
    background: var(--white);
}

.faq-accordion-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
    cursor: pointer;
}

/* ============================================
   FOOTER SECTION - NAVY & GOLD THEME
============================================ */
.footer {
    background: var(--navy-dark);
    position: relative;
    padding: 0;
    margin-top: 0;
}

.footer.home-1 {
    padding-bottom: 0;
}

.footer-inner {
    background: var(--navy-dark);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
    padding: 80px 0 60px;
}

.footer-widget {
    margin-top: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 5px;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
    border-radius: 10px;
    border: 3px solid white;
}

.footer-widget.footer-about .text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 25px;
}

.footer-newsletter {
    margin-top: 20px;
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0 50px 0 20px;
    color: var(--white) !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-newsletter input:focus {
    border-color: var(--gold);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .btn {
    position: absolute;
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50%;
    padding: 0;
    right: 4px;
    top: 4px;
    line-height: 42px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter .btn:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: scale(1.05);
}

.footer-widget .widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-widget .list-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget .list-links li {
    margin-bottom: 12px;
}

.footer-widget .list-links li:last-child {
    margin-bottom: 0;
}

.footer-widget .list-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widget .list-links li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-widget .list-links li.number a {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.footer-widget .list-links li.number a:hover {
    color: var(--gold);
}

.footer-widget .list-links li.mail a {
    color: var(--white);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.copyright-text {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.copyright-text a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}



@media (max-width: 1200px) {
    .hero-content-wrapper .title-wrapper { font-size: 80px; }
    .hero-content-wrapper .title-row-2 .text-highlight { font-size: 45px; }
    .hero-features-wrapper { gap: 30px; padding: 35px 40px; }
    .section-head .title { font-size: 36px; }
    .features-content .content-title { font-size: 36px; }
    .funfact-content .content-title { font-size: 36px; }
    .faq-style2 .section-head .title { font-size: 50px; }
    .services-dropdown {
        width: 900px !important;
        min-width: 900px !important;
    }
    .header-nav-menu {
        gap: 20px;
    }
    .footer-main {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .header-nav, .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .hero-content-wrapper { padding: 60px 0 40px; }
    .hero-content-wrapper .title-wrapper { font-size: 55px; }
    .hero-content-wrapper .title-row-2 .text-highlight { font-size: 28px; padding: 8px 20px; }
    .hero-content-wrapper .title-row-1,
    .hero-content-wrapper .title-row-2,
    .hero-content-wrapper .title-row-3 { flex-direction: column; }
    .hero-features-wrapper { grid-template-columns: 1fr; gap: 30px; padding: 30px; }
    .h-social-rotate { display: none; }
    
    .about-inner { flex-direction: column; }
    .funfact-img, .features-img { display: none; }
    .funfact-content { padding-left: 0; }
    .features-content { padding-right: 0; }
    .vertical-text { display: none; }
    .section-gap { padding: 60px 0; }
    
    .faq.faq-style2 { padding: 70px 30px; }
    .faq-style2 .section-head .title { font-size: 42px; }
    
    .testimonial .section-head .title { font-size: 36px; }
    .owl-carousel .owl-nav { display: none; }
    
    .funfact-content .content-title { font-size: 32px; }
    .features-content .content-title { font-size: 32px; }
    
    .service-item {
        display: block;
        padding: 24px 0px;
    }
    .service-info {
        display: block;
    }
    .service-info .title {
        font-size: 24px;
        line-height: 120%;
        min-width: 100%;
        margin-bottom: 12px;
    }
    .service-info .text {
        line-height: 140%;
        min-width: 100%;
    }
    .service-info .service-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        line-height: 52px;
        font-size: 20px;
        margin-top: 24px;
    }
    
    .services-dropdown,
    .dropdown-menu {
        display: none !important;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 60px 0 40px;
    }
    .footer-widget.footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .container, .container-fluid { padding: 0 20px; }
    .hero-content-wrapper .title-wrapper { font-size: 40px; }
    .hero-content-wrapper .title-row-2 .text-highlight { font-size: 22px; }
    .hero-content-wrapper .description { font-size: 14px; }
    .section-head .title { font-size: 28px; }
    .funfact-counter .title { font-size: 45px; }
    .features-content .content-title { font-size: 28px; }
    .funfact-content .content-title { font-size: 28px; }
    .testimonial-item { padding: 30px; }
    .testimonial .section-head .title { font-size: 28px; }
    .faq.faq-style2 { padding: 60px 20px; }
    .faq-style2 .section-head .title { font-size: 34px; }
    .service-card { min-width: 250px; max-width: 250px; }
    
    .features {
        padding: 50px 0;
    }
    .features-content {
        padding-right: 0;
    }
    .features-content .content-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .features-info {
        margin-bottom: 25px;
    }
    .features-info:last-child {
        margin-bottom: 0;
    }
    .features-info-flex:first-child {
        flex: 0 0 60px;
        min-width: 60px;
    }
    .features-info-flex .number {
        font-size: 44px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 0 30px;
    }
    .footer-widget.footer-about {
        grid-column: span 1;
    }
    .footer-widget .widget-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content-wrapper .title-wrapper { font-size: 32px; }
    .hero-content-wrapper .title-row-2 .text-highlight { font-size: 18px; padding: 6px 15px; }
    .hero-features-wrapper { padding: 20px; }
    .header-logo img { height: 50px; }
    .text-pattern { max-width: 120px; }
    .h-text-arrow { max-width: 60px; }
   
    .testimonial-item { padding: 20px; }
    .testimonial .section-head .title { font-size: 24px; }
    .funfact-counter .title { font-size: 38px; }
    
    .header-main {
        min-height: 65px;
    }
    .header-logo img {
        height: 42px;
    }
    .mobile-menu-toggle {
        font-size: 20px;
    }
    
    .features {
        padding: 40px 0;
    }
    .features-content .content-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    .features-info {
        gap: 15px;
        margin-bottom: 20px;
    }
    .features-info-flex:first-child {
        flex: 0 0 50px;
        min-width: 50px;
    }
    .features-info-flex .number {
        font-size: 36px;
    }
    .features-info-flex .title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .features-info-flex .text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .footer-main {
        gap: 30px;
        padding: 40px 0 25px;
    }
    .copyright-text {
        font-size: 12px;
    }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.has_fade_anim,
.has_word_anim,
.wow {
    animation: fadeInUp 0.6s ease forwards;
}

.owl-carousel .owl-stage-outer {
    overflow: visible;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/* Odometer Counter Styling */
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    display: inline-block;
    vertical-align: middle;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
    display: inline-block;
}
/* ============================================
   ABOUT BANNER & HERO STYLES
============================================ */
.about-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 180px 0 80px;
    position: relative;
    margin-top: -100px;
}

.about-banner-content {
    text-align: center;
}

.about-banner-content .title {
    font-size: 64px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-banner-content .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.about-banner-content .breadcrumb a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.about-banner-content .breadcrumb a:hover {
    color: var(--gold);
}

.about-banner-content .breadcrumb span {
    color: rgba(255,255,255,0.6);
}

/* About Hero */
.about-hero {
    padding: 80px 0 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.about-hero-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.about-hero-content .title {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-hero-widget .text {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 35px;
}

.about-hero-client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 30px 45px;
}

.client-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.client-list li {
    margin-left: -15px;
}

.client-list li:first-child {
    margin-left: 0;
}

.client-list li img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--white);
    object-fit: cover;
}

.client-info h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.client-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.about-hero-img {
    margin-top: 60px;
    text-align: center;
}

.about-hero-img img {
    max-width: 100%;
    border-radius: 30px 30px 0 0;
}

/* About Funfact */
.abt-funfact-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: 30px;
    padding: 60px 40px;
}

.abt-funfact-card {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.abt-funfact-card:last-child {
    border-right: none;
}

.abt-funfact-card .number {
    font-size: 52px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
}

.abt-funfact-card .text {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* Why Choose */
.why-choose-style2 {
    overflow: hidden;
}

.why-choose-progress {
    margin-top: 30px;
}

.progress-item {
    margin-bottom: 30px;
}

.progress-item-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-100);
}

.progress-item-percentage {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

.progress-container {
    background: var(--gray-200);
    border-radius: 10px;
    height: 8px;
    position: relative;
    overflow: hidden;
}

.progress-container .progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

.why-chooses-img {
    position: absolute;
    right: 0;
    top: 10%;
    transform: translateY(-50%);
    max-width: 42%;
}

.why-chooses-img img {
    width: 100%;
    border-radius: 30px 0 0 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-banner { padding: 160px 0 60px; }
    .about-banner-content .title { font-size: 42px; }
    .about-hero-content .title { font-size: 36px; }
    .abt-funfact-inner { grid-template-columns: repeat(2, 1fr); }
    .abt-funfact-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .abt-funfact-card:nth-last-child(-n+2) { border-bottom: none; }
    .why-chooses-img { display: none; }
}

@media (max-width: 576px) {
    .about-banner-content .title { font-size: 32px; }
    .about-hero-content .title { font-size: 28px; }
    .abt-funfact-inner { grid-template-columns: 1fr; }
    .abt-funfact-card { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .abt-funfact-card:last-child { border-bottom: none; }
    .about-hero-client { padding: 20px; flex-direction: column; text-align: center; }
    .client-list { justify-content: center; }
}
/* ==========================================
   BREADCRUMB STYLE - SAME AS ABOUT PAGE
========================================== */

.breadcrumb-content {
    text-align: center;
}

.breadcrumb-content a,
.breadcrumb-content span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-content a:hover {
    color: #d4a017;
}

.breadcrumb-content span:last-child {
    color: #d4a017;
}

.breadcrumb-content .title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.breadcrumb-content span {
    margin: 0 8px;
}
/* ============================================
   FIXES FOR HOME PAGE IMAGES & SPACING
============================================ */

/* Fix Funfact & Features Images */
.funfact-img img,
.features-img img {
    width: 100%;
    height: auto;
    display: block;
}

.funfact-img {
    position: absolute;
    left: 0;
    top: 10%;
    transform: translateY(-50%);
    max-width: 40%;
    z-index: 1;
}

.features-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    max-width: 38%;
    z-index: 1;
    display: flex;
    align-items: center;
}

/* Fix spacing between header and main content */
main {
    padding-top: 0;
}

.header.sticky + main {
    padding-top: 95px;
}

@media (max-width: 991px) {
    .header.sticky + main {
        padding-top: 80px;
    }
}

/* Fix Hero Section - No extra margin */
.hero {
    margin-top: 0;
    padding-top: 100px;
}

.mg-top-100 {
    margin-top: 0;
}

/* Fix Home Page Service Auto-scroll Colors - Keep Original */
.services-auto-scroll-wrapper {
    background: var(--navy-dark);
}




/* Fix Active Navigation in Sticky Header */
.header.sticky .header-nav-menu > li.active > a {
    color: #d4a017 !important;
}

.header.sticky .header-nav-menu > li > a:hover {
    color: #d4a017 !important;
}

/* Fix Text Move Area - Make it visible on all pages */
.text-move-area {
    background: var(--navy);
    padding: 30px 0;
    overflow: hidden;
    width: 100%;
}

.text-slide-item {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.text-slide-item .text {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.text-slide-item .brust-pucker {
    width: 30px;
}

/* Fix Swiper Slider */
.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    transition-timing-function: linear;
}

.swiper-slide {
    flex-shrink: 0;
    width: auto;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .funfact-img, .features-img {
        display: none;
    }
    
    .text-slide-item .text {
        font-size: 18px;
    }
    
    .text-slide-item {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .text-slide-item .text {
        font-size: 14px;
    }
}

/* ============================================
   FIXES FOR ALL ISSUES
============================================ */

/* Fix Home Page Funfact & Features Responsive */
@media (max-width: 991px) {
    .funfact-img, .features-img {
        display: none;
    }
    
    .funfact-content {
        padding-left: 0;
        text-align: center;
    }
    
    .funfact-counter .text {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .features-content {
        padding-right: 0;
        text-align: center;
    }
    
    .features-info {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .funfact-content .content-title {
        font-size: 28px;
        text-align: center;
    }
    
    .funfact-counter {
        text-align: center;
    }
    
    .funfact-counter .title {
        font-size: 40px;
    }
    
    .features-content .content-title {
        font-size: 28px;
        text-align: center;
    }
    
    .features-info-flex:first-child {
        flex: 0 0 50px;
        min-width: 50px;
    }
    
    .features-info-flex .number {
        font-size: 32px;
    }
    
    .features-info-flex .title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .funfact-counter .title {
        font-size: 32px;
    }
    
    .features-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .features-info-flex:first-child {
        flex: auto;
        min-width: auto;
    }
    
    .features-info {
        text-align: center;
    }
    
    .features-info-flex .text {
        text-align: center;
    }
}

/* Fix Why Choose Area Responsive on About Page */
@media (max-width: 991px) {
    .why-choose-style2 .col-lg-6 {
        width: 100%;
    }
    
    .why-choose-progress {
        margin-top: 20px;
    }
    
    .why-chooses-img {
        display: none;
    }
    
    .why-choose-style2 {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .progress-item-label {
        flex-direction: column;
        gap: 5px;
    }
    
    .progress-item-title {
        font-size: 14px;
    }
    
    .progress-item-percentage {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .why-choose-progress {
        margin-top: 15px;
    }
    
    .progress-item {
        margin-bottom: 20px;
    }
}

/* Fix Home Page Service Section Icons */
.service-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 160, 23, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card-icon i {
    font-size: 32px;
    color: var(--gold);
    transition: all 0.3s ease;
}


/* Ensure all icons are visible */
.fi,
.fi-rr-chart-line,
.fi-rr-marker,
.fi-rr-map-marker,
.fi-brands-facebook,
.fi-brands-instagram,
.fi-brands-linkedin,
.fi-brands-youtube,
.fi-rr-google,
.fi-rr-chart-pie,
.fi-rr-display,
.fi-rr-arrow-rotate-right,
.fi-brands-whatsapp,
.fi-rr-envelope,
.fi-rr-message,
.fi-rr-file,
.fi-rr-blog,
.fi-rr-document,
.fi-rr-palette,
.fi-rr-pencil,
.fi-rr-trademark,
.fi-rr-video,
.fi-rr-play,
.fi-rr-youtube,
.fi-rr-shield,
.fi-rr-star,
.fi-rr-users,
.fi-rr-link,
.fi-rr-heart,
.fi-rr-briefcase,
.fi-rr-rocket,
.fi-rr-building,
.fi-rr-microchip,
.fi-rr-apps {
    display: inline-block;
}

/* Fix Mobile Header Service Dropdown - Click to open (not hover) */
@media (max-width: 991px) {
    .mobile-services-header {
        cursor: pointer;
    }
    
    .mobile-services-list {
        display: none;
    }
    
    .mobile-services-header.active + .mobile-services-list,
    .mobile-services-header.active ~ .mobile-services-list {
        display: block;
    }
}

/* Fix FAQ Accordion - Make it work same as home page on all pages */
.faq-accordion .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    border: none;
    width: 100%;
    padding: 24px 60px 24px 28px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--navy-dark);
    position: relative;
    transition: 0.3s;
    cursor: pointer;
    text-align: left;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    border-bottom: 1px solid var(--gray-200);
}

.faq-accordion .accordion-button:hover {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.05) !important;
}

.faq-accordion .accordion-button::before {
    content: "+";
    font-size: 28px;
    font-weight: 400;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-family: monospace;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
}

.faq-accordion .accordion-button[aria-expanded="true"]::before {
    content: "−";
    background: var(--gold);
    color: var(--white);
}

.faq-accordion .accordion-button::after {
    display: none !important;
}

.faq-accordion .faq-accordion-body {
    padding: 24px 28px 28px 28px;
    background: var(--white);
}

.faq-accordion .faq-accordion-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
    cursor: pointer;
}

/* Fix Back to Top Button - Arrow icon only */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    background-color: var(--gold);
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f062";
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: var(--white);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--white);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* Responsive for Back to Top */
@media (max-width: 768px) {
    .progress-wrap {
        right: 20px;
        bottom: 20px;
        height: 40px;
        width: 40px;
    }
    
    .progress-wrap::after {
        line-height: 40px;
        font-size: 16px;
    }
}
/* ============================================
   SERVICE DETAILS PAGE - NAVY & GOLD THEME
============================================ */

/* Banner Section */
.service-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    margin-top: -100px;
    padding-top: 100px;
}

.service-banner .overlay {
    padding: 120px 0 80px;
}

.banner-content {
    text-align: center;
}

.banner-content h1 {
    color: var(--white);
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.breadcrumb-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.breadcrumb-list li a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--gold-light);
}

/* Service Details Section */
.service-details-section {
    padding: 100px 0;
    background: var(--white);
}

.service-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-details-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.service-details-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--gold);
}

.service-details-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-700);
}

/* Service List with Icons */
.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--gray-700);
}

.service-list li::before {
    content: "\f00c";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 14px;
}

/* Process Box */
.process-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.process-item {
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.process-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.1);
}

.process-item span {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
    line-height: 1;
}

.process-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-dark);
    margin: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    text-align: center;
}

.cta-box h4 {
    color: var(--gold);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.cta-box .theme-btn {
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
}

.cta-box .theme-btn:hover {
    background: var(--gold-dark);
    color: var(--white);
}

/* Sidebar - Fixed Height with Scroll */
.service-sidebar {
    background: var(--navy-dark);
    padding: 35px;
    border-radius: 20px;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

/* Custom Scrollbar for Sidebar */
.service-sidebar::-webkit-scrollbar {
    width: 5px;
}

.service-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.service-sidebar::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.service-sidebar h4 {
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
    position: sticky;
    top: 0;
    background: var(--navy-dark);
    z-index: 1;
}

.service-sidebar h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.service-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-sidebar ul li:last-child {
    border-bottom: none;
}

.service-sidebar ul li a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.service-sidebar ul li.active a,
.service-sidebar ul li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* FAQ Section on Service Details Page */
.service-faq {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.service-faq h3 {
    text-align: center;
    margin-bottom: 40px;
}

.service-faq .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-faq .faq-accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-faq .faq-accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.service-faq .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    border: none;
    width: 100%;
    padding: 24px 60px 24px 28px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--navy-dark);
    position: relative;
    transition: 0.3s;
    cursor: pointer;
    text-align: left;
}

.service-faq .accordion-button:not(.collapsed) {
    color: var(--gold);
    border-bottom: 1px solid var(--gray-200);
}

.service-faq .accordion-button:hover {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.05) !important;
}

.service-faq .accordion-button::before {
    content: "+";
    font-size: 28px;
    font-weight: 400;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-family: monospace;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
}

.service-faq .accordion-button[aria-expanded="true"]::before {
    content: "−";
    background: var(--gold);
    color: var(--white);
}

.service-faq .accordion-button::after {
    display: none !important;
}

.service-faq .faq-accordion-body {
    padding: 24px 28px 28px 28px;
    background: var(--white);
}

.service-faq .faq-accordion-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* Service Details Responsive */
@media (max-width: 1200px) {
    .banner-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .service-banner .overlay {
        padding: 140px 0 60px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .service-details-section {
        padding: 60px 0;
    }
    
    .service-details-content h2 {
        font-size: 30px;
    }
    
    .service-sidebar {
        margin-top: 40px;
        position: relative;
        top: 0;
        max-height: none;
        overflow-y: visible;
    }
    
    .process-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-item {
        padding: 20px;
    }
    
    .process-item span {
        font-size: 36px;
    }
    
    .cta-box h4 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .service-banner {
        margin-top: 0;
        padding-top: 0;
    }
    
    .service-banner .overlay {
        padding: 120px 0 50px;
    }
    
    .banner-content h1 {
        font-size: 30px;
    }
    
    .service-details-content h2 {
        font-size: 26px;
    }
    
    .service-details-content h3 {
        font-size: 20px;
    }
    
    .process-box {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h4 {
        font-size: 20px;
    }
    
    .service-faq .accordion-button {
        font-size: 16px;
        padding: 20px 50px 20px 20px;
    }
    
    .service-faq .accordion-button::before {
        right: 15px;
        width: 28px;
        height: 28px;
        font-size: 24px;
    }
    
    .service-faq .faq-accordion-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 26px;
    }
    
    .breadcrumb-list li {
        font-size: 14px;
    }
    
    .service-details-content h2 {
        font-size: 22px;
    }
    
    .service-details-content h3 {
        font-size: 18px;
    }
    
    .service-sidebar {
        padding: 25px;
    }
    
    .service-sidebar h4 {
        font-size: 20px;
    }
    
    .service-faq .accordion-button {
        font-size: 14px;
        padding: 16px 45px 16px 16px;
    }
    
    .service-faq .accordion-button::before {
        right: 12px;
        width: 26px;
        height: 26px;
        font-size: 20px;
    }
}
/* ============================================
   CONTACT PAGE - NAVY & GOLD THEME
============================================ */


/* Contact Info Section */
.contact-page-area {
    background: var(--white);
    padding: 100px 0;
}

.contact-info-wrapper {
    background: var(--navy-dark);
    padding: 50px;
    border-radius: 24px;
    height: 100%;
}

.contact-info-head {
    margin-bottom: 40px;
}

.contact-info-head .title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-info-head .text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-info-main {
    margin-top: 30px;
}

.single-contact-info {
    margin-bottom: 30px;
}

.single-contact-info .address-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.single-contact-info .address-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-mail a,
.contact-number a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-mail a i,
.contact-number a i {
    margin-right: 10px;
    color: var(--gold);
}

.contact-mail a:hover,
.contact-number a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* Contact Form */
.contact-page-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 24px;
    height: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-form-button .theme-btn {
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 700;
}

.contact-form-button .theme-btn:hover {
    background: var(--gold-dark);
    color: var(--white);
}

/* Alert Messages */
.alert-success {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--gold);
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
}

.alert-success i {
    margin-right: 8px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

/* Google Map */
.contact-map-inner {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-inner iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact Page Responsive */
@media (max-width: 1200px) {

    
    .contact-info-head .title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    
 
    
    .contact-page-area {
        padding: 60px 0;
    }
    
    .contact-info-wrapper,
    .contact-page-form {
        padding: 35px;
        margin-bottom: 30px;
    }
    
    .contact-info-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-info-head .title {
        font-size: 28px;
    }
    
    .contact-mail a,
    .contact-number a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    
    .contact-info-wrapper,
    .contact-page-form {
        padding: 25px;
    }
    
    .contact-info-head .title {
        font-size: 24px;
    }
    
    .contact-map-inner iframe {
        height: 350px;
    }
    
    .single-contact-info .address-title {
        font-size: 18px;
    }
    
    .contact-mail a,
    .contact-number a {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    
    .contact-info-wrapper,
    .contact-page-form {
        padding: 20px;
    }
    
    .contact-info-head .title {
        font-size: 22px;
    }
    
    .contact-mail a,
    .contact-number a {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .contact-map-inner iframe {
        height: 250px;
    }
}

/* ============================================
   GALLERY PAGE - NAVY & GOLD THEME
============================================ */

/* Gallery Content Section */
.gallery-content-section {
    padding: 60px 0 30px;
    background: var(--white);
}

.gallery-content-header {
    text-align: center;
}

.gallery-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
}

.gallery-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.gallery-description {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Filter Navigation */
.filter-nav {
    margin-bottom: 50px;
}

.filter-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.filter-nav ul li {
    padding: 8px 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--white);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.filter-nav ul li:hover,
.filter-nav ul li.is-checked {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    margin-bottom: 0;
}

.gallery-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay a {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gallery-overlay a:hover {
    background: var(--gold-dark);
    transform: scale(1.1);
}

.gallery-info {
    padding: 20px;
    text-align: center;
}

.gallery-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .gallery-content-section {
        padding: 40px 0 20px;
    }
    
    .gallery-main-title {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filter-nav ul li {
        padding: 6px 18px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-img img {
        height: 200px;
    }
    
    .gallery-info h4 {
        font-size: 16px;
    }
    
    .gallery-info p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-main-title {
        font-size: 24px;
    }
    
    .gallery-subtitle {
        font-size: 12px;
    }
    
    .filter-nav ul {
        gap: 10px;
    }
    
    .filter-nav ul li {
        padding: 5px 15px;
        font-size: 12px;
    }
    
    .gallery-img img {
        height: 220px;
    }
}

/* Isotope Filter Animation */
.isotop-active .gallery-item {
    transition: all 0.4s ease;
}
/* ============================================
   FAQ PAGE - NAVY & GOLD THEME
============================================ */

/* FAQ Content Section */
.faq-content-section {
    padding: 60px 0 30px;
    background: var(--white);
}

.faq-content-header {
    text-align: center;
}

.faq-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
}

.faq-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.faq-description {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* FAQ CTA Section */
.faq-cta-section {
    padding: 60px 0;
    background: var(--white);
}

.faq-cta-box {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.faq-cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.faq-cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.faq-cta-box .theme-btn {
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
}

.faq-cta-box .theme-btn:hover {
    background: var(--gold-dark);
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .faq-content-section {
        padding: 40px 0 20px;
    }
    
    .faq-main-title {
        font-size: 32px;
    }
    
    .faq-cta-box {
        padding: 35px 25px;
    }
    
    .faq-cta-box h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .faq-main-title {
        font-size: 28px;
    }
    
    .faq-description {
        font-size: 14px;
    }
    
    .faq-cta-box {
        padding: 30px 20px;
    }
    
    .faq-cta-box h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .faq-main-title {
        font-size: 24px;
    }
    
    .faq-subtitle {
        font-size: 12px;
    }
    
    .faq-cta-box h3 {
        font-size: 20px;
    }
    
    .faq-cta-box p {
        font-size: 14px;
    }
}

/* ============================================
   TESTIMONIAL PAGE - NAVY & GOLD THEME
============================================ */

/* Testimonial Content Section */
.testimonial-content-section {
    padding: 60px 0 30px;
    background: var(--white);
}

.testimonial-content-header {
    text-align: center;
}

.testimonial-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
}

.testimonial-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.testimonial-description {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Testimonials Grid */
.testimonials-grid-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 14px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
}

.author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

/* Testimonial CTA Section */
.testimonial-cta-section {
    padding: 60px 0;
    background: var(--white);
}

.testimonial-cta-box {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.testimonial-cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.testimonial-cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.testimonial-cta-box .theme-btn {
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
}

.testimonial-cta-box .theme-btn:hover {
    background: var(--gold-dark);
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-main-title {
        font-size: 32px;
    }
    
    .testimonial-cta-box {
        padding: 35px 25px;
    }
    
    .testimonial-cta-box h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .testimonial-main-title {
        font-size: 28px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-cta-box {
        padding: 30px 20px;
    }
    
    .testimonial-cta-box h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .testimonial-main-title {
        font-size: 24px;
    }
    
    .testimonial-subtitle {
        font-size: 12px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .author-img {
        width: 45px;
        height: 45px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .testimonial-cta-box h3 {
        font-size: 20px;
    }
}
/* Add space between testimonial cards */
.testimonials-grid-section .row {
    margin-bottom: 0;
}

.testimonial-card {
    margin-bottom: 30px;
}

/* Add space between sections */
.testimonials-grid-section {
    padding: 60px 0;
}

.faq-style2 {
    margin-top: 0;
    padding: 80px 0;
}

.testimonial-cta-section {
    padding: 60px 0;
}

.text-move-area {
    margin-top: 0;
}

/* Space between testimonial rows */
@media (min-width: 992px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .testimonial-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        margin-bottom: 20px;
    }
}












/* ============================================
   BLOG PAGE - NAVY & GOLD THEME
============================================ */

/* Breadcrumbs */
.bredcrumbs {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 250px 0 80px;
    position: relative;
    margin-top: -100px;
}

.bredcrumbs .breadcrumb-content .title {
    font-size: 56px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
}

.bredcrumb-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bredcrumb-menu li a {
    color: var(--white);
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bredcrumb-menu li a:hover {
    color: var(--gold);
}

.bredcrumb-menu li.active a {
    color: var(--gold);
    cursor: default;
}

.bredcrumb-menu li:not(:last-child)::after {
    content: "/";
    color: rgba(255, 255, 255, 0.5);
    margin-left: 10px;
}

/* Blog Grid Section */
.blog-grid {
    background: var(--white);
}

.blog-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


@media (max-width: 991px) {
    .bredcrumbs { padding: 195px 0 60px; }
    .bredcrumbs .breadcrumb-content .title { font-size: 42px; }}

    
@media (max-width: 768px) {
    .bredcrumbs { padding: 195px 0 50px; }
    .bredcrumbs .breadcrumb-content .title { font-size: 32px; }}
    @media (max-width: 576px) {
    .bredcrumbs .breadcrumb-content .title { font-size: 28px; }
    }

    @media (max-width: 576px) {
    .bredcrumbs {
        padding: 145px 0 40px;
        margin-top: -80px;
    }
    
    .bredcrumbs .breadcrumb-content .title {
        font-size: 21px;
    }
}

@media (min-width: 590px) {
    .bredcrumb-menu li a {
        font-size: 16px;
    }
}
