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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #0072184d;
}

#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 Section: Asymmetric Split with Neon Accents */
.hero-section-vx9k {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a1a1a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

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

/* Animated Background Shapes */
.hero-bg-shapes-qr5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-circle-1 {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    animation: float-shape-1 20s ease-in-out infinite;
}

.shape-triangle-1 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid rgba(255, 0, 128, 0.1);
    animation: float-shape-2 15s ease-in-out infinite;
}

.shape-square-1 {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 217, 61, 0.08);
    transform: rotate(45deg);
    animation: rotate-shape 30s linear infinite;
}

.shape-blob-1 {
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph-blob 12s ease-in-out infinite;
}

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

@keyframes float-shape-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

@keyframes rotate-shape {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes morph-blob {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 50% 50% 30% 70% / 30% 70% 70% 30%; }
    75% { border-radius: 30% 70% 50% 50% / 70% 30% 30% 70%; }
}

/* Header Navigation */
.hero-header-k2p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
}

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

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

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

.logo-icon-wp2 {
    width: 50px;
    height: 50px;
    color: #00ff88;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    transition: all 0.4s ease;
}

.logo-icon-wp2:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
}

/* Mobile Menu Toggle */
.menu-checkbox-yt7 {
    display: none;
}

.hamburger-label-ks3 {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
    position: relative;
}

.hamburger-line-1,
.hamburger-line-2,
.hamburger-line-3 {
    width: 30px;
    height: 3px;
    background: #00ff88;
    margin: 4px 0;
    transition: all 0.4s ease;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Navigation Menu */
.nav-menu-overlay-lr9 {
    display: flex;
    align-items: center;
}

.nav-list-qm4 {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.nav-link-zh5 {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link-zh5::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #ff0080, #00d4ff);
    transition: width 0.4s ease;
}

.nav-link-zh5:hover {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

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

/* Hero Content Grid */
.hero-content-grid-sc1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding-top: 120px;
}

.hero-text-column-vb7 {
    position: relative;
    z-index: 20;
}

.hero-text-wrapper-nm3 {
    max-width: 600px;
}

.hero-heading-dp9 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subheading-kx2 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 3rem 0;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}

/* CTA Button */
.hero-cta-group-fr6 {
    display: flex;
    gap: 1.5rem;
}

.hero-cta-primary-jt8 {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff0080 0%, #ff0080 50%, #00ff88 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary-jt8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-cta-primary-jt8:hover {
    background-position: 100% 0%;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.6);
}

.hero-cta-primary-jt8:hover::before {
    transform: translateX(100%);
}

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

.cta-arrow-icon-bm1 {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.hero-cta-primary-jt8:hover .cta-arrow-icon-bm1 {
    transform: translateX(5px);
}

/* Hero Visual Column */
.hero-visual-column-hq5 {
    position: relative;
    height: 600px;
}

.hero-image-container-tk9 {
    position: relative;
    width: 100%;
    height: 100%;
}

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

@keyframes morph-image {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 50% 50% 30% 70% / 30% 70% 70% 30%; }
    75% { border-radius: 30% 70% 50% 50% / 70% 30% 30% 70%; }
}

.image-overlay-gradient-pn7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.3) 0%, rgba(0, 255, 136, 0.3) 100%);
    mix-blend-mode: multiply;
}

/* Floating SVG Elements */
.floating-element-rt2 {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.float-1 {
    top: -10%;
    right: 10%;
    animation: float-up-down 6s ease-in-out infinite;
}

.float-2 {
    bottom: 10%;
    left: -5%;
    animation: float-left-right 8s ease-in-out infinite;
}

.float-3 {
    top: 50%;
    right: -5%;
    animation: float-rotate 10s ease-in-out infinite;
}

@keyframes float-up-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes float-left-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

@keyframes float-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* Scroll Indicator */
.scroll-indicator-vy3 {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}

.scroll-line-animated-qj8 {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #00ff88, transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content-grid-sc1 {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 100px;
    }
    
    .hero-visual-column-hq5 {
    height: 400px;
    order: -1;
    }
    
    .hero-heading-dp9 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-subheading-kx2 {
    font-size: 1.25rem;
    }
    
    .hamburger-label-ks3 {
    display: flex;
    }
    
    .nav-menu-overlay-lr9 {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #1a0a1a 0%, #0a1a1a 100%);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    }
    
    .menu-checkbox-yt7:checked ~ .nav-menu-overlay-lr9 {
    transform: translateX(0);
    }
    
    .nav-list-qm4 {
    flex-direction: column;
    gap: 2rem;
    }
    
    .nav-link-zh5 {
    font-size: 1.5rem;
    display: block;
    padding: 1rem 0;
    }
    
    /* Hamburger Animation */
    .menu-checkbox-yt7:checked ~ .hamburger-label-ks3 .hamburger-line-1 {
    transform: rotate(45deg) translate(8px, 8px);
    background: #ff0080;
    }
    
    .menu-checkbox-yt7:checked ~ .hamburger-label-ks3 .hamburger-line-2 {
    opacity: 0;
    }
    
    .menu-checkbox-yt7:checked ~ .hamburger-label-ks3 .hamburger-line-3 {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ff0080;
    }
    
    /* Mobile Menu Overlay */
    .menu-checkbox-yt7:checked ~ .nav-menu-overlay-lr9::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    animation: fade-in 0.4s ease;
    }
    
    @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
    }
}

@media (max-width: 576px) {
    .hero-container-mw7 {
    padding: 0 1.5rem;
    }
    
    .hero-heading-dp9 {
    font-size: 2.5rem;
    }
    
    .hero-subheading-kx2 {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    }
    
    .hero-cta-primary-jt8 {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-visual-column-hq5 {
    height: 300px;
    }
    
    .nav-menu-overlay-lr9 {
    max-width: 100%;
    }
    
    .shape-circle-1,
    .shape-triangle-1 {
    width: 150px;
    height: 150px;
    }
}
/* Features Block: Asymmetric Floating Cards with Gradient Mesh */
.features-wave-mesh {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #fff5f7 0%, #ffe8f0 25%, #f0f9ff 50%, #e0f2fe 75%, #dbeafe 100%);
    overflow: hidden;
}

/* Animated Mesh Gradient Background */
.mesh-gradient-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(circle at 20% 30%, rgba(251, 113, 133, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(3%, -3%) rotate(1deg); }
    66% { transform: translate(-3%, 3%) rotate(-1deg); }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 15s ease-in-out infinite;
    z-index: 2;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fb7185, transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #a78bfa, transparent);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #60a5fa, transparent);
    bottom: 15%;
    left: 50%;
    animation-delay: 10s;
}

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

/* Container */
.features-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
}

/* Asymmetric Grid Layout */
.features-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    align-items: start;
}

/* Feature Cards Base Styles */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(251, 113, 133, 0.15),
                0 8px 20px rgba(147, 51, 234, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #fb7185, #a78bfa, #60a5fa);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(251, 113, 133, 0.25),
                0 15px 35px rgba(147, 51, 234, 0.2);
}

/* Large Feature Card */
.feature-large {
    grid-column: 1 / 8;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 242, 0.9) 100%);
}

/* Medium Feature Card */
.feature-medium {
    grid-column: 8 / 13;
    transform: translateY(4rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 232, 255, 0.9) 100%);
}

/* Compact Feature Card */
.feature-compact {
    grid-column: 3 / 10;
    transform: translateY(-2rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.9) 100%);
}

/* Feature Image Wrapper */
.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fce7f3, #e0e7ff, #dbeafe);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.3), transparent);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.feature-card:hover .image-glow {
    opacity: 1;
}

.feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.feature-card:hover .feature-img {
    transform: scale(1.1) rotate(2deg);
}

/* Feature Content */
.feature-content {
    position: relative;
    z-index: 3;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fb7185, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    transform: translateX(5px);
}

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

/* Accent Line */
.feature-accent-line {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #fb7185, #a78bfa, #60a5fa);
    border-radius: 2px;
    margin-top: 1.5rem;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-accent-line {
    width: 80px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid-asymmetric {
    gap: 2.5rem;
    }
    
    .feature-large {
    grid-column: 1 / 7;
    }
    
    .feature-medium {
    grid-column: 7 / 13;
    transform: translateY(2rem);
    }
    
    .feature-compact {
    grid-column: 2 / 12;
    }
}

@media (max-width: 992px) {
    .features-wave-mesh {
    padding: 5rem 0 6rem;
    }
    
    .features-grid-asymmetric {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .feature-large,
    .feature-medium,
    .feature-compact {
    grid-column: 1 / -1;
    transform: translateY(0);
    }
    
    .feature-image-wrapper {
    height: 200px;
    }
    
    .feature-title {
    font-size: 1.75rem;
    }
    
    .floating-orb {
    display: none;
    }
}

@media (max-width: 768px) {
    .features-wave-mesh {
    padding: 4rem 0 5rem;
    }
    
    .features-container {
    padding: 0 1.5rem;
    }
    
    .feature-card {
    padding: 2rem;
    border-radius: 20px;
    }
    
    .feature-image-wrapper {
    height: 180px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    }
    
    .feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    }
    
    .feature-description {
    font-size: 1rem;
    line-height: 1.6;
    }
    
    .features-grid-asymmetric {
    gap: 2rem;
    }
}

@media (max-width: 576px) {
    .features-wave-mesh {
    padding: 3rem 0 4rem;
    }
    
    .feature-card {
    padding: 1.5rem;
    }
    
    .feature-image-wrapper {
    height: 160px;
    }
    
    .feature-title {
    font-size: 1.375rem;
    }
    
    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Carousel Section - Modern Design with Purple/Cyan Theme */
.testimonials-carousel-section {
    padding: 7rem 0;
    background: linear-gradient(165deg, #f8f9ff 0%, #fff5f8 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

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

.testimonials-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

.testimonials-carousel {
    position: relative;
    min-height: 450px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem 2.5rem 2.5rem;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.testimonial-card.testimonial-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    z-index: 2;
}

/* Fallback: show all cards stacked when JS is disabled */
.no-js .testimonial-card {
    position: relative;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-bottom: 2rem;
}

.testimonial-card:hover {
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.18);
}

.testimonial-quote-icon {
    position: absolute;
    top: -24px;
    left: 2.5rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #334155;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f1f5f9;
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

.testimonial-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-author h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.carousel-btn {
    pointer-events: all;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #7c3aed;
    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.08);
}

.carousel-btn:hover {
    background: #7c3aed;
    color: #ffffff;
    border-color: #7c3aed;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.carousel-btn:focus {
    outline: 3px solid rgba(124, 58, 237, 0.3);
    outline-offset: 2px;
}

.carousel-prev {
    margin-left: -28px;
}

.carousel-next {
    margin-right: -28px;
}

/* Carousel Pagination */
.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

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

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

.pagination-dot.pagination-active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
}

.pagination-dot:focus {
    outline: 3px solid rgba(124, 58, 237, 0.3);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-carousel-section {
    padding: 5rem 0;
    }
    
    .testimonials-header {
    margin-bottom: 3rem;
    }
    
    .testimonial-card {
    padding: 2.5rem 2rem 2rem;
    min-height: auto;
    }
    
    .testimonial-text {
    font-size: 1.125rem;
    }
    
    .carousel-prev {
    margin-left: -20px;
    }
    
    .carousel-next {
    margin-right: -20px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-section {
    padding: 4rem 0;
    }
    
    .testimonials-header h2 {
    font-size: 2rem;
    }
    
    .testimonials-carousel {
    min-height: 500px;
    }
    
    .testimonial-card {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 24px;
    }
    
    .testimonial-quote-icon {
    width: 48px;
    height: 48px;
    left: 1.5rem;
    border-radius: 12px;
    }
    
    .testimonial-quote-icon svg {
    width: 36px;
    height: 36px;
    }
    
    .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    }
    
    .testimonial-footer {
    gap: 1rem;
    padding-top: 1.25rem;
    }
    
    .testimonial-avatar {
    width: 56px;
    height: 56px;
    }
    
    .testimonial-author h4 {
    font-size: 1rem;
    }
    
    .carousel-btn {
    width: 48px;
    height: 48px;
    }
    
    .carousel-btn svg {
    width: 20px;
    height: 20px;
    }
    
    .carousel-prev {
    margin-left: -12px;
    }
    
    .carousel-next {
    margin-right: -12px;
    }
    
    .carousel-pagination {
    margin-top: 2rem;
    gap: 0.75rem;
    }
    
    .pagination-dot {
    width: 10px;
    height: 10px;
    }
    
    .pagination-dot.pagination-active {
    width: 28px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-section {
    padding: 3rem 0;
    }
    
    .testimonials-header {
    margin-bottom: 2.5rem;
    }
    
    .testimonials-carousel {
    min-height: 550px;
    }
    
    .testimonial-card {
    padding: 1.75rem 1.25rem 1.25rem;
    border-radius: 20px;
    }
    
    .testimonial-text {
    font-size: 0.9375rem;
    }
    
    .carousel-controls {
    display: none;
    }
    
    .carousel-pagination {
    margin-top: 2.5rem;
    }
}
/* Services Block: Floating Card Grid with Gradient Accents */
.services-floating-grid {
    padding: 7rem 0 8rem;
    background: linear-gradient(160deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff 0%, #7b2ff7 50%, #ff6b9d 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.3);
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card-float {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-card-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #7b2ff7 50%, #ff6b9d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(123, 47, 247, 0.2);
}

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

.service-card-float:nth-child(odd) {
    transform: rotate(-1deg);
}

.service-card-float:nth-child(even) {
    transform: rotate(1deg);
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

.service-card-inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.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, 212, 255, 0.05) 0%, rgba(123, 47, 247, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card-float:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
}

.service-icon-svg {
    width: 56px;
    height: 56px;
    transition: transform 0.3s ease;
}

.service-card-float:hover .service-icon-svg {
    transform: scale(1.15);
}

.service-content-block {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-title-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-description-text {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.service-action-zone {
    margin-top: auto;
}

.service-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #7b2ff7 0%, #00d4ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.25);
    position: relative;
    overflow: hidden;
}

.service-more-btn::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.5s ease;
}

.service-more-btn:hover::before {
    left: 100%;
}

.service-more-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(123, 47, 247, 0.35);
}

.service-more-btn:focus {
    outline: 3px solid rgba(123, 47, 247, 0.4);
    outline-offset: 2px;
}

.service-more-btn span {
    position: relative;
    z-index: 1;
}

.btn-arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .services-floating-grid {
    padding: 5rem 0 6rem;
    }
    
    .services-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
    
    .services-header-zone {
    margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .services-floating-grid {
    padding: 4rem 0 5rem;
    }
    
    .services-container-wrapper {
    padding: 0 1.5rem;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .services-header-zone {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    }
    
    .title-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .service-card-float:nth-child(odd),
    .service-card-float:nth-child(even) {
    transform: rotate(0deg);
    }
    
    .service-card-float:hover {
    transform: translateY(-8px) scale(1.01);
    }
    
    .service-card-inner {
    padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .service-icon-svg {
    width: 48px;
    height: 48px;
    }
    
    .service-title-text {
    font-size: 1.375rem;
    }
    
    .service-description-text {
    font-size: 1rem;
    }
    
    .service-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .services-floating-grid {
    padding: 3rem 0 4rem;
    }
    
    .services-container-wrapper {
    padding: 0 1rem;
    }
    
    .services-main-title {
    font-size: 2rem;
    }
    
    .service-card-inner {
    padding: 1.75rem 1.25rem;
    }
    
    .service-title-text {
    font-size: 1.25rem;
    }
    
    .service-more-btn {
    width: 100%;
    justify-content: center;
    }
}
/* FAQ Section: Minimalist with Gradient Accent Lines */
.faq-section-creative {
    padding: 7rem 0;
    background: linear-gradient(180deg, #fef3f8 0%, #ffffff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-creative::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-creative::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-creative .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

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

.faq-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item-modern {
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899 0%, #8b5cf6 50%, #0ea5e9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-modern:hover {
    border-color: rgba(236, 72, 153, 0.2);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.12);
}

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

.faq-item-modern.faq-active {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.15);
}

.faq-item-modern.faq-active::before {
    transform: scaleX(1);
}

.faq-question-btn {
    width: 100%;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-btn:hover {
    background: rgba(236, 72, 153, 0.02);
}

.faq-question-btn:focus {
    outline: none;
}

.faq-question-btn:focus-visible {
    outline: 2px solid #ec4899;
    outline-offset: -2px;
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item-modern.faq-active .faq-question-text {
    color: #ec4899;
}

.faq-icon-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #64748b;
    transition: all 0.3s ease;
}

.faq-item-modern:hover .faq-icon-toggle {
    color: #ec4899;
    transform: scale(1.1);
}

.faq-item-modern.faq-active .faq-icon-toggle {
    color: #ec4899;
    transform: rotate(180deg);
}

.faq-icon-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.icon-plus {
    opacity: 1;
}

.icon-minus {
    opacity: 0;
}

.faq-item-modern.faq-active .icon-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item-modern.faq-active .icon-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-creative {
    padding: 4rem 0;
    }
    
    .faq-main-title {
    font-size: 2.25rem;
    }
    
    .faq-header-wrap {
    margin-bottom: 2.5rem;
    }
    
    .faq-accordion-container {
    gap: 1rem;
    }
    
    .faq-item-modern {
    border-radius: 12px;
    }
    
    .faq-question-btn {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
    }
    
    .faq-question-text {
    font-size: 1.0625rem;
    }
    
    .faq-icon-toggle {
    width: 24px;
    height: 24px;
    }
    
    .faq-icon-toggle svg {
    width: 20px;
    height: 20px;
    }
    
    .faq-answer-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-answer-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .faq-section-creative {
    padding: 3rem 0;
    }
    
    .faq-main-title {
    font-size: 1.875rem;
    }
    
    .faq-section-creative .container {
    padding: 0 1rem;
    }
    
    .faq-question-btn {
    padding: 1rem 1rem;
    }
    
    .faq-question-text {
    font-size: 1rem;
    }
    
    .faq-answer-content {
    padding: 0 1rem 1rem 1rem;
    }
}
/* Contact Form Block: Geometric Split Design with Gradient Accent */
.contact-form-section-zx9 {
    padding: 0;
    margin: 0;
    background: linear-gradient(165deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-form-section-zx9::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow-zx9 8s ease-in-out infinite;
}

@keyframes pulse-glow-zx9 {
    0%, 100% {
    transform: scale(1);
    opacity: 0.3;
    }
    50% {
    transform: scale(1.1);
    opacity: 0.5;
    }
}

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

.contact-content-wrapper-zx9 {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 
                0 0 80px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Visual Panel with Geometric Shapes */
.contact-visual-panel-zx9 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.geometric-shape-1-zx9 {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg);
    animation: float-shape-1-zx9 6s ease-in-out infinite;
}

@keyframes float-shape-1-zx9 {
    0%, 100% {
    transform: rotate(45deg) translateY(0);
    }
    50% {
    transform: rotate(55deg) translateY(-20px);
    }
}

.geometric-shape-2-zx9 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transform: rotate(25deg);
    animation: float-shape-2-zx9 7s ease-in-out infinite;
}

@keyframes float-shape-2-zx9 {
    0%, 100% {
    transform: rotate(25deg) translateX(0);
    }
    50% {
    transform: rotate(35deg) translateX(15px);
    }
}

.geometric-shape-3-zx9 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.floating-circle-zx9 {
    position: absolute;
    top: 60%;
    left: 25%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4);
    animation: float-circle-zx9 5s ease-in-out infinite;
}

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

/* Form Panel */
.contact-form-panel-zx9 {
    padding: 5rem 4rem;
    background: rgba(15, 12, 41, 0.6);
    backdrop-filter: blur(10px);
}

.contact-heading-zx9 {
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 3rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-heading-zx9::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    border-radius: 2px;
}

/* Form Styling */
.contact-form-zx9 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group-zx9 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label-zx9 {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-input-zx9,
.form-textarea-zx9 {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-size: 1.0625rem;
    font-family: inherit;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-input-zx9::placeholder,
.form-textarea-zx9::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input-zx9:focus,
.form-textarea-zx9:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f093fb;
    box-shadow: 0 0 0 4px rgba(240, 147, 251, 0.15),
                0 8px 24px rgba(240, 147, 251, 0.2);
    transform: translateY(-2px);
}

.form-input-zx9:hover,
.form-textarea-zx9:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.form-textarea-zx9 {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

/* Submit Button */
.form-submit-btn-zx9 {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
    align-self: flex-start;
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

.form-submit-btn-zx9::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 ease;
}

.form-submit-btn-zx9:hover::before {
    left: 100%;
}

.form-submit-btn-zx9:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.45);
}

.form-submit-btn-zx9:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-text-zx9 {
    position: relative;
    z-index: 2;
}

.btn-arrow-zx9 {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit-btn-zx9:hover .btn-arrow-zx9 {
    transform: translateX(6px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-content-wrapper-zx9 {
    grid-template-columns: 42% 58%;
    }
    
    .contact-form-panel-zx9 {
    padding: 4rem 3rem;
    }
}

@media (max-width: 992px) {
    .contact-content-wrapper-zx9 {
    grid-template-columns: 1fr;
    }
    
    .contact-visual-panel-zx9 {
    padding: 4rem 2rem;
    min-height: 300px;
    }
    
    .contact-form-panel-zx9 {
    padding: 3.5rem 2.5rem;
    }
    
    .contact-heading-zx9 {
    font-size: 2.5rem;
    }
    
    .geometric-shape-1-zx9 {
    width: 140px;
    height: 140px;
    }
    
    .geometric-shape-3-zx9 {
    width: 220px;
    height: 220px;
    }
}

@media (max-width: 768px) {
    .contact-form-section-zx9 {
    min-height: auto;
    padding: 3rem 0;
    }
    
    .contact-container-zx9 {
    padding: 2rem 1.5rem;
    }
    
    .contact-content-wrapper-zx9 {
    border-radius: 0 30px 0 30px;
    }
    
    .contact-form-panel-zx9 {
    padding: 2.5rem 2rem;
    }
    
    .contact-heading-zx9 {
    font-size: 2rem;
    margin-bottom: 2rem;
    }
    
    .form-input-zx9,
    .form-textarea-zx9 {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    }
    
    .form-submit-btn-zx9 {
    width: 100%;
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    }
    
    .contact-visual-panel-zx9 {
    display: none;
    }
}

@media (max-width: 576px) {
    .contact-heading-zx9 {
    font-size: 1.75rem;
    }
    
    .form-label-zx9 {
    font-size: 0.875rem;
    }
    
    .form-group-zx9 {
    gap: 0.5rem;
    }
    
    .contact-form-zx9 {
    gap: 1.5rem;
    }
}
/* Contact Information Block: Asymmetric Split with Floating Cards */
.contact-info-block-tx9 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    overflow: hidden;
}

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

/* Header Section */
.contact-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-main-heading {
    font-size: 3.75rem;
    font-weight: 800;
    color: #0c4a6e;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.header-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

/* Grid Layout */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Details Column */
.contact-details-column {
    position: relative;
}

.contact-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Info Cards */
.contact-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 30px rgba(14, 116, 144, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(14, 116, 144, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(14, 116, 144, 0.2);
    border-color: #06b6d4;
}

.contact-info-card:hover::before {
    opacity: 1;
}

/* Card Icons */
.card-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.address-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
    box-shadow: 0 8px 20px rgba(14, 116, 144, 0.3);
}

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

.contact-icon {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

/* Card Content */
.card-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0891b2;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0c4a6e;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}

.phone-link,
.email-link {
    color: #0c4a6e;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.phone-link::after,
.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 100%);
    transition: width 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: #0891b2;
}

.phone-link:hover::after,
.email-link:hover::after {
    width: 100%;
}

.phone-link:focus,
.email-link:focus {
    outline: 3px solid #06b6d4;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Map Column */
.contact-map-column {
    position: relative;
}

.map-container-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(14, 116, 144, 0.25);
    height: 600px;
}

.map-frame-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    border-radius: 36px;
    z-index: 0;
}

.map-embed-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    z-index: 1;
    background: #e0f2fe;
}

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

.map-overlay-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.1) 0%, transparent 30%);
    pointer-events: none;
    z-index: 2;
}

/* Decorative Background Elements */
.bg-decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    top: -100px;
    left: -150px;
    animation: float-circle-1 20s ease-in-out infinite;
}

.circle-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #0891b2 0%, transparent 70%);
    bottom: -80px;
    right: -100px;
    animation: float-circle-2 25s ease-in-out infinite;
}

.bg-decoration-blob {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    animation: morph-blob 30s ease-in-out infinite;
}

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

@keyframes float-circle-2 {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    50% {
    transform: translate(-40px, 30px) scale(1.15);
    }
}

@keyframes morph-blob {
    0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    }
    
    .map-container-wrapper {
    height: 500px;
    }
}

@media (max-width: 992px) {
    .contact-info-block-tx9 {
    padding: 5rem 0;
    }
    
    .contact-main-heading {
    font-size: 3rem;
    }
    
    .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .map-container-wrapper {
    height: 450px;
    }
    
    .contact-info-card {
    padding: 1.75rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info-block-tx9 {
    padding: 4rem 0;
    }
    
    .contact-container-main {
    padding: 0 1.5rem;
    }
    
    .contact-main-heading {
    font-size: 2.25rem;
    }
    
    .contact-header-wrapper {
    margin-bottom: 3rem;
    }
    
    .contact-info-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    }
    
    .card-icon-wrapper {
    width: 65px;
    height: 65px;
    }
    
    .contact-icon {
    width: 32px;
    height: 32px;
    }
    
    .contact-value {
    font-size: 1.125rem;
    }
    
    .map-container-wrapper {
    height: 400px;
    }
    
    .circle-1,
    .circle-2 {
    width: 250px;
    height: 250px;
    }
    
    .blob-1 {
    width: 300px;
    height: 300px;
    right: -150px;
    }
}

@media (max-width: 576px) {
    .contact-main-heading {
    font-size: 1.875rem;
    }
    
    .header-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .contact-card-wrapper {
    gap: 1.5rem;
    }
    
    .contact-info-card {
    padding: 1.5rem 1.25rem;
    }
    
    .card-icon-wrapper {
    width: 60px;
    height: 60px;
    }
    
    .contact-icon {
    width: 28px;
    height: 28px;
    }
    
    .contact-label {
    font-size: 0.75rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container-wrapper {
    height: 350px;
    border-radius: 24px;
    }
    
    .map-frame-border {
    border-radius: 28px;
    }
    
    .map-embed-wrapper {
    border-radius: 24px;
    }
}
/* Modern Gradient Footer with Icon Accents */
.footer-gradient-modern {
    position: relative;
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f0 50%, #f0f9ff 100%);
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.footer-gradient-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(196, 69, 105, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    z-index: 1;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    flex-shrink: 0;
}

.footer-brand-icon svg {
    display: block;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 157, 0.3));
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-brand-icon svg {
    transform: scale(1.05) rotate(5deg);
}

.footer-brand-name {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.02em;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.6;
}

.footer-icon {
    flex-shrink: 0;
    color: #ff6b9d;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover .footer-icon {
    transform: scale(1.1);
}

.footer-phone-link {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

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

.footer-phone-link:hover {
    color: #ff6b9d;
}

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

/* Navigation Section Styles */
.footer-nav-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

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

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    border-radius: 2px;
}

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

.footer-nav-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 1.25rem;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ff6b9d;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-nav-link:hover {
    color: #ff6b9d;
    padding-left: 1.5rem;
}

.footer-nav-link:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.footer-nav-link:focus {
    outline: 2px solid #ff6b9d;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Wave Divider */
.footer-wave-divider {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.footer-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Footer Bottom Bar */
.footer-bottom {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(196, 69, 105, 0.15);
    text-align: center;
    z-index: 1;
}

.footer-copyright {
    font-size: 0.9375rem;
    color: #718096;
    margin: 0;
}

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

    .footer-nav-section {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    }
}

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

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

    .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    }

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

    .footer-nav-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    }

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

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

    .footer-bottom {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem 0;
    }

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

    .footer-wave-divider {
    bottom: 50px;
    }

    .footer-wave-divider svg {
    height: 50px;
    }
}

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

    .footer-container {
    padding: 0 1.25rem;
    gap: 2rem;
    }

    .footer-brand-icon svg {
    width: 40px;
    height: 40px;
    }

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

    .footer-contact-details {
    gap: 1rem;
    }

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

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

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

    .footer-nav-list {
    gap: 0.75rem;
    }

    .footer-nav-link {
    font-size: 0.9375rem;
    padding-left: 1rem;
    }

    .footer-nav-link:hover {
    padding-left: 1.25rem;
    }

    .footer-bottom {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem 0;
    }
}
