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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #7ab7094d;
}

#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;
}
/* Header: Asymmetric Split Navigation with Floating Card Design */
.main-header-cosmic {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: rgba(10, 10, 20, 0.85);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header-cosmic.scrolled {
background: rgba(10, 10, 20, 0.95);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
border-bottom-color: rgba(138, 43, 226, 0.3);
}

.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
align-items: center;
justify-content: space-between;
min-height: 85px;
}

/* Brand Section with Animated Orb */
.brand-wrapper {
position: relative;
z-index: 10;
}

.brand-link {
display: flex;
align-items: center;
gap: 0.875rem;
text-decoration: none;
transition: all 0.3s ease;
}

.brand-link:hover {
transform: translateX(4px);
}

.brand-orb {
width: 42px;
height: 42px;
background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
border-radius: 50%;
position: relative;
overflow: hidden;
box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.brand-orb::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
animation: shimmer 3s infinite;
}

@keyframes shimmer {
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.brand-text {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -0.02em;
}

/* Desktop Navigation - Floating Card Style */
.nav-desktop {
display: none;
}

.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.5rem;
padding: 0.75rem 1.25rem;
color: #e0e0ff;
text-decoration: none;
font-size: 1rem;
font-weight: 500;
background: transparent;
border: none;
cursor: pointer;
position: relative;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 12px;
}

.nav-link:hover {
color: #ffffff;
background: rgba(138, 43, 226, 0.15);
}

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

.link-underline {
position: absolute;
bottom: 8px;
left: 1.25rem;
right: 1.25rem;
height: 2px;
background: linear-gradient(90deg, #8a2be2 0%, #ff1493 100%);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .link-underline {
transform: scaleX(1);
transform-origin: left;
}

/* CTA Link Special Styling */
.nav-cta {
background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
color: #ffffff;
border-radius: 50px;
padding: 0.75rem 1.75rem;
position: relative;
overflow: hidden;
}

.nav-cta:hover {
background: linear-gradient(135deg, #9a3bf2 0%, #ff2fa3 100%);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.nav-cta .link-underline {
display: none;
}

.cta-glow {
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;
}

.nav-cta:hover .cta-glow {
left: 100%;
}

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

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

.dropdown-menu-new {
position: absolute;
top: calc(100% + 8px);
left: 50%;
transform: translateX(-50%) translateY(-10px);
background: rgba(20, 20, 35, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(138, 43, 226, 0.3);
border-radius: 16px;
min-width: 220px;
opacity: 0;
visibility: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.dropdown-inner {
padding: 0.75rem;
}

.dropdown-link {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.875rem 1rem;
color: #e0e0ff;
text-decoration: none;
font-size: 0.9375rem;
border-radius: 10px;
transition: all 0.2s ease;
}

.dropdown-link:hover {
background: rgba(138, 43, 226, 0.2);
color: #ffffff;
transform: translateX(4px);
}

.dropdown-icon {
font-size: 1.125rem;
color: #8a2be2;
transition: transform 0.2s ease;
}

.dropdown-link:hover .dropdown-icon {
transform: translateX(4px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 44px;
height: 44px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 1001;
transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
background: rgba(138, 43, 226, 0.15);
border-radius: 10px;
}

.hamburger-line {
width: 26px;
height: 2px;
background: #ffffff;
border-radius: 2px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}

.hamburger-line:not(:last-child) {
margin-bottom: 6px;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
opacity: 0;
transform: translateX(-20px);
}

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

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(10, 10, 20, 0.98);
backdrop-filter: blur(30px);
-webkit-backdrop-filter: blur(30px);
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-mobile {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 6rem 2rem 2rem;
position: relative;
}

.mobile-nav-list {
list-style: none;
margin: 0;
padding: 0;
width: 100%;
max-width: 500px;
}

.mobile-nav-item {
opacity: 0;
transform: translateX(-30px);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-nav-overlay.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-link {
display: flex;
align-items: center;
gap: 1.25rem;
padding: 1.25rem 1.5rem;
color: #e0e0ff;
text-decoration: none;
font-size: 1.5rem;
font-weight: 600;
background: transparent;
border: none;
width: 100%;
text-align: left;
cursor: pointer;
border-radius: 16px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.mobile-nav-link::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
background: linear-gradient(180deg, #8a2be2 0%, #ff1493 100%);
transform: scaleY(0);
transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
background: rgba(138, 43, 226, 0.1);
color: #ffffff;
padding-left: 2rem;
}

.mobile-nav-link:hover::before {
transform: scaleY(1);
}

.mobile-link-number {
font-size: 1rem;
color: #8a2be2;
font-weight: 700;
min-width: 32px;
}

.mobile-link-text {
flex: 1;
}

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

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

/* Mobile Dropdown Menu */
.mobile-dropdown-menu-new {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
padding-left: 3rem;
}

.mobile-dropdown-menu-new.active {
max-height: 300px;
}

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

.mobile-dropdown-link:hover {
background: rgba(138, 43, 226, 0.15);
color: #ffffff;
padding-left: 1.5rem;
}

/* Mobile CTA Styling */
.mobile-nav-cta {
background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
color: #ffffff;
margin-top: 1rem;
border-radius: 50px;
}

.mobile-nav-cta:hover {
background: linear-gradient(135deg, #9a3bf2 0%, #ff2fa3 100%);
box-shadow: 0 10px 40px rgba(138, 43, 226, 0.5);
}

/* Mobile Navigation Decoration */
.mobile-nav-decoration {
position: fixed;
bottom: 2rem;
right: 2rem;
pointer-events: none;
}

.decoration-circle {
width: 200px;
height: 200px;
border-radius: 50%;
background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
filter: blur(40px);
}

.decoration-line {
position: absolute;
top: 50%;
left: 50%;
width: 300px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
transform: translate(-50%, -50%) rotate(-45deg);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
overflow: hidden;
}

/* Desktop Navigation Display */
@media (min-width: 992px) {
.nav-desktop {
    display: block;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-nav-overlay {
    display: none;
}
}

/* Tablet Responsive */
@media (max-width: 991px) and (min-width: 768px) {
.header-container {
    padding: 0 1.5rem;
}

.mobile-nav-link {
    font-size: 1.75rem;
}
}

/* Mobile Responsive */
@media (max-width: 767px) {
.header-container {
    padding: 0 1.25rem;
    min-height: 70px;
}

.brand-orb {
    width: 36px;
    height: 36px;
}

.brand-text {
    font-size: 1.25rem;
}

.mobile-nav-link {
    font-size: 1.25rem;
    padding: 1rem 1rem;
    gap: 1rem;
}

.mobile-link-number {
    font-size: 0.875rem;
    min-width: 28px;
}

.mobile-dropdown-menu-new {
    padding-left: 2.5rem;
}

.mobile-dropdown-link {
    font-size: 1rem;
    padding: 0.75rem 0.75rem;
}

.decoration-circle {
    width: 150px;
    height: 150px;
}

.decoration-line {
    width: 200px;
}
}

/* Small Mobile */
@media (max-width: 480px) {
.header-container {
    padding: 0 1rem;
}

.brand-text {
    font-size: 1.125rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    padding: 0.875rem 0.875rem;
}
}
/* Hero Asymmetric Split Design - Unique ID: hero-asym-split-2x9 */
.hero-asym-split-2x9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* Background Layer */
.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(236, 72, 153, 0.3) 100%);
    mix-blend-mode: multiply;
}

/* Animated Shapes */
.hero-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
    animation-delay: 7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

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

/* Content Container */
.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    align-items: center;
}

/* Text Column */
.hero-text-column {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.badge-icon {
    color: #6366f1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
    opacity: 1;
    transform: scale(1);
    }
    50% {
    opacity: 0.7;
    transform: scale(1.1);
    }
}

.hero-main-heading {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    margin-bottom: 2.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: #cbd5e1;
    font-weight: 400;
    max-width: 600px;
}

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

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.hero-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

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

.hero-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: transparent;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

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

.hero-floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-floating-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.hero-card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation: floatCard1 6s ease-in-out infinite;
}

.hero-card-2 {
    top: 180px;
    right: 0;
    width: 260px;
    animation: floatCard2 7s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: 0;
    left: 60px;
    width: 270px;
    animation: floatCard3 8s ease-in-out infinite;
    animation-delay: 2s;
}

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

@keyframes floatCard2 {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-25px) rotate(-2deg);
    }
}

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

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.card-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.hero-decorative-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.2);
    z-index: -1;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from {
    transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
    transform: translate(-50%, -50%) rotate(360deg);
    }
}



/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-text-column {
    padding-right: 0;
    text-align: center;
    }
    
    .hero-badge {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-trust-indicators {
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 500px;
    margin: 0 auto;
    max-width: 500px;
    }
    
    .hero-card-1 {
    width: 240px;
    }
    
    .hero-card-2 {
    width: 220px;
    top: 150px;
    }
    
    .hero-card-3 {
    width: 230px;
    left: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content-container {
    padding: 6rem 1.5rem 4rem;
    }
    
    .hero-main-heading {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    }
    
    .trust-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    }
    
    .hero-visual-column {
    height: 400px;
    }
    
    .hero-floating-card {
    padding: 1.25rem;
    }
    
    .hero-card-1 {
    width: 200px;
    top: 0;
    left: 0;
    }
    
    .hero-card-2 {
    width: 180px;
    top: 120px;
    right: 0;
    }
    
    .hero-card-3 {
    width: 190px;
    bottom: 0;
    left: 20px;
    }
    
    .card-title {
    font-size: 1.125rem;
    }
    
    .card-description {
    font-size: 0.875rem;
    }
    
    .card-icon-wrapper {
    width: 52px;
    height: 52px;
    }
    
    .hero-decorative-circle {
    width: 350px;
    height: 350px;
    }
    
    .shape-1 {
    width: 300px;
    height: 300px;
    }
    
    .shape-2 {
    width: 250px;
    height: 250px;
    }
    
    .shape-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-main-heading {
    font-size: 2rem;
    }
    
    .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    align-items:center;
}
    
    .hero-btn {
    width: 80%;
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 350px;
    }
    
    .hero-card-1 {
    width: 160px;
    }
    
    .hero-card-2 {
    width: 150px;
    top: 100px;
    }
    
    .hero-card-3 {
    width: 155px;
    left: 10px;
    }

}
/* Futures Block - Diagonal Split Grid with Gradient Accents */
.futures-block-zx89 {
    position: relative;
    padding: 8rem 0 10rem;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

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

.futures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

/* Future Cards */
.future-card {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.future-card-1 {
    transform: translateY(3rem);
}

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

.future-card-3 {
    transform: translateY(3rem);
}

.future-card:hover {
    transform: translateY(-1rem) !important;
}

.future-card-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.future-card:hover .future-card-inner {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Image Wrapper */
.future-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.future-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
}

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

.future-card:hover .future-image img,
.future-card:hover .future-image svg {
    transform: scale(1.08);
}

/* Image Accent Backgrounds */
.image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.future-card:hover .image-accent {
    opacity: 0.25;
    transform: scale(1.05);
}

.accent-coral {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #f06292 100%);
}

.accent-lime {
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 50%, #06d6a0 100%);
}

.accent-cyan {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #7b68ee 100%);
}

/* Content */
.future-content {
    position: relative;
    z-index: 2;
}

.future-header {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.future-card-1:hover .future-header {
    color: #ff6b6b;
}

.future-card-2:hover .future-header {
    color: #a8e063;
}

.future-card-3:hover .future-header {
    color: #00d4ff;
}

.future-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Background Decorations */
.futures-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.decoration-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(80px);
    opacity: 0.08;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #ff6b6b;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: #a8e063;
    top: 30%;
    right: -10%;
    animation-delay: 7s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: #00d4ff;
    bottom: -15%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes blob-float {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    33% {
    transform: translate(30px, -30px) scale(1.05);
    }
    66% {
    transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .futures-grid {
    gap: 2.5rem;
    }
    
    .future-card-inner {
    padding: 2rem;
    }
}

@media (max-width: 992px) {
    .futures-block-zx89 {
    padding: 6rem 0 7rem;
    }
    
    .futures-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .future-card-1,
    .future-card-2,
    .future-card-3 {
    transform: translateY(0) !important;
    }
    
    .future-image-wrapper {
    height: 200px;
    }
    
    .future-header {
    font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .futures-block-zx89 {
    padding: 5rem 0 6rem;
    }
    
    .futures-container {
    padding: 0 1.5rem;
    }
    
    .future-card-inner {
    padding: 1.75rem;
    }
    
    .future-image-wrapper {
    height: 180px;
    margin-bottom: 1.5rem;
    }
    
    .future-header {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
    }
    
    .future-text {
    font-size: 1rem;
    }
    
    .decoration-blob {
    filter: blur(60px);
    }
    
    .blob-1,
    .blob-2,
    .blob-3 {
    width: 300px;
    height: 300px;
    }
}

@media (max-width: 576px) {
    .futures-grid {
    gap: 2rem;
    }
    
    .future-card-inner {
    padding: 1.5rem;
    border-radius: 20px;
    }
    
    .future-image-wrapper {
    height: 160px;
    border-radius: 15px;
    }
    
    .future-header {
    font-size: 1.25rem;
    }
    
    .future-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    }
}
/* 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: Diagonal Grid with Vibrant Gradients */
.services-block-dg47 {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #fef3e2 0%, #fce4ec 50%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.services-block-dg47::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-block-dg47::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-block-dg47 .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffa726 100%);
    border-radius: 10px;
}

.decoration-dot {
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
}

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

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card.card-1::before {
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8e53 100%);
}

.service-card.card-2::before {
    background: linear-gradient(90deg, #56ab2f 0%, #a8e063 100%);
}

.service-card.card-3::before {
    background: linear-gradient(90deg, #2196f3 0%, #00bcd4 100%);
}

.service-card.card-4::before {
    background: linear-gradient(90deg, #9c27b0 0%, #e91e63 100%);
}

.service-card.card-5::before {
    background: linear-gradient(90deg, #ff9800 0%, #ffc107 100%);
}

.service-card.card-6::before {
    background: linear-gradient(90deg, #f44336 0%, #ff5722 100%);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.service-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.card-1 .service-icon-container {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 142, 83, 0.15) 100%);
    color: #ff6b6b;
}

.card-2 .service-icon-container {
    background: linear-gradient(135deg, rgba(86, 171, 47, 0.15) 0%, rgba(168, 224, 99, 0.15) 100%);
    color: #56ab2f;
}

.card-3 .service-icon-container {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(0, 188, 212, 0.15) 100%);
    color: #2196f3;
}

.card-4 .service-icon-container {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(233, 30, 99, 0.15) 100%);
    color: #9c27b0;
}

.card-5 .service-icon-container {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
    color: #ff9800;
}

.card-6 .service-icon-container {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(255, 87, 34, 0.15) 100%);
    color: #f44336;
}

.service-card:hover .service-icon-container {
    transform: rotate(5deg) scale(1.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

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

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-right: 28px;
}

.card-1 .service-link {
    color: #ff6b6b;
}

.card-2 .service-link {
    color: #56ab2f;
}

.card-3 .service-link {
    color: #2196f3;
}

.card-4 .service-link {
    color: #9c27b0;
}

.card-5 .service-link {
    color: #ff9800;
}

.card-6 .service-link {
    color: #f44336;
}

.service-link::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    line-height: 1;
}

.service-link:hover {
    padding-right: 32px;
    letter-spacing: 0.02em;
}

.service-link:hover::after {
    right: -4px;
}

.service-link:focus {
    outline: 3px solid rgba(102, 126, 234, 0.3);
    outline-offset: 4px;
    border-radius: 4px;
}

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

@media (max-width: 768px) {
    .services-block-dg47 {
    padding: 4rem 0;
    }
    
    .services-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }
    
    .services-header-wrap {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    }
    
    .service-card {
    padding: 2rem 1.75rem;
    }
    
    .service-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    }
    
    .service-icon {
    width: 42px;
    height: 42px;
    }
    
    .service-name {
    font-size: 1.375rem;
    }
    
    .service-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .decoration-line {
    width: 45px;
    }
}

@media (max-width: 576px) {
    .services-block-dg47 {
    padding: 3rem 0;
    }
    
    .services-header-wrap {
    margin-bottom: 2.5rem;
    }
    
    .service-card {
    padding: 1.75rem 1.5rem;
    }
    
    .service-icon-container {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    }
    
    .service-icon {
    width: 38px;
    height: 38px;
    }
    
    .title-decoration {
    gap: 8px;
    }
    
    .decoration-line {
    width: 35px;
    height: 2px;
    }
    
    .decoration-dot {
    width: 8px;
    height: 8px;
    }
}
/* FAQ Section: Asymmetric Violet Wave Design */
.faq-section-violet-wave {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f7ff 0%, #ffffff 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-violet-wave::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    z-index: 1;
}

.faq-section-violet-wave::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 65%);
    border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
    z-index: 1;
}

.faq-section-violet-wave .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Header Container */
.faq-header-container {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
}

.faq-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1e1b4b;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-decorative-blob {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* FAQ Accordion Wrapper */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* FAQ Item */
.faq-item-vw {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.faq-item-vw::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6 0%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item-vw:hover {
    box-shadow: 0 8px 35px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.1);
}

.faq-item-vw.faq-active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(236, 72, 153, 0.03) 100%);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.2);
}

.faq-item-vw.faq-active::before {
    opacity: 1;
}

/* Question Header */
.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    gap: 2rem;
    transition: all 0.3s ease;
}

.faq-question-header:hover {
    background: rgba(139, 92, 246, 0.02);
}

.faq-question-header:focus {
    outline: 3px solid rgba(139, 92, 246, 0.3);
    outline-offset: -3px;
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item-vw.faq-active .faq-question-text {
    color: #7c3aed;
}

/* Icon Toggle */
.faq-icon-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item-vw:hover .faq-icon-toggle {
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.faq-item-vw.faq-active .faq-icon-toggle {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    transform: rotate(180deg);
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6b7280;
    transition: all 0.3s ease;
}

.faq-item-vw:hover .faq-icon-plus,
.faq-item-vw:hover .faq-icon-minus {
    color: #7c3aed;
}

.faq-item-vw.faq-active .faq-icon-plus,
.faq-item-vw.faq-active .faq-icon-minus {
    color: #ffffff;
}

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

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

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

/* Answer Content */
.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-item-vw.faq-active .faq-answer-content {
    max-height: 800px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 2.5rem 2.5rem;
    padding-top: 0.5rem;
}

.faq-answer-inner p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-violet-wave {
    padding: 5rem 0 6rem;
    }
    
    .faq-section-violet-wave::before,
    .faq-section-violet-wave::after {
    width: 400px;
    height: 400px;
    }
    
    .faq-header-container {
    margin-bottom: 3rem;
    }
    
    .faq-main-title {
    font-size: 2.25rem;
    }
    
    .faq-accordion-wrapper {
    gap: 1rem;
    }
    
    .faq-question-header {
    padding: 1.5rem 1.75rem;
    gap: 1.25rem;
    }
    
    .faq-question-text {
    font-size: 1.125rem;
    }
    
    .faq-icon-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    }
    
    .faq-answer-inner {
    padding: 0 1.75rem 2rem;
    }
    
    .faq-answer-inner p {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .faq-section-violet-wave {
    padding: 4rem 0 5rem;
    }
    
    .faq-main-title {
    font-size: 1.875rem;
    }
    
    .faq-question-header {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    }
    
    .faq-question-text {
    font-size: 1rem;
    }
    
    .faq-icon-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    }
    
    .faq-answer-inner {
    padding: 0 1.5rem 1.75rem;
    }
    
    .faq-answer-inner p {
    font-size: 0.9375rem;
    }
    
    .faq-item-vw {
    border-radius: 18px;
    }
}

/* Focus and Accessibility */
.faq-question-header:focus-visible {
    outline: 3px solid #8b5cf6;
    outline-offset: 2px;
}

/* Smooth Animations */
@media (prefers-reduced-motion: reduce) {
    .faq-item-vw,
    .faq-question-header,
    .faq-icon-toggle,
    .faq-answer-content {
    transition: none;
    }
}
/* Contact Form Section: Asymmetric Gradient Split with Floating Card */
.contact-form-section-qx7 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-wrapper-qx7 {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
}

/* Gradient Decorative Side */
.contact-gradient-side-qx7 {
    position: relative;
    background: linear-gradient(165deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-decorative-circle-qx7 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    animation: float-circle-qx7 8s ease-in-out infinite;
    top: 20%;
    left: 10%;
}

.contact-decorative-circle-qx7.circle-secondary {
    width: 300px;
    height: 300px;
    bottom: 15%;
    right: 5%;
    top: auto;
    left: auto;
    animation-delay: 2s;
    animation-duration: 10s;
    background: rgba(255, 255, 255, 0.05);
}

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

/* Form Container Side */
.contact-form-container-qx7 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #f8f9ff;
}

/* Floating Form Card */
.contact-form-card-qx7 {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: #ffffff;
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 
    0 20px 60px rgba(102, 126, 234, 0.15),
    0 0 0 1px rgba(102, 126, 234, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-card-qx7:hover {
    transform: translateY(-8px);
    box-shadow: 
    0 30px 80px rgba(102, 126, 234, 0.25),
    0 0 0 1px rgba(102, 126, 234, 0.08);
}

/* Header */
.contact-form-header-qx7 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 2.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.form-group-qx7 {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-label-qx7 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4a4a68;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.form-input-qx7,
.form-textarea-qx7 {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    color: #1a1a2e;
    background: #f8f9ff;
    border: 2px solid transparent;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-input-qx7::placeholder,
.form-textarea-qx7::placeholder {
    color: #9ca3af;
}

.form-input-qx7:focus,
.form-textarea-qx7:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 
    0 0 0 4px rgba(102, 126, 234, 0.1),
    0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.form-input-qx7:focus + .form-label-qx7,
.form-textarea-qx7:focus + .form-label-qx7 {
    color: #667eea;
}

.form-textarea-qx7 {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

/* Submit Button */
.form-submit-btn-qx7 {
    position: relative;
    width: 100%;
    padding: 1.125rem 2rem;
    margin-top: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.form-submit-btn-qx7::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-qx7:hover::before {
    left: 100%;
}

.form-submit-btn-qx7:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

.form-submit-btn-qx7:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.35);
}

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-wrapper-qx7 {
    grid-template-columns: 1fr;
    min-height: auto;
    }
    
    .contact-gradient-side-qx7 {
    display: none;
    }
    
    .contact-form-container-qx7 {
    padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section-qx7 {
    min-height: auto;
    padding: 3rem 0;
    }
    
    .contact-form-container-qx7 {
    padding: 3rem 1.25rem;
    }
    
    .contact-form-card-qx7 {
    padding: 2.5rem 1.75rem;
    border-radius: 24px;
    }
    
    .contact-form-header-qx7 {
    font-size: 2rem;
    margin-bottom: 2rem;
    }
    
    .contact-form-qx7 {
    gap: 1.5rem;
    }
    
    .form-input-qx7,
    .form-textarea-qx7 {
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    }
    
    .form-submit-btn-qx7 {
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .contact-form-card-qx7 {
    padding: 2rem 1.5rem;
    }
    
    .contact-form-header-qx7 {
    font-size: 1.75rem;
    }
    
    .form-label-qx7 {
    font-size: 0.875rem;
    }
}
/* 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;
    }
}
