@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-main: #f8fafc;
    --bg-surface: rgba(255, 255, 255, 0.8);
    --bg-surface-solid: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.14);

    /* Brand Colors (Validated WCAG AA Contrast) */
    --primary: #FA0707;
    --primary-glow: rgba(250, 7, 7, 0.1);
    --secondary: #a855f7;
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.1);

    /* Text Colors (Ensuring high contrast) */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;

    --font-sans: 'Poppins';
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.common-py {
    padding: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography & Layout Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Focus States (Accessibility Best Practice) */
/* a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
} */

/* Skip Link (a11y) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 101;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Screen Reader Only Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 15px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 40%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-brand-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigation with Premium Animations */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
}

.header-inner {
    padding: 1.5rem 0;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

header.scrolled .header-inner {
    padding: 0.5rem 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    background-color: rgba(255, 255, 255, 0.8);
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 102;
    transition: var(--transition);
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.35rem;
    border-radius: 9999px;
    position: relative;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Nav Actions Right */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 102;
}

/* Hamburger / Menu Toggle Icon */
.menu-toggle {
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.menu-toggle:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.05);
}

.menu-toggle img {
    display: block;
    width: 24px;
    height: auto;
    will-change: transform, opacity;
    transition: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1),
        opacity 0.3s ease;
}

/* Open State for Hamburger Toggle */
.menu-toggle.active img:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active img:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active img:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Fullscreen Menu Overlay styles */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-overlay-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 9rem 15px 3rem 15px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}

/* Left Column Links */
.overlay-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overlay-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}

.menu-overlay.active .overlay-link {
    opacity: 1;
    transform: translateY(0);
}

.link-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 1.5rem;
    font-family: monospace;
    opacity: 0.6;
    margin-top: 0.5rem;
}

.link-content {
    display: flex;
    flex-direction: column;
}

.link-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    transition: var(--transition);
}

.link-desc {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 0.25rem;
    transition: var(--transition);
}

/* Hover States */
.overlay-link:hover {
    transform: translateX(8px);
}

.overlay-link:hover .link-title {
    color: var(--primary);
}

.overlay-link:hover .link-desc {
    color: var(--text-secondary);
}

/* Center Column Services */
.overlay-center {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-left: 1px solid var(--border-color);
    padding-left: 4rem;
}

.overlay-services-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.menu-overlay.active .overlay-services-title {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-pill {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    align-items: center;
}

.menu-overlay.active .service-pill {
    opacity: 1;
    transform: translateY(0);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    margin-right: 0.75rem;
    transition: var(--transition);
}

.service-pill:hover {
    background: var(--bg-surface-solid);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
}

.service-pill:hover .pill-dot {
    transform: scale(1.5);
    background-color: var(--primary);
    opacity: 0.5;
}

/* Menu Overlay Header & Close Button */
.menu-overlay-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 103;
}

.menu-close-btn {
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.menu-close-btn img {
    position: absolute;
    width: 24px;
    height: auto;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.menu-close-btn img:nth-child(1) {
    transform: rotate(45deg);
}

.menu-close-btn img:nth-child(2) {
    transform: rotate(-45deg);
}

.menu-close-btn:hover {
    border-color: var(--border-hover);
    background: rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.menu-close-btn:hover img:nth-child(1) {
    transform: rotate(135deg);
}

.menu-close-btn:hover img:nth-child(2) {
    transform: rotate(45deg);
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-pill {
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
}

.nav-actions .btn-talk-creative {
    position: relative;
    background: #FA0707;
    color: #ffffff;
    font-weight: 700;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.35rem 0.35rem 0.35rem 1.75rem;
    border: 2px solid #FA0707;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
    z-index: 1;
}

.nav-actions .btn-talk-creative span {
    position: relative;
    z-index: 3;
    color: #ffffff;
    transition: color 0.4s ease;
}

/* White Circle on the Right */
.btn-talk-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s ease;
}

/* Pseudo element that expands to fill button background on hover */
.btn-talk-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: -1;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scale(1);
    transform-origin: center;
}

.btn-talk-arrow {
    width: 16px;
    height: 16px;
    stroke-width: 2.5px;
    color: #FA0707;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.4s ease;
}

/* Hover States */
.nav-actions .btn-talk-creative:hover {
    border-color: #FA0707;
    box-shadow: 0 6px 20px rgba(250, 7, 7, 0.18);
}

.nav-actions .btn-talk-creative:hover span {
    color: #FA0707;
}

/* Expand the white circle container to cover the button */
.nav-actions .btn-talk-creative:hover .btn-talk-circle::before {
    transform: scale(8);
}

/* Rotate and morph the arrow from up-right to right */
.btn-talk-creative:hover .btn-talk-arrow {
    transform: rotate(45deg);
    color: #FA0707;
}

/* Custom Circle Cursor with Blend Mode */
html,
body,
a,
button {
    cursor: none;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #FA0707;
    border-radius: 50%;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 10000;
    will-change: transform;
}

.custom-cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999;
    border: 1.5px solid rgba(250, 7, 7, 0.4);
    background-color: transparent;
    border-radius: 50%;
    will-change: transform, width, height, border-radius;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.custom-cursor-ring.hovered {
    border-color: #FA0707;
    background-color: rgba(250, 7, 7, 0.04);
}

/* Gowth css start hero section */

.hero-section {
    font-family: var(--font-sans);
}

.growth-market-content {
    /* height: 250vh; */
    position: relative;
    background: transparent;
    font-family: var(--font-sans);
}

.growth-market-content::after {
    content: '';
    background: linear-gradient(178deg, #f8fafc, #f8fafc);
    height: 150px;
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    z-index: 99;
    filter: blur(31px);
}

/* .growth-section {
    height: 140vh;
    position: relative;
} */

/* .growth-sticky {
    position: sticky;
    top: 25vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
} */

.growth-heading {
    width: 100%;
    max-width: 1400px;
    font-size: clamp(60px, 5vw, 130px);
    line-height: 1.2;
    font-weight: 700;
}

.growth-heading .fill-line:nth-child(even) {
    padding-left: 70px;
}

.fill-line {
    display: block;
}

.fill-letter {
    display: inline-block;
    color: transparent;
    text-shadow: 0 0 0 rgba(120, 120, 120, 0.18);
    will-change: opacity;
}

.growth-card-main {
    position: relative;
    z-index: 15;
    background: #f8fafc;
    /* margin-top: -30vh;
    padding-top: 80px; */
}

.grid-growth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* align-items: center; */
    margin-top: 80px;
}

/* =====================
   LEFT
===================== */

.growth-chart .target-growth {
    width: 100%;
    height: 490px;
    max-width: 550px;
    object-fit: contain;
}

.growth-chart {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================
   QUOTE CARD
===================== */

.growth-quote-card {
    max-width: 520px;
    margin: 15px auto 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: visible;
}

.growth-quote-card::before {
    content: '“';
    position: absolute;
    top: 5px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 45, 45, 0.08);
    font-family: 'Poppins', serif;
    line-height: 1;
    pointer-events: none;
}

.growth-quote-card::after {
    content: '”';
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-size: 5rem;
    color: rgba(255, 45, 45, 0.08);
    font-family: 'Poppins', serif;
    line-height: 1;
    pointer-events: none;
}

.growth-quote-card p {
    margin: 0;
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.growth-quote-card h4 {
    font-size: 20px;
    line-height: 1;
    margin: 8px 0 20px;
    color: #091126;
    font-weight: 700;
}

.growth-quote-card h4:last-of-type {
    margin-bottom: 0;
}

.divider {
    width: 45px;
    height: 2.5px;
    background: #ff2d2d;
    display: block;
    margin: 20px auto;
}

/* =====================
   RIGHT
===================== */

.growth-content-right {
    max-width: 650px;
}

.growth-desc span {
    color: #ff2d2d;
    font-weight: 700;
}

.growth-desc {
    font-size: 18px;
    color: #666;
    line-height: 26px;
    margin-bottom: 10px;
}

.growth-steps {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0px;
}

.growth-steps span {
    color: #ff2d2d;
    font-weight: 700;
    position: relative;
}

.growth-steps span:not(:last-child)::after {
    content: "→";
    margin-left: 20px;
}

/* =====================
   FEATURES
===================== */

/* =====================
   FEATURES
===================== */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-card-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 65px;
}

.feature-card-wrapper.blue {
    --accent-color: #4a90e2;
    --bg-color: rgba(74, 144, 226, 0.15);
}

.feature-card-wrapper.orange {
    --accent-color: #ffaa00;
    --bg-color: rgba(255, 170, 0, 0.15);
}

.feature-card-wrapper.red {
    --accent-color: #ff5757;
    --bg-color: rgba(255, 87, 87, 0.15);
}

.feature-card-wrapper.green {
    --accent-color: #7bc043;
    --bg-color: rgba(123, 192, 67, 0.15);
}

.feature-connector {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    width: 65px;
    pointer-events: none;
    z-index: 3;
}

.connector-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2.5px solid var(--accent-color);
    background: #ffffff;
    box-shadow: 0 0 6px var(--accent-color);
    z-index: 2;
}

.connector-line {
    flex: 1;
    height: 1px;
    border-top: 2px dashed var(--accent-color);
    opacity: 0.5;
}

.feature-card-body {
    flex: 1;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 100px 20px 20px 100px;
    padding: 10px 40px 10px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.025);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    gap: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-wrapper:hover .feature-card-body {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.feature-icon-wrapper {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}



.growth-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.feature-text {
    z-index: 2;
}

.feature-card-body h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #091126;
}

.feature-card-body p {
    margin: 0;
    font-size: 14.5px;
    color: #64748b;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.12;
    font-family: var(--font-sans);
    margin-left: auto;
    user-select: none;
    z-index: 1;
}

.feature-accent-bar {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: var(--accent-color);
    border-radius: 0 20px 20px 0;
    z-index: 2;
}


/* footer css start */


.footer-section {
    background: #fff;
    padding: 60px 0 0px;
}

.footer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 5vw;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Left Column */
.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.footer-desc {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 340px;
}

/* Center Column */
.footer-center {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icon-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgb(228 233 241);
    border: 1px solid rgb(208, 216, 230);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(250, 7, 7, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.social-icon-link:hover {
    transform: translateY(-5px) rotate(-3deg);
    border-color: rgba(250, 7, 7, 0.3);
    box-shadow: 0 8px 20px rgba(250, 7, 7, 0.15);
}

.social-icon-link:hover::before {
    width: 80px;
    height: 80px;
}

.social-icon-link:hover .social-svg-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(250, 7, 7, 0.3));
}

.social-svg-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.social-new {
    position: relative;
}

.new-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #FA0707;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 2px 4px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    line-height: 1;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right: none;
    border-radius: 10px 0 0 10px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-input:focus {
    border-color: rgba(250, 7, 7, 0.4);
}

.newsletter-btn {
    padding: 12px 18px;
    background: #FA0707;
    color: #ffffff;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #d90606;
}

/* Right Column */
.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-contact-list li a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: #FA0707;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 3px;
    color: #FA0707;
}

.contact-icon-pin {
    margin-top: 4px;
}

/* Bottom Bar */
.footer-bottom {
    background-image: url('/assets/images/png/bgFooter.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    position: relative;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 40px 0px 20px 0px;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 2;
    width: 100%;
}

.footer-bottom-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.footer-bottom-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
}

.footer-bottom-icon {
    width: 22px;
    height: 22px;
}

.shield-icon {
    color: #ffffff;
}

.building-icon {
    color: #FA0707;
}

.footer-bottom-text p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.4;
}

.copyright-text,
.unit-text {
    color: #94a3b8;
}

.rights-text,
.company-text {
    color: #ffffff;
    font-weight: 500;
}

.text-red {
    color: #FA0707;
    font-weight: 600;
}

.footer-bottom-divider {
    width: 1px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-bottom-skyline {
    position: absolute;
    right: 5vw;
    bottom: 0;
    height: 95px;
    pointer-events: none;
    z-index: 1;
}

.footer-bottom-skyline img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.relative-footer-bg {
    position: relative;
}

.relative-footer-bg .footer-bottom-map {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 200px;
    width: 200px;
}

.footer-bottom-map img {
    width: 100%;
    height: 100%;
}

/* Scroll top css strat */

.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FA0707 0%, #d90606 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow:
        0 8px 25px rgba(250, 7, 7, 0.3),
        0 0 0 0 rgba(250, 7, 7, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
}

.scroll-top-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            #FA0707,
            transparent 40%,
            transparent 60%,
            #FA0707);
    opacity: 0.4;
    animation: rotateBorder 3s linear infinite;
    z-index: -1;
}

.scroll-top-btn::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px dashed rgba(250, 7, 7, 0.2);
    animation: rotateBorder 12s linear infinite reverse;
    pointer-events: none;
}

.scroll-top-btn:hover {
    box-shadow:
        0 12px 35px rgba(250, 7, 7, 0.5),
        0 0 0 8px rgba(250, 7, 7, 0.08);
    transform: translateY(-4px);
}

.scroll-top-btn:hover::before {
    opacity: 0.8;
}

.scroll-top-ring {
    display: none;
}

.scroll-top-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(250, 7, 7, 0.3);
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* branc services  */

/* BrandServices.css */

.brand-services-section {
    position: relative;
    z-index: 20;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
    padding: 80px 20px;
}

/* Background elements for depth */
.brand-services-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 7, 7, 0.03) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1360px;
    min-height: 650px;
    margin: 0 auto;
    position: relative;
    padding: 60px 40px;
    align-items: center;
    z-index: 10;
}

/* Central Hub containing Heading & Description */
.services-center-hub {
    grid-column: 4 / span 4;
    grid-row: 2 / span 3;
    width: 100%;
    min-height: 210px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 15;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.services-center-hub::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 40px;
    border: 1px dashed rgba(250, 7, 7, 0.12);
    pointer-events: none;
}

.center-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f172a 30%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Active Service Info inside Hub */
.active-service-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.4s ease-out forwards;
}

.active-service-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary, #FA0707);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.active-service-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    max-width: 300px;
}

/* Modern Scattered Service Grid Cards */
.service-grid-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    height: 84px;
    box-sizing: border-box;
    z-index: 12;
}

.service-grid-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.service-grid-card.active {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-grid-card:hover .card-icon-box {
    background: rgba(15, 23, 42, 0.03);
    color: #334155;
}

.service-grid-card.active .card-icon-box {
    color: #ffffff;
}

.card-info-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.card-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.service-grid-card.active .card-num {
    color: inherit;
}

.card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #334155;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.service-grid-card.active .card-title {
    color: #0f172a;
}

/* Empty Grid Placeholders in Reference Style */
.grid-placeholder {
    aspect-ratio: 1 / 1;
    background: rgb(140 199 228 / 48%);
    border: 1px solid rgba(15, 23, 42, 0.03);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.005);
    height: 84px;
    width: 84px;
    justify-self: center;
    box-sizing: border-box;
    filter: blur(2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}