* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* ============================================
   RUDDHAM CONSULTING - GUDFIN THEME CLONE
   Pixel-Perfect Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-dark: #0f1729;
    --primary-navy: #1a2332;
    --accent-yellow: #f4b942;
    --accent-orange: #e8a020;
    --text-dark: #0f1729;
    --text-body: #5a6275;
    --text-light: #8b919e;
    --bg-white: #ffffff;
    --bg-light: #f7f8fa;
    --bg-cream: #faf9f7;
    --border-light: #e8eaef;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 64px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 44px;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
}

p {
    margin-bottom: 0;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-body);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 50%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #e5a830;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 185, 66, 0.35);
}

.btn-dark {
    background: var(--primary-dark);
    color: var(--bg-white);
}

.btn-dark:hover {
    background: #1a2d4a;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: var(--bg-white);
}

.btn-link {
    padding: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.btn-link:hover {
    color: var(--accent-yellow);
}

.btn-link i {
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 32px;
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
}

.top-bar-left a i {
    color: var(--accent-yellow);
}

.top-bar-left a:hover {
    color: #fff;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.social-links a:hover {
    color: var(--accent-yellow);
}

/* ============================================
   HEADER
   ============================================ */
/*.header {
    background: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}*/

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 20px;
    color: var(--text-dark);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu>li>a:hover {
    color: var(--accent-yellow);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--bg-white);
    min-width: 260px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    padding: 10px 0;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--accent-yellow);
    
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark) !important;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: transparent;
    color: var(--accent-yellow);
    padding-left: 35px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 24px;
    border-right: 1px solid var(--border-light);
}

.header-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(244, 185, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
}

.header-contact-text span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.header-contact-text a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION - GUDFIN STYLE
   ============================================ */
.hero {
    padding: 80px 0 100px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--accent-yellow);
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent-yellow);
    position: relative;
}

.hero-text {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--border-light);
}

.hero-stat h3 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.hero-stat p {
    font-size: 14px;
    color: var(--text-light);
}

/* Hero Image Section */
.hero-image-wrapper {
    position: relative;
    display: flex;
    gap: 20px;
}

.hero-main-image {
    width: 320px;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-secondary-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-secondary-img {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-secondary-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-float-badge .icon {
    width: 48px;
    height: 48px;
    background: var(--accent-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-float-badge h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.hero-float-badge p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   ABOUT SECTION - GUDFIN STYLE
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img:first-child {
    margin-top: 40px;
}

.about-experience {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-yellow);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    text-align: center;
}

.about-experience h3 {
    font-size: 56px;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.about-experience p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content>p {
    margin-bottom: 28px;
    font-size: 16px;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-list li i {
    color: var(--accent-yellow);
    font-size: 18px;
    margin-top: 3px;
}

.about-list li span {
    font-size: 15px;
    color: var(--text-body);
}

.about-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.about-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.about-author-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.about-author-info span {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.services-header-content {
    max-width: 500px;
}

.services-header h2 {
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(244, 185, 66, 0.15) 0%, rgba(244, 185, 66, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    color: var(--accent-yellow);
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-link:hover {
    color: var(--accent-yellow);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    margin-bottom: 20px;
}

.why-content>p {
    margin-bottom: 36px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-feature {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-feature:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.why-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-feature-icon i {
    font-size: 22px;
    color: var(--text-dark);
}

.why-feature h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.why-feature p {
    font-size: 14px;
}

.why-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 240px;
}

.why-img:first-child {
    margin-top: 40px;
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   BRAND SECTION (GUDFIN TEXT)
   ============================================ */
.brand-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2a3a 0%, #0f1729 100%);
    position: relative;
    overflow: hidden;
}

.brand-section::before {
    content: 'Ruddham Consulting';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 200px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

.brand-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.brand-images {
    display: flex;
    gap: 20px;
}

.brand-img {
    flex: 1;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.brand-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-content h2 {
    color: var(--bg-white);
    font-size: 48px;
    margin-bottom: 20px;
}

.brand-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 480px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-card:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.testimonials-header-content {
    max-width: 500px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-yellow);
    font-size: 16px;
}

.testimonial-card p {
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-body);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--accent-yellow);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq-section .container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-content h2 {
    margin-bottom: 20px;
}

.faq-content p {
    margin-bottom: 28px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about .logo-text {
    color: var(--bg-white);
    font-size: 28px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer h4 {
    font-size: 18px;
    color: var(--bg-white);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    gap: 16px;
}

.footer-contact-item i {
    color: var(--accent-yellow);
    font-size: 18px;
    margin-top: 4px;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--accent-yellow);
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    padding: 100px 0 70px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2d4a 100%);
    text-align: center;
}

.page-banner h1 {
    font-size: 52px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--accent-yellow);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 38px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }

    .nav-menu.active>li {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .header-contact {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        justify-content: center;
        margin-top: 40px;
    }

    .about-section .container {
        grid-template-columns: 1fr;
    }

    .about-experience {
        right: 20px;
    }

    .why-section .container {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr 1fr;
    }

    .brand-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-content {
        order: 1;
    }

    .brand-images {
        order: 2;
        justify-content: center;
    }

    .faq-section .container {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 8px;
    }

    .hero-image-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .hero-main-image {
        width: 100%;
        max-width: 320px;
        height: 360px;
    }

    .hero-secondary-images {
        flex-direction: row;
    }

    .hero-secondary-img {
        width: 150px;
        height: 150px;
    }

    .hero-float-badge {
        display: none;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-img:first-child {
        margin-top: 0;
    }

    .about-experience {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    .why-images {
        grid-template-columns: 1fr;
    }

    .why-img:first-child {
        margin-top: 0;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-section .container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content p {
        margin: 0 auto 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ============================================
   NEW HERO & HEADER FOR PIXEL-PERFECT MATCH
   ============================================ */

:root {
    --hero-title-size: 110px;
}

/* Fullscreen Hero Structure */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-fullscreen .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin-top: 60px;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: var(--hero-title-size);
    line-height: 0.95;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

/* White Pill Button */
.btn-white-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: var(--text-dark);
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 10px 10px 10px 28px;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.icon-circle {
    width: 36px;
    height: 36px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.btn-white-pill:hover .icon-circle {
    transform: translateX(3px);
}

/* Slider Indicators */
.hero-indicators {
    position: absolute;
    bottom: 60px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
}

@media (min-width: 1280px) {
    .hero-indicators {
        left: calc((100vw - 1280px) / 2 + 24px);
    }
}

.hero-indicators span.active {
    color: #ffffff;
}

.indicator-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.indicator-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: #ffffff;
}

/* Feature Box */
.hero-feature-box {
    position: absolute;
    bottom: 60px;
    right: 24px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

@media (min-width: 1280px) {
    .hero-feature-box {
        right: calc((100vw - 1280px) / 2 + 24px);
    }
}

.hero-feature-box img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.feature-box-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 220px;
    text-align: right;
    margin-bottom: 10px;
}

/* Transparent Header */
/* Floating Header Bar */
.header-transparent {
    position: absolute;
    top: 40px;
    /* Floating from top */
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding: 0;
    border: none;
}

/* The actual bar - Glassmorphism Style */
.floating-header-bar {
    background: rgba(0, 0, 0, 0.95);
    /* Deep black for visibility */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    /* Subtle glass border */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Highlight top */
    border-radius: 8px;
    padding: 8px 12px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    max-width: none;
    margin: 0 auto;
    height: 68px;
    /* Slightly taller for glass feel */
}

/* Adjust container to allow centering the bar */
.header-transparent .container {
    max-width: 1400px;
    padding: 0 15px;
}

.floating-header-bar:hover {
    background: rgba(0, 0, 0, 1);
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0;
    /* Gap handled by divider padding */
}

.header-transparent .logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    line-height: normal;
}

.header-transparent .logo-icon {
    background: transparent;
    color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    /* Rounded Square */
    font-size: 16px;
    margin-right: 12px;
}

.header-contact-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    /* Vertical Divider */
    height: 36px;
}

.text-gold {
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.contact-icon-circle {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    color: var(--accent-yellow);
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(244, 185, 66, 0.3);
    /* Subtle circle around icon */
    border-radius: 50%;
}

.phone-number {
    color: #ffffff;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Right Side Grouping */
.header-right-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Navigation */
.nav-center .nav-menu {
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Active State for Home */
.nav-menu li a.active {
    color: var(--accent-yellow) !important;
}

.nav-menu li a:hover {
    color: var(--accent-yellow) !important;
}

/* Hide Dropdown Arrows to match image pixel-perfect */
.nav-menu li a i {
    display: none;
}

/* Right Section Actions */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
}

.search-btn {
    background: transparent;
    color: #fff;
    font-size: 16px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0.9;
}

/* Get In Touch Button strict match */
.btn-primary-gradient {
    background: var(--accent-yellow);
    /* Solid Golden Yellow */
    color: #ffffff;
    font-weight: 700;
    padding: 4px 6px 4px 20px;
    /* Left text padding, right circle spacing */
    border-radius: 4px;
    /* Small rounded corners for button */
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    transition: all 0.3s;
    height: 48px;
    /* Match bar height minus padding approx */
    box-shadow: none;
}

.btn-primary-gradient:hover {
    background: #e5a830;
    transform: none;
}

.btn-arrow-circle {
    width: 36px;
    height: 36px;
    background: #ffffff;
    color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s;
}

.btn-primary-gradient:hover .btn-arrow-circle {
    transform: none;
}

/* Fix dropdown text color override */
.dropdown-menu li a {
    color: var(--primary-dark) !important;
    /* Keep dropdown items dark */
}

/* Responsive */
@media (max-width: 1200px) {
    :root {
        --hero-title-size: 80px;
    }

    .header-contact-mini {
        display: none;
    }

    .header-transparent {
        top: 0;
        padding: 0;
    }

    .floating-header-bar {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 992px) {

    .nav-center,
    .header-right {
        display: none;
    }

    .menu-toggle {
        display: flex;
        color: white !important;
    }

    .floating-header-bar {
        justify-content: space-between;
        padding: 15px 20px;
    }

    .hero-fullscreen {
        min-height: 600px;
    }

    .hero-feature-box {
        display: none;
    }
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
    background: #ffffff;
    padding: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.features-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-body);
    font-size: 15px;
}

.feature-item i {
    color: var(--accent-yellow);
    font-size: 20px;
    border: 1px solid var(--accent-yellow);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   WELCOME SECTION (NEW)
   ============================================ */
.welcome-section {
    padding: 100px 0;
    background: #ffffff;
}

.welcome-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.welcome-img-col img {
    width: 100%;
    height: 400px;
    /* Tall images */
    object-fit: cover;
    border-radius: 8px;
}

.mt-30 {
    margin-top: 40px;
    /* Offset effect */
}

.welcome-floating-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    text-align: center;
}

.badge-avatars {
    display: flex;
    justify-content: center;
}

.badge-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.badge-avatars img:first-child {
    margin-left: 0;
}

.add-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: -10px;
}

.welcome-floating-badge span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Welcome Content */
.subtitle-tag {
    display: inline-block;
    background: #f0f2f5;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.welcome-title {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.welcome-desc {
    color: var(--text-body);
    margin-bottom: 40px;
    line-height: 1.6;
}

.welcome-bottom-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.welcome-stat-box {
    text-align: left;
}

.big-stat-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 5px;
}

.big-stat-number .plus {
    color: var(--accent-yellow);
    font-size: 40px;
    vertical-align: super;
}

.welcome-stat-box p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.welcome-info-box {
    border-left: 1px solid var(--border-light);
    padding-left: 40px;
}

.small-desc {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-dark-solid {
    background: var(--primary-dark);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dark-solid:hover {
    background: #0f1729!important;
    color: #fff;
}

/* ============================================
   STICKY HEADER
   ============================================ */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-sticky .floating-header-bar {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 15px 0;
    border-radius: 0;
}

.header-sticky .header-transparent .logo-text {
    color: #ffffff;
}

.header-sticky .nav-menu li a {
    color: #ffffff;
}

.header-sticky .nav-menu li a:hover,
.header-sticky .nav-menu li a.active {
    color: var(--accent-yellow);
}

.header-sticky .phone-number {
    color: #ffffff;
}

.header-sticky .header-contact-mini {
    border-left-color: rgba(255, 255, 255, 0.1);
}

.header-sticky .header-contact-mini span {
    color: rgba(255, 255, 255, 0.7);
}

/* "Book a call" */
.header-sticky .contact-icon-circle {
    color: var(--accent-yellow);
}

.header-sticky .search-btn {
    color: #ffffff;
}

.header-sticky .menu-toggle i {
    color: #ffffff !important;
}

/* Mobile Adjusts for New Sections */
@media (max-width: 992px) {
    .features-bar .container {
        justify-content: center;
        gap: 15px;
    }

    .welcome-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-bottom-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .welcome-info-box {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-light);
        padding-top: 20px;
    }
}

/* ============================================
   WHY CHOOSE US (New Grid Section)
   ============================================ */
.why-choose-section {
    padding: 100px 0;
    background: #f8f9fc;
    /* Light grey-blue bg */
    position: relative;
    overflow: hidden;
}

.why-choose-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.why-choose-image {
    flex: 0 0 35%;
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.why-choose-content {
    flex: 1;
}

.why-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* ============================================
   WHY CHOOSE HOVER CARDS (Image -> Text on hover)
   ============================================ */
.choose-hover-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.choose-hover-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    background: #fff;
    transform: translateZ(0);
}

.choose-hover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.choose-hover-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 14, 20, 0.0) 10%,
            rgba(10, 14, 20, 0.35) 55%,
            rgba(10, 14, 20, 0.82) 100%);
    opacity: 0.9;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.choose-hover-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff;
    transform: translateY(18px);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.choose-hover-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    margin-bottom: 14px;
}

.choose-hover-icon i {
    color: #fff;
    font-size: 18px;
}

.choose-hover-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
}

.choose-hover-overlay p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.choose-hover-card:hover img,
.choose-hover-card:focus-within img {
    transform: scale(1.08);
}

.choose-hover-card:hover::after,
.choose-hover-card:focus-within::after {
    opacity: 1;
}

.choose-hover-card:hover .choose-hover-overlay,
.choose-hover-card:focus-within .choose-hover-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile: show the text by default (no hover) */
@media (max-width: 992px) {
    .choose-hover-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 45px;
    }

    .choose-hover-overlay {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-icon-box {
    padding: 20px 0;
}

.s-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.s-icon i {
    text-shadow: 2px 2px 0px rgba(244, 185, 66, 0.4);
    /* Gold shadow outline effect */
    position: relative;
}

.s-icon i::after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 15px;
    height: 15px;
    background: var(--accent-yellow);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.service-icon-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-icon-box p {
    font-size: 13px;
    line-height: 1.6;
    color: #e8a020;
}

/* Dark CTA Card */
.service-cta-card {
    background: #1a2332;
    /* Dark Navy */
    padding: 30px;
    border-radius: 6px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-cta-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 24px;
    line-height: 1.4;
}

.btn-white-small {
    background: #fff;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 4px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-white-small:hover {
    background: var(--accent-yellow);
    color: #fff;
}

.card-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .why-choose-wrapper {
        flex-direction: column;
    }

    .why-choose-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .services-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   STATS & INFO SECTION
   ============================================ */
.stats-info-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.stats-bg-shape {
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 160, 32, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.stats-info-section .container {
    position: relative;
    z-index: 1;
}

.section-header-left {
    margin-bottom: 60px;
}

.section-title-large {
    font-size: 48px;
    margin-top: 15px;
    line-height: 1.2;
    color: var(--text-dark);
}

.stats-content-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.stats-chart-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.chart-img-placeholder {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.stats-text-col {
    flex: 1;
}

.stats-desc {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 30px;
    line-height: 1.8;
}

.custom-check-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.custom-check-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
}

/* ============================================
   MIXED GALLERY SECTION
   ============================================ */
.mixed-gallery-section {
    padding-bottom: 100px;
    background: #fff;
}

.mixed-grid-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    height: 400px;
    /* Fixed height row */
}

/* Wide Card (Image left, Content right) */
.mixed-card-wide {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.card-wide-image {
    width: 50%;
    height: 100%;
}

.card-wide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-wide-content {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.card-icon-box {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-orange);
    font-size: 20px;
    box-shadow: var(--shadow-sm);
}

.mixed-card-wide h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

/* Tall Cards */
.mixed-card-tall {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-lg);
}

.mixed-card-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mixed-card-tall:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .stats-content-row {
        flex-direction: column;
        gap: 40px;
    }

    .mixed-grid-row {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }

    .mixed-card-wide {
        flex-direction: column;
        height: auto;
    }

    .card-wide-image,
    .card-wide-content {
        width: 100%;
    }

    .card-wide-image {
        height: 250px;
    }

    .mixed-card-tall {
        height: 300px;
    }
}

/* ============================================
   CUSTOM CSS CHART
   ============================================ */
.custom-chart-box {
    width: 100%;
    max-width: 400px;
    font-family: var(--font-body);
}

.chart-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    background: #e1e4e8;
    /* Light grey box from image */
    display: inline-block;
}

.chart-container {
    display: flex;
    gap: 15px;
    height: 250px;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
    color: var(--text-light);
    font-size: 11px;
    padding-bottom: 25px;
    /* Alignment with bars bottom */
}

.bars-area {
    flex: 1;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding-bottom: 0;
}

.grid-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-light);
    z-index: 0;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    width: 40px;
}

.bar {
    width: 100%;
    background: transparent;
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
}

.bar-fill {
    width: 100%;
    height: 100%;
    background: #1a2332;
    /* Dark bar color */
    border-radius: 2px 2px 0 0;
}

.x-label {
    position: absolute;
    bottom: -25px;
    font-size: 11px;
    color: var(--text-body);
    font-weight: 500;
    white-space: nowrap;
}

/* Adjust stats bg shape to look more like watermark */
.stats-bg-shape {
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0) 60%);
}

/* ============================================
   PROCESS SECTION (Dark)
   ============================================ */
.process-section {
    background: var(--primary-dark);
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 30px;
}

.process-header-left h2 {
    color: #fff;
    font-size: 48px;
    margin-top: 20px;
}

.process-header-right {
    max-width: 500px;
}

.process-header-right p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.badge-gold {
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    display: inline-block;
}

.process-content-row {
    display: flex;
    gap: 60px;
}

.process-steps-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 20px;
    /* Slight offset */
}

.process-step {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.step-num {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-heading);
    min-width: 40px;
}

.step-info h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.step-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Active Highlight */
.process-step.active .step-num {
    color: var(--accent-yellow);
}

.process-step.active .step-info h4 {
    color: var(--accent-yellow);
}

/* Vertical Line */
.step-line {
    position: absolute;
    left: 40px;
    display: none;
}

.process-img-col {
    flex: 1;
}

.process-feature-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0.9;
}

/* Decor Box (Square Pattern) */
.process-decor-box {
    position: absolute;
    bottom: 50px;
    /* Bottom left */
    left: 50px;
    width: 200px;
    height: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    z-index: 0;
    opacity: 0.1;
}

.process-decor-box span {
    background: #fff;
    display: block;
}

.process-decor-box span:nth-child(1) {
    background: transparent;
}

/* Top Left Empty */
.process-decor-box span:nth-child(2) {
    background: #fff;
}

/* Top Right */
.process-decor-box span:nth-child(3) {
    background: #fff;
}

/* Bottom Left */
.process-decor-box span:nth-child(4) {
    background: #fff;
    opacity: 0.5;
}

/* Bottom Right */

/* Responsive process */
@media (max-width: 992px) {
    .process-content-row {
        flex-direction: column-reverse;
    }

    .process-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-decor-box {
        display: none;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-transparent .logo-text {
    color: #ffffff;
    font-size: 20px;
}

.header-transparent .logo-icon {
    background: transparent;
    color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.header-transparent .logo-icon i {
    color: var(--accent-yellow);
    font-size: 16px;
}

.header-contact-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 30px;
}

.header-contact-mini span:first-child {
    color: var(--accent-yellow);
    font-weight: 600;
}

.contact-icon-circle {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.phone-number {
    color: #fff;
    font-weight: 500;
}

.nav-center .nav-menu {
    gap: 30px;
}

.nav-center .nav-menu li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 600;
}

.nav-center .nav-menu li a:hover,
.nav-center .nav-menu li a.active {
    color: var(--accent-yellow);
}

.search-btn {
    background: transparent;
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
}

.btn-primary-gradient {
    background: linear-gradient(90deg, #f4b942 0%, #e8a020 100%);
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-gradient i {
    background: #fff;
    color: var(--accent-orange);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

@media (max-width: 1200px) {
    :root {
        --hero-title-size: 80px;
    }

    .header-contact-mini {
        display: none;
    }
}

@media (max-width: 992px) {

    .nav-center,
    .header-right {
        display: none;
    }

    .menu-toggle {
        display: flex;
        color: white !important;
    }

    .header-inner {
        justify-content: space-between;
    }

    :root {
        --hero-title-size: 60px;
    }

    .hero-fullscreen {
        min-height: 600px;
    }

    .hero-feature-box {
        display: none;
    }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    background: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.team-bg-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.team-bg-line svg {
    width: 100%;
    height: 100%;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 30px;
}

.badge-grey {
    background: #f4f6f8;
    color: var(--text-light);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    display: inline-block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    height: 320px;
    flex-shrink: 0;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    text-align: center;
    width: 100%;
}

.team-info h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.team-card:hover .team-info h3 {
    color: var(--accent-orange);
}

.team-info span {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.8px;
    display: block;
}

.team-cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    grid-column: 1 / -1;
}

.btn-box-dark {
    background: var(--text-dark);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-box-dark:hover {
    background: var(--accent-orange);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-img {
        height: 300px;
    }
    
    .team-card {
        padding: 24px;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
    background: #f8fafc;
    /* Very light grey/blue */
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-header .section-title {
    margin-top: 15px;
}

.testimonial-content-row {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Highlight Card (Gold) */
.testimonial-highlight-card {
    background: var(--accent-yellow);
    width: 320px;
    flex-shrink: 0;
    /* Fixed width */
    padding: 40px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-dark);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.testimonial-highlight-card .label-small {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.score-display {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.score-display span {
    font-size: 24px;
    font-weight: 600;
    color: rgba(15, 23, 41, 0.6);
}

.testimonial-highlight-card p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.testimonial-highlight-card a {
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 700;
}

/* Slider Container */
.testimonial-slider-container {
    flex: 1;
    min-width: 0;
    /* Crucial for Swiper in Flex */
    position: relative;
    padding-bottom: 60px;
    /* Space for buttons */
}

/* Testimonial Card */
.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.stars-gold {
    color: var(--accent-yellow);
    font-size: 14px;
    display: flex;
    gap: 3px;
}

.quote-icon {
    font-size: 24px;
    color: #cbd5e1;
    /* Light grey quote */
}

.testi-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 25px;
}

.testi-user h5 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.testi-user span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
}

/* Navigation Buttons */
.testi-nav-btns {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.testi-prev,
.testi-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    transition: all 0.3s ease;
}

.team-card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.testi-prev:hover,
.testi-next:hover {
    background: var(--accent-yellow);
    /* Hover yellow? */
    color: var(--text-dark);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .testimonial-content-row {
        flex-direction: column;
    }

}

/* ============================================
   FOOTER SECTION
   ============================================ */
.main-footer {
    background: #0f1729;
    /* Dark Navy - matching theme */
    color: #fff;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    line-height: 0.8;
}

/* Background Arrow Shape (Abstract) */
.main-footer::before {
    content: '';
    position: absolute;
    bottom: 100px;
    left: 50px;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 12H19M19 12L12 5M19 12L12 19" stroke="%23ffffff" stroke-width="2" stroke-opacity="0.05"/></svg>') no-repeat center;
    background-size: contain;
    transform: rotate(-45deg) scale(5);
    opacity: 0.5;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

.text-gold-small {
    color: var(--accent-yellow);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
}

.footer-heading-big {
    font-size: 64px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-sub-cols {
    display: flex;
    gap: 30px;
}

/* Footer Grid Layout */
.footer-top .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-cta-col {
    flex: 0 0 22%;
    max-width: 22%;
}

.footer-links-col {
    flex: 0 0 auto;
}

.col-lg-2 {
    flex: 0 0 12%;
    max-width: 12%;
}

.col-lg-3 {
    flex: 0 0 18%;
    max-width: 18%;
}

.footer-newsletter-col {
    flex: 0 0 24%;
    max-width: 24%;
}

/* Newsletter */
.newsletter-form {
    position: relative;
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 50px 15px 20px;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: var(--accent-yellow);
    border: none;
    border-radius: 4px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #fff;
}

.privacy-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 60px 0;
}

/* Middle Contact Strip */
.footer-contact-strip {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 60px;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: var(--accent-yellow);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-value {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

/* Bottom Bar */
.footer-bottom {
    background: #0b1120;
    /* Slightly darker */
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-around;
    /* Center items with logo in middle background? */
    /* Ref shows: Left Copyright, Right Socials. Watermark "Gudfin" is center BG */
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #fff;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-socials a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

@media (max-width: 992px) {
    .footer-top .row>div {
        margin-bottom: 40px;
    }

    .footer-heading-big {
        font-size: 48px;
    }

    .footer-contact-strip {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ============================================
   TEAM MEMBER PROFILE PAGES
   ============================================ */
.team-member-hero {
    padding: 180px 0 100px;
    background: #0f1729;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.team-member-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 41, 0.8), rgba(15, 23, 41, 0.9)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.team-member-hero-content h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .current {
    color: #fff;
}

.team-member-profile {
    padding: 100px 0;
    background: #fff;
}

.profile-grid {
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-content h2 {
    font-size: 32px;
    color: #0f1729;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.profile-bio p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.profile-contact {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.profile-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-contact .contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(244, 180, 0, 0.1);
    color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.profile-contact .contact-item span {
    font-size: 16px;
    font-weight: 500;
    color: #0f1729;
}

.profile-social {
    margin-bottom: 40px;
}

.profile-social a {
    width: 45px;
    height: 45px;
    background: #0f1729;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.profile-social a:hover {
    background: var(--accent-yellow);
    color: #0f1729;
    transform: translateY(-3px);
}

.other-team-members {
    padding: 100px 0;
    background: #f8f9fa;
}

.other-team-members h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    color: #0f1729;
    font-family: var(--font-heading);
}

.team-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card-link {
    text-decoration: none;
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-photo {
        max-width: 470px;
        margin: 0 auto 40px;
    }

    .team-grid-small {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS & VISUAL EFFECTS
   ============================================ */

/* 1. Reveal Animations (Intersection Observer) */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger delays for grid items */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* 2. Floating Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: float 8s ease-in-out infinite;
}

/* 3. Pulse / Glow Effects */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 185, 66, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(244, 185, 66, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 185, 66, 0);
    }
}

.pulse-gold {
    animation: pulse-gold 2s infinite;
}

/* 4. Enhanced Hover Effects */
.hover-skew:hover {
    transform: translateY(-8px) skewX(-2deg);
}

.hover-glow:hover {
    box-shadow: 0 20px 40px rgba(244, 185, 66, 0.2);
}

/* 5. Parallax Backgrounds (Simplified) */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 6. Text Gradient Animation */
@keyframes gradient-text {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.text-gradient-animated {
    background: linear-gradient(-45deg, #f4b942, #fff, #f4b942, #fff);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 5s ease infinite;
}

/* Section Header Animations */
.section-header-row .header-left span {
    display: inline-block;
    animation: slideInDown 0.6s both;
}

.section-title {
    overflow: hidden;
}

/* Line reveal effect */
.reveal-text {
    position: relative;
    display: block;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-yellow);
    transform: translateX(-101%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-text.visible::after {
    transform: translateX(101%);
}

.reveal-text span {
    opacity: 0;
    transition: opacity 0s 0.3s;
}

/* ============================================
   MODERN TESTIMONIAL & LOGO BAR (Ref 2)
   ============================================ */
.testimonial-modern-section {
    padding: 100px 0 160px;
    background: #f4f7f9;
    position: relative;
    overflow: hidden;
}

.testimonial-modern-map {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 70%;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.testimonial-modern-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testi-modern-img-col {
    position: relative;
}

.testi-modern-img-col img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.1);
    transform-origin: bottom;
}

.testi-modern-content-col {
    padding-left: 40px;
}

.modern-testi-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid #e1e9ed;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #8b919e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.testi-modern-content-col h2 {
    font-size: 52px;
    font-weight: 800;
    color: #0f1729;
    line-height: 1.1;
    margin-bottom: 40px;
}

.modern-quote-box {
    position: relative;
    margin-bottom: 50px;
}

.modern-quote-text {
    font-size: 22px;
    line-height: 1.6;
    color: #5a6275;
    font-weight: 500;
    max-width: 90%;
}

.modern-quote-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 84px;
    color: #f4b942;
    opacity: 0.4;
}

.modern-testi-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
    border-top: 1px solid #ddecfa;
}

.modern-testi-client {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modern-client-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.modern-client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-client-details h4 {
    font-size: 20px;
    margin-bottom: 4px;
    color: #0f1729;
}

.modern-stars {
    color: #f4b942;
    font-size: 12px;
    margin-bottom: 4px;
}

.modern-client-label {
    font-size: 11px;
    font-weight: 700;
    color: #8b919e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-testi-arrows {
    display: flex;
    gap: 15px;
}

.modern-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e1e9ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #5a6275;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-arrow:hover {
    background: #0f1729;
    color: #fff;
    border-color: #0f1729;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(15, 23, 41, 0.1);
}

/* ============================================
   TESTIMONIAL (Ref layout: satisfaction + slider)
   ============================================ */
.testimonial-modern-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 55px;
}

.testimonial-modern-header .modern-testi-badge {
    margin-bottom: 18px;
}

.testimonial-modern-header h2 {
    font-size: 56px;
    font-weight: 900;
    color: #0f1729;
    line-height: 1.05;
    margin: 0;
}

.testimonial-modern-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.modern-satisfaction-card {
    background: #f4b942;
    color: #0f1729;
    border-radius: 10px;
    padding: 34px 34px 30px;
    box-shadow: 0 22px 55px rgba(15, 23, 41, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 420px;
}

.modern-satisfaction-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.modern-satisfaction-score {
    margin-top: 40px;
    margin-bottom: 22px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.modern-satisfaction-score .score-number {
    font-size: 74px;
    font-weight: 900;
    line-height: 1;
}

.modern-satisfaction-score .score-out-of {
    font-size: 18px;
    font-weight: 800;
    opacity: 0.85;
}

.modern-satisfaction-card p {
    font-size: 18px;
    line-height: 1.55;
    margin: 0;
    max-width: 260px;
}

.modern-testi-rail {
    position: relative;
}

.modern-testi-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
    scroll-behavior: auto;
    scrollbar-width: none;
}

.modern-testi-viewport::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.modern-testi-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(340px, 1fr);
    gap: 22px;
    align-items: stretch;
    padding: 0 6px;
    width: max-content;
}

.modern-testi-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 41, 0.06);
    border-radius: 10px;
    padding: 28px 28px 24px;
    min-height: 220px;
    box-shadow: 0 10px 30px rgba(15, 23, 41, 0.06);
    position: relative;
}

.modern-testi-stars {
    color: #f4b942;
    font-size: 12px;
    margin-bottom: 16px;
}

.modern-testi-quote {
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 20px;
    color: rgba(15, 23, 41, 0.35);
}

.modern-testi-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6275;
    margin: 0 0 28px;
    font-style: italic;
}

.modern-testi-person h4 {
    font-size: 18px;
    color: #0f1729;
    margin: 0 0 4px;
    font-weight: 800;
}

.modern-testi-person span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #8b919e;
    text-transform: uppercase;
}

.modern-testi-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 22px;
}

/* Floating Logo Bar Modern */
.modern-floating-bar-container {
    max-width: 1280px;
    margin: -75px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.floating-inner-card {
    background: #fff;
    padding: 40px 60px;
    border-radius: 100px;
    box-shadow: 0 30px 60px rgba(15, 23, 41, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.floating-bar-text {
    font-size: 15px;
    font-weight: 700;
    color: #0f1729;
    max-width: 200px;
    line-height: 1.4;
}

.floating-bar-logos {
    display: flex;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    flex: 1;
    margin-left: 60px;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 70px;
    animation: logo-marquee 30s linear infinite;
    white-space: nowrap;
}

@keyframes logo-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-text-modern {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #1a2332;
    letter-spacing: -1px;
    opacity: 0.8;
}

.logo-text-modern span {
    color: #f4b942;
}


@media (max-width: 992px) {
    .testimonial-modern-header h2 {
        font-size: 40px;
    }

    .testimonial-modern-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .modern-satisfaction-card {
        min-height: auto;
        max-width: 520px;
        margin: 0 auto;
    }

    .modern-testi-controls {
        justify-content: center;
    }

    .testimonial-modern-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testi-modern-content-col {
        padding-left: 0;
        margin-top: 40px;
    }

    .modern-quote-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .modern-quote-icon {
        display: none;
        /* Hide on mobile to avoid overlap */
    }

    .modern-testi-footer {
        flex-direction: column;
        gap: 30px;
    }

    .floating-inner-card {
        flex-direction: column;
        border-radius: 40px;
        padding: 40px 24px;
        text-align: center;
        gap: 40px;
    }

    .floating-bar-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
}


.reveal-text.visible span {
    opacity: 1;
}

/* ============================================
   TEAM HERO MODERN (Ref 1)
   ============================================ */
.team-hero-modern {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(15, 23, 41, 0.7), rgba(15, 23, 41, 0.7)),
        url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.team-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 100px;
}

.team-hero-left {
    flex: 1;
}

.breadcrumb-team {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.breadcrumb-team a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb-team .sep {
    margin: 0 8px;
    opacity: 0.5;
}

.breadcrumb-team .curr {
    color: var(--accent-yellow);
}

.team-hero-left h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    color: white;
}

.team-hero-right {
    flex: 1;
    max-width: 500px;
}

.team-hero-right p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 992px) {
    .team-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .team-hero-left h1 {
        font-size: 52px;
    }
}

/* ============================================
   TEAM MEMBER DETAIL MODERN
   ============================================ */
.member-detail-hero {
    padding: 180px 0 120px;
    background: linear-gradient(rgba(15, 23, 41, 0.75), rgba(15, 23, 41, 0.75)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.member-detail-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
}

.member-detail-hero-left {
    flex: 1;
}

.breadcrumb-detail {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.breadcrumb-detail a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb-detail .sep {
    margin: 0 10px;
    opacity: 0.5;
}

.breadcrumb-detail .layer {
    opacity: 0.7;
}

.member-detail-hero-left h1 {
    font-size: 72px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.member-detail-hero-right {
    flex: 1;
    max-width: 500px;
}

.member-detail-hero-right p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Profile Section */
.member-main-content {
    padding: 100px 0;
    background: #fff;
}

.member-profile-grid {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 60px;
}

.member-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
}

.member-photo-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    height: 480px;
}

.member-photo-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.member-social-bar {
    background: #fff;
    padding: 24px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(15, 23, 41, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: -35px;
    position: relative;
    z-index: 2;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.member-social-bar span {
    font-weight: 700;
    color: #0f1729;
    font-size: 14px;
}

.member-social-bar a {
    width: 32px;
    height: 32px;
    background: #f4f7f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #5a6275;
    transition: all 0.3s;
    text-decoration: none;
}

.member-social-bar a:hover {
    background: #0f1729;
    color: #fff;
    transform: translateY(-3px);
}

/* Info Column */
.member-info-col span.role-label {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-yellow);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.member-info-col h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f1729;
    margin-bottom: 25px;
}

.member-bio-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6275;
    margin-bottom: 40px;
}

.member-contact-dark-box {
    background: #0f1729;
    padding: 40px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.member-contact-dark-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom-left-radius: 100%;
}

.m-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.m-contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.m-contact-info h5 {
    color: #8b919e;
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 600;
}

.m-contact-info p {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

/* Skills Section */
.skills-section-modern {
    margin-top: 60px;
}

.skills-section-modern h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.skills-progress-row {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.skill-circle-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.circle-progress {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-yellow) var(--percent), #f0f4f7 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-progress::before {
    content: '';
    position: absolute;
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
}

.circle-progress span {
    position: relative;
    font-weight: 800;
    font-size: 16px;
    color: #0f1729;
}

.skill-label {
    font-size: 14px;
    font-weight: 700;
    color: #0f1729;
    line-height: 1.3;
}

/* Achievements & Experience */
.achievements-section {
    margin-top: 80px;
}

.achievement-list-modern {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.achievement-list-modern li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #5a6275;
}

.achievement-list-modern li i {
    color: var(--accent-yellow);
}

.experience-cards-row {
    display: flex;
    gap: 30px;
}

.experience-card-small {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border: 1px solid #f0f4f7;
    border-radius: 12px;
    transition: all 0.3s;
}

.experience-card-small:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.exp-icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.exp-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.exp-info span {
    font-size: 13px;
    color: #8b919e;
    font-weight: 600;
}

/* Help Form Section */
.member-help-section {
    padding: 100px 0;
    background: #f4f7f9;
}

.help-grid {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 60px;
    align-items: start;
}

.help-form-card {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.help-form-card h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.help-form-card p {
    color: #8b919e;
    margin-bottom: 40px;
    font-size: 14px;
}

.m-help-form .row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.m-help-form .form-group {
    margin-bottom: 20px;
}

.m-help-form input,
.m-help-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e1e9ed;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
}

.m-help-form input:focus,
.m-help-form textarea:focus {
    border-color: var(--accent-yellow);
    outline: none;
}

.m-help-form label {
    display: block;
    margin-top: 25px;
    font-size: 14px;
    color: #5a6275;
    cursor: pointer;
}

.m-help-form button {
    margin-top: 30px;
    padding: 18px 40px;
}

@media (max-width: 992px) {

    .member-profile-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .member-photo-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .member-detail-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .member-detail-hero-left h1 {
        font-size: 48px;
    }

    .member-contact-dark-box {
        grid-template-columns: 1fr;
    }

    .skills-progress-row {
        flex-direction: column;
        gap: 30px;
    }

    .experience-cards-row {
        flex-direction: column;
    }

    .help-form-card {
        padding: 40px 20px;
    }
}

/* Other Team Members Refinement */
.other-team-members-detail {
    padding: 80px 0 120px;
    background: #fff;
    border-top: 1px solid #f0f4f7;
}

.other-team-members-detail h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.team-grid-small-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.small-modern-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f4f7f9;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
}

.small-modern-card:hover {
    background: #0f1729;
    transform: translateY(-5px);
}

.small-modern-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.small-modern-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-modern-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f1729;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.small-modern-info span {
    font-size: 11px;
    font-weight: 700;
    color: #8b919e;
    text-transform: uppercase;
    transition: color 0.3s;
}

.small-modern-card:hover h4,
.small-modern-card:hover span {
    color: #fff;
}

/* ============================================
   FAQ PAGE STYLES (Ref Images 1 & 2)
   ============================================ */
.faq-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e1e9ed;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 700;
    color: #0f1729;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.q-label {
    color: var(--accent-orange);
    margin-right: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fdfdfd;
}

.faq-answer p {
    padding-bottom: 30px;
    color: #5a6275;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.08);
}

.faq-item.active .faq-answer,
.faq-item-full.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question {
    color: var(--accent-orange);
}

.faq-item .toggle-icon {
    font-size: 14px;
    color: #8b919e;
    transition: all 0.3s;
}

.faq-item.active .toggle-icon {
    color: var(--accent-orange);
    transform: rotate(180deg);
}

/* Full Width FAQ */
.faq-item-full {
    background: #fff;
    border: 1px solid #e1e9ed;
    border-radius: 100px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-full .faq-question {
    padding: 18px 40px;
    border-radius: 100px;
}

.faq-item-full .faq-answer {
    padding: 0 40px;
}

.faq-item-full.active {
    border-radius: 20px;
    border-color: var(--accent-orange);
}

.faq-item-full.active .faq-question {
    padding-bottom: 10px;
}

.faq-item-full.active .faq-answer {
    padding-bottom: 20px;
}

/* Header Text Styles */
.tag-modern {
    display: inline-block;
    padding: 6px 15px;
    background: #f0f4f7;
    color: #0f1729;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-modern {
    font-size: 48px;
    font-weight: 800;
    color: #0f1729;
    margin-bottom: 20px;
}

.desc-modern {
    max-width: 700px;
    margin: 0 auto;
    color: #5a6275;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .faq-grid-2 {
        grid-template-columns: 1fr;
    }

    .title-modern {
        font-size: 36px;
    }

    .faq-item-full {
        border-radius: 15px;
    }

    .faq-item-full .faq-question {
        border-radius: 15px;
    }
}

/* ============================================
   ELEMENT PAGE STYLES (Ref Images 0-4)
   ============================================ */

/* Title Style */
.element-title-main {
    font-size: 36px;
    font-weight: 800;
    color: #0f1729;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.element-title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
}

/* Icon Heading Grid 4 */
.icon-heading-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.icon-heading-item {
    padding: 30px 0;
}

.ih-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.icon-heading-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.icon-heading-item p {
    color: #8b919e;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Card Style (Icon Heading Style Row 2) */
.ih-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.ihc-icon.yellow {
    width: 60px;
    height: 60px;
    background: #f5a623;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ihc-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ihc-info p {
    font-size: 13px;
    color: #8b919e;
    margin: 0;
}

/* Facts In Digits Style */
.facts-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.fact-item-circle {
    text-align: center;
}

.fact-circle-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact-circle-wrap svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.fact-num {
    font-size: 24px;
    font-weight: 800;
    color: #0f1729;
}

.fact-item-circle p {
    font-size: 15px;
    font-weight: 700;
    color: #5a6275;
    line-height: 1.4;
}

/* Progress Bar & Accordion Section Layout */
.element-section .container .row {
    display: flex;
    align-items: center;
    /* Vertical alignment centered */
    gap: 80px;
    /* Generous white space between columns */
}

.element-section .col-lg-6 {
    flex: 1;
    /* Two equal-width columns */
    width: 50%;
}

@media (max-width: 992px) {
    .element-section .container .row {
        flex-direction: column;
        gap: 50px;
    }

    .element-section .col-lg-6 {
        width: 100%;
    }
}

.progress-bar-group {
    padding-right: 60px;
    /* Generous spacing */
}

.progress-item {
    margin-bottom: 40px;
    /* Equal vertical spacing */
}

.p-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.p-label span:first-child {
    font-size: 13px;
    font-weight: 500;
    /* Medium weight modern font */
    color: #0f1729;
    /* Dark readable text */
    text-transform: capitalize;
}

.p-label span:last-child {
    font-size: 11px;
    font-weight: 600;
    color: #5a6275;
}

.p-track {
    height: 6px;
    /* Thin and flat */
    background: #f0f4f7;
    /* Very light grey */
    border-radius: 10px;
    /* Subtle rounded edges */
    overflow: hidden;
}

.p-fill {
    height: 100%;
    background: #f5a623;
    /* Accent yellow for visibility */
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accordion Element Style */
.element-section .faq-col-full {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Vertical stacking */
}

.element-section .faq-item {
    border: 1px solid #e1e9ed;
    /* Light grey border */
    border-radius: 8px;
    /* Soft rounded corners */
    background: #fff;
    /* White background */
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.element-section .faq-question {
    padding: 18px 30px;
    /* Comfortable inner padding */
    font-size: 15px;
    font-weight: 700;
    color: #0f1729;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.element-section .q-label {
    color: #f5a623;
    /* Accent yellow */
    margin-right: 12px;
    font-weight: 800;
}

.element-section .toggle-icon {
    width: 26px;
    /* Matched to reference size */
    height: 26px;
    border: 1px solid #e1e9ed;
    /* Circular outline */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #0f1729;
    transition: all 0.3s ease;
}

.element-section .faq-item.active {
    border-color: #f5a623;
}

.element-section .faq-answer {
    padding: 0 30px;
    background: transparent;
}

.element-section .faq-item.active .faq-answer {
    padding-bottom: 25px;
}

/* Blog Grid Modern */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bc-img {
    height: 250px;
    position: relative;
}

.bc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5a623;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

.bc-content {
    padding: 30px;
}

.bc-meta {
    font-size: 12px;
    font-weight: 700;
    color: #8b919e;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bc-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.bc-content h3 a {
    color: #0f1729;
    text-decoration: none;
    transition: color 0.3s;
}

.bc-content h3 a:hover {
    color: var(--accent-orange);
}

/* Service Grid Modern */
.service-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card-modern {
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 41, 0.9));
}

.service-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scm-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.scm-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scm-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.scm-arrow {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.scm-arrow:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .service-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .icon-heading-grid-4,
    .facts-grid-4,
    .blog-grid-modern {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .icon-heading-grid-4,
    .facts-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Blog Grid Modern */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bc-img {
    height: 250px;
    position: relative;
}

.bc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5a623;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

.bc-content {
    padding: 30px;
}

.bc-meta {
    font-size: 12px;
    font-weight: 700;
    color: #8b919e;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bc-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.bc-content h3 a {
    color: #0f1729;
    text-decoration: none;
    transition: color 0.3s;
}

.bc-content h3 a:hover {
    color: var(--accent-orange);
}

/* Service Grid Modern */
.service-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card-modern {
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 41, 0.9));
}

.service-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scm-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.scm-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scm-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.scm-arrow {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.scm-arrow:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .service-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .icon-heading-grid-4,
    .facts-grid-4,
    .blog-grid-modern {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .icon-heading-grid-4,
    .facts-grid-4,
    .blog-grid-modern,
    .service-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Grid Modern */
.portfolio-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card-modern {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
}

.portfolio-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card-modern:hover img {
    transform: scale(1.1);
}

.pcm-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(15, 23, 41, 0.6);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-card-modern:hover .pcm-content {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-card-modern:first-child .pcm-content {
    opacity: 1;
    transform: translateY(0);
}

.pcm-tag {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #f5a623;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pcm-content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.pcm-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pcm-arrow:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* Team Grid Modern Style */
.team-grid-modern-style {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card-modern-style {
    position: relative;
    padding-bottom: 40px;
}

.tcms-img {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.tcms-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tcms-share {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0f1729;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 5;
    border: none;
    cursor: pointer;
}

.tcms-share:hover,
.tcms-share.active {
    background: #0f1729;
    color: #fff;
}

.tcms-social {
    position: absolute;
    top: 75px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 4;
}

.team-card-modern-style:hover .tcms-social {
    opacity: 1;
    transform: translateY(0);
}

.tcms-social a {
    width: 40px;
    height: 40px;
    background: #0f1729;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
}

.tcms-social a:hover {
    background: #f5a623;
}

.tcms-info {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transform: translateY(0);
    transition: all 0.3s;
}

.tcms-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tcms-info span {
    font-size: 11px;
    font-weight: 700;
    color: #8b919e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Grid Modern */
.pricing-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card-modern {
    background: #eff3f6;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s;
    position: relative;
}

.pricing-card-modern.featured {
    background: #0f1729;
    color: #fff;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card-modern.featured h4,
.pricing-card-modern.featured .pcm-price .amount,
.pricing-card-modern.featured .pcm-price .currency {
    color: #fff;
}

.pricing-card-modern h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

.popular-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #f5a623;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

.pcm-price {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.pcm-price .currency {
    font-size: 30px;
    font-weight: 800;
    color: #f5a623;
}

.pcm-price .amount {
    font-size: 60px;
    font-weight: 800;
    color: #0f1729;
    margin: 0 5px;
}

.pcm-price .per {
    font-size: 14px;
    font-weight: 600;
    color: #8b919e;
}

.pricing-card-modern p {
    font-size: 14px;
    color: #5a6275;
    margin-bottom: 30px;
}

.pricing-card-modern.featured p {
    color: #8b919e;
}

.btn-purchase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f1729;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 40px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-purchase i {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    color: #0f1729;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-purchase.white {
    background: #fff;
    color: #0f1729;
}

.btn-purchase.white i {
    background: #0f1729;
    color: #fff;
}

.pcm-features {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pcm-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #5a6275;
}

.pricing-card-modern.featured .pcm-features li {
    color: #fff;
}

.pcm-features li i {
    color: #f5a623;
    font-size: 14px;
}

@media (max-width: 992px) {

    .portfolio-grid-modern,
    .team-grid-modern-style,
    .pricing-grid-modern {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card-modern.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {

    .portfolio-grid-modern,
    .team-grid-modern-style,
    .pricing-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Blog Slider Pagination */
.blogSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #0f1729;
    opacity: 0.2;
}

.blogSwiper .swiper-pagination-bullet-active {
    background: #f5a623;
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.blogSwiper .blog-card-modern {
    height: auto;
    margin-bottom: 20px;
}

/* Portfolio Slider Pagination */
.portfolioSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #0f1729;
    opacity: 0.2;
}

.portfolioSwiper .swiper-pagination-bullet-active {
    background: #f5a623;
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   HISTORY PAGE STYLES
   ============================================ */

/* History Hero */
.history-hero {
    height: 60vh;
    min-height: 450px;
    background: linear-gradient(rgba(15, 23, 41, 0.8), rgba(15, 23, 41, 0.8)), url('https://images.unsplash.com/photo-1554469384-e58fac16e23a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.history-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.history-hero-left h1 {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 20px;
}

.history-hero-right {
    max-width: 450px;
    padding-bottom: 20px;
}

.history-hero-right p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Shape Future Section */
.shape-future-section {
    padding: 100px 0;
}

.shape-future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sf-image-wrapper {
    position: relative;
}

.sf-main-img {
    width: 100%;
    border-radius: 12px;
}

.sf-floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    max-width: 220px;
    text-align: center;
    border: 1px solid rgba(15, 23, 41, 0.05);
}

.sf-floating-icon {
    width: 60px;
    height: 60px;
    background: #f8fbff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sf-floating-icon i {
    font-size: 28px;
    color: #f5a623;
    margin: 0;
}

.sf-floating-card p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #0f1729;
    margin-bottom: 20px;
}

.btn-read-more {
    background: #f5a623;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #0f1729;
    transform: translateY(-2px);
}

.sf-content-col .tag {
    background: #eef2f6;
    color: #8b919e;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
}

.sf-content-col h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.sf-content-col p {
    color: #5a6275;
    margin-bottom: 40px;
}

.sf-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.sf-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sf-stat-circle {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-stat-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.sf-stat-circle .fact-num {
    font-size: 14px;
    font-weight: 800;
    color: #0f1729;
    z-index: 1;
}

.sf-suffix {
    font-size: 11px;
    font-weight: 800;
    color: #0f1729;
    z-index: 1;
}

.sf-stat-text {
    font-size: 14px;
    font-weight: 600;
    color: #5a6275;
    line-height: 1.4;
}

.sf-call-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sf-call-icon {
    width: 60px;
    height: 60px;
    background: #0f1729;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sf-call-info span {
    display: block;
    font-size: 13px;
    color: #8b919e;
}

.sf-call-info h4 {
    font-size: 20px;
    font-weight: 700;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: #0f1729;
    color: #fff;
    overflow: hidden;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-header h2 {
    font-size: 45px;
    font-weight: 800;
    margin-top: 15px;
}

.timeline-section .container {
    max-width: 1800px;
}

.timeline-track {
    position: relative;
    padding: 60px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    position: relative;
    z-index: 2;
}

.timeline-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 600px;
    /* Reduced height from 700px */
    justify-content: center;
}

.timeline-slot {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.timeline-slot.top {
    justify-content: flex-end;
    padding-bottom: 30px;
    /* Reduced from 40px */
}

.timeline-slot.bottom {
    justify-content: flex-start;
    padding-top: 30px;
    /* Reduced from 40px */
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 10;
    margin: -5px 0;
}

.timeline-v-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item-text {
    width: 100%;
    text-align: center;
}

.timeline-item-text .timeline-date {
    color: #f5a623;
    font-weight: 800;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.timeline-item-text h3 {
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 15px;
}

.timeline-item-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

.timeline-item-img {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    /* Round corners as requested */
    overflow: hidden;
    position: relative;
}

.timeline-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .sf-image-wrapper {
        margin-bottom: 60px;
    }

    .shape-future-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
        padding-left: 30px;
    }

    .timeline-line {
        width: 1px;
        height: 100%;
        left: 0;
        top: 0;
    }
}

/* New Service Section*/

.lux-services {
  background: linear-gradient(#ffffff);
  padding: 120px 0;
  color: white;
}

.lux-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
}

.lux-tag {
  color: #f5a623;
  font-weight: 700;
  letter-spacing: 3px;
}

.lux-header h2 {
  font-size: 48px;
  margin: 15px 0;
  background: linear-gradient(#000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.lux-header p {
  color: black;
}

.lux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.lux-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(10deg) translateY(60px);
  opacity: 0;
  transition: 1s cubic-bezier(.2,.8,.2,1);
}

.lux-card.active {
  transform: perspective(1000px) rotateX(0) translateY(0);
  opacity: 1;
}

.lux-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,.95), rgba(2,6,23,.3));
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateZ(60px);
}

.lux-overlay h3 {
  font-size: 24px;
  color: #f5a623;
}

.lux-overlay p {
  color: #e5e7eb;
  margin-top: 10px;
}

.lux-card:hover {
  transform: perspective(1000px) rotateX(-6deg) rotateY(6deg) scale(1.05);
}

@media(max-width: 992px){
  .lux-grid { grid-template-columns: 1fr; }
}

.lux-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lux-link:active .lux-card {
    transform: scale(0.97);
}

/* outsourcing */
.outsourcing-hero {
    background: linear-gradient(135deg, #020617, #020617);
    color: white;
    padding: 100px 0;
}

.outsourcing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.outsourcing-hero-text h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #f5a623, #ffd27d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.outsourcing-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,.4);
}

.outsourcing-details {
    padding: 100px 0;
    background: #f8fafc;
}

.outsourcing-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.outsourcing-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    transition: .4s;
}

.outsourcing-card:hover {
    transform: translateY(-10px);
}

.outsourcing-card h3 {
    color: #f5a623;
    margin-bottom: 20px;
}

.outsourcing-why {
    background: #020617;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
}

@media(max-width: 992px){
    .outsourcing-hero-grid,
    .outsourcing-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}




* { margin:0; padding:0; box-sizing:border-box; font-family: "Segoe UI", sans-serif; }

.hero-slider {
    width:100%;
    height:100vh;
    overflow:hidden;
    position:relative;
}

.slides {
    width:100%;
    height:100%;
    position:relative;
}

.slide {
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s ease-in-out;
}

.slide.active {
    opacity:1;
    z-index:2;
}

.overlay {
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.content {
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    color:white;
    max-width:600px;
    z-index:10;
}

.content h1 {
    font-size:72px;
    font-weight:700;
    line-height:1;
    margin-bottom:20px;
}

.content p {
    font-size:18px;
    margin-bottom:30px;
    opacity:0.9;
}

.btn {
    background:#f7b500;
    color:black;
    padding:14px 32px;
    text-decoration:none;
    font-weight:600;
    border-radius:40px;
    transition:0.3s;
}

.btn:hover {
    background:white;
}

/* Slider Navigation */
.nav {
    position:absolute;
    bottom:40px;
    left:8%;
    display:flex;
    gap:15px;
    z-index:20;
}

.nav span {
    width:12px;
    height:12px;
    background:white;
    border-radius:50%;
    cursor:pointer;
    opacity:0.5;
}

.nav span:hover {
    opacity:1;
}



.hero-slider {
    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slide {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active {
    opacity:1;
    z-index:1;
}

.overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.content {
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    color:white;
    max-width:600px;
}

.content h1 {
    font-size:70px;
    line-height:1;
    margin-bottom:20px;
    color: white;
}

.content p {
    font-size:18px;
    margin-bottom:30px;
}

.btn {
    background:#f7b500;
    color:#000;
    padding:14px 32px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.nav {
    position:absolute;
    bottom:40px;
    left:8%;
    display:flex;
    gap:14px;
    z-index:10;
}

.nav span {
    width:12px;
    height:12px;
    background:white;
    border-radius:50%;
    opacity:0.5;
    cursor:pointer;
}

.nav span.active {
    opacity:1;
}*/

/*industries*/
.crypto-section {
  background: #ffffff;
  padding: 80px 0;
}

.crypto-section .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 50px;
}

.crypto-block {
  margin-bottom: 50px;
}

.crypto-block h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.crypto-block h4 {
  font-size: 18px;
  color: #f4b400;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #334155;
  line-height: 1.6;
}

.service-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #f4b400;
  font-size: 10px;
  top: 8px;
}

.note {
  margin-top: 20px;
  padding-left: 15px;
  border-left: 4px solid #f4b400;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px; /* sits nicely next to back-to-top */
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}


.calendly-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: #0f172a; /* Ruddham dark */
    color: #f59e0b;      /* Ruddham gold */
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.calendly-float:hover {
    background: #f59e0b;
    color: #0f172a;
    transform: scale(1.1);
}


.global-reach-section {
    padding: 120px 0;
    background: #ffffff;
}

.global-wrapper.two-column {
    max-width: 1200px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 200px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE COLUMN */
.reach-image-col {
    position: relative;
    max-width: 520px;
}

.reach-img-main {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.reach-img-sub {
    position: absolute;
    width: 280px;
    bottom: -40px;
    right: -40px;
    border-radius: 20px;
    border: 6px solid white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

/* TEXT COLUMN */
.reach-text-col {
    max-width: 520px;
}

.reach-text-col .tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5a623;
    margin-bottom: 20px;
}

.reach-text-col h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #020617;
}

.reach-text-col p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 36px;
}

/* MOBILE */
@media (max-width: 900px) {
    .global-wrapper.two-column {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reach-image-col {
        margin: auto;
    }

    .reach-img-sub {
        right: 0;
        left: 0;
        margin: auto;
    }
}


.how-we-work.clean {
    padding: 20px 0;
    background: #f8fafc;
}

.how-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* Header */
.how-header .tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5a623;
    margin-bottom: 14px;
    display: inline-block;
}

.how-header h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #020617;
    margin-bottom: 20px;
}

.how-header p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

/* Steps */
.how-steps-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 80px;
    text-align: left;
}

.step {
    position: relative;
    padding-left: 50px;
}

.step span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 26px;
    font-weight: 700;
    color: #f5a623;
}

.step h4 {
    font-size: 20px;
    color: #020617;
    margin-bottom: 8px;
}

.step p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Transparency box */
.how-note {
    margin-top: 80px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-left: 5px solid #f5a623;
    text-align: left;
}

.how-note strong {
    font-size: 18px;
    color: #020617;
}

.how-note p {
    margin-top: 10px;
    color: #475569;
}

/* Mobile */
@media (max-width: 800px) {
    .how-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-header h2 {
        font-size: 36px;
    }
}


/*floating logo*/

.modern-floating-bar-container {
    padding: 40px 20px;
}

.floating-inner-card {
    background: #fff;
    border-radius: 70px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

.floating-bar-text {
    font-size: 28px;
    font-weight: 600;
    white-space: nowrap;
}

.floating-bar-logos {
    overflow: hidden;
    flex: 1;
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 25s linear infinite;
}

.logo-marquee-track img {
    height: 70px;
    width: auto;
    object-fit: contain;
   
    opacity: 0.85;
    transition: 0.3s ease;
}

.logo-marquee-track img:hover {
 
    opacity: 1;
}

/* Animation */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .floating-inner-card {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
    }
}

/* ==============================
   FORCE FOOTER CENTER ON MOBILE
   ============================== */
@media (max-width: 768px) {

    /* Reset bootstrap column behavior */
    .footer-top .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-top .row > div {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 auto 28px auto !important;
        text-align: center !important;
    }

    /* CTA */
    .footer-cta-col span,
    .footer-cta-col h2 {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .footer-heading-big {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    /* Links */
    .footer-links {
        padding-left: 0 !important;
        margin: 0 auto !important;
        list-style: none !important;
    }

    .footer-links li {
        text-align: center !important;
    }

    .footer-links a {
        display: inline-block !important;
        text-align: center !important;
    }

    /* Newsletter */
    .newsletter-form {
        display: flex !important;
        justify-content: center !important;
    }

    .newsletter-form input {
        max-width: 100% !important;
        text-align: center !important;
    }

    /* Social icons */
    .footer-socials {
        display: flex !important;
        justify-content: center !important;
    }

    /* Contact strip */
    .footer-contact-strip {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
}

/*new testimonial*/

/* ===== Testimonial Responsive Fix ===== */
.testimonial-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-image {
    order: 1;
  }

  .testimonial-content {
    order: 2;
  }

  .testimonial-content h2 {
    font-size: 30px !important;
    line-height: 1.3;
  }

  #quoteBox {
    padding: 24px !important;
  }

  #quoteText {
    font-size: 16px !important;
    line-height: 1.6;
  }

  .testimonial-arrows {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonial-content h2 {
    font-size: 26px !important;
  }

  #quoteText {
    font-size: 15px !important;
  }
}

/*Hero Slider top*/

.hero-slider {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* CONTENT */
.content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.content h1 {
    font-size: 70px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background: #f7b500;
    color: #000;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* DOT NAV */
.nav {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    gap: 14px;
    z-index: 10;
}

.nav span {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.nav span.active {
    opacity: 1;
}

/* ===============================
   MOBILE RESPONSIVE FIX
================================ */

@media (max-width: 768px) {
    .content {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
        text-align: center;
    }

    .content h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .content p {
        font-size: 16px;
    }

    .nav {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 30px;
    }

    .content p {
        font-size: 15px;
    }

    .btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}

/*Main Header*/

/* ===============================
   MOBILE HEADER FIX
================================ */

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle i {
    font-size: 24px;
    color: #fff;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #020617;
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    gap: 22px;
    transition: right 0.35s ease;
    z-index: 1001;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile View */
@media (max-width: 768px) {
    .header-right-group {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* Prevent overlays blocking clicks */
.overlay {
    pointer-events: none;
}


.header-transparent {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-transparent.sticky {
  background: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}


.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1002;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* ===============================
   TEAM SECTION – RESPONSIVE FIX
================================ */

.team-grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.team-member-card {
  width: 100%;
}

/* Image container */
.team-member-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info box */
.member-info-box {
  text-align: center;
  padding: 16px;
}

.member-info-box h3 {
  font-size: 18px;
}

.member-info-box span {
  font-size: 12px;
  line-height: 1.4;
  display: block;
  margin-top: 6px;
}

/* ===============================
   TABLET
================================ */
@media (max-width: 1024px) {
  .team-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .team-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .about-team h2 {
    font-size: 28px;
  }

  .team-member-img {
    aspect-ratio: 4 / 5;
  }

  .member-info-box h3 {
    font-size: 17px;
  }

  .member-info-box span {
    font-size: 12px;
  }

  /* Remove unused absolute element on mobile */
  .team-desc {
    display: none;
  }
}

/* ===============================
   CONTACT PAGE – RESPONSIVE FIX
================================ */

/* CONTACT CARDS */
@media (max-width: 768px) {
  .contact-cards-section .row {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .contact-card-gudfin {
    padding: 24px;
    text-align: center;
  }
}

/* SPLIT SECTION (FORM + IMAGE) */
@media (max-width: 768px) {
  .contact-split-section .form-gudfin-wrapper > div {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .contact-left-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .contact-right-form h2 {
    font-size: 26px;
  }
}

/* FORM */
@media (max-width: 768px) {
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-gudfin textarea,
  .form-gudfin input {
    width: 100%;
  }
}

/* MAP */
@media (max-width: 768px) {
  .map-grayscale-full {
    height: 300px;
  }
}

/* HERO */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 32px;
    text-align: center;
  }

  .contact-breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===============================
   GLOBAL MOBILE OVERFLOW FIX
================================ */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


/* ===============================
   CONTACT PAGE – FULL RESPONSIVE FIX
================================ */

/* SAFETY: Prevent any horizontal overflow */
.contact-cards-section,
.contact-split-section,
.contact-hero,
.form-gudfin-wrapper {
  max-width: 100%;
  overflow-x: hidden;
}

/* -------------------------------
   CONTACT CARDS
-------------------------------- */
@media (max-width: 768px) {
  .contact-cards-section .row {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 100%;
  }

  .contact-card-gudfin {
    padding: 24px;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* -------------------------------
   SPLIT SECTION (IMAGE + FORM)
-------------------------------- */
@media (max-width: 768px) {
  .contact-split-section .form-gudfin-wrapper > div {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    max-width: 100%;
  }

  .contact-left-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
  }

  .contact-right-form h2 {
    font-size: 26px;
  }
}

/* -------------------------------
   FORM FIXES
-------------------------------- */
@media (max-width: 768px) {
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-gudfin textarea,
  .form-gudfin input,
  .btn-send-msg {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* -------------------------------
   HERO SECTION
-------------------------------- */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 32px;
    text-align: center;
  }

  .contact-breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* -------------------------------
   GOOGLE MAP FIX (VERY IMPORTANT)
-------------------------------- */
.map-grayscale-full {
  width: 100%;
  max-width: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-grayscale-full {
    height: 300px;
  }
}

/* -------------------------------
   BUTTONS & LINKS SAFETY
-------------------------------- */
.read-more-link,
.btn-send-msg {
  max-width: 100%;
  white-space: normal;
}



/* =========================================
   ABOUT – GLOBAL REACH (DESKTOP EXACT)
========================================= */

.global-wrapper.two-column {
  max-width: 1200px;
  margin-left: 200px;
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.reach-image-col {
  position: relative;
}

.reach-img-main {
  width: 100%;
  border-radius: 24px;
}

.reach-img-sub {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 65%;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.reach-text-col h2 {
  font-size: 42px;
  line-height: 1.2;
}

.reach-text-col p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}



/* =========================================
   ABOUT – RESPONSIVE (NO DESKTOP CHANGE)
========================================= */

@media (max-width: 900px) {
  .global-wrapper.two-column {
    grid-template-columns: 1fr;
    margin-left: 0;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }

  .reach-image-col {
    order: 1;
  }

  .reach-text-col {
    order: 2;
  }

  .reach-img-sub {
    position: relative;
    bottom: auto;
    right: auto;
    width: 80%;
    margin: 20px auto 0;
  }

  .reach-text-col h2 {
    font-size: 30px;
  }

  .reach-text-col p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .global-wrapper.two-column {
    padding: 0 16px;
    gap: 30px;
  }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #b08d57;
    margin-bottom: 12px;
}

.views {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   FLOATING HEADER BASE
================================ */

.header-transparent {
    position: fixed;
    top: 20px; /* 20px gap initially */
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
}

/* Inner floating bar */
.header-transparent .header-inner {
    background: #000;
    border-radius: 12px;
    padding: 15px 30px;
    margin: 0 20px; /* Side spacing */
    transition: all 0.4s ease;
}

/* ===============================
   SCROLLED STATE
================================ */

.header-transparent.scrolled {
    top: 0; /* Remove gap */
}

/* When scrolled → full width bar */
.header-transparent.scrolled .header-inner {
    border-radius: 0;
    margin: 0; /* Remove side gap */
}


/* =========================
   FLOATING HEADER DEFAULT
========================= */

#mainHeader {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s ease;
}

/* Floating bar look */
#mainHeader .header-inner {
    background: #000;
    margin: 0 20px;
    border-radius: 14px;
    transition: all 0.4s ease;
}

/* =========================
   STICKY MODE ON SCROLL
========================= */

#mainHeader.scrolled {
    position: fixed;
    top: 0;
}

#mainHeader.scrolled .header-inner {
    margin: 0;
    border-radius: 0;
    width: 100%;
}


.header-transparent {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-transparent .floating-header-bar {
    margin: 0 20px;
    border-radius: 12px;
    background: #000;
    backdrop-filter: blur(10px);
}

.header-transparent.scrolled .floating-header-bar {
    margin: 0;
    border-radius: 0;
    top: 0;
}

/* Base floating header */
.header-transparent {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    transition: top 0.4s ease;
}

/* Important: override container inside header */
.header-transparent .container {
    max-width: 100%;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}

/* The inner bar starts with side margins (floating look) */
.floating-header-bar,
.header-inner {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    margin: 0 24px;               /* ← creates the floating side gaps */
    padding: 12px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
}

/* When scrolled → full bleed, no side margin, no rounding */
.header-transparent.scrolled .floating-header-bar,
.header-transparent.scrolled .header-inner {
    margin: 0;
    border-radius: 0;
    background: #000;             /* solid black when pinned */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 14px 32px;
}

/* Optional: slightly reduce top gap when scrolled */
.header-transparent.scrolled {
    top: 0;
}




/* ==========================================
   WHY CHOOSE SECTION
========================================== */

.why-choose-section {
    padding: 100px 0;
    background: #f9fafc;
}

.why-choose-section .container {
    max-width: 1400px;   /* Wider container */
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* ==========================================
   LEFT IMAGE
========================================== */

.why-choose-image {
    flex: 1;
}

.why-choose-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* ==========================================
   RIGHT CONTENT
========================================== */

.why-choose-content {
    flex: 1.4;  /* Give more space to content */
}

.subtitle-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #7a8599;
    background: #eef1f6;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.why-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111827;
}

/* ==========================================
   SERVICES GRID (4 PER ROW)
========================================== */

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ==========================================
   SERVICE ITEM
========================================== */

.service-item-mini {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s ease;
}

.service-item-mini:hover {
    transform: translateY(-5px);
}

.service-icon-box {
    font-size: 22px;
    min-width: 45px;
}

.service-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.service-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablet */
@media (max-width: 1200px) {
    .why-choose-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-title {
        font-size: 28px;
    }

    .services-grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
  Menu on tablet
========================================== */

.nav-menu {
    display: flex;
}

/* Hide desktop menu only below 991px */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }
}



.menu-toggle {
    display: none;
}

/* Show hamburger on tablet + mobile */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
}


/* Fix services dropdown overflow */
.nav-menu li {
    position: relative;
}

.nav-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    
    max-height: 80vh;      /* Prevent overflow */
    overflow-y: auto;      /* Add scroll if too long */
    
    width: 300px;          /* Adjust if needed */
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


