/* ============================================
   GOOGLE FONTS & BASE
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Outfit:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   COLOR VARIABLES - NAVY, WHITE & GOLD THEME
============================================ */
:root {
    --navy-dark: #0b0113;
    --navy: #0b0113;
    --navy-light: #1a3a5c;
    --gold-dark: #7209d4;
    --gold: #8a0ffb;
    --gold-light: #a845ff;
    --white: #ffffff;
    --white-off: #f8f9fc;
    --gray-100: #f6f0fe ;
    --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, button, input, select, textarea {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--text-color);
    line-height: 1.65;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .title1, .title2, .sm-title, .hero-tag, .trichy-web-hero__title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}


/* ============================================
   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;
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 50%;
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .col-lg-6, .col-lg-7, .col-lg-5, .col-lg-8, .col-lg-4, .col-lg-3 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

.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(--white);
    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(138, 15, 251, 0.3);
    color: var(--white);
}

.theme-btn i {
    transition: transform 0.2s;
}

.theme-btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   HEADER STYLES - TRANSPARENT INITIALLY & WHITE STICKY
============================================ */
.header:not(.sticky) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 99999;
}

.header.bg-color-1:not(.sticky) {
    background: transparent !important;
    background-color: transparent !important;
}

/* Sticky Header */
.header.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08) !important;
    z-index: 999999 !important;
    animation: slideDown 0.4s ease !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* White Menu Initially */
.header:not(.sticky) .header-nav-menu > li > a {
    color: #ffffff !important;
}

/* Purple Active Initially */
.header:not(.sticky) .header-nav-menu > li.active > a {
    color: #8a0ffb !important;
}

/* Button Initially */
.header:not(.sticky) .theme-btn:not(:hover) {
    background: #8a0ffb !important;
    color: #ffffff !important;
}

/* Sticky Colors */
.header.sticky .header-nav-menu > li > a {
    color: #0d1b3d !important;
}

.header.sticky .header-nav-menu > li.active > a,
.header.sticky .header-nav-menu > li > a:hover {
    color: #8a0ffb !important;
}

.header.sticky .theme-btn:not(:hover) {
    background: #8a0ffb !important;
    color: #ffffff !important;
}

.header.sticky .mobile-menu-toggle {
    color: #0d1b3d !important;
}

/* 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 #8a0ffb;
    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: #8a0ffb;
}

.header-nav-menu > li.active > a {
    color: #8a0ffb;
}

/* 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 #8a0ffb;
    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: #8a0ffb;
    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;
    white-space: nowrap;
    border-radius: 6px;
    transition: all .3s ease;
    text-decoration: none;
}

.services-dropdown li a:hover {
    background: rgba(138, 15, 251, .08);
    color: #8a0ffb;
}

.services-dropdown li a.active-dropdown {
    background: rgba(138, 15, 251, .12);
    color: #8a0ffb !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: #8a0ffb !important;
    background: rgba(255,255,255,0.1);
}

/* Active item in Column 1 & Column 2 */
.services-dropdown li a.active-dropdown,
.services-dropdown .column-1 li a.active-dropdown,
.services-dropdown .column-2 li a.active-dropdown,
.services-dropdown .column-3 li a.active-dropdown {
    color: #8a0ffb !important;
    background: rgba(138, 15, 251, 0.18) !important;
    font-weight: 700 !important;
    border-left: 3px solid #8a0ffb !important;
}

.mobile-services-list li.active a,
.mobile-services-list li a.active {
    color: #8a0ffb !important;
    font-weight: 700 !important;
}
/* Button */
.header-actions {
    flex-shrink: 0;
}

.header-actions .theme-btn {
    background: #8a0ffb;
    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: #ffffff !important;
    color: #8a0ffb !important;
    transform: translateY(-2px);
}

.header-actions .theme-btn:hover i {
    color: #8a0ffb !important;
}

/* =================================
   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(138, 15, 251, .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: #8a0ffb;
}

.mobile-arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #0d1b3d;
}

.mobile-services-header.active .mobile-arrow {
    transform: rotate(180deg);
    color: #8a0ffb;
}

.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(138, 15, 251, .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: #8a0ffb;
    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(138, 15, 251, .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(138, 15, 251, .15);
}

.offcanvas-men-list li a {
    display: flex;
    align-items: center;
    padding: 14px 0;
    color: #0d1b3d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}

.offcanvas-men-list li a i.mobile-menu-icon {
    width: 24px;
    color: #8a0ffb;
    font-size: 16px;
    margin-right: 12px;
    text-align: center;
    transition: all .3s ease;
}

.offcanvas-men-list li a:hover {
    color: #8a0ffb;
    padding-left: 10px;
}

.offcanvas-men-list li a:hover i.mobile-menu-icon {
    transform: scale(1.15);
    color: #8a0ffb;
}

.mobile-services-link {
    display: flex !important;
    align-items: center;
    padding: 0 !important;
    color: #0d1b3d !important;
}

.mobile-services-link i.mobile-menu-icon {
    width: 24px;
    color: #8a0ffb;
    font-size: 16px;
    margin-right: 12px;
    text-align: center;
    transition: all .3s ease;
}

.mobile-services-list li a i {
    width: 20px;
    color: #8a0ffb;
    font-size: 13px;
    margin-right: 8px;
    text-align: center;
}

/* =================================
   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(138, 15, 251, 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(138, 15, 251, 0.1);
    font-family: monospace;
    transition: all 0.3s ease;
}

.testimonial-item:hover .number {
    color: rgba(138, 15, 251, 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(138, 15, 251, 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(138, 15, 251, 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: 991px) {
    .header-main {
        min-height: 84px !important;
        padding: 12px 0 !important;
    }
    .header-logo {
        display: flex !important;
        align-items: center !important;
    }
    .header-logo img {
        height: 56px !important;
        max-height: 56px !important;
        width: auto !important;
        margin-top: 0 !important;
        object-fit: contain !important;
        border-radius: 8px !important;
        border: 2px solid #8a0ffb !important;
        box-shadow: 0 4px 12px rgba(138, 15, 251, 0.25) !important;
    }
    .mobile-menu-toggle {
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(138, 15, 251, 0.16) !important;
        border: 1.5px solid rgba(138, 15, 251, 0.6) !important;
        border-radius: 10px !important;
        color: #ffffff !important;
        font-size: 20px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }
    .mobile-menu-toggle:hover {
        background: #8a0ffb !important;
        box-shadow: 0 0 16px rgba(138, 15, 251, 0.5) !important;
    }
}

@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; }
    .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: 80px !important;
        padding: 10px 0 !important;
    }
    .header-logo img {
        height: 52px !important;
        max-height: 52px !important;
        width: auto !important;
        margin-top: 0 !important;
    }
    .mobile-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        font-size: 19px !important;
    }
    
    .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; }
}

/* ============================================
   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: #8a0ffb !important;
}

.header.sticky .header-nav-menu > li > a:hover {
    color: #8a0ffb !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(138, 15, 251, 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(138, 15, 251, 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(138, 15, 251, 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(138, 15, 251, 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(138, 15, 251, 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(138, 15, 251, 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(138, 15, 251, 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
============================================ */

/* Universal Justified Paragraphs without Hyphenation (No '-' word breaks) */
p,
.desc,
.section-desc,
.about-desc,
.empowering-desc,
.impact-desc,
.strategic-desc,
.grow-business-desc,
.why-contact-desc,
.case-desc,
.definition-desc,
.blog-desc,
.blog-text p,
.premium-article-card p,
.s-card-desc,
.scope-card p,
.process-card p,
.industry-card p,
.service-details-content p {
    text-align: justify !important;
    text-justify: inter-word !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    hyphens: none !important;
    word-break: normal !important;
}

/* Ensure Titles, Badges, Header/Footer, Center Intros remain properly centered */
.text-center p.section-head-desc,
.text-center p.sub-title,
.section-head.text-center .sm-title,
.section-head.text-center h1,
.section-head.text-center h2,
.breadcrumb-content p,
.header-nav-menu p,
.footer p.copyright-text,
.tdm-footer-copyright,
.tdm-footer-bottom,
.stat-number,
.stat-label,
.pricing-title,
.pricing-price {
    text-align: center !important;
}

/* ==========================================================================
   UNIVERSAL RESPONSIVE BREADCRUMBS SYSTEM (ALL PAGES & DEVICES)
   ========================================================================== */
.bredcrumbs,
.bredcrumbs.style2,
.breadcrumbs {
    background: linear-gradient(135deg, #090610 0%, #150a26 50%, #090610 100%) !important;
    padding: 240px 0 65px !important;
    position: relative !important;
    margin-top: -95px !important;
    border-bottom: 2px solid rgba(138, 15, 251, 0.3) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6) !important;
    overflow: hidden !important;
    width: 100% !important;
}

/* Breadcrumb Content Container */
.bredcrumbs .breadcrumb-content,
.bredcrumbs.style2 .breadcrumb-content,
.breadcrumb-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 900px !important;
}

/* Breadcrumb Title */
.bredcrumbs .breadcrumb-content .title,
.bredcrumbs.style2 .breadcrumb-content .title,
.breadcrumb-content .title,
.bredcrumbs .title,
.bredcrumbs.style2 .title,
.breadcrumb-content h1 {
    font-size: 46px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 14px 0 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

/* Breadcrumb Navigation Menu */
.bredcrumb-menu,
.bredcrumb-menu.style2,
.breadcrumb-list {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

.bredcrumb-menu li,
.bredcrumb-menu.style2 li,
.breadcrumb-list li {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #cbd5e1 !important;
    line-height: 1 !important;
}

.bredcrumb-menu li a,
.bredcrumb-menu.style2 li a,
.breadcrumb-list li a {
    color: #cbd5e1 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.bredcrumb-menu li a:hover,
.bredcrumb-menu.style2 li a:hover,
.breadcrumb-list li a:hover {
    color: #c084fc !important;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.4) !important;
}

.bredcrumb-menu li.active a,
.bredcrumb-menu.style2 li.active a,
.bredcrumb-menu li.active > a,
.bredcrumb-menu.style2 li.active > a,
.bredcrumb-menu li.active span,
.breadcrumb-list li.active a {
    color: #c084fc !important;
    cursor: default !important;
    font-weight: 700 !important;
}

.bredcrumb-menu li:not(:last-child)::after,
.bredcrumb-menu.style2 li:not(:last-child)::after,
.breadcrumb-list li:not(:last-child)::after {
    content: "/" !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-left: 8px !important;
    font-weight: 400 !important;
}

/* Blog Grid Section */
.blog-grid {
    background: var(--white);
}

.blog-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==========================================================================
   BREADCRUMBS RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .bredcrumbs,
    .bredcrumbs.style2,
    .breadcrumbs {
        padding: 215px 0 55px !important;
        margin-top: -85px !important;
    }
    .bredcrumbs .breadcrumb-content .title,
    .bredcrumbs.style2 .breadcrumb-content .title,
    .breadcrumb-content .title,
    .bredcrumbs .title,
    .bredcrumbs.style2 .title,
    .breadcrumb-content h1 {
        font-size: 36px !important;
        margin-bottom: 12px !important;
    }
    .bredcrumb-menu li,
    .bredcrumb-menu.style2 li,
    .breadcrumb-list li,
    .bredcrumb-menu li a,
    .bredcrumb-menu.style2 li a,
    .breadcrumb-list li a {
        font-size: 14.5px !important;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .bredcrumbs,
    .bredcrumbs.style2,
    .breadcrumbs {
        padding: 205px 0 45px !important;
        margin-top: -80px !important;
    }
    .bredcrumbs .breadcrumb-content .title,
    .bredcrumbs.style2 .breadcrumb-content .title,
    .breadcrumb-content .title,
    .bredcrumbs .title,
    .bredcrumbs.style2 .title,
    .breadcrumb-content h1 {
        font-size: 30px !important;
        margin-bottom: 10px !important;
    }
    .bredcrumb-menu li,
    .bredcrumb-menu.style2 li,
    .breadcrumb-list li,
    .bredcrumb-menu li a,
    .bredcrumb-menu.style2 li a,
    .breadcrumb-list li a {
        font-size: 13.5px !important;
    }
    .bredcrumb-menu,
    .bredcrumb-menu.style2 {
        gap: 6px !important;
    }
    .bredcrumb-menu li:not(:last-child)::after,
    .bredcrumb-menu.style2 li:not(:last-child)::after {
        margin-left: 6px !important;
    }
}

/* Small Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    .bredcrumbs,
    .bredcrumbs.style2,
    .breadcrumbs {
        padding: 195px 15px 40px !important;
        margin-top: -80px !important;
    }
    .bredcrumbs .breadcrumb-content .title,
    .bredcrumbs.style2 .breadcrumb-content .title,
    .breadcrumb-content .title,
    .bredcrumbs .title,
    .bredcrumbs.style2 .title,
    .breadcrumb-content h1 {
        font-size: 26px !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }
    .bredcrumb-menu li,
    .bredcrumb-menu.style2 li,
    .breadcrumb-list li,
    .bredcrumb-menu li a,
    .bredcrumb-menu.style2 li a,
    .breadcrumb-list li a {
        font-size: 13px !important;
    }
    .bredcrumb-menu,
    .bredcrumb-menu.style2 {
        gap: 5px !important;
    }
    .bredcrumb-menu li:not(:last-child)::after,
    .bredcrumb-menu.style2 li:not(:last-child)::after {
        margin-left: 5px !important;
    }
}

/* ============================================
   CUSTOM GLOBAL SCROLLBAR
============================================ */
html, body, * {
    scrollbar-width: thin !important;
    scrollbar-color: #8a0ffb #090610 !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
    background-color: #090610 !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
    background: #090610 !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
    background: #8a0ffb !important;
    border-radius: 10px !important;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:hover {
    background: #b967ff !important;
}

html::-webkit-scrollbar-button,
body::-webkit-scrollbar-button,
::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* ============================================
   UNIVERSAL FAQ & CTA COL-10 FULL WIDTH STYLING
============================================ */
.fq-section .fq-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.final-cta-section .cta-wrapper,
.premium-cta-section .cta-wrapper,
.cta-section .cta-wrapper,
.results-cta-section .cta-wrapper,
.grow-seo-cta-section .cta-wrapper,
.cta-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

/* ==========================================================================
   UNIVERSAL CARD GRID LAYOUTS - CENTER INCOMPLETE LAST ROW
   ========================================================================== */
.services-cards-grid,
.digital-grid,
.scope-grid,
.process-grid,
.modern-process-grid,
.our-process-grid,
.industry-cards-grid,
.industries-grid,
.tech-grid,
.tdm-blog-importance-grid,
.tdm-blog-alt-grid,
.case-study-grid,
.service-cards-grid,
.service-process-grid,
.service-why-grid,
.ratings-grid,
.choose-grid,
.why-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 25px !important;
}

/* 3-Column Card Items (Desktop) */
.services-cards-grid > *,
.digital-grid > *,
.scope-grid > *,
.process-grid > *,
.modern-process-grid > *,
.our-process-grid > *,
.industry-cards-grid > *,
.tech-grid > *,
.tdm-blog-importance-grid > *,
.case-study-grid > *,
.service-cards-grid > *,
.service-process-grid > * {
    flex: 0 0 calc(33.333% - 17px) !important;
    max-width: calc(33.333% - 17px) !important;
    box-sizing: border-box !important;
}

/* 4-Column Card Items (Desktop) */
.industries-grid > *,
.service-why-grid > *,
.ratings-grid > *,
.choose-grid > *,
.why-grid > * {
    flex: 0 0 calc(25% - 19px) !important;
    max-width: calc(25% - 19px) !important;
    box-sizing: border-box !important;
}

/* 2-Column Card Items (Desktop) */
.tdm-blog-alt-grid > * {
    flex: 0 0 calc(50% - 13px) !important;
    max-width: calc(50% - 13px) !important;
    box-sizing: border-box !important;
}

/* 6-Column Card Items (Desktop) */
.customer-journey-col {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
    width: 16.666667% !important;
    box-sizing: border-box !important;
}

/* Tablet Breakpoint (2 Columns) */
@media (max-width: 991px) {
    .services-cards-grid > *,
    .digital-grid > *,
    .scope-grid > *,
    .process-grid > *,
    .modern-process-grid > *,
    .our-process-grid > *,
    .industry-cards-grid > *,
    .industries-grid > *,
    .tech-grid > *,
    .tdm-blog-importance-grid > *,
    .tdm-blog-alt-grid > *,
    .case-study-grid > *,
    .service-cards-grid > *,
    .service-process-grid > *,
    .service-why-grid > *,
    .ratings-grid > *,
    .choose-grid > *,
    .why-grid > * {
        flex: 0 0 calc(50% - 13px) !important;
        max-width: calc(50% - 13px) !important;
    }
    .customer-journey-col {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        width: 33.333333% !important;
    }
}

/* Mobile Breakpoint (1 Column) */
@media (max-width: 767px) {
    .services-cards-grid > *,
    .digital-grid > *,
    .scope-grid > *,
    .process-grid > *,
    .modern-process-grid > *,
    .our-process-grid > *,
    .industry-cards-grid > *,
    .industries-grid > *,
    .tech-grid > *,
    .tdm-blog-importance-grid > *,
    .tdm-blog-alt-grid > *,
    .case-study-grid > *,
    .service-cards-grid > *,
    .service-process-grid > *,
    .service-why-grid > *,
    .choose-grid > *,
    .why-grid > * {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .ratings-grid > * {
        flex: 0 0 100% !important;
        max-width: 340px !important;
        width: 100% !important;
        background: transparent !important;
        padding: 0 !important;
    }
    .customer-journey-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* ============================================
   JUSTIFIED TEXT ALIGNMENT ENHANCEMENT
============================================ */
.about p,
.about-content-block p,
.about-content-main p,
.digital-content p,
.why-choose-card p,
.difference-card p,
.trust-content p,
.value-content p,
.fq-answer-inner,
.service-feature-card p,
.case-desc,
.grow-business-desc,
.partner-box p,
.tech-security-section p,
.ui-ux-architecture-section p,
.industry-blueprints-section p,
.trichy-areas-section p,
.section-desc,
.hero-text p,
.trichy-web-hero__description {
    text-align: justify !important;
    text-justify: inter-word !important;
}

/* ============================================
   GLOBAL SCROLL & HOVER ANIMATION SUITE
============================================ */

/* 1. Global Keyframe Animations */
@keyframes universalGlowPulse {
    0% { box-shadow: 0 0 0 0 rgba(138, 15, 251, 0.45); }
    70% { box-shadow: 0 0 0 14px rgba(138, 15, 251, 0); }
    100% { box-shadow: 0 0 0 0 rgba(138, 15, 251, 0); }
}

@keyframes lightShimmerSweep {
    0% { transform: translateX(-150%); }
    50%, 100% { transform: translateX(150%); }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* 2. Interactive Card Hover Effects */
.digital-card,
.s-card,
.choose-card,
.why-choose-card,
.difference-card,
.tech-card,
.industry-card,
.process-card,
.case-study-card,
.tdm-blog-importance-card,
.tdm-benefits-card,
.premium-article-card,
.premium-widget,
.service-feature-card,
.partner-box {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.digital-card:hover,
.s-card:hover,
.choose-card:hover,
.why-choose-card:hover,
.difference-card:hover,
.tech-card:hover,
.industry-card:hover,
.process-card:hover,
.case-study-card:hover,
.tdm-blog-importance-card:hover,
.tdm-benefits-card:hover,
.service-feature-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 20px 45px rgba(138, 15, 251, 0.18) !important;
}

/* 3. Image Hover Zoom */
.digital-card img,
.s-card-img,
.case-item-img img,
.blog-card img,
.premium-featured-img img,
.strategic-image img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
    transform-origin: center top !important;
}

.digital-card:hover img,
.s-card:hover .s-card-img,
.case-item-img:hover img,
.blog-card:hover img,
.premium-featured-img:hover img {
    transform: scale(1.04) !important;
}

/* 4. Interactive Icon Micro-Rotations */
.digital-card:hover .choose-icon,
.s-card:hover .s-card-icon,
.choose-card:hover .choose-icon,
.why-choose-card:hover .why-choose-icon,
.tdm-blog-importance-card:hover .tdm-blog-importance-icon,
.scope-card:hover .scope-icon,
.tech-card:hover .tech-card-icon {
    transform: scale(1.1) rotate(6deg) !important;
    transition: transform 0.3s ease !important;
}

/* 5. Buttons Hover Polish & Elevation */
.theme-btn,
.digital-all-btn a,
.s-card-detail-btn,
.strategic-btn-primary,
.strategic-btn-secondary,
.cta-btn-primary,
.consult-btn,
.fq-more-btn {
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.theme-btn:hover,
.strategic-btn-primary:hover,
.cta-btn-primary:hover,
.consult-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 30px rgba(138, 15, 251, 0.4) !important;
}

/* 6. Universal Primary CTA Button Text & Icon (White Normal, White Background + Purple Text on Hover) */
.theme-btn:not(:hover),
.btn-primary:not(:hover),
.consult-btn:not(:hover),
.digital-view-btn:not(:hover),
.cta-btn-primary:not(:hover),
.who-btn-primary:not(:hover),
.empowering-btn-primary:not(:hover),
.trust-btn-primary:not(:hover),
.trust-btn:not(:hover),
.case-btn-primary:not(:hover),
.case-btn:not(:hover),
.def-btn-primary:not(:hover),
.matter-btn-primary:not(:hover),
.impact-btn-primary:not(:hover),
.better-decisions-btn-primary:not(:hover),
.explore-btn-primary:not(:hover),
.cta-success-btn-primary:not(:hover),
#submitBtn:not(:hover),
.discuss-growth-btn-primary:not(:hover),
.seo-services-btn-primary:not(:hover),
.grow-seo-cta-btn-primary:not(:hover),
.pricing-btn.primary:not(:hover),
.service-btn-primary:not(:hover),
.s-card-detail-btn:not(:hover),
.strategic-btn-primary:not(:hover),
.results-btn-primary:not(:hover),
.tdm-testimonial-cta-btn.primary:not(:hover),
.readmore-btn-gold:not(:hover),
.bring-business-btn-primary:not(:hover),
.fq-more-btn:not(:hover) {
    color: #ffffff !important;
}

.theme-btn:not(:hover) i, .theme-btn:not(:hover) span,
.btn-primary:not(:hover) i, .btn-primary:not(:hover) span,
.consult-btn:not(:hover) i, .consult-btn:not(:hover) span,
.digital-view-btn:not(:hover) i, .digital-view-btn:not(:hover) span,
.cta-btn-primary:not(:hover) i, .cta-btn-primary:not(:hover) span,
.who-btn-primary:not(:hover) i, .who-btn-primary:not(:hover) span,
.empowering-btn-primary:not(:hover) i, .empowering-btn-primary:not(:hover) span,
.trust-btn-primary:not(:hover) i, .trust-btn-primary:not(:hover) span,
.trust-btn:not(:hover) i, .trust-btn:not(:hover) span,
.case-btn-primary:not(:hover) i, .case-btn-primary:not(:hover) span,
.case-btn:not(:hover) i, .case-btn:not(:hover) span,
.def-btn-primary:not(:hover) i, .def-btn-primary:not(:hover) span,
.matter-btn-primary:not(:hover) i, .matter-btn-primary:not(:hover) span,
.impact-btn-primary:not(:hover) i, .impact-btn-primary:not(:hover) span,
.better-decisions-btn-primary:not(:hover) i, .better-decisions-btn-primary:not(:hover) span,
.explore-btn-primary:not(:hover) i, .explore-btn-primary:not(:hover) span,
.cta-success-btn-primary:not(:hover) i, .cta-success-btn-primary:not(:hover) span,
#submitBtn:not(:hover) i, #submitBtn:not(:hover) span,
.discuss-growth-btn-primary:not(:hover) i, .discuss-growth-btn-primary:not(:hover) span,
.seo-services-btn-primary:not(:hover) i, .seo-services-btn-primary:not(:hover) span,
.grow-seo-cta-btn-primary:not(:hover) i, .grow-seo-cta-btn-primary:not(:hover) span,
.pricing-btn.primary:not(:hover) i, .pricing-btn.primary:not(:hover) span,
.service-btn-primary:not(:hover) i, .service-btn-primary:not(:hover) span,
.s-card-detail-btn:not(:hover) i, .s-card-detail-btn:not(:hover) span,
.strategic-btn-primary:not(:hover) i, .strategic-btn-primary:not(:hover) span,
.results-btn-primary:not(:hover) i, .results-btn-primary:not(:hover) span,
.tdm-testimonial-cta-btn.primary:not(:hover) i, .tdm-testimonial-cta-btn.primary:not(:hover) span,
.readmore-btn-gold:not(:hover) i, .readmore-btn-gold:not(:hover) span,
.bring-business-btn-primary:not(:hover) i, .bring-business-btn-primary:not(:hover) span,
.fq-more-btn:not(:hover) i, .fq-more-btn:not(:hover) span,
.fq-more-btn:not(:hover) svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

/* Primary Purple Buttons Hover: White Background with Purple Text & Icons */
.theme-btn:hover,
.btn-primary:hover,
.consult-btn:hover,
.digital-view-btn:hover,
.cta-btn-primary:hover,
.who-btn-primary:hover,
.empowering-btn-primary:hover,
.trust-btn-primary:hover,
.trust-btn:hover,
.case-btn-primary:hover,
.case-btn:hover,
.def-btn-primary:hover,
.matter-btn-primary:hover,
.impact-btn-primary:hover,
.better-decisions-btn-primary:hover,
.explore-btn-primary:hover,
.cta-success-btn-primary:hover,
#submitBtn:hover,
.discuss-growth-btn-primary:hover,
.seo-services-btn-primary:hover,
.grow-seo-cta-btn-primary:hover,
.pricing-btn.primary:hover,
.service-btn-primary:hover,
.s-card-detail-btn:hover,
.strategic-btn-primary:hover,
.results-btn-primary:hover,
.tdm-testimonial-cta-btn.primary:hover,
.readmore-btn-gold:hover,
.bring-business-btn-primary:hover,
.fq-more-btn:hover {
    background: #ffffff !important;
    color: #8a0ffb !important;
    border-color: #8a0ffb !important;
    box-shadow: 0 10px 30px rgba(138, 15, 251, 0.3) !important;
}

.theme-btn:hover i, .theme-btn:hover span,
.btn-primary:hover i, .btn-primary:hover span,
.consult-btn:hover i, .consult-btn:hover span,
.digital-view-btn:hover i, .digital-view-btn:hover span,
.cta-btn-primary:hover i, .cta-btn-primary:hover span,
.who-btn-primary:hover i, .who-btn-primary:hover span,
.empowering-btn-primary:hover i, .empowering-btn-primary:hover span,
.trust-btn-primary:hover i, .trust-btn-primary:hover span,
.trust-btn:hover i, .trust-btn:hover span,
.case-btn-primary:hover i, .case-btn-primary:hover span,
.case-btn:hover i, .case-btn:hover span,
.def-btn-primary:hover i, .def-btn-primary:hover span,
.matter-btn-primary:hover i, .matter-btn-primary:hover span,
.impact-btn-primary:hover i, .impact-btn-primary:hover span,
.better-decisions-btn-primary:hover i, .better-decisions-btn-primary:hover span,
.explore-btn-primary:hover i, .explore-btn-primary:hover span,
.cta-success-btn-primary:hover i, .cta-success-btn-primary:hover span,
#submitBtn:hover i, #submitBtn:hover span,
.discuss-growth-btn-primary:hover i, .discuss-growth-btn-primary:hover span,
.seo-services-btn-primary:hover i, .seo-services-btn-primary:hover span,
.grow-seo-cta-btn-primary:hover i, .grow-seo-cta-btn-primary:hover span,
.pricing-btn.primary:hover i, .pricing-btn.primary:hover span,
.service-btn-primary:hover i, .service-btn-primary:hover span,
.s-card-detail-btn:hover i, .s-card-detail-btn:hover span,
.strategic-btn-primary:hover i, .strategic-btn-primary:hover span,
.results-btn-primary:hover i, .results-btn-primary:hover span,
.tdm-testimonial-cta-btn.primary:hover i, .tdm-testimonial-cta-btn.primary:hover span,
.readmore-btn-gold:hover i, .readmore-btn-gold:hover span,
.bring-business-btn-primary:hover i, .bring-business-btn-primary:hover span,
.fq-more-btn:hover i, .fq-more-btn:hover span,
.fq-more-btn:hover svg {
    color: #8a0ffb !important;
    stroke: #8a0ffb !important;
}

/* White Pill CTA Banner Buttons */
.premium-cta-btn-primary,
.premium-sidebar-cta-btn {
    background: #ffffff !important;
    color: #8a0ffb !important;
    border-color: #ffffff !important;
}

.premium-cta-btn-primary i,
.premium-cta-btn-primary span,
.premium-sidebar-cta-btn i,
.premium-sidebar-cta-btn span {
    color: #8a0ffb !important;
    stroke: #8a0ffb !important;
}

.premium-cta-btn-primary:hover,
.premium-sidebar-cta-btn:hover {
    background: #0b0113 !important;
    color: #ffffff !important;
    border-color: #0b0113 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

.premium-cta-btn-primary:hover i,
.premium-cta-btn-primary:hover span,
.premium-sidebar-cta-btn:hover i,
.premium-sidebar-cta-btn:hover span {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

.premium-sidebar-cta-btn-alt {
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 12px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
}

.premium-sidebar-cta-btn-alt i,
.premium-sidebar-cta-btn-alt span {
    color: #ffffff !important;
}

.premium-sidebar-cta-btn-alt:hover,
.premium-sidebar-cta-btn-alt:hover i,
.premium-sidebar-cta-btn-alt:hover span {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* 7. Scroll-Smooth Default */
html {
    scroll-behavior: smooth;
}

/* ============================================
   FLOATING LOGO WATERMARK BADGE ON IMAGES (NO OUTER BORDER)
============================================ */
.image-logo-badge {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 30 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.image-logo-badge img,
img.image-logo-badge-img {
    position: static !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45) !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Card & Image Hover Sync - Zoom Logo with Image */
.digital-card:hover .image-logo-badge img,
.digital-card:hover img.image-logo-badge-img,
.s-card:hover .image-logo-badge img,
.s-card:hover img.image-logo-badge-img,
.case-study-card:hover .image-logo-badge img,
.case-study-card:hover img.image-logo-badge-img,
.grow-business-image:hover .image-logo-badge img,
.grow-business-image:hover img.image-logo-badge-img,
.empowering-image:hover .image-logo-badge img,
.empowering-image:hover img.image-logo-badge-img,
.impact-image-wrapper:hover .image-logo-badge img,
.impact-image-wrapper:hover img.image-logo-badge-img,
.service-hero-image:hover .image-logo-badge img,
.service-hero-image:hover img.image-logo-badge-img,
.about-img-primary:hover .image-logo-badge img,
.about-img-primary:hover img.image-logo-badge-img,
.about-img-secondary:hover .image-logo-badge img,
.about-img-secondary:hover img.image-logo-badge-img,
.card-img-wrapper:hover .image-logo-badge img,
.card-img-wrapper:hover img.image-logo-badge-img {
    transform: scale(1.12) !important;
}

/* ============================================
   MOBILE VIEW: SINGLE LINE BUTTONS & HIDE PHONE NUMBER
============================================ */
@media (max-width: 576px) {
    .btn-phone-num {
        display: none !important;
    }
    
    .trust-btn,
    .cta-btn-primary,
    .theme-btn,
    .service-btn-primary,
    .strategic-btn-primary,
    .results-btn-primary,
    .grow-seo-cta-btn-primary,
    .seo-services-btn-primary,
    .who-btn-primary,
    .empowering-btn-primary,
    .trust-btn-primary,
    .case-btn-primary,
    .def-btn-primary,
    .matter-btn-primary,
    .impact-btn-primary {
        white-space: nowrap !important;
        font-size: 13px !important;
        padding: 10px 18px !important;
        max-width: 100% !important;
        justify-content: center !important;
    }
}

