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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #a6829c4d;
}

#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 Glass Navigation - Floating Modern Design */
.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.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #0f172a;
    border-radius: 50%;
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Styles */
.dropdown-trigger {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dropdown-trigger.active .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
}

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

.dropdown-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    transform: translateX(5px);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

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

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

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

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

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-wrapper {
    padding: 1rem 1.5rem;
    }
    
    .hamburger-btn {
    display: flex;
    }
    
    .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
    transform: translateX(0);
    }
    
/*    .mobile-overlay {
    display: block;
    }*/
    
    .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
    padding: 1.25rem 1rem;
    border-radius: 0;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    }
    
    .nav-link::before {
    display: none;
    }
    
    .dropdown-menu-new {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease, max-height 0.4s ease;
    }
    
    .dropdown-trigger.active .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 0.5rem 0;
    }
    
    .dropdown-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    }
    
    .dropdown-link:hover {
    transform: translateX(10px);
    }
}

@media (max-width: 576px) {
    .nav-container {
    padding: 0 1rem;
    }
    
    .nav-wrapper {
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    }
    
    .logo-circle {
    width: 36px;
    height: 36px;
    }
    
    .logo-circle::before {
    width: 18px;
    height: 18px;
    }
    
    .brand-text {
    font-size: 1.25rem;
    }
    
    .nav-menu {
    width: 280px;
    padding: 5rem 1.5rem 2rem;
    }
    
    .nav-link {
    font-size: 1rem;
    padding: 1rem 0.75rem;
    }
}

/* Active state for current page */
.nav-link.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Ensure header doesn't overlap content */
body {
    padding-top: 100px;
}

@media (max-width: 992px) {
    body {
    padding-top: 90px;
    }
}
/* Hero Block: Asymmetric Split with Floating Elements - Pink/Coral/Cyan Theme */
.hero-block-asymmetric {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0a0a;
}

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

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(40%) contrast(1.2);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
    rgba(255, 107, 157, 0.95) 0%, 
    rgba(196, 69, 105, 0.92) 35%,
    rgba(238, 90, 111, 0.88) 65%,
    rgba(72, 219, 251, 0.9) 100%);
    mix-blend-mode: multiply;
}

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

.shape-blob {
    position: absolute;
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    filter: blur(60px);
    opacity: 0.4;
    animation: blobFloat 20s ease-in-out infinite;
}

.shape-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #feca57 0%, #ee5a6f 100%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.shape-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #48dbfb 0%, #0abde3 100%);
    bottom: -5%;
    left: -8%;
    animation-delay: 7s;
}

.shape-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff6b9d 0%, #c44569 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes blobFloat {
    0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
    transform: translate(30px, -30px) scale(1.1) rotate(120deg);
    }
    66% {
    transform: translate(-20px, 20px) scale(0.9) rotate(240deg);
    }
}

/* Navigation */
.hero-navigation {
    position: relative;
    z-index: 100;
    padding: 1.5rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    transition: all 0.4s ease;
}

.nav-logo:hover {
    transform: rotate(90deg) scale(1.1);
    color: #feca57;
}

.nav-logo svg {
    filter: drop-shadow(0 4px 12px rgba(254, 202, 87, 0.3));
}

/* Hamburger Menu */
.nav-toggle-checkbox {
    display: none;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 102;
    padding: 10px;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 8px rgba(254, 202, 87, 0.3);
}

.nav-toggle-checkbox:checked ~ .nav-hamburger .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #feca57;
}

.nav-toggle-checkbox:checked ~ .nav-hamburger .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle-checkbox:checked ~ .nav-hamburger .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #feca57;
}

.nav-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 98;
}

.nav-toggle-checkbox:checked ~ .nav-menu-overlay {
    opacity: 1;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #feca57 0%, #ee5a6f 100%);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: #feca57;
    transform: translateY(-2px);
}

.nav-cta {
    background: linear-gradient(135deg, #feca57 0%, #ee5a6f 100%);
    color: #0a0a0a;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(254, 202, 87, 0.35);
    border: 2px solid transparent;
}

.nav-cta::before {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(254, 202, 87, 0.5);
    background: linear-gradient(135deg, #ee5a6f 0%, #feca57 100%);
    color: #ffffff;
}

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

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

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

.hero-text-column {
    position: relative;
}

.hero-text-inner {
    max-width: 650px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: heroTitleFade 1s ease-out;
}

@keyframes heroTitleFade {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.hero-title-accent {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #feca57 0%, #ee5a6f 50%, #48dbfb 100%);
    border-radius: 3px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(254, 202, 87, 0.4);
    animation: accentSlide 1s ease-out 0.2s backwards;
}

@keyframes accentSlide {
    from {
    width: 0;
    opacity: 0;
    }
    to {
    width: 120px;
    opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 3rem 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    animation: heroSubtitleFade 1s ease-out 0.3s backwards;
}

@keyframes heroSubtitleFade {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: heroCTAFade 1s ease-out 0.5s backwards;
}

@keyframes heroCTAFade {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.hero-btn-primary {
    background: linear-gradient(135deg, #feca57 0%, #ee5a6f 100%);
    color: #0a0a0a;
    box-shadow: 0 12px 32px rgba(254, 202, 87, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(254, 202, 87, 0.6);
}

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

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

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

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

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.floating-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 60px rgba(254, 202, 87, 0.4);
    border-color: rgba(254, 202, 87, 0.4);
}

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

.floating-card-2 {
    top: 40%;
    right: 10%;
    animation: floatAnimation2 7s ease-in-out infinite 1s;
}

.floating-card-3 {
    bottom: 15%;
    left: 15%;
    animation: floatAnimation3 8s ease-in-out infinite 2s;
}

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

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

@keyframes floatAnimation3 {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-18px) rotate(3deg);
    }
}

.hero-circle-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border: 3px solid rgba(254, 202, 87, 0.2);
    border-radius: 50%;
    animation: pulseCircle 4s ease-in-out infinite;
    z-index: -1;
}

.hero-circle-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 2px solid rgba(72, 219, 251, 0.2);
    border-radius: 50%;
    animation: pulseCircle 4s ease-in-out infinite 1s;
}

@keyframes pulseCircle {
    0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
    }
    50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(254, 202, 87, 0.6) 100%);
    border-radius: 2px;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: #feca57;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(254, 202, 87, 0.6);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-visual-column {
    height: 400px;
    order: -1;
    }
    
    .hero-text-inner {
    max-width: 100%;
    }
}

@media (max-width: 992px) {
    .nav-hamburger {
    display: flex;
    }
    
    .nav-menu-overlay {
    display: block;
    }
    
    .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(196, 69, 105, 0.95) 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 6rem 2rem 2rem;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 99;
    overflow-y: auto;
    }
    
    .nav-toggle-checkbox:checked ~ .nav-menu {
    right: 0;
    }
    
    .nav-link {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    }
    
    .nav-link::before {
    left: 0;
    transform: translateX(0) scaleX(0);
    width: 4px;
    height: 100%;
    bottom: 0;
    border-radius: 0 4px 4px 0;
    }
    
    .nav-link:hover::before {
    transform: translateX(0) scaleX(1);
    }
    
    .nav-cta {
    margin-top: 1rem;
    border-radius: 12px;
    border-bottom: none;
    }
    
    .hero-visual-column {
    height: 350px;
    }
    
    .floating-card {
    padding: 1.5rem;
    }
    
    .floating-card svg {
    width: 60px;
    height: 60px;
    }
    
    .hero-circle-accent {
    width: 350px;
    height: 350px;
    }
    
    .hero-circle-accent::before {
    width: 250px;
    height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
    padding: 2rem 0 4rem;
    }
    
    .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 1rem;
    }
    
    .hero-title-accent {
    width: 80px;
    height: 5px;
    margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    }
    
    .hero-cta-group {
    gap: 1rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-visual-column {
    height: 300px;
    }
    
    .floating-card {
    padding: 1rem;
    }
    
    .floating-card svg {
    width: 50px;
    height: 50px;
    }
    
    .hero-scroll-indicator {
    bottom: 2rem;
    }
    
    .scroll-line {
    height: 40px;
    }
    
    .shape-blob-1,
    .shape-blob-2,
    .shape-blob-3 {
    width: 300px;
    height: 300px;
    }
}

@media (max-width: 576px) {
    .nav-container {
    padding: 0 1.5rem;
    }
    
    .hero-container {
    padding: 0 1.5rem;
    }
    
    .hero-content-grid {
    gap: 2rem;
    }
    
    .hero-title {
    font-size: 2.25rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    }
    
    .hero-visual-column {
    height: 250px;
    }
    
    .floating-card-1,
    .floating-card-2,
    .floating-card-3 {
    padding: 0.75rem;
    }
    
    .floating-card svg {
    width: 40px;
    height: 40px;
    }
    
    .hero-circle-accent {
    width: 250px;
    height: 250px;
    }
    
    .hero-circle-accent::before {
    width: 180px;
    height: 180px;
    }
}
.post-image img {
    max-width: 100%;
}
/* 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;
    }
}
/* Modern Gradient Footer - Unique Design */
.footer-modern-gradient {
    position: relative;
    background: linear-gradient(135deg, #fff5f5 0%, #fffbf0 50%, #fff9e6 100%);
    padding: 5rem 0 2rem;
    overflow: hidden;
}

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

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

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

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

.footer-brand-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #ff6b6b;
}

.footer-contact-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.footer-contact-link {
    font-size: 1rem;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-contact-link:hover {
    color: #ff6b6b;
}

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

/* Links Columns */
.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-column-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-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8c42 100%);
    border-radius: 2px;
}

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

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-link-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff6b6b;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

.footer-nav-link:hover .footer-link-dot {
    background: #ff8c42;
    transform: scale(1.3);
}

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

/* Wave Divider */
.footer-wave-divider {
    width: 100%;
    height: 40px;
    margin: 2rem 0;
}

.footer-wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 107, 0.15);
}

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

.footer-decorative-dots {
    display: flex;
    gap: 0.5rem;
}

.footer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    animation: pulse-dot 2s ease-in-out infinite;
}

.footer-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse-dot {
    0%, 100% {
    opacity: 0.5;
    transform: scale(1);
    }
    50% {
    opacity: 1;
    transform: scale(1.2);
    }
}

/* Background Decoration */
.footer-bg-decoration {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.footer-bg-decoration::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 61, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

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

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

    .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    }

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

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

    .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    }

    .footer-wave-divider {
    height: 30px;
    margin: 1.5rem 0;
    }

    .footer-bg-decoration {
    width: 400px;
    height: 400px;
    right: -20%;
    }
}

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

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

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

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

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

    .footer-contact-item {
    flex-direction: column;
    gap: 0.5rem;
    }

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

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

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