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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #e2b5474d;
}

#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 Diagonal Design - Complete Standalone Styles */

.header-asymmetric-diagonal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0f172a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-asymmetric-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.header-asymmetric-diagonal.header-scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 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 */
.brand-section {
    position: relative;
    z-index: 10;
}

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

.brand-logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 42px;
    height: 42px;
    color: #fbbf24;
    transition: all 0.3s ease;
}

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

.brand-name {
    font-size: 1.625rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: #fbbf24;
}

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

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

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

.dropdown-trigger {
    position: relative;
}

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

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

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    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);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.dropdown-menu-new::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #1e293b;
    border-left: 1px solid rgba(251, 191, 36, 0.1);
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(4px);
}

/* Search Form */
.header-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 200px;
    padding: 0.625rem 2.75rem 0.625rem 1.125rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    width: 280px;
    background: rgba(30, 41, 59, 1);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

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

.search-button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-button:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

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

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-close:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

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

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

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

.mobile-nav-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(6px);
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
    color: #64748b;
}

.mobile-dropdown-trigger.mobile-dropdown-open .mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: #fbbf24;
}

.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.mobile-dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-dropdown-link:hover {
    background: rgba(251, 191, 36, 0.05);
    color: #fbbf24;
    border-left-color: #fbbf24;
    transform: translateX(4px);
}

/* Mobile Search */
.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.mobile-search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-search-input:focus {
    outline: none;
    background: rgba(30, 41, 59, 1);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

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

.mobile-search-button {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-search-button:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .desktop-menu,
    .header-search-form {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .main-navigation {
    gap: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
    padding: 0 1.25rem;
    min-height: 75px;
    }
    
    .brand-name {
    font-size: 1.375rem;
    }
    
    .logo-icon {
    width: 36px;
    height: 36px;
    }
    
    .mobile-menu-content {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    }
    
    .mobile-nav-menu {
    margin-top: 4rem;
    }
}

@media (max-width: 576px) {
    .header-container {
    padding: 0 1rem;
    min-height: 70px;
    }
    
    .brand-name {
    font-size: 1.25rem;
    }
    
    .logo-icon {
    width: 32px;
    height: 32px;
    }
    
    .mobile-nav-link {
    font-size: 1.0625rem;
    padding: 0.875rem 1rem;
    }
}
/* 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;
    }

}
/* Contact Information Block: Geometric Split Design with Floating Cards */

.contact-info-block-x7k2 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

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

.contact-inner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.contact-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

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

/* Contact Details Column */
.contact-details-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.5);
}

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

.card-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

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

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

.card-content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.contact-label-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.contact-link-hover {
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.contact-link-hover:hover {
    color: #06b6d4;
}

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

.map-frame-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.map-overlay-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 24px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.map-embed-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

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

/* Decorative Background Elements */
.bg-decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.circle-top-right {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.circle-bottom-left {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

/* Desktop Layout: Two Columns */
@media (min-width: 992px) {
    .contact-inner-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 3rem;
    }
    
    .contact-header-zone {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
    }
    
    .contact-details-column {
    grid-column: 1;
    grid-row: 2;
    }
    
    .contact-map-column {
    grid-column: 2;
    grid-row: 2;
    }
    
    .map-frame-container {
    min-height: 100%;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
    .contact-main-title {
    font-size: 2.75rem;
    }
    
    .map-frame-container {
    min-height: 450px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact-info-block-x7k2 {
    padding: 5rem 0;
    }
    
    .contact-container-wrapper {
    padding: 0 1.25rem;
    }
    
    .contact-main-title {
    font-size: 2rem;
    letter-spacing: -0.01em;
    }
    
    .title-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .contact-inner-grid {
    gap: 2rem;
    }
    
    .contact-details-column {
    gap: 1.5rem;
    }
    
    .contact-card-item {
    padding: 1.5rem;
    gap: 1.25rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    }
    
    .card-icon-wrapper {
    width: 56px;
    height: 56px;
    }
    
    .contact-icon-svg {
    width: 28px;
    height: 28px;
    }
    
    .contact-value-text {
    font-size: 1.125rem;
    }
    
    .map-frame-container {
    min-height: 400px;
    border-radius: 16px;
    }
    
    .map-overlay-border {
    border-radius: 16px;
    }
    
    .circle-top-right {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    }
    
    .circle-bottom-left {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
    font-size: 1.75rem;
    }
    
    .contact-card-item {
    padding: 1.25rem;
    }
    
    .card-icon-wrapper {
    width: 48px;
    height: 48px;
    }
    
    .contact-icon-svg {
    width: 24px;
    height: 24px;
    }
    
    .contact-value-text {
    font-size: 1rem;
    }
    
    .map-frame-container {
    min-height: 350px;
    }
}
/* Modern Split Footer - Unique Design: Gradient Accent with Floating Elements */
.footer-modern-split {
    position: relative;
    background: linear-gradient(165deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8eaf6;
    padding: 5rem 0 2rem;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

/* Top Grid Layout */
.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

/* Company Information Block */
.footer-company-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.footer-brand-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e94560 0%, #f39c12 100%);
    border-radius: 2px;
    position: relative;
}

.footer-brand-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
    animation: accentSlide 2s ease-in-out infinite;
}

@keyframes accentSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(150%); }
}

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

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

.footer-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #e94560;
    margin-top: 2px;
}

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

.footer-contact-link {
    font-size: 1rem;
    color: #b0b8c4;
    text-decoration: none;
    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, #e94560, #f39c12);
    transition: width 0.3s ease;
}

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

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

/* Navigation Blocks */
.footer-nav-block,
.footer-legal-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-nav-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e94560;
}

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

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

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

.footer-nav-link:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

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

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

/* Decorative Divider */
.footer-divider-wrapper {
    position: relative;
    height: 1px;
    margin: 3rem 0 2.5rem;
}

.footer-divider-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-divider-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, #e94560 0%, #f39c12 50%, transparent 100%);
    animation: dividerSlide 4s ease-in-out infinite;
}

@keyframes dividerSlide {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(150%); opacity: 0.6; }
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.9375rem;
    color: #8492a6;
    margin: 0;
    line-height: 1.6;
}

/* Background Decorations */
.footer-bg-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.08;
}

.footer-bg-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e94560 0%, transparent 70%);
    top: -250px;
    right: -150px;
    animation: floatCircle1 15s ease-in-out infinite;
}

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

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

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

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

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

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

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

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

    .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    }

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

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

    .footer-contact-item {
    flex-direction: row;
    align-items: flex-start;
    }

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

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

    .footer-bg-circle-1 {
    width: 350px;
    height: 350px;
    top: -175px;
    right: -100px;
    }

    .footer-bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -80px;
    }

    .footer-divider-wrapper {
    margin: 2.5rem 0 2rem;
    }
}

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

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

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

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

    .footer-contact-text,
    .footer-contact-link,
    .footer-nav-link {
    font-size: 0.875rem;
    }

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

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

    .footer-divider-wrapper {
    margin: 2rem 0 1.5rem;
    }
}
.cart__popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100px;
    height: 100px;
    right: 10px;
    bottom: 10px;
    background: rgb(29, 29, 29);
    color: #fff;
    border-radius: 50%;
}

.cart__popup:hover {
    cursor: pointer;
}

.cart__icon {
    font-size: 2rem;
}

.cart__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    padding: 5px 12px;
}
.products__logo {
text-align: center;
padding: 50px 0;
}
.products__box {
display: flex;
justify-content: center;
align-items: start;
flex-wrap: wrap;
}

.products__card {
  flex: 0 0 calc(40% - 20px);
  box-sizing: border-box;
  max-width: 600px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  margin: 10px;
  }

.product__bottom {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

.products__price {
font-size: 1.5rem;
font-weight: 600;
}

.products__card a {
text-decoration: none;
}

.products__card a:hover {
color: inherit;
text-decoration: none;
}

.products__card:hover {
cursor: pointer;
}

.products__card img {
width: 100%;
border-radius: 10px 10px 0 0;
}

.products__content {
padding: 20px;
}

  .product {
  padding: 50px 0;
  }
.product {
  padding: 2rem 0;
}

.product__image {
width: 100%;
border-radius: 10px;
box-shadow: 1px 2px 6px 2px rgb(219, 219, 219);
}

.product__image:hover {
box-shadow: 1px 0px 9px 1px rgb(0, 0, 0, 0.35);
}

.product__wrapper {
display: flex;
flex-direction: row;
padding: 1rem 0;
}

.right {
padding: 0 30px;
}

.right h1 {
font-size: 35px;
letter-spacing: 1px;
word-spacing: 2px;
}

.product__price {
font-weight: 600;
}

.product__name,
  .product__price,
  .product__description,
  .product__button {
  margin: 20px 0;
  }

.product__preview_wrapper {
display: flex;
flex-direction: row;
}

  .product__price {
  font-size: 2rem;
  }

.product__preview {
  max-width: 90px;
  border-radius: 5px;
  margin: 0 5px;
}

.product__preview:hover {
box-shadow: 1px 0px 9px 1px rgb(0, 0, 0, 0.35);
cursor: pointer;
}

.product__button {
padding: 10px 15px;
color: white;
background-color: rgb(0, 0, 0, 0.35);
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 20px;
}

.product__button:hover {
cursor: pointer;
}

@media (max-width: 1300px) {
h1 {
      font-size: 28px;
}

.product__preview {
      width: 70px;
      padding: 10px 10px;
      padding-bottom: 30px;
}

button {
      padding: 8px 13px;
      background-color: rgb(3, 122, 122);
      border: none;
      border-radius: 5px;
      cursor: pointer;
}
}

@media (max-width: 1170px) {
h1 {
      font-size: 22px;
}

#product__preview {
      width: 60px;
      padding: 10px 10px;
      padding-bottom: 30px;
}

button a {
      font-size: 15px;
}

h4,
p {
      font-size: 13px;
}

h3 {
      font-size: 15px;
}
}

@media (max-width: 900px) {
.product__wrapper {
      flex-direction: column;
}

.left {
      width: 100%;
      text-align: center;
}

.right {
      padding-top: 50px;
}

.product__image {
      max-width: 300px;
}

.product__button {
      width: 100%;
      text-align: center;
}
}
.cart__wrapper {
    display: flex;
    flex-direction: row;
    padding: 1rem 0;
}

  .cart__list {
      flex: 0 0 50%;
  }

  .cart__form {
      flex: 0 0 50%;
  }

  @media (max-width: 1200px) {
      .cart__wrapper {
          flex-direction: column;
      }

      .cart__list {
          flex: 0 0 100%;
      }

      .cart__form {
          flex: 0 0 100%;
          margin-top: 50px;
      }
  }

.cart__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 0.2rem;
    justify-content: space-between;
    margin-top: 20px;
}

.cart__item_preview {
    max-width: 90px;
    border-radius: 5px;
}

.cart__item_desc,
.cart__item_count,
.cart__item_remove {
    padding: 20px 10px;
}

.cart__form {
    padding: 0 20px;
}

.form__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.form__input {
    margin: 10px 0;
}

  .form__wrapper label {
      margin-top: 10px;
  }

  .form__input {
      color: #333;
      font-size: 1.2rem;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      border-radius: 0.2rem;
      background-color: rgb(255, 255, 255);
      border: none;
      width: 90%;
      display: block;
      border-bottom: 0.3rem solid transparent;
  }

  .button-6 {
      align-items: center;
      background-color: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 0.25rem;
      box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
      box-sizing: border-box;
      color: rgba(0, 0, 0, 0.85);
      cursor: pointer;
      display: inline-flex;
      font-family: system-ui, -apple-system, system-ui, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 16px;
      font-weight: 600;
      justify-content: center;
      line-height: 1.25;
      margin: 50px;
      min-height: 3rem;
      padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
      position: relative;
      text-decoration: none;
      transition: all 250ms;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
      vertical-align: baseline;
      width: auto;
  }

  .button-6:hover,
  .button-6:focus {
      border-color: rgba(0, 0, 0, 0.15);
      box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
      color: rgba(0, 0, 0, 0.65);
  }

  .button-6:hover {
      transform: translateY(-1px);
  }

  .button-6:active {
      background-color: #f0f0f1;
      border-color: rgba(0, 0, 0, 0.15);
      box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
      color: rgba(0, 0, 0, 0.65);
      transform: translateY(0);
  }

  .cart__item_remove button {
      background-color: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .cart__item_remove button:hover,
  .cart__item_remove button:focus {
      border-color: rgba(0, 0, 0, 0.15);
      box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
      color: rgba(0, 0, 0, 0.65);
  }
