@import url(//fonts.googleapis.com/css?family=Lato:300,400,700);

body {
    font-family: "Lato", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

i.fa {
    margin-right: 5px;
}

header {
    background-color: #8f66104d;
}

#about {
    font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
    .features-img {
        width: 300px;
    }
}

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/* Glassmorphic Floating Header */
.header-glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-glass-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.header-glass-nav.scrolled::before {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.brand-section {
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    color: #6366f1;
    transform: translateY(-2px);
}

.logo-icon {
    color: #6366f1;
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-icon {
    transform: rotate(180deg);
}

.brand-text {
    letter-spacing: -0.02em;
}

/* Desktop Navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    color: #334155;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.header-glass-nav.scrolled .nav-link {
    color: #1e293b;
}

.header-glass-nav.scrolled .nav-link:hover {
    color: #6366f1;
}

/* Dropdown Arrow Animation */
.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 220px;
    list-style: none;
    margin: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dropdown-menu-new.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #334155;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    transform: translateX(4px);
}

/* Search Section */
.search-section {
    flex-shrink: 0;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 240px;
    padding: 0.75rem 3rem 0.75rem 1.25rem;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1e293b;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    outline: none;
}

.search-input::placeholder {
    color: #64748b;
}

.search-input:focus {
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.9);
    width: 280px;
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #6366f1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #4f46e5;
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #1e293b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
}

.mobile-nav-overlay.active .mobile-nav {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    position: relative;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: #1e293b;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 16px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    transform: translateX(8px);
}

/* Mobile Dropdown */
.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-has-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-menu-new.active {
    max-height: 500px;
    padding: 0.5rem 0 0.5rem 1.5rem;
}

.mobile-dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #475569;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-dropdown-link:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    transform: translateX(6px);
}

/* Mobile Search */
.mobile-search {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    color: #1e293b;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.mobile-search-input::placeholder {
    color: #64748b;
}

.mobile-search-input:focus {
    border-color: #6366f1;
    background: #ffffff;
}

.mobile-search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #6366f1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search-btn:hover {
    background: #4f46e5;
    transform: translateY(-50%) scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .desktop-nav,
    .search-section {
    display: none;
    }
    
    .mobile-toggle {
    display: flex;
    }
    
    .header-container {
    gap: 1rem;
    }
}

@media (max-width: 576px) {
    .header-container {
    padding: 0 1.25rem;
    }
    
    .brand-logo {
    font-size: 1.25rem;
    }
    
    .logo-icon {
    width: 32px;
    height: 32px;
    }
    
    .mobile-nav {
    width: 90%;
    padding: 5rem 1.5rem 2rem;
    }
    
    .mobile-nav-link {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    }
}

/* Accessibility */
.nav-link:focus,
.dropdown-link:focus,
.mobile-nav-link:focus,
.search-btn:focus,
.mobile-toggle:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}
/* Hero Block: Asymmetric Split Design - Complete Standalone Styles */

.hero-block-asymmetric {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b4e 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Header Navigation */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 48px;
    height: 48px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.nav-links-desktop {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #c94ffd, #4d7cfe);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 100%);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d, #c94ffd);
    transition: left 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover::before {
    left: 0;
}

.mobile-nav-link:hover {
    transform: translateX(10px);
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 10;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Text Section */
.hero-text-section {
    position: relative;
    z-index: 20;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(77, 124, 254, 0.2);
    border: 1px solid rgba(77, 124, 254, 0.5);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-badge svg {
    width: 24px;
    height: 24px;
    color: #00d4ff;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-decoration {
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #b8b8d4;
    margin-bottom: 3rem;
    max-width: 580px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c94ffd 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c94ffd 0%, #4d7cfe 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Stats Section */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b9d, #c94ffd, #4d7cfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9375rem;
    color: #b8b8d4;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Visual Section */
.hero-visual-section {
    position: relative;
    height: 600px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    animation: morphShape 8s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes morphShape {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    25% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 70% 50% 50% / 50% 60% 40% 60%; }
    75% { border-radius: 70% 30% 60% 40% / 30% 70% 50% 50%; }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3) 0%, rgba(77, 124, 254, 0.3) 100%);
}

.geometric-decoration {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
    animation: rotate360 20s linear infinite;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
    animation: rotate360 15s linear infinite reverse;
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-1 {
    top: 10%;
    left: -5%;
    animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation: floatCard2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 15%;
    left: 5%;
    animation: floatCard3 5s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(15px) translateX(-10px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.card-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

/* Background Decorations */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
}

.bg-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: -250px;
    right: -100px;
    animation: pulse1 8s ease-in-out infinite;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #4d7cfe 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation: pulse2 10s ease-in-out infinite;
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #c94ffd 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: pulse3 12s ease-in-out infinite;
}

@keyframes pulse1 {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.25; }
}

@keyframes pulse2 {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

@keyframes pulse3 {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.bg-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    radial-gradient(at 20% 30%, rgba(255, 107, 157, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(77, 124, 254, 0.1) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(201, 79, 253, 0.1) 0px, transparent 50%);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
    font-size: 3.5rem;
    }
    
    .hero-grid {
    gap: 3rem;
    }
    
    .hero-image-container {
    width: 400px;
    height: 400px;
    }
}

@media (max-width: 992px) {
    .nav-links-desktop {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .hero-title {
    font-size: 3rem;
    }
    
    .hero-description {
    font-size: 1.25rem;
    }
    
    .hero-visual-section {
    height: 500px;
    order: -1;
    }
    
    .hero-image-container {
    width: 350px;
    height: 350px;
    }
    
    .floating-card {
    padding: 1rem;
    }
    
    .card-text {
    font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
    padding: 6rem 0 3rem;
    }
    
    .hero-container {
    padding: 0 1.5rem;
    }
    
    .hero-title {
    font-size: 2.5rem;
    }
    
    .hero-description {
    font-size: 1.125rem;
    }
    
    .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    }
    
    .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    }
    
    .stat-divider {
    display: none;
    }
    
    .hero-visual-section {
    height: 400px;
    }
    
    .hero-image-container {
    width: 300px;
    height: 300px;
    }
    
    .floating-card {
    display: none;
    }
    
    .mobile-menu {
    max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
    font-size: 2rem;
    }
    
    .floating-badge {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    }
    
    .hero-description {
    font-size: 1rem;
    }
    
    .stat-number {
    font-size: 2rem;
    }
    
    .stat-label {
    font-size: 0.875rem;
    }
    
    .btn-primary,
    .btn-secondary {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    }
}

/* Menu Open State */
body.menu-open {
    overflow: hidden;
}
/* Futures Block: Asymmetric Diagonal Grid with Neon Accents */
.futures-quantum-47x {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.futures-background-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 128, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.futures-background-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: skewY(-2deg);
}

.futures-container-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.futures-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: start;
}

/* Feature Cards Base */
.future-card {
    position: relative;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.future-card-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.future-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 0, 128, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.future-card:hover .future-card-inner::before {
    opacity: 1;
}

/* Card Variants */
.future-card-prime {
    transform: translateY(-20px);
}

.future-card-secondary {
    transform: translateY(0);
}

.future-card-tertiary {
    transform: translateY(-10px);
}

.future-card:hover {
    transform: translateY(-30px) scale(1.02);
}

.future-card-secondary:hover {
    transform: translateY(-10px) scale(1.02);
}

.future-card-tertiary:hover {
    transform: translateY(-20px) scale(1.02);
}

/* Image Container */
.future-image-container {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
}

.future-image-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.future-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.future-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.future-card:hover .future-image-overlay {
    opacity: 0.3;
}

/* Accent Blob */
.future-accent-blob {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.future-card-prime .future-accent-blob {
    bottom: 20px;
    right: 20px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
}

.future-card-secondary .future-accent-blob {
    bottom: 20px;
    right: 20px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.4) 0%, transparent 70%);
}

.future-card-tertiary .future-accent-blob {
    bottom: 20px;
    right: 20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
}

.future-card:hover .future-accent-blob {
    opacity: 1;
    transform: scale(1.5);
}

/* Content Zone */
.future-content-zone {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.future-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.future-card-prime:hover .future-heading {
    color: #00ff88;
}

.future-card-secondary:hover .future-heading {
    color: #ff0080;
}

.future-card-tertiary:hover .future-heading {
    color: #00d4ff;
}

/* Divider */
.future-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00ff88 0%, #ff0080 50%, #00d4ff 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.future-card:hover .future-divider {
    width: 100px;
}

.future-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    transition: color 0.3s ease;
}

.future-card:hover .future-description {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 992px) {
    .futures-quantum-47x {
    padding: 6rem 0;
    }

    .futures-content-grid {
    gap: 2.5rem;
    }

    .future-card-prime,
    .future-card-secondary,
    .future-card-tertiary {
    transform: translateY(0);
    }

    .future-heading {
    font-size: 1.5rem;
    }

    .future-description {
    font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .futures-quantum-47x {
    padding: 4rem 0;
    }

    .futures-container-wrap {
    padding: 0 1.5rem;
    }

    .futures-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    }

    .future-content-zone {
    padding: 2rem;
    gap: 1rem;
    }

    .future-heading {
    font-size: 1.375rem;
    }

    .future-description {
    font-size: 1rem;
    line-height: 1.6;
    }

    .future-image-container {
    padding-top: 60%;
    }

    .future-accent-blob {
    width: 80px;
    height: 80px;
    }
}

@media (max-width: 576px) {
    .futures-quantum-47x {
    padding: 3rem 0;
    }

    .futures-container-wrap {
    padding: 0 1rem;
    }

    .future-content-zone {
    padding: 1.5rem;
    }

    .future-heading {
    font-size: 1.25rem;
    }

    .future-description {
    font-size: 0.9375rem;
    }

    .future-card:hover {
    transform: translateY(-10px) scale(1.01);
    }
}
/* Testimonials Section - Carousel Style with Gradient Avatars */
.testimonials-section-zx9k {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-zx9k::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section-zx9k::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-header-zx9k {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonials-title-zx9k {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-carousel-wrapper-zx9k {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-carousel-zx9k {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card-zx9k {
    position: absolute;
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.testimonial-card-zx9k.testimonial-active-zx9k {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
    z-index: 2;
}

.testimonial-card-zx9k:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    transform: scale(1.02) translateY(-5px);
}

.testimonial-avatar-wrapper-zx9k {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.testimonial-avatar-zx9k {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    transition: all 0.4s ease;
}

.testimonial-card-zx9k:hover .testimonial-avatar-zx9k {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
}

.testimonial-content-zx9k {
    text-align: center;
    position: relative;
}

.testimonial-quote-icon-zx9k {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.testimonial-text-zx9k {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 2rem 0;
    font-weight: 400;
    font-style: italic;
}

.testimonial-name-zx9k {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.01em;
}

.testimonials-navigation-zx9k {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.testimonial-nav-btn-zx9k {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-nav-btn-zx9k:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.testimonial-nav-btn-zx9k:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.testimonials-pagination-zx9k {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.pagination-dot-zx9k {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.pagination-dot-zx9k:hover {
    background: #a0aec0;
    transform: scale(1.2);
}

.pagination-dot-zx9k.pagination-dot-active-zx9k {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 32px;
    border-radius: 6px;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-title-zx9k {
    font-size: 2.75rem;
    }

    .testimonial-card-zx9k {
    padding: 2.5rem 2rem;
    }

    .testimonial-text-zx9k {
    font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section-zx9k {
    padding: 5rem 0;
    }

    .testimonials-title-zx9k {
    font-size: 2.25rem;
    }

    .testimonials-header-zx9k {
    margin-bottom: 3rem;
    }

    .testimonials-carousel-zx9k {
    min-height: 500px;
    }

    .testimonial-card-zx9k {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    }

    .testimonial-avatar-zx9k {
    width: 75px;
    height: 75px;
    }

    .testimonial-text-zx9k {
    font-size: 1.0625rem;
    line-height: 1.7;
    }

    .testimonial-name-zx9k {
    font-size: 1.1875rem;
    }

    .testimonial-nav-btn-zx9k {
    width: 44px;
    height: 44px;
    }

    .testimonials-navigation-zx9k {
    gap: 1.5rem;
    margin-top: 2.5rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section-zx9k {
    padding: 4rem 0;
    }

    .testimonials-title-zx9k {
    font-size: 1.875rem;
    }

    .testimonials-carousel-wrapper-zx9k {
    padding: 0 0.5rem;
    }

    .testimonials-carousel-zx9k {
    min-height: 550px;
    }

    .testimonial-card-zx9k {
    padding: 1.75rem 1.25rem;
    }

    .testimonial-avatar-zx9k {
    width: 65px;
    height: 65px;
    }

    .testimonial-text-zx9k {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }

    .testimonial-name-zx9k {
    font-size: 1.0625rem;
    }

    .testimonials-navigation-zx9k {
    gap: 1rem;
    margin-top: 2rem;
    }

    .testimonial-nav-btn-zx9k {
    width: 40px;
    height: 40px;
    }

    .pagination-dot-zx9k {
    width: 10px;
    height: 10px;
    }

    .pagination-dot-zx9k.pagination-dot-active-zx9k {
    width: 26px;
    }
}

/* Fallback for no-js */
.no-js .testimonial-card-zx9k {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: all;
    margin-bottom: 2rem;
}

.no-js .testimonials-carousel-zx9k {
    min-height: auto;
    display: block;
}

.no-js .testimonials-navigation-zx9k {
    display: none;
}
/* Services Block: Diagonal Grid with Floating Cards Design */
.services-diagonal-grid {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.services-diagonal-grid::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-diagonal-grid::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.services-header-wrap {
    text-align: center;
    margin-bottom: 5rem;
}

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.services-grid-diagonal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    perspective: 1000px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 50%, rgba(255, 0, 128, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2), 0 0 40px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-1 {
    transform: rotate(-1deg);
}

.service-card-2 {
    transform: rotate(1deg);
}

.service-card-3 {
    transform: rotate(-0.5deg);
}

.service-card-4 {
    transform: rotate(0.8deg);
}

.service-card-5 {
    transform: rotate(-1.2deg);
}

.service-card-6 {
    transform: rotate(0.6deg);
}

.service-card:hover.service-card-1,
.service-card:hover.service-card-2,
.service-card:hover.service-card-3,
.service-card:hover.service-card-4,
.service-card:hover.service-card-5,
.service-card:hover.service-card-6 {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.5);
}

.service-svg-icon {
    width: 44px;
    height: 44px;
    color: #00ff88;
    transition: all 0.4s ease;
}

.service-card:hover .service-svg-icon {
    color: #00d4ff;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #00ff88;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
    min-height: 4.5rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.service-btn:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #ff0080 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
}

.service-btn:focus {
    outline: 2px solid #00ff88;
    outline-offset: 3px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.service-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-diagonal-grid {
    padding: 5rem 0 6rem;
    }

    .services-grid-diagonal {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }

    .services-header-wrap {
    margin-bottom: 3.5rem;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
    transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .services-diagonal-grid {
    padding: 4rem 0 5rem;
    }

    .services-container {
    padding: 0 1.5rem;
    }

    .services-grid-diagonal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }

    .services-header-wrap {
    margin-bottom: 3rem;
    }

    .services-main-title {
    font-size: 2.25rem;
    }

    .service-card {
    padding: 2rem 1.5rem 1.75rem;
    }

    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
    }

    .service-svg-icon {
    width: 38px;
    height: 38px;
    }

    .service-title {
    font-size: 1.375rem;
    }

    .service-description {
    font-size: 1rem;
    min-height: auto;
    margin-bottom: 1.5rem;
    }

    .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .services-diagonal-grid {
    padding: 3rem 0 4rem;
    }

    .services-container {
    padding: 0 1rem;
    }

    .services-main-title {
    font-size: 1.875rem;
    }

    .service-card {
    padding: 1.75rem 1.25rem 1.5rem;
    }

    .service-icon-wrapper {
    width: 64px;
    height: 64px;
    }

    .service-svg-icon {
    width: 34px;
    height: 34px;
    }

    .service-title {
    font-size: 1.25rem;
    }

    .service-description {
    font-size: 0.9375rem;
    }
}
/* FAQ Block: Modern Gradient Cards Design */
.faq-block-vt9x {
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f8f3ff 0%, #fff5f7 35%, #f0fffe 70%, #fef9e7 100%);
    position: relative;
    overflow: hidden;
}

.faq-block-vt9x::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-block-vt9x::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-block-vt9x .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.faq-header-wrap {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-main-title {
    font-size: 3.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.faq-decorative-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #7c3aed, #ec4899, #14b8a6);
    margin: 0 auto;
    border-radius: 10px;
}

.faq-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 920px;
    margin: 0 auto;
}

.faq-card-item {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed 0%, #ec4899 50%, #14b8a6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.15);
}

.faq-card-item:hover::before {
    transform: scaleX(1);
}

.faq-card-inner {
    padding: 2.5rem 2.25rem;
}

.faq-question-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.faq-icon-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ede9fe 0%, #fce7f3 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    transition: all 0.3s ease;
}

.faq-card-item:hover .faq-icon-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: #ffffff;
    transform: rotate(10deg) scale(1.08);
}

.faq-icon-svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.5;
}

.faq-question-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    letter-spacing: -0.01em;
}

.faq-answer-content {
    padding-left: 4rem;
}

.faq-answer-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-block-vt9x {
    padding: 6rem 0 7rem;
    }

    .faq-main-title {
    font-size: 3rem;
    }

    .faq-header-wrap {
    margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .faq-block-vt9x {
    padding: 5rem 0 6rem;
    }

    .faq-main-title {
    font-size: 2.5rem;
    }

    .faq-header-wrap {
    margin-bottom: 3rem;
    }

    .faq-grid-container {
    gap: 1.5rem;
    }

    .faq-card-inner {
    padding: 2rem 1.75rem;
    }

    .faq-question-wrapper {
    gap: 1rem;
    }

    .faq-icon-badge {
    width: 42px;
    height: 42px;
    }

    .faq-icon-svg {
    width: 22px;
    height: 22px;
    }

    .faq-question-text {
    font-size: 1.25rem;
    }

    .faq-answer-content {
    padding-left: 3.5rem;
    }

    .faq-answer-text {
    font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-block-vt9x {
    padding: 4rem 0 5rem;
    }

    .faq-block-vt9x .container {
    padding: 0 1rem;
    }

    .faq-main-title {
    font-size: 2rem;
    }

    .faq-decorative-line {
    width: 90px;
    height: 4px;
    }

    .faq-header-wrap {
    margin-bottom: 2.5rem;
    }

    .faq-grid-container {
    gap: 1.25rem;
    }

    .faq-card-item {
    border-radius: 18px;
    }

    .faq-card-inner {
    padding: 1.75rem 1.5rem;
    }

    .faq-question-wrapper {
    flex-direction: row;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    }

    .faq-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    }

    .faq-icon-svg {
    width: 20px;
    height: 20px;
    }

    .faq-question-text {
    font-size: 1.125rem;
    }

    .faq-answer-content {
    padding-left: 3rem;
    }

    .faq-answer-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    }
}
/* Contact Form Section: Asymmetric Split with Floating Labels */
.contact-form-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-header-area {
    position: relative;
    text-align: center;
    padding: 3rem 0;
}

.decorative-blob {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.15;
    z-index: -1;
    animation: morphBlob 8s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    top: -50px;
    left: -100px;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ffa07a 0%, #ff7f50 100%);
    bottom: -50px;
    right: -80px;
    animation-delay: -4s;
}

@keyframes morphBlob {
    0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
    }
    25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: rotate(90deg) scale(1.1);
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: rotate(180deg) scale(0.95);
    }
    75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(270deg) scale(1.05);
    }
}

.contact-main-header {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa07a 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.contact-form-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.form-group-floating {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-input-field {
    width: 100%;
    padding: 1.25rem 0.75rem 0.75rem;
    font-size: 1.125rem;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1.5rem;
}

.floating-label {
    position: absolute;
    left: 0.75rem;
    top: 1.25rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.form-input-field:focus ~ .floating-label,
.form-input-field:not(:placeholder-shown) ~ .floating-label {
    top: 0;
    font-size: 0.875rem;
    color: #ffa07a;
    font-weight: 600;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ffa07a 50%, #ffd700 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input-field:focus ~ .input-underline {
    width: 100%;
}

.form-input-field:focus {
    border-bottom-color: transparent;
}

.form-input-field::placeholder {
    color: transparent;
}

.textarea-group .floating-label {
    top: 1.5rem;
}

.form-textarea:focus ~ .floating-label,
.form-textarea:not(:placeholder-shown) ~ .floating-label {
    top: 0.25rem;
}

.submit-button-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.submit-button-modern {
    position: relative;
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa07a 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.submit-button-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.submit-button-modern:hover::before {
    left: 100%;
}

.submit-button-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
    background: linear-gradient(135deg, #ff7fa8 0%, #ffb08a 100%);
}

.submit-button-modern:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.5);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    position: relative;
    z-index: 1;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-button-modern:hover .button-icon {
    transform: translateX(5px) rotate(15deg);
}

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

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffa07a 0%, transparent 70%);
    bottom: 15%;
    left: 10%;
    animation: float 12s ease-in-out infinite reverse;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
    transform: translateY(0) translateX(0);
    }
    33% {
    transform: translateY(-30px) translateX(20px);
    }
    66% {
    transform: translateY(20px) translateX(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.08;
    }
    50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.12;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-main-header {
    font-size: 3.5rem;
    }
    
    .contact-form-modern {
    padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
    padding: 5rem 0;
    min-height: auto;
    }
    
    .contact-container {
    padding: 0 1.5rem;
    }
    
    .contact-content-wrapper {
    gap: 2rem;
    }
    
    .contact-header-area {
    padding: 2rem 0;
    }
    
    .contact-main-header {
    font-size: 2.5rem;
    }
    
    .contact-form-modern {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    }
    
    .form-input-field {
    font-size: 1rem;
    padding: 1rem 0.5rem 0.5rem;
    }
    
    .floating-label {
    font-size: 1rem;
    top: 1rem;
    }
    
    .form-input-field:focus ~ .floating-label,
    .form-input-field:not(:placeholder-shown) ~ .floating-label {
    font-size: 0.8125rem;
    }
    
    .submit-button-modern {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    }
    
    .blob-1,
    .blob-2 {
    width: 200px;
    height: 200px;
    }
    
    .circle-decoration {
    display: none;
    }
}

@media (max-width: 480px) {
    .contact-main-header {
    font-size: 2rem;
    }
    
    .contact-form-modern {
    padding: 2rem 1rem;
    }
    
    .form-group-floating {
    margin-bottom: 2rem;
    }
}
/* Contact Information Block: Asymmetric Split with Floating Cards Design */
.contact-info-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-content-wrapper {
    width: 100%;
}

.contact-header-area {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-main-header {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.contact-main-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    border-radius: 10px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    align-items: start;
}

.contact-details-column {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1 0%, #ec4899 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(30, 41, 59, 0.15);
}

.contact-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.contact-address-card {
    border-left: 4px solid #6366f1;
}

.contact-phone-card {
    border-left: 4px solid #8b5cf6;
}

.contact-email-card {
    border-left: 4px solid #ec4899;
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #f0f1ff 0%, #e0e7ff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-address-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.contact-phone-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
}

.contact-email-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.contact-card:hover .contact-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.contact-icon {
    width: 28px;
    height: 28px;
    color: #6366f1;
}

.contact-phone-card .contact-icon {
    color: #8b5cf6;
}

.contact-email-card .contact-icon {
    color: #ec4899;
}

.contact-info-content {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    line-height: 1.6;
}

.contact-link {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #6366f1;
}

.contact-link:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
    border-radius: 4px;
}

.contact-map-column {
    position: sticky;
    top: 2rem;
}

.contact-map-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

.contact-map-container {
    border-radius: 18px;
    overflow: hidden;
    height: 500px;
    position: relative;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-map-column {
    position: static;
    }
    
    .contact-main-header {
    font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
    padding: 5rem 0;
    }
    
    .contact-main-header {
    font-size: 2.25rem;
    }
    
    .contact-header-area {
    margin-bottom: 3rem;
    }
    
    .contact-card {
    padding: 1.5rem;
    gap: 1.25rem;
    }
    
    .contact-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    }
    
    .contact-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .contact-map-container {
    height: 400px;
    }
    
    .contact-card:hover {
    transform: translateX(4px);
    }
}

@media (max-width: 576px) {
    .contact-info-section {
    padding: 4rem 0;
    }
    
    .contact-main-header {
    font-size: 1.875rem;
    }
    
    .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    }
    
    .contact-map-wrapper {
    padding: 0.75rem;
    }
    
    .contact-map-container {
    height: 320px;
    }
    
    .contact-details-column {
    gap: 1.5rem;
    }
}
/* Modern Asymmetric Footer with Gradient Accents */
.footer-block-modern {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8e8;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

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

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Company Info Section */
.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand-wrapper {
    position: relative;
}

.footer-brand-name {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-icon {
    flex-shrink: 0;
    color: #00d4ff;
    margin-top: 2px;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.footer-contact-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #c4c4c4;
}

/* Navigation Sections */
.footer-navigation,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-nav-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-nav-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00d4ff;
    border-radius: 2px;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #c4c4c4;
    text-decoration: none;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 0%, #0099ff 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover,
.footer-link:focus {
    color: #00d4ff;
    transform: translateX(5px);
    outline: none;
}

.footer-link:hover::before,
.footer-link:focus::before {
    width: 100%;
}

.footer-link-text {
    transition: color 0.3s ease;
}

.footer-link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #00d4ff;
}

.footer-link:hover .footer-link-arrow,
.footer-link:focus .footer-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
}

.footer-copyright {
    font-size: 0.9375rem;
    color: #8a8a8a;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
}

/* Decorative Background Elements */
.footer-bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.footer-bg-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    top: -250px;
    right: -100px;
    animation: float-slow 20s ease-in-out infinite;
}

.footer-bg-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0099ff 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    50% {
    transform: translate(30px, -30px) scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    }

    .footer-company-info {
    grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-block-modern {
    padding: 4rem 0 2rem;
    }

    .footer-container {
    padding: 0 1.5rem;
    }

    .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }

    .footer-company-info {
    grid-column: 1;
    }

    .footer-brand-name {
    font-size: 1.875rem;
    }

    .footer-contact-text {
    font-size: 1rem;
    }

    .footer-nav-heading {
    font-size: 1rem;
    }

    .footer-link {
    font-size: 1rem;
    }

    .footer-bg-circle-1,
    .footer-bg-circle-2 {
    display: none;
    }
}

@media (max-width: 576px) {
    .footer-block-modern {
    padding: 3rem 0 1.5rem;
    }

    .footer-container {
    padding: 0 1rem;
    }

    .footer-content-grid {
    gap: 2.5rem;
    }

    .footer-brand-name {
    font-size: 1.625rem;
    }

    .footer-contact-item {
    gap: 0.75rem;
    }

    .footer-icon {
    width: 18px;
    height: 18px;
    }

    .footer-copyright {
    font-size: 0.875rem;
    }
}

/* Focus Styles for Accessibility */
.footer-link:focus-visible {
    outline: 2px solid #00d4ff;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    .footer-bg-decoration {
    display: none;
    }
    
    .footer-block-modern {
    background: #ffffff;
    color: #000000;
    }
    
    .footer-link {
    color: #000000;
    }
}
