* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* scroll-behavior removed for Lenis */
}

:root {
    --primary: #001A4D;
    --primary-hover: #000D26;
    --primary-light: #E6EAF5;
    --primary-rgb: 0, 26, 77;
    --primary-hover-rgb: 0, 13, 38;
    --secondary: #3B94DF;
    --secondary-hover: #2E75B2;
    --secondary-light: #EBF4FB;
    --secondary-rgb: 59, 148, 223;

    /* Light Theme Variables */
    --bg-main: #F9FAFB;
    --bg-surface: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-white: #ffffff;
    --border-color: #E5E7EB;

    --font-main: 'Inter', sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
}





/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    pointer-events: none;
}

#preloader.loaded {
    pointer-events: none;
}

/* Preloader Background Panel */
.preloader-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #1a1525;
    transition: opacity 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: 0.4s;
    /* Wait 0.4s for the text to fade out */
    pointer-events: auto;
    /* Catch clicks while active */
}

#preloader.loaded .preloader-panel {
    opacity: 0;
}

/* Text Container */
.curtain-content {
    position: relative;
    z-index: 1;
    text-align: center;
    transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}

#preloader.loaded .curtain-content {
    opacity: 0;
    transform: translateY(-40px);
    /* Text slides up as it fades out */
}

.curtain-content h1 {
    font-size: 5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    letter-spacing: -1px;
}

.type-char {
    opacity: 0;
    display: inline-block;
    transform: translateY(10px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.type-char.typed {
    opacity: 1;
    transform: translateY(0);
}

.typing-cursor {
    display: inline-block;
    color: #00e5ff;
    font-weight: 300;
    animation: blinkCursor 0.8s infinite;
    margin-left: 5px;
    vertical-align: text-bottom;
}

@keyframes blinkCursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.curtain-content .teal-text {
    color: var(--secondary);
}

#preloader.loaded {
    pointer-events: none;
}

#preloader.loaded .preloader-svg {
    pointer-events: none;
}

@media (max-width: 768px) {
    .curtain-content h1 {
        font-size: 3rem;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #0b0c10;
    /* Fallback color */
    display: flex;
    flex-direction: column;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: -5%;
    /* Give 5% breathing room on all sides for parallax */
    left: -5%;
    width: 110%;
    /* Larger than slide to allow panning */
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Solid black layer */
    z-index: 1;
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Pill border for hero section */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #1C2539;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Full width border */
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-links a {
    color: var(--text-white);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--secondary);
}

.navbar.scrolled .logo {
    color: var(--text-white);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--text-white);
}

.navbar.scrolled .nav-container {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: transparent;
    /* Remove pill border */
    border-radius: 0;
    padding: 0.5rem 2rem;
    /* Normal layout padding */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(205, 236, 75, 0.5);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.nav-links a i {
    font-size: 0.7rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.speak-text {
    font-size: 0.95rem;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.navbar.scrolled .speak-text {
    color: var(--text-white);
}

.phone-number {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.navbar.scrolled .phone-number {
    color: var(--text-white);
}

.phone-number i {
    color: var(--text-white);
    font-size: 0.8rem;
}

.navbar.scrolled .phone-number i {
    color: var(--text-white);
}

.search-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--text-white);
    border: none;
    color: #000;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn .btn-primary {
    color: #fff;
}

.search-btn:hover {
    background-color: var(--primary);
}

.input-icon {
    z-index: 1;
}

.btn {
    text-decoration: none;
    padding: 0.5rem 0.5rem 0.5rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.6rem 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn i {
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    border: none;
}

.btn-primary i {
    background-color: #fff;
    color: var(--primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-primary:hover i {
    background-color: #fff;
    color: var(--secondary);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-main);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Main Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8rem;
    /* Added to clear the fixed navbar */
    padding-bottom: 5rem;
    padding-left: 10rem;
    padding-right: 4rem;
}

.hero-text-box {
    max-width: 700px;
    text-align: left;
    margin-right: auto;
    margin-left: 0;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.15);
}

.title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000;
}

.hero-title-emoji {
    font-size: 2.5rem;
    vertical-align: middle;
}

.description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Scroll Down Indicator */
.scroll-down-wrapper {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-white);
    transition: opacity 0.3s ease;
}

.scroll-down-indicator:hover {
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 4px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--text-white);
}

.card-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .title {
        font-size: 3.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding: 0.5rem 1rem;
        border-radius: 1rem;
    }

    .contact-info,
    .search-btn {
        display: none;
    }

    .title {
        font-size: 3rem;
    }

    .floating-card {
        bottom: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
    }
}

@media (max-width: 768px) {
    .nav-container {
        width: 96%;
        margin: 0 auto;
        border-radius: 50px;
        padding: 0.8rem 1.2rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .hero-section {
        height: 100dvh;
        min-height: 100dvh;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-text-box {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title {
        font-size: 2.5rem;
    }

    .hero-title-emoji {
        font-size: 1.8rem;
    }

    .description {
        font-size: .7rem;
        text-align: justify;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .navbar.scrolled {
        padding: 0.25rem 0;

    }

    .navbar.scrolled .nav-container {
        padding: 0.6rem 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-buttons .btn {
        width: auto;
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .card-image {
        width: 100%;
        height: 150px;
    }

    .scroll-down-wrapper {
        display: flex;
        bottom: 1rem;
        transform: translateX(-50%) scale(0.75);
    }

    .services-swiper {
        padding: 0 !important;
    }

    .features-section .container {
        padding: 0 .5rem;
    }
}

@media (max-width: 576px) {
    .nav-actions {
        display: none;
    }

    .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-title-emoji {
        font-size: 1.4rem;
    }

    .description {
        font-size: 0.7rem;
        line-height: 1.5;
    }

    .subtitle {
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

/* Sidebar Menu */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: #1C2539;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.08);
    border-right: none;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    opacity: 0;
    /* start hidden */
}

.sidebar-menu.open {
    left: 0;
    opacity: 1;
    /* fade in */
}

.sidebar-menu::-webkit-scrollbar {
    display: none;
}

.sidebar-menu.open {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.close-sidebar-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-sidebar-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: rotate(90deg);
}

.sidebar-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: transparent;
}

.sidebar-nav-links a:hover,
.sidebar-nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(5px);
}

.sidebar-nav-links a i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.sidebar-nav-links a:hover i,
.sidebar-nav-links a.active i {
    color: #ffffff;
}

.sidebar-contact {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex !important;
    color: #ffffff;
}

/* Running Text Section */
.running-text-section {
    position: relative;
    background: linear-gradient(180deg, var(--primary-light) 0%, #f9fdfa 100%);
    padding: 10rem 0;
    overflow: hidden;
    color: #000;
}

.scrolling-text-bg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    white-space: nowrap;
    opacity: 0.04;
    font-size: 16rem;
    font-weight: 800;
    color: #000;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.scrolling-text-bg span {
    display: inline-block;
    will-change: transform;
}

.demos-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.demos-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.demos-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
}

.demos-decorator {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    top: 1rem;
}

.arrow-icon {
    font-size: 2.5rem;
    color: #000;
    transform: rotate(230deg);
    margin-right: 0.5rem;
}

.decorator-text {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-transform: uppercase;
}

.demos-image img {
    max-width: 350px;
    height: auto;
}

@media (max-width: 992px) {
    .demos-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .demos-content {
        flex-direction: column;
    }

    .demos-decorator {
        flex-direction: column;
        top: 0;
    }

    .arrow-icon {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

@media (max-width: 576px) {
    .demos-title {
        font-size: 2.5rem;
    }

    .scrolling-text-bg {
        font-size: 8rem;
    }

    .demos-image img {
        max-width: 250px;
    }
}

/* Generic Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-top: 1rem;
    position: relative;
    display: inline-block;
}

.decorative-arrow {
    position: absolute;
    right: -60px;
    top: 60px;
    width: 70px;
    height: auto;
    transform: rotate(0deg);
    opacity: 0.8;
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 768px) {
    .decorative-arrow {
        display: none;
    }
}

.section-title .highlight {
    color: var(--primary);
}



@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

/* Floating Emojis Base */
.floating-emoji {
    position: absolute;
    opacity: 1;
    z-index: 0;
    animation: floatEmoji 6s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

@keyframes floatEmoji {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Desktop Positions & Sizes */
.emoji-about-trophy {
    top: 8%;
    left: 3%;
    font-size: 3.5rem;
    animation-delay: 1.5s;
}

.emoji-feat-rocket {
    top: 8%;
    left: 5%;
    font-size: 3.5rem;
    animation-delay: 0.5s;
}

.emoji-feat-chart {
    bottom: 5%;
    right: 5%;
    font-size: 4rem;
    animation-delay: 1.5s;
}

.emoji-feat-gear {
    top: 45%;
    right: 2%;
    font-size: 3rem;
    animation-delay: 0.2s;
}

.emoji-test-chat {
    top: 15%;
    left: 5%;
    font-size: 3.5rem;
    animation-delay: 0.8s;
}

.emoji-test-star {
    bottom: 10%;
    right: 8%;
    font-size: 4.5rem;
    animation-delay: 1.2s;
}

/* Mobile Positions & Sizes */
@media (max-width: 768px) {
    .floating-emoji {
        font-size: 2rem !important;
        /* Scale down on mobile */
    }

    .about-emoji {
        font-size: 1.8rem !important;
    }

    .emoji-about-trophy {
        top: 2%;
        left: 5%;
    }

    .emoji-feat-rocket {
        top: 2%;
        left: 5%;
    }

    .emoji-feat-chart {
        bottom: 2%;
        right: 5%;
        top: auto;
    }

    .emoji-feat-gear {
        top: 2%;
        right: 5%;
    }

    .emoji-test-chat {
        top: 3%;
        left: 5%;
    }

    .emoji-test-star {
        bottom: 2%;
        right: 5%;
        top: auto;
    }
}

/* Features Section */
.features-section {
    background-color: #ffffff;
    position: relative;
    /* overflow: hidden removed to allow floating logo to overlap sections */
}

/* Grid Pattern Background */
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
    z-index: 1;
}

/* Floating Rotating Logo */
.features-floating-logo {
    position: absolute;
    top: -125px;
    /* Vertically centered between sections */
    left: -130px;
    /* Positioned on the left edge */
    width: 250px;
    height: auto;
    z-index: 2;
    opacity: 0.9;
    animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate360Centered {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .features-floating-logo {
        width: 150px;
        top: -110px;
        left: -75px;
    }
}

.features-container {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
}

.features-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.8rem;
    background-color: rgba(36, 71, 122, 0.08);
    /* Soft primary tint */
    color: var(--primary);
    border: 1px solid var(--primary);
    /* Subtle primary border */
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.features-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
}

.btn-outline {
    background: var(--primary);
    color: #000;
    border: 1px solid var(--primary);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(205, 236, 75, 0.3);
}

.btn-outline:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(205, 236, 75, 0.4);
}

.features-section {
    position: relative;
    padding: 1rem 0;
    background-color: var(--bg-main);
}

/* --- SERVICES SPLIT LAYOUT --- */
.services-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
}

.services-left-orbit {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-right-slider {
    width: 100%;
    min-width: 0;
}

@media (max-width: 1200px) {
    .orbit-container {
        transform: scale(0.8);
    }
}

@media (max-width: 992px) {
    .services-split-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .orbit-container {
        transform: scale(0.9);
    }
}

/* --- 2D CIRCULAR ORBIT SERVICES SECTION --- */
.services-orbit-wrapper {
    position: relative;
    width: 100%;
    min-height: 750px;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 2rem 0;
    background: transparent;
}

.orbit-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, #e2e8f0 1px, transparent 1px),
        linear-gradient(to bottom, #e2e8f0 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    z-index: 0;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: 5;
}

.earth-globe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    animation: earth-spin 120s linear infinite;
}

@keyframes earth-spin {
    100% {
        transform: rotate(360deg);
    }
}

.orbit-track {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1.5px dotted rgba(0, 77, 230, 0.4);
    /* Dotted orbit line */
    z-index: 10;
    animation: orbit-rotate 40s linear infinite;
}

.services-orbit-wrapper:hover .orbit-track,
.services-orbit-wrapper:hover .node-card {
    animation-play-state: paused;
}

.orbit-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: rotate(var(--angle)) translateX(240px);
}

.node-card {
    position: absolute;
    top: -70px;
    left: -70px;
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    /* Counter rotate both the starting angle AND the ongoing track rotation */
    animation: node-counter-rotate 40s linear infinite;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.node-card:hover,
.node-card.active {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: var(--color);
}

.node-card:hover .node-icon,
.node-card.active .node-icon {
    color: #ffffff !important;
}

.node-card:hover .node-text,
.node-card.active .node-text {
    color: #ffffff;
}

.node-card::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid var(--color);
    opacity: 0.8;
}

.orbit-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    overflow: visible;
    /* Prevents text/stroke clipping at SVG edges */
}

.svg-orbit-text,
.svg-orbit-text-mask {
    font-size: 11px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.5px;
}

.svg-orbit-text-mask {
    fill: none;
    stroke: #ffffff;
    stroke-width: 14px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svg-orbit-text {
    fill: #64748b;
}

.node-icon {
    font-size: 32px;
    color: var(--color);
    margin-bottom: 12px;
}

.node-text {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-align: center;
    line-height: 1.3;
    text-transform: capitalize;
}

@keyframes orbit-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes node-counter-rotate {
    0% {
        transform: rotate(calc(var(--angle) * -1)) rotate(0deg);
    }

    100% {
        transform: rotate(calc(var(--angle) * -1)) rotate(-360deg);
    }
}

@media (max-width: 992px) {
    .services-split-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .services-orbit-wrapper {
        transform: scale(0.75);
    }

    .services-left-orbit {
        height: 560px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .services-split-layout {
        gap: 2rem;
    }

    .services-orbit-wrapper {
        transform: scale(0.6);
    }

    .services-left-orbit {
        height: 450px;
    }

    .orbit-section-wrapper {
        min-height: 550px;
        height: 550px;
    }

    .detailed-card {
        padding: 2rem;
    }

    .detailed-card-desc {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .services-orbit-wrapper {
        transform: scale(0.48);
    }

    .services-left-orbit {
        height: 360px;
    }
}

@keyframes spin-earth-mobile {
    0% {
        transform: scale(1.05) rotate(0deg);
    }

    100% {
        transform: scale(1.05) rotate(360deg);
    }
}

@media (max-width: 480px) {
    .orbit-center-sphere img {
        animation: spin-earth-mobile 60s linear infinite;
    }

    .services-split-layout {
        gap: 0rem;
    }

    .orbit-container {
        transform: scale(0.38);
        /* Reduced to prevent cards clipping on the edges */
    }

    .orbit-ring.outer-ring {
        width: 1150px;
        height: 1150px;
    }

    .orbit-section-wrapper {
        min-height: 380px;
        height: 380px;
        overflow: visible;
        /* Prevent clipping */
    }

    .orbit-card {
        transform: scale(1.4);
        /* Decreased card size for better mobile proportions */
    }

    .orbit-card:hover,
    .orbit-card.active {
        transform: scale(1.55);
    }

    .detailed-card {
        padding: 1.5rem;
    }



    .detailed-card-list li {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .detailed-card-btn {
        width: 100%;
        justify-content: space-between;
    }
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 2.5rem;
}

.detailed-card {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.detailed-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.detailed-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    order: 2;
}

.detailed-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.detailed-card-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

@media (max-width: 768px) {
    .detailed-card-title {
        font-size: 26px;
    }
}


.detailed-card-desc {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    text-align: justify;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.detailed-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.detailed-card-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    padding: 0.8rem 1.2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.detailed-card-list li i {
    color: #0044cc;
    font-size: 1.3rem;
}

.detailed-card-btn {
    display: inline-flex;
    align-self: flex-end;
    align-items: center;
    gap: 1rem;
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.detailed-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
    background-color: var(--primary);
    color: #ffffff;
}

.detailed-card-btn .btn-arrow-circle {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.detailed-card-image {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    order: 1;
}

.detailed-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-orange {
    background-color: #ff7f50;
    color: #ffffff;
}

.icon-blue {
    background-color: #0044cc;
    color: #ffffff;
}

.icon-purple {
    background-color: #7B61FF;
    color: #ffffff;
}

.icon-green {
    background-color: #00B87C;
    color: #ffffff;
}

.icon-teal {
    background-color: #00D2D3;
    color: #ffffff;
}

@media (max-width: 992px) {
    .detailed-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .detailed-card-image {
        min-height: 250px;
    }
}

/* Trust Bar Section */
.trust-bar-section {
    padding: 3rem 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-bar-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    padding-right: 3rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.08);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.trust-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.2;
}

@media (max-width: 1100px) {
    .trust-item {
        padding-right: 1.5rem;
    }
}

@media (max-width: 992px) {
    .trust-bar-grid {
        justify-content: center;
        gap: 3rem 1rem;
    }

    .trust-item {
        width: calc(50% - 1rem);
        padding-right: 0;
        justify-content: center;
    }

    .trust-item::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .trust-item {
        width: 98%;
        margin: 0 auto;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1rem;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}

.feature-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.feature-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.feature-link {
    margin-top: auto;
    padding: 0.6rem 1.2rem;
    align-self: flex-start;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: #fff;
    background: var(--primary);
    gap: 0.8rem;
}

.feature-link:hover i {
    transform: translateX(2px);
}

@media (max-width: 1200px) {
    .feature-card {
        width: calc(33.333% - 1.333rem);
    }
}

@media (max-width: 992px) {
    .feature-card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .features-header {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .features-title {
        font-size: 2.2rem;
    }

    .features-floating-logo {
        width: 200px;
        top: 20px;
        left: -100px;
    }
}

@media (max-width: 576px) {
    .feature-card {
        width: 100%;
    }
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-section {
    padding: 8rem 0;
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 30px 30px;
    overflow: hidden;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 68, 204, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* About Visuals (Right Column/Images) */
.about-visuals {
    position: relative;
    width: 100%;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 420px;
    object-fit: cover;
    border-radius: 2rem;
    border: 15px solid #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-visuals:hover .about-img-main {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 380px;
    object-fit: cover;
    border-radius: 2rem;
    border: 15px solid #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-visuals:hover .about-img-secondary {
    transform: scale(1.03) translateY(10px) translateX(10px);
}

.floating-stat {
    position: absolute;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.floating-stat .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.floating-stat .stat-number span {
    font-size: 2rem;
    font-weight: 700;
}

.floating-stat .stat-text {
    font-size: 1rem;
    font-weight: 500;
    max-width: 150px;
}

.stat-theme-light {
    top: 0px;
    right: 0px;
    background-color: var(--primary);
    color: #ffffff;
}

.stat-theme-dark {
    bottom: 140px;
    left: -30px;
    background-color: #6b7280;
    /* Medium Gray */
    color: #fff;
}

/* About Content (Right Column) */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 550px;
}

.subtitle-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #6366f1;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1.5rem;
}

.subtitle-wrap i {
    font-size: .9rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.about-desc {
    color: #4b5563;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: rgba(var(--primary-rgb), 0.1);
    /* Primary light */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    /* Match first image color */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}


.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.about-divider {
    width: 100%;
    height: 1px;
    background-color: #e5e7eb;
    border: none;
    margin-bottom: 2rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.15rem;
    color: #374151;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.about-list li:hover {
    color: var(--primary);
}

.about-list .list-icon {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 4px;
}

/* NEW ABOUT SECTION UI ELEMENTS */

.about-call-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

.about-call-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: color-mix(in srgb, #0044cc 4%, #ffffff);
    padding: 1rem 2rem 1rem 1rem;
    border-radius: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #0044cc;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}

.about-call-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 68, 204, 0.1);
    border-color: #e0e7ff;
}

.call-card-icon {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0044cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0, 68, 204, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.call-card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 68, 204, 0.6);
    box-sizing: border-box;
    z-index: -1;
    animation: pulse-wave 2s infinite ease-out;
}

@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.about-call-card:hover .call-card-icon {
    transform: scale(1.05) rotate(-10deg);
}

@keyframes ring-animation {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.call-card-icon i {
    display: inline-block;
    animation: ring-animation 2.5s infinite ease-in-out;
}

.call-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.call-card-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.call-card-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
}

.call-card-time {
    font-size: 0.85rem;
    color: #9ca3af;
}

.decorative-arrow {
    position: absolute;
    right: -90px;
    top: 40%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    z-index: 1;
}

.about-trust-avatars {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.avatars-stack {
    display: flex;
    align-items: center;
}

.avatars-stack img,
.avatars-stack .avatar-count {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -15px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avatars-stack img:first-child {
    margin-left: 0;
}

.avatar-count {
    background: #0044cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 4;
}

.trust-text {
    font-size: 1rem;
    color: #6b7280;
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .about-visuals {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }

    .stat-theme-light {
        right: 0;
    }

    .decorative-arrow {
        display: none;
    }

    .about-trust-avatars {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .running-text-section {
        padding: 4rem 0;
    }

    .about-section {
        padding: 4rem 0;
    }

    .about-visuals {
        height: 400px;
        width: 100%;
    }

    .about-img-main {
        width: 80%;
        height: 300px;
    }

    .about-img-secondary {
        width: 70%;
        height: 250px;
    }

    .floating-stat {
        padding: 1.5rem;
    }

    .floating-stat .stat-number {
        font-size: 2.2rem;
    }

    .floating-stat .stat-text {
        font-size: 0.85rem;
    }

    .stat-theme-dark {
        left: 0;
        bottom: -20px;
    }

    .stat-theme-light {
        top: -50px;
        right: 0;
    }

    .about-title {
        font-size: 1.9rem;
    }

    .about-content {
        align-items: center;
        text-align: center;
    }

    .about-desc {
        text-align: left;
    }

    .about-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-call-card {
        flex-direction: row;
        padding: 1rem 1.5rem 1rem 1rem;
        text-align: left;
        border-radius: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .call-card-icon {
        width: 45px;
        height: 45px;
    }

    .call-card-icon i {
        font-size: 1.1rem;
    }

    .call-card-text {
        align-items: flex-start;
    }

    .call-card-number {
        font-size: 1.3rem;
    }
}

/* =========================================
   WHY CHOOSE US SECTION
========================================= */
.why-choose-section {
    padding: 6rem 0;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.why-choose-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.why-vertical-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-right: 2rem;
}

.why-vertical-label::before,
.why-vertical-label::after {
    content: '';
    width: 1px;
    height: 80px;
    background: var(--text-muted);
    opacity: 0.3;
}

.why-vertical-label .vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 2px;
    white-space: nowrap;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    flex: 1;
}

.why-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.why-feature-desc {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .why-vertical-label {
        flex-direction: row;
        padding-right: 0;
        width: 100%;
    }

    .why-vertical-label::before,
    .why-vertical-label::after {
        width: 100px;
        height: 1px;
    }

    .why-vertical-label .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   TESTIMONIAL BENTO SECTION
========================================= */
.testimonials-section {
    padding: 6rem 0;
}

.masonry-scroll-container {
    display: flex;
    gap: 2rem;
    height: 700px;
    /* Adjust height based on your needs */
    overflow: hidden;
    position: relative;
    /* Fade out top and bottom for smooth effect */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
}

.masonry-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.masonry-track:hover {
    animation-play-state: paused;
}

.track-up {
    animation: scroll-up 15s linear infinite;
}

.track-down {
    animation: scroll-down 15s linear infinite;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.comment-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    flex-shrink: 0;
}

.comment-card::after {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -15px;
    right: 20px;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.03;
    z-index: -1;
    transform: rotate(-10deg);
    transition: all 0.4s ease;
}

.comment-card:hover {
    box-shadow: 0 20px 50px rgba(0, 68, 204, 0.08);
    transform: translateY(-5px);
    border-color: rgba(0, 68, 204, 0.2);
}

.comment-card:hover::after {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.05;
}

.comment-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    display: flex;
    gap: 0.2rem;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.comment-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    font-weight: 400;
    font-style: italic;
    position: relative;
    z-index: 2;
    text-align: justify;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.comment-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.2rem;
    transition: color 0.3s ease;
}

.comment-card:hover .author-info h4 {
    color: var(--primary);
}

.author-info span {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 992px) {
    .masonry-scroll-container {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .masonry-scroll-container {
        height: 500px;
    }

    .masonry-track:nth-child(1) {
        animation: scroll-up 10s linear infinite;
    }

    .masonry-track:nth-child(2),
    .masonry-track:nth-child(3) {
        display: none;
    }
}

/* --- STATS CUTOUT SECTION --- */
.stats-cutout-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 7rem 0;
    z-index: 1;
}

.stats-cutout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.stats-cutout-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-cutout-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 4rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.stat-cutout-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.stat-cutout-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.stat-cutout-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .stats-cutout-grid {
        gap: 3rem;
    }

    .stat-cutout-number {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .stats-cutout-section {
        padding: 4rem 0;
    }

    .stats-cutout-grid {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .stat-cutout-item {
        flex: 0 0 100%;
        width: 100%;
    }

    .stat-cutout-number {
        font-size: 2.5rem;
    }

    .stat-cutout-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

/* =========================================
   GALLERY SECTION
========================================= */
.gallery-section {
    padding: 6rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

.gallery-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.gallery-scroll-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

/* .gallery-scroll-track:hover {
    animation-play-state: paused;
} */

.track-ltr {
    animation: scroll-ltr 30s linear infinite;
}

.track-rtl {
    animation: scroll-rtl 30s linear infinite;
}

@keyframes scroll-ltr {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-card {
    position: relative;
    width: 450px;
    height: 350px;
    border-radius: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover {
    box-shadow: 0 20px 40px rgba(0, 68, 204, 0.15), 0 0 20px rgba(0, 68, 204, 0.1);
    transform: translateY(-5px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 70%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 60%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-mask-image: linear-gradient(to top, black 0%, black 75%, transparent 100%);
    mask-image: linear-gradient(to top, black 0%, black 75%, transparent 100%);
}

.gallery-card:hover .gallery-card-content {
    height: 70%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 75%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-card-content .top-info {
    font-size: 0.85rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    transform: translateY(15px);
    opacity: 0.8;
    transition: all 0.4s ease 0.1s;
}

.gallery-card:hover .top-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-card-content .top-info .line {
    width: 20px;
    height: 2px;
    background-color: var(--primary);
}

.gallery-card-content .bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.8rem;
    flex-wrap: wrap;
    /* Allows stacking on mobile */
    transform: translateY(10px);
    transition: transform 0.3s ease 0.2s;
}

.gallery-card:hover .bottom-info {
    transform: translateY(0);
}

.gallery-card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.gallery-card-content a {
    color: white;
    background: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 68, 204, 0.3);
}

.gallery-card-content a:hover {
    background: white;
    color: var(--primary);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.4);
}

.gallery-card-content a i {
    color: inherit;
    transition: inherit;
}

@media (max-width: 992px) {
    .gallery-card {
        width: 400px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .gallery-card {
        width: 320px;
        height: 250px;
    }
}

/* =========================================
   GLOBAL NETWORK SECTION
========================================= */
.global-network-section {
    padding: 2rem 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.network-container {
    max-width: 100%;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0;
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 1;
    /* Adjust aspect ratio to fit the wider width nicely */
}

.world-map-img {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    filter: grayscale(100%);
    transition: opacity 0.5s ease;
}

.map-pin {
    position: absolute;
    color: var(--primary);
    font-size: 1.5rem;
    transform: translate(-50%, -100%);
    /* Point rests exactly on coordinate */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.map-pin:hover {
    transform: translate(-50%, -120%) scale(1.3);
    color: #1a56ff;
    z-index: 10;
}

.map-pin.featured {
    font-size: 2.5rem;
    color: #1a56ff;
    /* vibrant blue */
    filter: drop-shadow(0 8px 15px rgba(26, 86, 255, 0.4));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -100%) scale(1);
    }

    50% {
        transform: translate(-50%, -100%) scale(1.1);
    }

    100% {
        transform: translate(-50%, -100%) scale(1);
    }
}

/* Positioning based on world map */
.pin-1 {
    top: 32%;
    left: 16%;
}

/* North America */
.pin-2 {
    top: 18%;
    left: 42%;
}

/* Europe / North */
.pin-3 {
    top: 28%;
    left: 78%;
}

/* Asia */
.pin-4 {
    top: 62%;
    left: 24%;
}

/* South America */
.pin-5 {
    top: 52%;
    left: 46%;
}

/* Africa */
.pin-6 {
    top: 68%;
    left: 52%;
}

/* Middle East/South Asia */
.pin-7 {
    top: 65%;
    left: 75%;
}

/* Australia */

@media (max-width: 768px) {
    .global-network-section {
        /* padding: 4rem 0; */
    }

    .map-pin {
        font-size: 1.2rem;
    }

    .map-pin.featured {
        font-size: 2rem;
    }
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
    padding: 4rem 0;
    background-color: #f3f4f6;
    /* light gray bg like screenshot */
}

.new-contact-layout {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    /* Adjusted padding */
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    /* Softer outer shadow */
    position: relative;
    overflow: hidden;
}

/* Dot grid pattern placed specifically */
.new-contact-layout::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 35%;
    /* Positioned near the middle/top */
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

/* Subtle blue ambient glow at the bottom left */
.new-contact-layout::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contact-info,
.new-form-wrapper {
    position: relative;
    z-index: 2;
}

.new-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    /* Subtle border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    /* Lighter shadow */
    color: var(--primary);
    margin-bottom: 2rem;
}

.new-badge .icon-circle {
    background: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-subtitle-small {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.new-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #111827;
}

.new-desc {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 95%;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.info-card-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #ffffff;
    /* White background */
    border: 1px solid #f1f5f9;
    /* Subtle outline */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    /* Very soft shadow */
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-item:hover {
    transform: translateY(-2px);
    /* Lift instead of slide */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.info-card-icon {
    width: 45px;
    height: 45px;
    background: #e0e7ff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.info-card-text strong {
    color: #111827;
    font-size: 0.95rem;
}

.info-card-text span {
    color: var(--text-main);
    font-size: 0.85rem;
}

.contact-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
    font-size: 0.9rem;
}

.trust-icon {
    color: var(--primary);
    background: #e0e7ff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Form Styles */
.new-form-wrapper {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.new-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.with-icon {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.with-icon label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
}

.input-container {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.textarea-container .input-icon {
    top: 1.5rem;
    transform: none;
}

.input-container input,
.input-container select,
.input-container textarea {
    width: 100%;
    padding: 1rem 1.2rem 1rem 3rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: #111827;
    background: rgba(248, 250, 252, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.input-container input:hover,
.input-container select:hover,
.input-container textarea:hover {
    background: #ffffff;
    border-color: rgba(var(--primary-rgb), 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.input-container select {
    appearance: none;
    cursor: pointer;
}

.select-group .input-container::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.input-container textarea {
    resize: vertical;
    min-height: 120px;
}

.input-container:focus-within .input-icon {
    color: var(--primary);
}

.select-group .input-container:focus-within::after {
    color: var(--primary);
}

.input-container input:focus,
.input-container select:focus,
.input-container textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.02);
    background: #ffffff;
}

.char-counter {
    position: absolute;
    bottom: 0.8rem;
    right: 1rem;
    font-size: 0.95rem;
    color: #9ca3af;
}

.form-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f0f4ff;
    /* Light blue box */
    padding: 1.2rem;
    border-radius: 0.8rem;
}

.form-notice i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.notice-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.notice-text strong {
    color: #111827;
    font-size: 0.95rem;
}

.notice-text span {
    color: var(--text-main);
    font-size: 0.85rem;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-main);
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.new-submit-btn {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}

.new-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.new-submit-btn i {
    background: white;
    color: #4f46e5;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.8rem;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .new-contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }

    .contact-info {
        text-align: left;
        /* Keep left alignment for modern look, unlike previous centered */
    }

    .contact-section .container {
        padding: 0 1rem;
    }

    .network-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px 1rem;
    }


}

@media (max-width: 576px) {
    .new-title {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        /* Stack inputs vertically */
    }

    .new-form-wrapper {
        padding: 1.5rem;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .new-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .testimonials-section,
    .contact-section {
        padding: 3rem 0;
    }

    .new-contact-layout {
        padding: 0;
        border-radius: 16px;
    }
}

/* =========================================
   FOOTER SECTION
========================================= */
.custom-footer {
    position: relative;
    background-color: #1C2539;
    color: #ffffff;
    padding-top: 4rem;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    text-transform: uppercase;
    line-height: 0.8;
    pointer-events: none;
    white-space: nowrap;
}

.footer-container-inner {
    position: relative;
    z-index: 2;
}

/* Footer Top Row */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-contact-info {
    display: flex;
    gap: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-item .icon-circle {
    width: 45px;
    height: 45px;
    background: #0044CC;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-item .info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-item .info-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
}

.contact-info-item .info-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

/* Footer Middle Row */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-middle>.footer-col {
    justify-self: center;
}

.footer-desc {
    color: #cbd5e1;
    line-height: 1.8;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-align: left;
    max-width: 340px;
}

.follow-us-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-newsletter-form {
    max-width: 280px;
}

.footer-newsletter-form .input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 0.3rem;
    overflow: hidden;
    height: 52px;
}

.footer-newsletter-form input {
    border: none;
    outline: none;
    padding: 0 50px 0 1.2rem;
    width: 100%;
    height: 100%;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.footer-newsletter-form input::placeholder {
    color: var(--text-main);
}

.footer-newsletter-form button {
    position: absolute;
    right: 0.3rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-newsletter-form button:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Footer Bottom Row */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom .highlight {
    color: var(--secondary);
}

@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-middle {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-middle {
        grid-template-columns: 1fr;
    }

    .footer-watermark {
        font-size: 8rem;
        bottom: 0;
    }
}

/* =========================================
   ENQUIRY MODAL
========================================= */
.enquiry-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.enquiry-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.enquiry-modal-content {
    background-color: #ffffff;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.enquiry-modal-content::-webkit-scrollbar {
    display: none;
}

.enquiry-modal-overlay.active .enquiry-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.close-modal-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal-btn:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
    color: #0f172a;
}

.modal-form-wrapper {
    padding: 1.5rem 2rem;
    background-color: transparent;
}

.modal-form-wrapper .form-group label {
    color: #374151;
}

.modal-form-wrapper .form-group input,
.modal-form-wrapper .form-group select,
.modal-form-wrapper .form-group textarea {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #1f2937;
}

.modal-form-wrapper .form-group input:focus,
.modal-form-wrapper .form-group select:focus,
.modal-form-wrapper .form-group textarea:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.modal-form-wrapper .form-group input::placeholder,
.modal-form-wrapper .form-group textarea::placeholder {
    color: #9ca3af;
}

.modal-form-wrapper .select-wrapper::after {
    color: #4b5563;
}

.modal-form-wrapper .submit-btn {
    background-color: var(--primary);
    color: #ffffff;
}

.modal-form-wrapper .submit-btn .btn-icon {
    background-color: #ffffff;
    color: var(--primary);
}

/* =========================================
   DROPDOWN MENUS
========================================= */

/* Header Dropdown */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 0;
    margin: -30px 0;
}

.dropdown-icon {
    font-size: 0.7rem !important;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    transform: translateY(15px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 1rem;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 45px;
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1rem;
    color: #4b5563 !important;
    font-size: 0.95rem !important;
    font-weight: 700;
    text-transform: none !important;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 2px;
}

.dropdown-menu a:last-child {
    margin-bottom: 0;
}

.dropdown-menu a i {
    font-size: 1.1rem;
    color: var(--primary);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--primary) !important;
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateX(5px);
}

.dropdown-menu a:hover i {
    transform: scale(1.1);
}

/* Custom distinct colors for dropdown items */
.dropdown-menu a:nth-child(1) i {
    color: #3b82f6;
    /* Blue */
    background: rgba(59, 130, 246, 0.1);
}

.dropdown-menu a:nth-child(1):hover i {
    background: #3b82f6;
    color: #ffffff;
}

.dropdown-menu a:nth-child(2) i {
    color: #10b981;
    /* Emerald */
    background: rgba(16, 185, 129, 0.1);
}

.dropdown-menu a:nth-child(2):hover i {
    background: #10b981;
    color: #ffffff;
}

.dropdown-menu a:nth-child(3) i {
    color: #f59e0b;
    /* Amber */
    background: rgba(245, 158, 11, 0.1);
}

.dropdown-menu a:nth-child(3):hover i {
    background: #f59e0b;
    color: #ffffff;
}

.dropdown-menu a:nth-child(4) i {
    color: #8b5cf6;
    /* Violet */
    background: rgba(139, 92, 246, 0.1);
}

.dropdown-menu a:nth-child(4):hover i {
    background: #8b5cf6;
    color: #ffffff;
}

.dropdown-menu a:nth-child(5) i {
    color: #ef4444;
    /* Red */
    background: rgba(239, 68, 68, 0.1);
}

.dropdown-menu a:nth-child(5):hover i {
    background: #ef4444;
    color: #ffffff;
}


/* Sidebar Dropdown */
.sidebar-dropdown {
    display: flex;
    flex-direction: column;
}

.sidebar-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.sidebar-dropdown-menu {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-top: 0;
}

.sidebar-dropdown.open .sidebar-dropdown-menu {
    max-height: 500px;
    margin-top: 0.5rem;
}

.sidebar-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

.sidebar-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
    transition: all 0.3s ease;
}

.sidebar-dropdown-menu a i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.sidebar-dropdown-menu a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 2rem;
}

.sidebar-dropdown-menu a:hover i {
    transform: scale(1.1);
}

/* Custom distinct colors for sidebar dropdown items */
.sidebar-dropdown-menu a:nth-child(1) i {
    color: #3b82f6;
}

.sidebar-dropdown-menu a:nth-child(2) i {
    color: #10b981;
}

.sidebar-dropdown-menu a:nth-child(3) i {
    color: #f59e0b;
}

.sidebar-dropdown-menu a:nth-child(4) i {
    color: #8b5cf6;
}

.sidebar-dropdown-menu a:nth-child(5) i {
    color: #ef4444;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.developed-by a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.developed-by a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {

    .footer-grid,
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-middle>.footer-col:last-child {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-middle {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .footer-middle>.footer-col {
        justify-self: start;
    }
}

@media (max-width: 576px) {

    .footer-grid,
    .footer-middle {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-middle>.footer-col {
        justify-self: start;
    }

    .footer-form {
        margin: 0;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .skyline-silhouette {
        display: none;
    }
}

/* Floating Social Widget */
.floating-social {
    position: fixed;
    right: 30px;
    bottom: 105px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

@media (max-width: 768px) {
    .floating-social {
        right: 20px;
        bottom: 80px;
    }

    .floating-social img {
        width: 50px !important;
        height: 50px !important;
    }
}

.close-floating-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-floating-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.whatsapp {
    background: transparent;
    width: 60px;
    height: 60px;
}

.social-icon.whatsapp:hover {
    transform: none !important;
}

.social-icon.phone {
    background: transparent;
}

.social-icon.phone:hover {
    transform: scale(1.1);
}

.social-icon.email {
    background: transparent;
}

.social-icon.email:hover {
    transform: scale(1.1);
}

.social-icon.audio-speaker {
    background: #6366f1;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.social-icon.audio-speaker:hover,
.social-icon.audio-speaker.active {
    background: #4f46e5;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.4);
}

.social-icon.auto-scroll {
    background: #f43f5e;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(244, 63, 94, 0.3);
}

.social-icon.auto-scroll:hover,
.social-icon.auto-scroll.active {
    background: #e11d48;
    box-shadow: 0 5px 20px rgba(225, 29, 72, 0.5);
}

@keyframes subtlePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .floating-social {
        right: 10px;
        padding: 8px;
        gap: 10px;
    }

    .social-icon,
    .close-floating-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

/* Back to Top Wave Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--primary);
    /* Updated background */
    border: none;
    /* Removed border as requested */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    /* Updated text color to white */
    font-size: 1.4rem;
    text-decoration: none;
    overflow: hidden;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    /* Match shadow to bg */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.5);
}

.back-to-top i {
    position: relative;
    z-index: 2;
    /* Keeps arrow above the liquid */
    color: #ffffff;
}

.back-to-top .wave {
    position: absolute;
    width: 200%;
    height: 200%;
    top: 100%;
    /* Default empty state */
    left: -50%;
    z-index: 1;
    transition: top 0.1s linear;
}

/* Double Liquid Wave Effect */
.back-to-top .wave::before,
.back-to-top .wave::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 40%;
    animation: spinWave 4s linear infinite;
}

.back-to-top .wave::before {
    background-color: #0044CC;
    z-index: 2;
}

.back-to-top .wave::after {
    background-color: rgba(0, 68, 204, 0.4);
    border-radius: 45%;
    animation: spinWave 5.5s linear infinite;
    z-index: 1;
}

@keyframes spinWave {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Color Picker Additions */
.theme-palette-container {
    position: relative;
}

.color-picker-wrapper {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(from 45deg, #ff0000, #ff8000, #ffff00, #00ff00, #00ffff, #0000ff, #8000ff, #ff0080, #ff0000);
    color: #ffffff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.color-picker-wrapper:hover {
    transform: scale(1.1);
}

.theme-palette-panel {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    background: #fff;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.theme-palette-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.theme-palette-panel::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
}

.theme-palette-panel h4 {
    margin: 1rem 0 0.5rem 0;
    font-size: 0.95rem;
    color: #1a202c;
    font-weight: 700;
    text-align: left;
}

.theme-palette-panel h4:first-of-type {
    margin-top: 0;
}

.hex-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.4rem 0.6rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #334155;
    font-family: monospace;
    text-transform: uppercase;
    text-align: center;
    outline: none;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hex-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.color-swatch,
.color-swatch-secondary {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover,
.color-swatch-secondary:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-picker-swatch {
    background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.custom-picker-swatch i {
    color: #fff;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

#themeColorPicker,
#themeSecondaryColorPicker {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.reset-theme-btn {
    width: 100%;
    padding: 0.6rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.reset-theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
    filter: brightness(1.1);
}

/* --- SERVICE PAGES UNIQUE STYLES --- */
.service-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 100px;
}

.py-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* 1. Geospatial Page */
.geo-hero {
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1920&q=80');
}

.dark-grid {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
}

.bento-grid-geo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.geo-card-1 {
    grid-column: span 2;
}

.bento-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: transform 0.3s;
}

.bento-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.25);
}

.bento-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    z-index: 2;
    position: relative;
}

.bento-card p {
    font-size: 1.1rem;
    color: #ccc;
    z-index: 2;
    position: relative;
}

.bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    opacity: 0.05;
    color: #fff;
    z-index: 1;
}

/* 2. Business Development Page */
.biz-hero {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80');
}

.gradient-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.8));
}

.dark-text {
    color: #111 !important;
}

.timeline-ui {
    border-left: 4px solid var(--primary);
    margin-left: 2rem;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-step {
    position: relative;
}

.step-num {
    position: absolute;
    left: -4.2rem;
    top: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 4px solid #fff;
}

.timeline-step h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #111;
}

.timeline-step p {
    color: #444;
}

/* 3. GST & Compliance Page */
.gst-hero {
    background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1920&q=80');
}

.navy-gradient {
    background: linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0.8) 100%);
}

.gold-badge {
    background: #eab308;
    color: #000;
    border: none;
}

.gold-icon {
    color: #eab308;
    font-size: 2.5rem;
}

.compliance-checklist {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checklist-item {
    display: flex;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    align-items: center;
    border-left: 5px solid #eab308;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.checklist-item h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

/* 4. Manpower Page */
.manpower-hero {
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80');
}

.warm-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), #ffedd5;
    mix-blend-mode: multiply;
}

.warm-badge {
    background: #f97316;
    color: #fff;
    border: none;
}

.masonry-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    grid-auto-rows: 250px;
}

.item-large {
    grid-row: span 2;
}

.masonry-item {
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.masonry-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.masonry-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.masonry-content h3 {
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 5. Digital Page */
.digital-hero {
    background-image: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?auto=format&fit=crop&w=1920&q=80');
}

.cyber-overlay {
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.7) 0%, #0f172a 100%);
}

.neon-badge {
    background: transparent;
    border: 1px solid #06b6d4;
    color: #06b6d4;
    box-shadow: 0 0 10px #06b6d4 inset;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.glass-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.glass-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.neon-icon {
    font-size: 3rem;
    color: #06b6d4;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px #06b6d4);
}

/* Service Responsive */
@media(max-width: 768px) {

    .bento-grid-geo,
    .masonry-layout,
    .glass-grid {
        grid-template-columns: 1fr;
    }

    .geo-card-1,
    .item-large {
        grid-row: span 1;
        grid-column: span 1;
    }

    .timeline-ui {
        margin-left: 1rem;
        padding-left: 1rem;
    }

    .step-num {
        left: -2.8rem;
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }

    .service-hero .title {
        font-size: 2.5rem;
    }
}


/* --- THEME SWITCHER STYLES --- */
.theme-btn {
    background: conic-gradient(from 180deg, #ff0000, #ff8000, #ffff00, #00ff00, #00ffff, #0000ff, #8000ff, #ff0080, #ff0000);
    color: #ffffff;
    position: relative;
    cursor: pointer;
}

.theme-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.theme-dropdown {
    position: absolute;
    right: calc(100% + 15px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 240px;
    z-index: 1001;
}

.theme-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.theme-dropdown::after {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 12px;
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.theme-dropdown-header h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    text-align: left;
}

.theme-options-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.theme-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 2px 0;
}

.custom-color-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-color-wrapper label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
}

.color-picker-container {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    background: #fff;
}

.color-picker-container input[type="color"] {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    border: none;
    padding: 0;
    cursor: pointer;
    background: none;
}

.theme-option {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.theme-option.active-theme {
    border-color: #111;
    transform: scale(1.1);
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--primary);
}

.reset-theme-btn {
    width: 100%;
    background: #f87171;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reset-theme-btn:hover {
    background: #ef4444;
    transform: translateY(-2px);
}

.shades-container {
    display: none;
    margin-top: 5px;
}

.shades-container h5 {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shade-option {
    width: 24px !important;
    height: 24px !important;
}


/* --- FAQ SECTION --- */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.faq-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.faq-left {
    position: relative;
    top: 0;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-left .section-title {
    margin-top: 1rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.faq-left .section-desc {
    margin-top: 1.5rem;
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-left .section-desc {
        text-align: left;
    }
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.faq-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(var(--primary-rgb), 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    transition: color 0.3s ease;
    gap: 1rem;
}

.faq-question span {
    flex: 1;
}

.faq-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.faq-icon {
    font-size: 0.9rem;
    color: #64748b;
    transition: transform 0.4s ease, color 0.3s ease;
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    overflow: hidden;
    padding: 0 1.5rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    margin: 0;
}

/* Active State */
.faq-item.active {
    background: #ffffff;
    border-color: rgba(var(--primary-rgb), 0.4);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.12);
    transform: translateY(-3px);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-icon-wrapper {
    background: var(--primary);
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #ffffff;
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-left {
        position: relative;
        top: 0;
        text-align: center;
    }

    .faq-left .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 1.25rem;
    }

    .faq-answer p {
        padding-bottom: 1.25rem;
    }
}

/* --- SWIPER STYLES --- */
.services-swiper {
    width: 100%;
    padding: 20px 10px 20px 10px;
    /* Space for shadow */
}

.services-swiper .swiper-wrapper {
    align-items: stretch !important;
}

.services-swiper .swiper-slide {
    height: auto !important;
    display: flex !important;
    align-items: stretch !important;
}

.services-swiper .feature-card {
    height: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 0 !important;
    flex: 1 1 auto !important;
}


.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}


/* --- PREMIUM HERO BANNER --- */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left */
}

.hero-glass-card {
    padding: 0;
    max-width: 950px;
}

.hero-glass-card .subtitle,
.hero-glass-card .title,
.hero-glass-card .description,
.hero-glass-card .hero-buttons {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.swiper-slide-active .hero-glass-card .subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.swiper-slide-active .hero-glass-card .title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.swiper-slide-active .hero-glass-card .description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
    text-align: justify;
}

.swiper-slide-active .hero-glass-card .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.hero-buttons {
    margin-top: 1.5rem;
}

.hero-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.5);
}

.hero-glass-card .subtitle {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 148, 223, 0.8), rgba(36, 71, 122, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-glass-card .title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-glass-card .description {
    font-size: .7rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    max-width: 95%;
}

/* Custom Navigation */
.hero-nav-container {
    position: absolute;
    top: 50%;
    left: 2.5%;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 1rem 0;
}

/* Custom Pagination */
.hero-pagination {
    position: relative !important;
    bottom: auto !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    border-radius: 0;
    user-select: none;
    padding: 0.2rem 0;
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    transform: scale(1.3) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hero-pagination .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-glass-card {
        padding: 2rem;
        text-align: left;
    }

    .hero-glass-card .title {
        font-size: 2.5rem;
    }

    .hero-glass-card .description {
        margin-bottom: 10px;
        text-align: justify;
    }

    .hero-buttons {
        margin-top: 0.5rem;
        display: flex;
        justify-content: flex-start;
    }
}




.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}


/* --- PREMIUM HERO BANNER --- */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left */
}

.hero-glass-card {
    padding: 0;
    max-width: 750px;
}

.hero-glass-card .subtitle,
.hero-glass-card .title,
.hero-glass-card .description,
.hero-glass-card .hero-buttons {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.swiper-slide-active .hero-glass-card .subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.swiper-slide-active .hero-glass-card .title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.swiper-slide-active .hero-glass-card .description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.swiper-slide-active .hero-glass-card .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.hero-buttons {
    margin-top: 1.5rem;
}

.hero-buttons .btn {
    padding: .8rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.5);
}

.hero-glass-card .subtitle {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.hero-glass-card .title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-glass-card .description {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    max-width: 95%;
}

/* Custom Navigation */
.hero-nav-container {
    position: absolute;
    top: 50%;
    left: 2.5%;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 1rem 0;
}

/* Custom Pagination */
.hero-pagination {
    position: relative !important;
    bottom: auto !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    border-radius: 0;
    user-select: none;
    padding: 0.2rem 0;
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    transform: scale(1.3) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hero-pagination .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-content {
        justify-content: center;
        text-align: left;
        padding: 0 5%;
    }

    .hero-glass-card {
        padding: 1rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 60px;
        width: 100%;
        text-align: left;
    }

    .hero-glass-card .description {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: left;
    }

    .hero-glass-card .title {
        font-size: 1.8rem;
        text-align: left;
    }

    .hero-glass-card .subtitle {
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
        width: 100%;
    }

    /* Move pagination to top horizontally on mobile */
    .hero-nav-container {
        top: 120px;
        /* Below the header */
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
    }

    .hero-pagination {
        flex-direction: row;
        gap: 1.5rem;
    }
}


/* Global Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Force SweetAlert on Top */
.swal2-container {
    z-index: 100000 !important;
}

/* Enquiry Modal Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-surface);
    color: var(--text-main);
    transition: all 0.3s ease;
    caret-color: rgb(var(--primary-rgb));
    /* Custom RGB Caret Color */
}

.form-group .input-container input,
.form-group .input-container select,
.form-group .input-container textarea {
    padding-left: 2.8rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.modal-form-wrapper .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    background-color: var(--primary);
    color: #ffffff;
}

.modal-form-wrapper .submit-btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    background: transparent;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    border-radius: 0;
    user-select: none;
    padding: 0.2rem 0;
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    transform: scale(1.3) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hero-pagination .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-content {
        justify-content: center;
        text-align: left;
        padding: 0 5%;
    }

    .hero-glass-card {
        padding: 1rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 60px;
        width: 100%;
        text-align: left;
    }

    .hero-glass-card .description {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: left;
    }

    .hero-glass-card .title {
        font-size: 1.8rem;
        text-align: left;
    }

    .hero-glass-card .subtitle {
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
        width: 100%;
    }

    /* Move pagination to top horizontally on mobile */
    .hero-nav-container {
        top: 120px;
        /* Below the header */
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
    }

    .hero-pagination {
        flex-direction: row;
        gap: 1.5rem;
    }
}


/* Global Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Force SweetAlert on Top */
.swal2-container {
    z-index: 100000 !important;
}

/* Enquiry Modal Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-surface);
    color: var(--text-main);
    transition: all 0.3s ease;
    caret-color: rgb(var(--primary-rgb));
    /* Custom RGB Caret Color */
}

.form-group .input-container input,
.form-group .input-container select,
.form-group .input-container textarea {
    padding-left: 2.8rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.modal-form-wrapper .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    background-color: var(--primary);
    color: #ffffff;
}

.modal-form-wrapper .submit-btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--primary);
    transition: all 0.3s ease;
}

.modal-form-wrapper .submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.2);
}

.modal-form-wrapper .submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Mobile Text Justification for Index Sections */
@media (max-width: 768px) {

    .comment-card p,
    .faq-answer p,
    .hero-glass-card .description {
        text-align: justify !important;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .title,
    .about-title,
    .features-title,
    .section-title,
    .detailed-card-title,
    .page-title {
        font-size: 1.7rem !important;
    }
}

/* ============================================
   WHY CHOOSE US - PREMIUM CARDS
   ============================================ */
.why-choose-section {
    padding: 120px 0;
    background: #f8fafc;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    overflow: hidden;
}

.pinboard-timeline { display: none; }
.pinboard-line { display: none; }

.pinboard-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 60px auto 0;
    max-width: 1150px;
    padding: 0 20px;
}
.pinboard-grid .pinboard-item {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    width: calc(33.333% - 20px);
}
@media (max-width: 991px) {
    .pinboard-grid .pinboard-item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .pinboard-grid .pinboard-item {
        width: 100%;
    }
}

/* ---- Modern Card Redesign ---- */
.sticky-note {
    position: relative;
    border-radius: 20px;
    padding: 3rem 2.5rem 2.5rem;
    width: 100%;
    max-width: 380px;
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 1 !important;
    transform: rotate(0deg) !important;
    animation: none !important;
}

.sticky-note::after {
    display: none;
}

/* Add a glowing colored orb in the background */
.sticky-note::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.15;
    z-index: 0;
    transition: all 0.5s ease;
}

.sticky-note:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(226, 232, 240, 1);
}
.sticky-note:hover::before {
    transform: scale(1.2);
    opacity: 0.25;
}

.note-number {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.note-title {
    position: relative;
    z-index: 1;
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.note-desc {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

.note-icon {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 45px;
    z-index: 1;
    opacity: 0.1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-note:hover .note-icon {
    transform: scale(1.1) rotate(-8deg);
    opacity: 0.6;
}

/* Colors */
.note-peach .note-number { color: #f97316; }
.note-peach::before { background: #f97316; }
.note-peach .note-icon { color: #f97316; }

.note-blue .note-number { color: #3b82f6; }
.note-blue::before { background: #3b82f6; }
.note-blue .note-icon { color: #3b82f6; }

.note-purple .note-number { color: #8b5cf6; }
.note-purple::before { background: #8b5cf6; }
.note-purple .note-icon { color: #8b5cf6; }

.note-green .note-number { color: #10b981; }
.note-green::before { background: #10b981; }
.note-green .note-icon { color: #10b981; }

.note-yellow .note-number { color: #eab308; }
.note-yellow::before { background: #eab308; }
.note-yellow .note-icon { color: #eab308; }

.pinboard-grid .pin { display: none !important; }

/* Service Pages Header Styles *//* Service Pages Header Styles */
.page-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f172a;
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: pulse-bg 15s infinite alternate ease-in-out;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
}

@keyframes pulse-bg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 100px;
    text-align: center;
}

@keyframes bounce-scroll {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(6px);
    }

    60% {
        transform: translateY(3px);
    }
}

.page-header-content a[href="#services-start"] span i {
    animation: bounce-scroll 2s infinite ease-in-out;
}

.page-header-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #e0e7ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    animation: scroll-indicator-fade-up 1s ease-out 0.8s backwards;
}

@keyframes scroll-indicator-fade-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.scroll-down-indicator:hover {
    opacity: 1;
    color: white;
}

.scroll-down-indicator .mouse {
    width: 28px;
    height: 46px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.scroll-down-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 4px;
    animation: scroll-wheel 2s infinite ease-in-out;
}

.scroll-down-indicator span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes scroll-wheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

.page-header-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

.service-details-section {
    padding: 120px 0;
    background-color: #f8fafc;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Complete Service Page Styles */
.service-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 120px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .service-block {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }

    .service-block.reverse .service-content {
        order: -1;
    }
}

.service-block-img {
    background: white;
    padding: 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.service-block:hover .service-block-img {
    transform: translateY(-5px);
}

.service-block-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 1rem;
    display: block;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-watermark {
    position: absolute;
    font-size: 18rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.service-block:hover .service-watermark {
    color: rgba(99, 102, 241, 0.05);
}

.detailed-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    background: #E9EBFB !important;
    color: #6366F1 !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}



.service-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .service-content h3 {
        font-size: 1.6rem;
    }
}

.service-content p {
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .service-content p {
        text-align: left;
    }
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-size: 1.05rem;
    color: #334155;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.service-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(99, 102, 241, 0.1);
}

.service-list li i {
    color: #6366f1;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Mobile Centering for Gallery Cards */
@media (max-width: 768px) {
    .gallery-card-content {
        align-items: center;
        text-align: center;
    }

    .gallery-card-content .top-info {
        justify-content: center;
    }

    .gallery-card-content .top-info .line {
        display: none;
    }

    .gallery-card-content .bottom-info {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}


/* Form Fixes */
.input-icon {
    z-index: 10 !important;
}

.contact-subtitle-small {
    display: inline-block !important;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1 !important;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 1.2rem !important;
    text-transform: uppercase;
    border: 1px solid rgba(99, 102, 241, 0.2);
}.pinboard-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 60px auto 0;
    max-width: 1150px;
    padding: 0 20px;
}
.pinboard-grid .pinboard-item {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    width: calc(33.333% - 20px);
}
@media (max-width: 991px) {
    .pinboard-grid .pinboard-item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 768px) {
    .pinboard-grid .pinboard-item {
        width: 100%;
    }
}
.pinboard-grid .pinboard-item {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}
.pinboard-grid .sticky-note {
    width: 100%;
    max-width: 380px;
    transform: rotate(0deg) !important;
    animation: none !important;
    opacity: 1 !important;
}
.pinboard-grid .sticky-note:hover {
    transform: translateY(-6px) scale(1.02) !important;
}

.pinboard-grid .pin {
    display: none !important;
}





/* ---- Mockup Card Redesign ---- */
.pinboard-grid .sticky-note {
    position: relative;
    border-radius: 12px 0 12px 12px !important;
    padding: 2.5rem 2rem 2.5rem !important;
    width: 100%;
    max-width: 380px;
    border: none !important;
    box-shadow: none !important;
    cursor: default;
    overflow: visible !important;
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
}
.pinboard-grid .sticky-note::before {
    display: none !important;
}
.pinboard-grid .sticky-note::after {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    border-width: 0 28px 28px 0 !important;
    border-style: solid !important;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.05) !important;
    border-radius: 0 0 0 4px !important;
}
.pinboard-grid .sticky-note:hover {
    transform: translateY(-6px) !important;
}

.pinboard-grid .note-number {
    color: #8ca3ba !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
}
.pinboard-grid .note-title {
    color: #1e293b !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
}
.pinboard-grid .note-desc {
    color: #64748b !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}
.pinboard-grid .note-icon {
    position: absolute !important;
    bottom: 25px !important;
    right: 25px !important;
    color: #b0bec5 !important;
    opacity: 1 !important;
    font-size: 20px !important;
}

/* Backgrounds and Flaps */
.pinboard-grid .note-peach { background: linear-gradient(-135deg, transparent 20px, #ffebd6 0) !important; }
.pinboard-grid .note-peach::after { border-color: transparent transparent #ffcba4 transparent !important; }

.pinboard-grid .note-blue { background: linear-gradient(-135deg, transparent 20px, #e6f0ff 0) !important; }
.pinboard-grid .note-blue::after { border-color: transparent transparent #bed6ff transparent !important; }

.pinboard-grid .note-purple { background: linear-gradient(-135deg, transparent 20px, #f0ebff 0) !important; }
.pinboard-grid .note-purple::after { border-color: transparent transparent #dccaff transparent !important; }

.pinboard-grid .note-green { background: linear-gradient(-135deg, transparent 20px, #dcfce7 0) !important; }
.pinboard-grid .note-green::after { border-color: transparent transparent #a7f3d0 transparent !important; }

.pinboard-grid .note-yellow { background: linear-gradient(-135deg, transparent 20px, #fef5b5 0) !important; }
.pinboard-grid .note-yellow::after { border-color: transparent transparent #fde047 transparent !important; }

/* ---- Hover Unfold Effect ---- */
.pinboard-grid .sticky-note {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-radius 0.3s ease !important;
}
.pinboard-grid .sticky-note::after {
    transition: border-width 0.3s ease, box-shadow 0.3s ease !important;
}

/* On hover, flatten the background cut-out */
.pinboard-grid .note-peach:hover { background: #ffebd6 !important; }
.pinboard-grid .note-blue:hover { background: #e6f0ff !important; }
.pinboard-grid .note-purple:hover { background: #f0ebff !important; }
.pinboard-grid .note-green:hover { background: #dcfce7 !important; }
.pinboard-grid .note-yellow:hover { background: #fef5b5 !important; }

/* Restore border radius on hover */
.pinboard-grid .sticky-note:hover {
    border-radius: 12px !important;
}

/* Shrink and hide the flap */
.pinboard-grid .sticky-note:hover::after {
    border-width: 0 0 0 0 !important;
    box-shadow: none !important;
}
