/*
Theme Name: Gigalooping
Theme URI: https://gigalooping.com/
Author: Gigalooping Software Pvt. Ltd.
Author URI: https://gigalooping.com/
Description: A custom dark-themed, futuristic WordPress theme with glassmorphism for Gigalooping Software Pvt. Ltd.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gigalooping
*/

:root {
    --primary-color: #f5f5f7;
    /* Light gray base */
    --secondary-color: #e5e5e7;
    --accent-color: #3a3a3c;
    /* Dark gray for accent */
    --accent-rgb: 58, 58, 60;
    --theme-color-rgb: 245, 245, 247;
    --text-color: #fff;
    /* Dark text for contrast */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.05);
    --font-main: 'Inter', sans-serif;
}

body {
    background-color: var(--primary-color);
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    /* Technical checkered grid size */
    color: var(--text-color);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    /* Reduced padding from 25px */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.site-header.scrolled {
    position: fixed;
    padding: 10px 0;
    background: rgba(26, 29, 46, 0.9);
    /* Unique Deep Tech Indigo */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid #fbbf24;
    /* Yellow Accent Line */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .main-navigation a {
    color: rgba(245, 245, 247, 0.9);
    /* Pearl White Text */
}

.site-header.scrolled .main-navigation a:hover,
.site-header.scrolled .main-navigation .current-menu-item>a,
.site-header.scrolled .main-navigation .current_page_item>a {
    color: #fbbf24;
    /* Yellow Highlight when scrolled */
    background: rgba(251, 191, 36, 0.1);
}

.header-container {
    max-width: 1400px;
    /* Increased container width */
    margin: 0 auto;
    padding: 0 40px;
    /* More side padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .custom-logo {
    display: block;
    max-height: 140px;
    /* Increased logo height significantly */
    width: auto;
    transition: all 0.4s ease;
}

.site-header.scrolled .custom-logo {
    max-height: 65px;
}

.site-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    /* More clickable area */
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    border: 1px solid transparent;
}

.main-navigation a:hover,
.main-navigation .current-menu-item>a,
.main-navigation .current_page_item>a {
    color: #fff;
    background: rgba(47, 57, 148, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #4f46e5;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}


/* Dropdown Navigation Sub-Menu */
.main-navigation ul li {
    position: relative;
}

.main-navigation .has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 15px;
    /* Adjust for icon */
}

.main-navigation .has-dropdown i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.main-navigation .has-dropdown:hover i {
    transform: rotate(180deg);
    color: #fbbf24;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 5px);
    /* Tighter top spacing */
    left: -120px;
    min-width: 550px;
    background: #1a1d2d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    list-style: none;
    padding: 30px !important;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sub-menu::before {
    content: '';
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 20px;
    width: 2px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 2px;
    display: none;
    /* Hide global line for grid layout */
}

.main-navigation li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    display: block !important;
    margin: 0 !important;
}

.sub-menu li a {
    display: block;
    padding: 18px 25px !important;
    font-size: 0.9rem !important;
    /* Matches main nav */
    font-weight: 600 !important;
    /* Matches main nav */
    color: rgba(255, 255, 255, 0.85) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease !important;
    border-radius: 10px;
    border: 1px solid transparent !important;
    background: rgba(255, 255, 255, 0.02);
}

.sub-menu li a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(251, 191, 36, 0.4) !important;
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}


.sub-menu li a::after {
    display: none;
}

.sub-menu li a:hover {
    color: #fbbf24 !important;
    background: rgba(255, 255, 255, 0.03) !important;
    padding-left: 30px !important;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item>a::after,
.main-navigation .current_page_item>a::after {
    transform: scaleX(1);
}


/* Slider Section */
.slider-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.4s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

/* Previous slide should exit upwards */
.slide.exit {
    transform: translateY(-100%);
    opacity: 0.5;
    z-index: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgb(47 57 148 / 45%) 0%, #121212e0 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 30px;
}

.slide-content h1 {
    font-size: 5rem;
    margin-bottom: 25px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.slide-content h1 .accent-text {
    color: #fbbf24;
    /* Primary amber/yellow for double color */
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    /* Amber Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 22px 55px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(251, 191, 36, 0.1);
    position: relative;
    overflow: hidden;
    border: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    width: 250%;
    height: 250%;
    left: -75%;
    top: -75%;
    background: conic-gradient(from 0deg, transparent 0% 15%, #fbbf24 25%, transparent 35% 65%, #fbbf24 75%, transparent 85% 100%);
    animation: moveLine 3s linear infinite;
    z-index: 0;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(251, 191, 36, 0.35);
}



.btn-primary::after {
    content: '';
    position: absolute;
    inset: 1px;
    /* Thinner border-line thickness (1px) */
    background: rgb(46 49 64 / 56%);
    /* Mask background */
    border-radius: 3.5px;
    /* Proportional to the 1px border */
    z-index: 1;
    transition: background 0.3s;
}

@keyframes moveLine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-primary span {
    position: relative;
    z-index: 2;
    display: block;
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover::before {
    animation-duration: 1.5s;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-dot.active {
    background: #fff;
}


/* Breadcrumb Section Styles */
.site-footer {
    position: relative;
    padding: 120px 0 60px;
    background: #111;
    color: #fff;
    overflow: hidden;
}

.footer-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(251, 191, 36, 0.4) 1px, transparent 1px);
    background-size: 35px 35px;
    opacity: 0.2;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
    animation: footerDotScroll 25s linear infinite;
}

@keyframes footerDotScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 1000px;
    }
}

.breadcrumb-section {
    position: relative;
    padding: 220px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    background-color: #000;
    overflow: hidden;
}


.breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgb(47 57 148 / 45%) 0%, #121212e0 100%);
    z-index: 1;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-content h1.page-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 15px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    line-height: 1.1;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #fbbf24;
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
}

.breadcrumb-nav .current {
    color: #fbbf24;
}


/* About Section Styling */




.about-section {
    padding: 90px 0;
    background-color: #fdfdfe;
    /* Light subtle pearl background */
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    /* Slightly tighter technical grid */
    color: #1a1a1b;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.image-stack {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.main-about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card.glass-panel {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 4px solid #e5e7eb;
    /* Gray Circle Border */
    text-align: center;
    padding: 0;
}

/* Rotating Circle Border Animation */
.image-stack::before {
    content: '';
    position: absolute;
    bottom: -45px;
    right: -45px;
    width: 210px;
    height: 210px;
    border: 2px dashed #fbbf24;
    /* Gray Orbit Line */
    border-radius: 50%;
    animation: rotateCircle 15s linear infinite;
    z-index: 5;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1b;
    line-height: 1;
    display: block;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    color: #71717a;
    /* Gray label */
    letter-spacing: 1px;
    margin-top: 5px;
    max-width: 100px;
    line-height: 1.3;
}

.about-content-side {
    padding-left: 20px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #71717a;
    /* Gray subtitle */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1b;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    padding-left: 30px;
    /* Increased padding to accommodate animated line */
    position: relative;
}

/* Static Track for the moving line */
.lead-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: rgba(0, 0, 0, 0.05);
    /* Soft gray track */
    border-radius: 2px;
}

/* Moving Yellow Line */
.lead-text::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 40px;
    background: #fbbf24;
    /* Gray moving line */
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(161, 161, 170, 0.3);
    animation: moveLineDown 3s linear infinite;
}

@keyframes moveLineDown {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: calc(100% - 40px);
        opacity: 0;
    }
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.feature-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 15px 0 8px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
}

.feature-icon {
    font-size: 1.8rem;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    border: 2px solid #1a1a1b;
    color: #1a1a1b;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-secondary:hover {
    background: #1a1a1b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Page Content Area Tweak */
.page-content {
    background: #fff;
    border-radius: 12px;
    margin-top: -60px !important;
    position: relative;
    z-index: 20;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05)
}

body {
    background-color: #fff;
    color: var(--text-color);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Services Section Styling - Midnight Waves Animation */
.services-section {
    padding: 90px 0;
    background-color: #1a1d2d;
    position: relative;
    overflow: hidden;
}

/* Enhanced Triple Layer Wave Animations - Massive Full Width */
.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='2000' height='400' viewBox='0 0 2000 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,200 Q500,100 1000,200 T2000,200' stroke='%23fbbf24' stroke-width='3' fill='none' opacity='0.3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='2000' height='600' viewBox='0 0 2000 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,300 Q500,150 1000,300 T2000,300' stroke='%23fbbf24' stroke-width='2' fill='none' opacity='0.2'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='2000' height='300' viewBox='0 0 2000 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,150 Q500,250 1000,150 T2000,150' stroke='%23fbbf24' stroke-width='1.5' fill='none' opacity='0.15'/%3E%3C/svg%3E");

    background-repeat: repeat-x;
    background-position: 0 5%, 0 50%, 0 95%;
    /* Top, Center, Bottom */
    animation: moveWavesFullWidth 35s linear infinite;
    z-index: 1;
    pointer-events: none;
    display: block;
}

@keyframes moveWavesFullWidth {
    0% {
        background-position: 0 5%, 0 50%, 0 95%;
    }

    100% {
        background-position: -2000px 5%, -2000px 50%, -2000px 95%;
    }
}

/* Secondary Golden Glow Overlay */
.services-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(26, 29, 45, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
    display: block;
}

@keyframes networkDrift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(400px, 400px);
    }
}

@keyframes gridPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 90px;
    position: relative;
    z-index: 10;
}

.services-grid {
    position: relative;
    z-index: 10;
}

.services-header .section-title {
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.services-header .section-subtitle {
    color: #fbbf24;
    text-align: center;
    display: block;
}

.section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1350px;
    margin: 60px auto 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* Ensure relative for border pulse */
    overflow: visible;
    /* Allow border line to be seen */
}

/* Sequential Slim Color-Changing Border Line Animation */
.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid #fbbf24;
    /* Default Starting Color */
    border-radius: 12px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
}

.service-card:nth-child(1)::before {
    animation: sequenceDrawColors 20s linear infinite;
}

.service-card:nth-child(2)::before {
    animation: sequenceDrawColors 20s linear infinite 2.5s;
}

.service-card:nth-child(3)::before {
    animation: sequenceDrawColors 20s linear infinite 5s;
}

.service-card:nth-child(4)::before {
    animation: sequenceDrawColors 20s linear infinite 7.5s;
}

@keyframes sequenceDrawColors {

    /* FIRST CYCLE: AMBER #fbbf24 (0% - 25% of 20s = 5s, but we only use 2.5s for drawing) */
    0% {
        clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0);
        opacity: 0;
        border-color: #fbbf24;
    }

    0.5% {
        opacity: 1;
    }

    3% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }

    6% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
    }

    9% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    }

    12% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
        opacity: 1;
    }

    12.5% {
        opacity: 0;
    }

    /* SECOND CYCLE: WHITE #ffffff (starts at 50% = 10s) */
    50% {
        clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0);
        opacity: 0;
        border-color: #ffffff;
    }

    50.5% {
        opacity: 1;
    }

    53% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }

    56% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
    }

    59% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    }

    62% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
        opacity: 1;
    }

    62.5% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.service-card:hover {
    transform: translateY(-12px);
    background: rgba(251, 191, 36, 0.05);
    border-color: #fbbf24;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-card h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 10px;
    margin-bottom: 25px;
}

.service-card:hover .service-icon-box {
    background: #fbbf24;
    color: #000;
    transform: scale(1.1);
}

.service-link {
    color: #71717a;
    /* Gray link */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-link:hover {
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 3rem;
    }

    .slider-nav {
        bottom: 40px;
    }

    .nav-dot {
        width: 40px;
    }
}

/* Stats Section Styling - Gray Binary Backdrop */
.stats-section {
    padding: 90px 0;
    background-color: #f1f5f9;
    /* Specialized Light Gray */
    position: relative;
    overflow: hidden;
    color: #1a1a1b;
}

/* Pure Binary Source-Stream Ecosystem Backdrop (20 Columns, Bold Gray) */
.stats-section::before {
    content: '1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250%;
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: 900;
    /* Extra Bold binary */
    color: rgba(113, 113, 122, 0.15);
    /* intensified Bold Gray */
    letter-spacing: 15px;
    line-height: 1.8;
    column-count: 20;

    /* 20 Structured Columns */
    column-gap: 30px;
    word-break: break-all;
    white-space: pre-wrap;
    animation: binaryMatrixFluxActive 60s linear infinite;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    transform: rotate(-5deg);
}

.stats-section::after {
    content: '';
    position: absolute;
    inset: -150px;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(251, 191, 36, 0.03) 0%, transparent 12px),
        radial-gradient(circle at 85% 75%, rgba(251, 191, 36, 0.02) 0%, transparent 10px),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.03) 0%, transparent 12px);
    background-size: 400px 400px;
    animation: driftMeshNetActive 50s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes binaryMatrixFluxActive {
    0% {
        transform: translateY(0%) rotate(-5deg);
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-30%) rotate(-5deg);
        opacity: 0.3;
    }
}

@keyframes driftMeshNetActive {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100px, 80px) rotate(10deg);
    }
}

.stats-section .container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
}

.stats-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
}

.stats-header .section-subtitle {
    color: #71717a;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
}

.stats-header .section-title {
    color: #1a1a1b;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 900;
}

.stats-header .section-description {
    color: #52525b;
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.stat-item {
    padding: 60px 30px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Technical Corner Accents */
.stat-item::before,
.stat-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: transparent;
    border-style: solid;
    transition: all 0.4s ease;
}

/* Top Left Corner */
.stat-item::before {
    top: -1px;
    left: -1px;
    border-top-width: 2px;
    border-left-width: 2px;
    border-top-color: #fbbf24;
    border-left-color: #fbbf24;
}

/* Bottom Right Corner */
.stat-item::after {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-bottom-color: #fbbf24;
    border-right-color: #fbbf24;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #fbbf24;
}

.stat-item:hover::before,
.stat-item:hover::after {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
}

.stat-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

.stat-count {
    font-size: 4rem;
    font-weight: 900;
    color: #1a1a1b;
    margin: 10px 0;
    letter-spacing: -2px;
}

.stat-desc {
    font-size: 1rem;
    font-weight: 800;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.stat-item:nth-child(even) .stat-count {
    color: #fbbf24;
}

/* Innovation & Experience Section Styling */
.innovation-section {
    padding: 90px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.innovation-section .container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.innovation-features {
    margin: 45px 0;
}

.innovation-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-tick {
    width: 24px;
    height: 24px;
    background: #fbbf24;
    color: #1a1a1b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-text h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1a1b;
    margin-top: 0px;
}

.feature-text p {
    font-size: 1.05rem;
    color: #52525b;
    line-height: 1.6;
}

/* Decorative Hexagons */
.hexagon-decor {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(251, 191, 36, 0.03);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 0;
    pointer-events: none;
}

.hex-1 {
    top: 5%;
    left: -50px;
    transform: rotate(15deg);
    animation: hexagonWise 15s ease-in-out infinite;
}

.hex-2 {
    bottom: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: rgba(47, 57, 148, 0.02);
    transform: rotate(-10deg);
    animation: hexagonWise 20s ease-in-out infinite reverse;
}

.hex-3 {
    top: 40%;
    left: 45%;
    width: 150px;
    height: 150px;
    background: rgba(113, 113, 122, 0.04);
}

@keyframes hexagonWise {
    0% {
        transform: rotate(0deg) translate(0, 0) scale(1);
    }

    33% {
        transform: rotate(5deg) translate(20px, -15px) scale(1.05);
    }

    66% {
        transform: rotate(-5deg) translate(-15px, 20px) scale(0.95);
    }

    100% {
        transform: rotate(0deg) translate(0, 0) scale(1);
    }
}

.innovation-image-side {
    position: relative;
}

.image-set-dynamic {
    position: relative;
    padding: 20px;
}

.image-set-dynamic .img-primary {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    outline-width: 1px;
    outline-offset: 0;
    outline-color: rgba(251, 191, 36, 0.75);
    outline-style: solid;
    animation: animateOutline 4s ease infinite;
}

.image-set-dynamic .img-secondary {
    width: 65%;
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 15px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    border: 10px solid #ffffff;
    z-index: 2;
    outline-width: 1px;
    outline-offset: 0;
    outline-color: rgba(251, 191, 36, 0.75);
    outline-style: solid;
    animation: animateOutline 4s ease 1s infinite;
}

@keyframes animateOutline {
    0% {
        outline-width: 1px;
        outline-offset: 0;
        outline-color: rgba(251, 191, 36, 0);
    }

    10% {
        outline-color: rgba(251, 191, 36, 0.75);
    }

    /* The animation finishes at 50% */
    50% {
        outline-width: 7px;
        outline-offset: 4px;
        outline-color: rgba(251, 191, 36, 0);
    }

    100% {
        outline-width: 7px;
        outline-offset: 4px;
        outline-color: rgba(251, 191, 36, 0);
    }
}

.tech-badge {
    position: absolute;
    top: -40px;
    right: 10px;
    background: #c5cbd2;
    width: 120px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Added slight border for definition */
    animation: hexagonWise 10s ease-in-out infinite;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1b;
    line-height: 1.2;
}

/* Hover Effect for Innovation Images */
.image-set-dynamic:hover .img-primary {
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-set-dynamic:hover .img-secondary {
    transform: translateY(-10px) translateX(-10px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Blog & News Section Styling */
.blog-section {
    padding: 90px 0;
    background-color: #1a1d2d;
    position: relative;
    overflow: hidden;
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Color Drip Backdrop */
.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
    display: flex;
    justify-content: space-between;
    z-index: 0;
}

.line {
    position: relative;
    width: 1px;
    height: 100%;
    overflow: hidden;
}

.line::after {
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
    animation: drop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.line:nth-child(1)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FF4500 75%, #FF4500 100%);
    animation-delay: 0.5s;
}

.line:nth-child(2)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #32CD32 75%, #32CD32 100%);
    animation-delay: 1s;
}

.line:nth-child(3)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #1E90FF 75%, #1E90FF 100%);
    animation-delay: 1.5s;
}

.line:nth-child(4)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFD700 75%, #FFD700 100%);
    animation-delay: 2s;
}

.line:nth-child(5)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #8A2BE2 75%, #8A2BE2 100%);
    animation-delay: 2.5s;
}

.line:nth-child(6)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #20B2AA 75%, #20B2AA 100%);
    animation-delay: 3s;
}

.line:nth-child(7)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #DC143C 75%, #DC143C 100%);
    animation-delay: 3.5s;
}

.line:nth-child(8)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #00FA9A 75%, #00FA9A 100%);
    animation-delay: 4s;
}

.line:nth-child(9)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FF1493 75%, #FF1493 100%);
    animation-delay: 4.5s;
}

.line:nth-child(10)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #00BFFF 75%, #00BFFF 100%);
    animation-delay: 5s;
}

@keyframes drop {
    0% {
        top: -50%;
    }

    100% {
        top: 110%;
    }
}

.blog-section .section-subtitle,
.blog-section .section-title,
.blog-section .section-description {
    color: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fbbf24;
    color: #1a1a1b;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    font-size: 0.85rem;
    color: #71717a;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #fbbf24;
}

.blog-content p {
    color: #71717a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-link {
    color: #1a1a1b;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: letter-spacing 0.3s ease;
}

.blog-link:hover {
    letter-spacing: 2px;
}

.blog-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 5;
}

.blog-footer .btn-secondary {
    border: 2px solid #fbbf24;
    color: #fbbf24;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.1);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-footer .btn-secondary:hover {
    background: #fbbf24;
    color: #1a1d2d;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
}

/* Testimonials Section Styling */
/* Premium Testimonials Section Styling - White Theme */
.premium-testimonials {
    background-color: #ffffff;
    padding: 90px 0;
    color: #1a1d2d;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-layout {
    display: flex;
    align-items: center;
    gap: 70px;
}

.testimonial-info-side {
    flex: 0 0 32%;
}

.large-quote-icon {
    width: 140px;
    height: 140px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-bottom: 40px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
    animation: iconFloat 4s ease-in-out infinite, iconSonar 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes iconSonar {
    0% {
        box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2), 0 0 0 0 rgba(251, 191, 36, 0.4);
    }

    70% {
        box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2), 0 0 0 25px rgba(251, 191, 36, 0);
    }

    100% {
        box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2), 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

.info-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: #111827;
}

.info-desc {
    color: #4b5563;
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 1.6;
}

.connect-now {
    color: #111827;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.connect-now i {
    font-size: 24px;
    color: #fbbf24;
}

.connect-now:hover {
    color: #fbbf24;
    transform: translateX(10px);
}

.testimonial-slider-side {
    flex: 1;
    position: relative;
    padding-bottom: 60px;
}

.testimonial-track-container {
    overflow: hidden;
    padding: 20px 0 40px;
}

.testimonial-track-new {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.p-testimonial-card {
    min-width: 350px;
    flex: 0 0 350px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    color: #1a1d2d;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.p-testimonial-card:hover .card-image img {
    transform: scale(1.1);
}

.card-body {
    padding: 35px;
    position: relative;
    padding-top: 45px;
    background: #fff;
}

.card-quote-icon {
    width: 50px;
    height: 50px;
    background: #fbbf24;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: 25px;
    font-size: 20px;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.card-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
    font-weight: 500;
}

.card-meta h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #111827;
}

.card-meta span {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.nav-arrows {
    display: flex;
}

.nav-btn {
    width: 45px;
    height: 45px;
    background: #fbbf24;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
}

.nav-btn.prev-btn {
    opacity: 0.9;
}

.nav-btn:hover {
    background: #fbbf24;
    transform: scale(1.05);
    opacity: 1;
}

.nav-dots {
    display: flex;
    gap: 12px;
}

.p-dot {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p-dot.active {
    background: #fbbf24;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.testimonial-container {
    width: 100%;
    max-width: 100%;
    padding: 0 60px 0 100px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .testimonial-container {
        padding: 0 20px;
    }

    .testimonial-layout {
        flex-direction: column;
        gap: 50px;
    }

    .testimonial-info-side {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .p-testimonial-card {
        min-width: 300px;
        flex: 0 0 300px;
    }
}

/* FAQ Section Styling */
.faq-section {
    padding: 90px 0;
    background: #f9fafb;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-description {
    color: #6b7280;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.faq-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-header h3 {
    font-size: 1.15rem;
    margin: 0;
    font-weight: 700;
    color: #6b7280;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #fbbf24;
    color: #ffffff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
    background: #ffffff;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
    padding-bottom: 30px;
}

.faq-content p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.testimonial-unit.slide-t {
    min-width: 100%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .testimonial-unit.slide-t {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonial-unit.slide-t {
        grid-template-columns: 1fr;
    }
}

/* Dots Styling */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fbbf24;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.t-dot.active {
    background: #fbbf24;
    transform: scale(1.3);
}

.testimonial-card {
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    background: #ffffff;
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 35px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-info h4 {
    color: #1a1a1b;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.author-info span {
    color: #71717a;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-section .section-title {
    color: #1a1a1b;
}

.testimonials-section .section-description {
    color: #71717a;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1199px) {
    .innovation-grid {
        gap: 60px;
    }
}

@media (max-width: 991px) {
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .innovation-image-side {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .innovation-content {
        order: 2;
    }

    .innovation-section {
        padding: 80px 0 120px;
    }
}

@media (max-width: 575px) {
    .image-set-dynamic .img-secondary {
        width: 75%;
        right: -20px;
        bottom: -20px;
        border-width: 6px;
    }
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-count {
        font-size: 3rem;
    }
}

/* Footer Styling */
.site-footer {
    background-color: #0c0e1a;
    padding: 100px 0 30px;
    color: #e5e7eb;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}


.footer-logo img {
    height: 50px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-link:hover {
    background: #fbbf24;
    color: #0c0e1a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

.footer-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 35px;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 35px;
    height: 3px;
    background: #fbbf24;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fbbf24;
    transform: translateX(8px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: #fbbf24;
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.copyright span {
    font-weight: 700;
}

.footer-legal a {
    color: #6b7280;
    text-decoration: none;
    margin-left: 35px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #fbbf24;
}

@media (max-width: 1100px) {
    .footer-grid {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .footer-col.brand-col {
        grid-column: span 2;
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-col.brand-col {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 15px;
    }
}

/* Unique Who We Are Redesign */
.who-we-are-unique {
    padding: 90px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.who-we-are-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.visionary-image-side {
    position: relative;
}

.main-image-container {
    position: relative;
    border-radius: 40px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.visionary-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    object-fit: cover;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #1a1d2d;
    color: #fff;
    padding: 40px 35px;
    border-radius: 25px;
    max-width: 240px;
    text-align: center;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.exp-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 10px;
    animation: counterGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    line-height: 1.5;
    background: linear-gradient(90deg, #ffffff, #fbbf24, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shimmerLabel 4s linear infinite;
}

@keyframes counterGlow {
    from {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
    }

    to {
        transform: scale(1.05);
        text-shadow: 0 0 25px rgba(251, 191, 36, 0.8);
    }
}

@keyframes shimmerLabel {
    to {
        background-position: 200% center;
    }
}


.tech-points-grid {
    margin-top: 50px;
    display: grid;
    gap: 40px;
}

.tech-point {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.point-id {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fbbf24;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.point-id::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 4px;
    height: 30px;
    background: #fbbf24;
    transform: translateY(-50%);
}

.point-text h4 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #1a1a1b;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    margin: 0;
}

.point-text p {
    font-size: 1.05rem;
    margin: 0;
    color: rgba(0, 0, 0, 0.6);
}

/* Unique High-Density Binary Animation - 500 "0"s Style */

.visions-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* 150 Mixed Character & Geometric Shapes Animation Styles */
.visions-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    pointer-events: none;
    animation: driftShape 25s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    color: #fbbf24;
}

/* Size Variants */
.s-sml {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.s-med {
    font-size: 32px;
    width: 32px;
    height: 32px;
}

/* Character Types */
.s-zero,
.s-ex {
    font-weight: 300;
}

/* Geometric Square */
.s-square-geom {
    border: 1px solid #fbbf24;
    border-radius: 4px;
}

/* Geometric Star */
.s-star-geom {
    background: #fbbf24;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Geometric Triangle */
.s-triangle-geom {
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

.s-sml.s-triangle-geom {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #fbbf24;
}

.s-med.s-triangle-geom {
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 28px solid #fbbf24;
}

@keyframes driftShape {
    0% {
        transform: translateY(100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-200px) rotate(360deg);
        opacity: 0;
    }
}


/* Unique Visions Section */
.visions-section {
    padding: 100px 0 140px;
    background-color: #fff;
    position: relative;
    z-index: 5;
}


.visions-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.vision-panel {
    background: #1a1d2d;
    padding: 70px 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vision-panel:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    border-color: rgba(251, 191, 36, 0.3);
}

.panel-number-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 11rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.panel-subtitle {
    color: #fbbf24;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: block;
}

.panel-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: 1;
}

.panel-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Excellence Section (Unique Layout) - White Theme */
.excellence-section {
    padding: 90px 0;
    background-color: #1a1d2d;
    position: relative;
    overflow: hidden;
}

.excellence-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.excellence-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.excellence-section .section-title {
    color: #fff !important;
}

.excellence-section .section-description {
    color: rgba(255, 255, 255, 0.7) !important;
}


.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.excellence-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: visible;
    text-align: left;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.excellence-card::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    padding: 1.5px;
    background: conic-gradient(from var(--angle), transparent 70%, #fbbf24 85%, #fbbf24 100%);
    border-radius: 12.5px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;

    z-index: 5;
    pointer-events: none;
    animation: rotateConic 4s linear infinite;
    opacity: 0.8;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateConic {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

.excellence-card:nth-child(1)::before {
    animation-delay: 0s;
}

.excellence-card:nth-child(2)::before {
    animation-delay: 1s;
}

.excellence-card:nth-child(3)::before {
    animation-delay: 2s;
}

.excellence-card:nth-child(4)::before {
    animation-delay: 3s;
}


.excellence-card:hover {
    transform: translateY(-10px);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}


.card-icon-box {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.excellence-card h3 {
    font-size: 1.5rem;
    color: #fff !important;
    margin-bottom: 15px;
    font-weight: 800;
}

.excellence-card p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1rem;
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.excellence-card:hover .card-glow {
    opacity: 1;
}

/* About Contact CTA Section */
.about-contact-cta {
    padding: 90px 0;
    background-color: #c5c5c56b;
    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: 15px 15px;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-contact-cta .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1b;
}

.about-contact-cta .section-description {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.cta-actions .btn-primary {
    display: inline-block;
    padding: 22px 55px;
    background: transparent;
    color: #1a1a1b;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 2px solid #fbbf24;
}

.about-contact-cta .btn-primary::before {
    display: none !important;
}

.about-contact-cta .btn-primary:hover {
    background: #fbbf24;
    color: #1a1d2d;
    transform: translateY(-5px);
}


.cta-actions .btn-primary span {
    position: relative;
    z-index: 2;
    display: block;
}

.cta-actions .btn-primary:hover {
    background: #fbbf24;
    color: #1a1a1b;
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(251, 191, 36, 0.3);
}

/* Contact Page Styles */
.contact-page-section {
    padding: 90px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-page-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: flex-start;
}

.info-cards-stack {
    margin-top: 50px;
    display: grid;
    gap: 30px;
}

.info-card {
    display: flex;
    gap: 25px;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
}

.info-icon {
    font-size: 1.8rem;
    width: 70px;
    height: 70px;
    background: #1a1d2d;
    border-radius: 15px;
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1b;
}

.info-details p {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* Contact Form Grid Styling */
.form-container {
    background: #1a1d2d;
    padding: 80px 70px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.form-header h3 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fbbf24;
    font-weight: 800;
    opacity: 0.9;
}

.field-group input,
.field-group select,
.field-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.06);
    outline: none;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
}

.field-group select option {
    background: #1a1d2d;
    color: #fff;
}

.form-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.privacy-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 250px;
    line-height: 1.5;
}

.privacy-note a {
    color: #fbbf24;
    text-decoration: underline;
}

/* Global Network Section */
.global-network-section {
    padding: 0 0 120px;
    background-color: #fff;
}

.network-illustration {
    padding: 100px 60px;
    border-radius: 40px;
    background: #fdfdfe;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.network-map-placeholder {
    height: 450px;
    width: 100%;
    margin-top: 60px;
    background-color: rgba(251, 191, 36, 0.03);
    border-radius: 30px;
    background-image: radial-gradient(circle at center, rgba(251, 191, 36, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    border: 1px dashed rgba(251, 191, 36, 0.2);
}

/* Services Page Styles */
.services-list-section {
    padding: 90px 0;
    background-color: #fff;
}

.services-list-section .container {

    margin: 0 auto;
    padding: 0 40px;
}

.services-page-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-page-header .section-title {
    font-size: 3.5rem;
    font-weight: 900;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-feature-card {
    padding: 70px 55px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    text-align: center;
    z-index: 1;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    padding: 2px;
    background: conic-gradient(from var(--angle),
            #fbbf24 0deg,
            transparent 90deg,
            #fbbf24 180deg,
            transparent 270deg,
            #fbbf24 360deg);
    border-radius: 32px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 5;
    pointer-events: none;
    animation: rotateConic 2.5s linear infinite;
    opacity: 0.75;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
}

.service-feature-card:nth-child(2)::before {
    animation-delay: 1s;
}

.service-feature-card:nth-child(3)::before {
    animation-delay: 2s;
}

.service-feature-card:nth-child(4)::before {
    animation-delay: 3s;
}

.service-feature-card:hover {
    transform: translateY(-15px);
    border-color: #fbbf24;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.service-num {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 0.9rem;
    font-weight: 900;
    color: #fbbf24;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.service-icon-box {
    font-size: 3.2rem;
    margin-bottom: 35px;
    display: inline-block;
}

.service-feature-card h3 {
    font-size: 1.7rem;
    color: #1a1a1b;
    margin-bottom: 18px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.service-feature-card p {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-bullets {
    list-style: none;
    margin: 35px 0 0;
    padding: 35px 0 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.service-bullets li {
    font-size: 0.8rem;
    font-weight: 800;
    color: #1a1a1b;
    background: #fdfdfe;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(251, 191, 36, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Section */
.process-section {
    padding-bottom: 140px;
    background-color: #fff;
}

.process-box {
    background: #1a1d2d;
    padding: 100px 80px;
    border-radius: 45px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-top: 90px;
}

.process-step {
    position: relative;
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.7;
}

.step-line {
    height: 4px;
    width: 60px;
    background: #fbbf24;
    margin-bottom: 30px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

/* Blog Page Styles */
.blog-explorer-section {
    padding: 90px 0;
    background-color: #fff;
}

.blog-explorer-section .container {

    margin: 0 auto;
    padding: 0 40px;
}

.blog-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-radius: 12px;
    margin-bottom: 80px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 900;
    color: #1a1a1b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.active-domain-tag {
    background: #1a1d2d;
    color: #fbbf24;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    border-left: 3px solid #fbbf24;
}

.filter-options {
    display: flex;
    gap: 12px;
}

.filter-options a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    color: #1a1a1b;
    padding: 10px 22px;
    border-radius: 5px;
    background: #f9fafb;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
}

.filter-options a.active,
.filter-options a:hover {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #1a1d2d;
    transform: scale(1.05);
}

.blog-search {
    display: flex;
}

.blog-search input {
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: #f9fafb;
    font-size: 0.9rem;
}

.blog-search button {
    background: #1a1d2d;
    color: #fff;
    border: none;
    width: 48px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.blog-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-insight-card h3 {
    font-size: 1.35rem;
    /* Adjusted for narrower 4-col layout */
    font-weight: 900;
    color: #1a1a1b;
    margin-bottom: 22px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}


@keyframes blogFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-insight-card {
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: blogFadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.blog-insight-card:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-insight-card:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-insight-card:nth-child(3) {
    animation-delay: 0.3s;
}

.blog-insight-card:nth-child(4) {
    animation-delay: 0.4s;
}

.blog-insight-card:nth-child(5) {
    animation-delay: 0.5s;
}

.blog-insight-card:nth-child(6) {
    animation-delay: 0.6s;
}

.blog-insight-card:nth-child(7) {
    animation-delay: 0.7s;
}

.blog-insight-card:nth-child(8) {
    animation-delay: 0.8s;
}


.blog-insight-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    padding: 2px;
    background: conic-gradient(from var(--angle),
            #fbbf24 0deg,
            transparent 45deg,
            #fbbf24 90deg,
            transparent 135deg,
            #fbbf24 180deg,
            transparent 225deg,
            #fbbf24 270deg,
            transparent 315deg,
            #fbbf24 360deg);
    border-radius: 27px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 5;
    pointer-events: none;
    animation: rotateConic 6s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blog-insight-card:hover::before {
    opacity: 1;
}

.blog-insight-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}


.post-visual {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-insight-card:hover .thumb-placeholder {
    transform: scale(1.1);
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1a1d2d;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #fbbf24;
    color: #1a1d2d;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.post-body {
    padding: 45px;
    flex-grow: 1;
}

.post-meta-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.post-date,
.read-time {
    font-size: 0.75rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-insight-card h3 {
    font-size: 1.7rem;
    font-weight: 900;
    color: #1a1a1b;
    margin-bottom: 22px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.blog-insight-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-insight-card p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

.insight-link {
    text-decoration: none;
    color: #fbbf24;
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-link:hover {
    gap: 25px;
    color: #1a1d2d;
}

/* Pagination Modernized */
.blog-pagination {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.blog-pagination .page-numbers {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #f9fafb;
    color: #1a1a1b;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: #fbbf24;
    color: #1a1d2d !important;
    border-color: #fbbf24;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    width: auto;
    padding: 0 25px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-pagination .page-numbers.prev:hover {
    transform: translateX(-10px) scale(1.02);
}

/* Privacy Page (Legal Protocol) Layout */
.legal-content-section {

    background: linear-gradient(to bottom, #fff, #f9fafb);
}

/* Privacy Page (Tab-Wise Engineering Interface) */
.legal-tabs-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 650px;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.legal-tabs-nav {
    background: #fdfdfd;
    padding: 60px 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-trigger {
    width: 100%;
    margin-bottom: 15px;
    padding: 22px 25px;
    border: none;
    background: transparent;
    border-radius: 15px;
    color: #4b5563;
    font-weight: 700;
    text-align: left;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid transparent;
}

.tab-num {
    font-size: 0.75rem;
    font-weight: 900;
    color: #9ca3af;
    background: #f3f4f6;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.tab-trigger:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
}

.tab-trigger.active {
    background: #1a1d2d;
    color: #fff;
    border-left: 4px solid #fbbf24;
}

.tab-trigger.active .tab-num {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.legal-panes {
    padding: 100px 80px;
    background: #fff;
}

.legal-pane {
    display: none;
    animation: fadeInPane 0.6s ease;
    color: #6b7280;
}

.legal-pane p {
    color: inherit;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.legal-pane.active {
    display: block;
}

.protocol-chapter {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f3f4f6;
}

.protocol-chapter h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.protocol-chapter p {
    color: #6b7280;
    margin-bottom: 0;
}

@keyframes fadeInPane {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .legal-tabs-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-tabs-nav {
        padding: 30px;
        display: flex;
        overflow-x: auto;
        gap: 15px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .tab-trigger {
        width: auto;
        white-space: nowrap;
        margin-bottom: 0;
    }

    .legal-panes {
        padding: 40px 25px;
    }
}

.legal-main-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1a1d2d, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.legal-meta {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-meta::before {
    content: '';
    width: 25px;
    height: 1px;
    background: #fbbf24;
}


.legal-main-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin: 60px 0 25px;
    padding-left: 20px;
    border-left: 4px solid #fbbf24;
}

.legal-main-content p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #4b5563;
}

.sticky-nav {
    position: sticky;
    top: 120px;
}

@media (max-width: 991px) {
    .legal-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .legal-card-wrapper {
        padding: 40px 30px;
    }

    .legal-sidebar h3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .blog-filter-bar {
        flex-direction: column;
        gap: 25px;
    }

    .filter-options {
        flex-wrap: wrap;
        justify-content: center;
    }
}