/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent blue highlight on mobile touch */
a, button, input, select, textarea, [role="button"] {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    text-decoration: none;
}

/* Prevent text selection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection only in specific areas if needed */
.selectable-text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Make all images non-draggable */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1A1D21;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Side Panel */
.side-panel {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 43px;
    background: linear-gradient(to bottom, #2584C4, #00CC52);
    z-index: 98;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 0;
}

/* Side panel dropdown toggle */
.side-dropdown-toggle {
    background: none;
    border: none;
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    position: relative;
}

.side-dropdown-toggle i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.side-dropdown-toggle .fa-plus {
    position: relative;
}

.side-dropdown-toggle .fa-chevron-down {
    position: relative;
    transition: transform 0.3s ease;
}

.side-dropdown-toggle:hover {
    color: #1A1D21;
}

.side-dropdown-toggle.active .fa-plus {
    transform: rotate(90deg);
}

.side-dropdown-toggle.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Side panel dropdown content */
.side-dropdown-content {
    visibility: hidden;
    opacity: 0;
    height: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;
}

.side-dropdown-content.active {
    visibility: visible;
    opacity: 1;
    height: auto;
    display: flex;
}

/* Initial state for icons */
.side-dropdown-content .side-icon {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Animation for each icon when dropdown is active */
.side-dropdown-content.active .side-icon:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.side-dropdown-content.active .side-icon:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.side-dropdown-content.active .side-icon:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.side-dropdown-content.active .side-icon:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.side-dropdown-content.active .side-icon:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.side-panel .logo-link {
    position: relative;
    width: 35px;
    height: 35px;
    display: block;
}

/* Circle background */
.side-panel .logo-link::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    top: 15px;
    left: 5px;
    background: #2584C4;
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0 0 10px 3px rgba(37, 132, 196, 0.7);
    animation: pulse-hub 3s infinite ease-in-out;
}

/* Network node spokes */
.side-panel .logo-link::after {
    display: none;
}

.side-panel .logo-small {
    width: 35px;
    height: 35px;
    padding: 0;
    background-color: transparent;
    transition: transform 0.3s ease, filter 0.3s ease;
    margin-bottom: 2rem;
    margin-top: 0.5rem !important;
    position: relative;
    z-index: 2;
    filter:  
           drop-shadow(0 0 2px rgba(0, 0, 0, 0.8));
} 

@keyframes pulse-hub {
    0% {
        box-shadow: 0 0 10px 3px rgba(37, 132, 196, 0.7);
    }
    50% {
        box-shadow: 0 0 15px 5px rgba(37, 132, 196, 0.9);
    }
    100% {
        box-shadow: 0 0 10px 3px rgba(37, 132, 196, 0.7);
    }
}

.side-panel a:hover .logo-small {
    transform: scale(1.1);
 }

.side-panel a:hover .logo-link::before {
    box-shadow: 0 0 15px 5px rgba(37, 132, 196, 0.9);
    animation: none;
}

.side-icons, .side-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
}

.side-icons {
    margin-bottom: auto;
}

.side-social {
    margin-top: auto;
}

.side-icon {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 0.5rem;
}

.side-icon:hover {
    color: #1A1D21;
}

.side-icon:not(.logo-icon):hover::after {
    content: '';
    position: absolute;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: white;
}

.side-icon:not(.logo-icon)::before {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1A1D21;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.side-icon:hover::before {
    opacity: 1;
    visibility: visible;
    left: calc(100% + 10px);
}

.side-text {
    display: none;
}

/* Main container with side panel */
.main-container {
    padding-left: 43px;
    width: 100%;
    min-height: 100vh;
    background-color: #1A1D21;
}

/* Header with side panel */
header {
    background-color: rgba(26, 29, 33, 0.95);
    position: fixed;
    width: calc(100% - 43px);
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    margin-left: 43px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header.scrolled {
    background-color: rgba(26, 29, 33, 0.98);
    padding: 0.8rem 0;
}

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

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

.logo {
    display: flex;
    align-items: center;
    max-width: 240px;
    margin-right: 20px;
}

.logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.header-logo {
    height: auto;
    max-height: 45px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.mobile-logo {
    height: 40px;
    width: 40px;
    display: none;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin-right: 20px;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-links li a i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #00CC52;
}

.nav-links li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00CC52;
    transition: width 0.3s ease;
}

.nav-links li a:hover:after,
.nav-links li a.active:after {
    width: 100%;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #00CC52;
    padding: 0.5rem;
    z-index: 200;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active {
    color: #00CC52;
}

.mobile-menu-toggle i {
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active i:before {
    content: "\f00d";
}

@media (max-width: 768px) {
    .side-panel {
        width: 40px;
    }
    
    .side-dropdown-toggle {
        padding: 6px 0;
        margin-bottom: 8px;
    }
    
    .side-dropdown-toggle i {
        font-size: 0.8rem;
    }
    
    .side-panel .logo-link {
        width: 30px;
        height: 30px;
    }

    .side-panel .logo-link::before {
        width: 22px;
        height: 22px;
        top: 4px;
        left: 4px;
        box-shadow: 0 0 8px 2px rgba(37, 132, 196, 0.7);
    }

    .side-panel .logo-small {
        width: 30px;
        height: 30px;
        margin-bottom: 1.5rem;
    }
    
    @keyframes pulse-hub {
        0% {
            box-shadow: 0 0 8px 2px rgba(37, 132, 196, 0.7);
        }
        50% {
            box-shadow: 0 0 12px 4px rgba(37, 132, 196, 0.9);
        }
        100% {
            box-shadow: 0 0 8px 2px rgba(37, 132, 196, 0.7);
        }
    }
    
    .side-icon {
        height: 35px;
        font-size: 1rem;
    }

    .side-text {
        font-size: 0.6rem;
        margin-bottom: 4rem;
    }

    .main-container {
        padding-left: 40px;
    }

    header {
        width: calc(100% - 40px);
        margin-left: 40px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .header-container {
        padding: 0.5rem 1rem;
    }
    
    .logo {
        max-width: 180px;
        margin-right: 0;
    }
    
    .logo img {
        max-width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
    }
    
    /* Mobile Menu */
    #header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #1A1D21;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 180;
        overflow-y: auto;
    }
    
    #header-nav.active {
        right: 0;
    }
    
    #header-nav .nav-links {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
    }
    
    #header-nav .nav-links li {
        display: block;
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    #header-nav .nav-links li a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        color: white;
        font-size: 1.1rem;
    }
    
    #header-nav .nav-links li a:hover, 
    #header-nav .nav-links li a.active {
        color: #00CC52;
    }
    
    .contact-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Mobile Hero */
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero .container {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-content {
        width: 100%;
        text-align: left;
    }
    
    .hero-image {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .animated-heading {
        font-size: 2.3rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
}

body.menu-open {
    overflow: hidden;
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 150;
    cursor: pointer;
}

body.menu-open .menu-overlay {
    display: block;
}

.contact-btn {
    background-color: #00CC52;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 204, 82, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background-color: white;
    color: #00CC52;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 204, 82, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
}

/* Main Content */
main {
    padding: 90px 0 0 0;
    flex: 1;
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0;
    background: linear-gradient(to right, #1A1D21 40%, rgba(26, 29, 33, 0.9) 75%);
    color: white;
    position: relative;
    overflow: hidden;
    transition: background 1.5s ease;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 29, 33, 0.95) 10%, rgba(26, 29, 33, 0.6) 40%), url('../images/hero-pattern.svg');
    opacity: 0.2;
    pointer-events: none;
    animation: bgPan 30s linear infinite;
}

.particle-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, #1A1D21 15%, transparent 35%);
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00CC52;
    border-radius: 50%;
    opacity: 0.6;
}

.particle:nth-child(odd) {
    background-color: #2584C4;
}

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

/* Generate 20 particles with different positions and animations */
.particle:nth-child(1) { top: 10%; left: 20%; animation: floating 7s infinite ease-in-out; }
.particle:nth-child(2) { top: 30%; left: 80%; animation: floating 5s infinite ease-in-out; }
.particle:nth-child(3) { top: 50%; left: 30%; animation: floating 8s infinite ease-in-out; }
.particle:nth-child(4) { top: 70%; left: 60%; animation: floating 6s infinite ease-in-out; }
.particle:nth-child(5) { top: 20%; left: 40%; animation: floating 9s infinite ease-in-out; }
.particle:nth-child(6) { top: 80%; left: 10%; animation: floating 7s infinite ease-in-out; }
.particle:nth-child(7) { top: 40%; left: 70%; animation: floating 8s infinite ease-in-out; }
.particle:nth-child(8) { top: 60%; left: 20%; animation: floating 6s infinite ease-in-out; }
.particle:nth-child(9) { top: 10%; left: 60%; animation: floating 9s infinite ease-in-out; }
.particle:nth-child(10) { top: 30%; left: 30%; animation: floating 7s infinite ease-in-out; }
.particle:nth-child(11) { top: 50%; left: 80%; animation: floating 6s infinite ease-in-out; }
.particle:nth-child(12) { top: 70%; left: 40%; animation: floating 8s infinite ease-in-out; }
.particle:nth-child(13) { top: 90%; left: 70%; animation: floating 9s infinite ease-in-out; }
.particle:nth-child(14) { top: 20%; left: 20%; animation: floating 7s infinite ease-in-out; }
.particle:nth-child(15) { top: 40%; left: 50%; animation: floating 8s infinite ease-in-out; }
.particle:nth-child(16) { top: 60%; left: 80%; animation: floating 6s infinite ease-in-out; }
.particle:nth-child(17) { top: 80%; left: 30%; animation: floating 9s infinite ease-in-out; }
.particle:nth-child(18) { top: 10%; left: 90%; animation: floating 7s infinite ease-in-out; }
.particle:nth-child(19) { top: 50%; left: 10%; animation: floating 8s infinite ease-in-out; }
.particle:nth-child(20) { top: 90%; left: 50%; animation: floating 6s infinite ease-in-out; }

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 4rem 0 2rem;
}

.hero-content {
    width: 45%;
    padding-right: 2rem;
    max-width: 600px;
}

.hero-image {
    width: 55%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
    transform: rotateX(60deg) translateZ(-50px);
    animation: shadowPulse 8s ease-in-out infinite;
    filter: blur(5px);
}

@keyframes shadowPulse {
    0% {
        opacity: 0.5;
        transform: rotateX(60deg) translateZ(-50px) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: rotateX(60deg) translateZ(-50px) scale(1.2);
    }
    100% {
        opacity: 0.5;
        transform: rotateX(60deg) translateZ(-50px) scale(1);
    }
}

.hero-image-item {
    max-width: 400px;
    height: auto;
    position: absolute;
    opacity: 0;
    transform: scale(0.9) translateY(20px) rotateX(10deg);
    transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1),
                filter 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    z-index: 1;
    transform-origin: center center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
}

.hero-image-item.active {
    opacity: 1;
    transform: scale(1) translateY(0) rotateX(0);
    animation: floatImage 8s ease-in-out infinite;
}

.engineer-image, .robot-image {
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.hero-tag {
    color: #00CC52;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-logo {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.animated-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.animated-heading .static-text {
    display: block;
    margin-bottom: 0.2rem;
}

.typewriter {
    color: #00CC52;
    font-weight: 700;
}

.cursor {
    color: #00CC52;
    font-weight: 700;
    animation: blink 0.75s step-end infinite;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hero-btn i {
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: all 0.6s ease;
    z-index: -1;
}

.primary-btn {
    background: linear-gradient(135deg, #2584C4, #00CC52);
    color: white;
    border: none;
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hero-btn:hover::before {
    transform: translateX(100%);
}

.hero-btn:hover i {
    transform: translateX(3px) scale(1.2);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #00CC52, #2584C4);
    color: white;
}

.secondary-btn:hover {
    border-color: white;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #00CC52;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 2;
    color: white;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Features Section Styles */
.features {
    background-color: #1A1D21;
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.features-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 204, 82, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #2584C4, #00CC52);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #2584C4, #00CC52);
    margin: 0 auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(45, 67, 89, 0.6);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 132, 196, 0.1), rgba(0, 204, 82, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.icon-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2584C4, #00CC52);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob-animation 8s infinite ease-in-out;
    opacity: 1;
    filter: blur(0px);
    transition: all 0.4s ease;
}

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

.feature-card:hover .icon-blob {
    transform: scale(1.1);
    filter: blur(2px);
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.feature-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #00CC52;
    border: 1px solid #00CC52;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 10px;
}

.feature-btn span {
    position: relative;
}

.feature-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.feature-btn:hover {
    background-color: #00CC52;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 204, 82, 0.3);
}

.feature-btn:hover i {
    transform: translateX(4px);
}

/* About Section Styles */
.about {
    padding: 6rem 0;
    background-color: #1A1D21;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-bg-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 70%;
    background: radial-gradient(circle at 20% 80%, rgba(37, 132, 196, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #2584C4, #00CC52);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.highlight-icon i {
    color: white;
    font-size: 1.3rem;
}

.highlight-text h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.stats-container {
    position: relative;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: rgba(45, 67, 89, 0.6);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2584C4, #00CC52);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2584C4 30%, #00CC52 70%);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #00CC52;
    position: relative;
    z-index: 1;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .counter {
    color: #00CC52;
}

.plus, .slash, .percent {
    font-size: 2.5rem;
    color: #00CC52;
    font-weight: 700;
    margin-left: 2px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.2;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        order: 1;
    }
    
    .stats-container {
        order: 2;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Footer */
.modern-footer {
    background-color: #2D4359;
    color: white;
    padding: 0;
    margin-top: auto;
    position: relative;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 4rem 0 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #00CC52;
}

.footer-logo {
    margin-top: 1.5rem;
}

.footer-logo img {
    padding: 5px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.footer-logo img:hover {
    transform: scale(1.05);
    box-shadow: var(--hover-shadow);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-section a i {
    margin-right: 0.5rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: #2584C4;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #2584C4;
    color: #f8f9fa;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.scroll-to-top:hover {
    background-color: #2584C4;
    filter: brightness(90%);
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        display: flex !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 0;
    }
    
    .hero .container {
        flex-direction: column-reverse;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .hero-content,
    .hero-image {
        width: 100%;
        padding-right: 0;
    }
    
    .hero-content {
        margin-top: 1rem;
        text-align: center;
    }
    
    .animated-heading {
        font-size: 2.8rem;
    }
    
    .typewriter-wrapper {
        display: block;
        margin-top: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin: 1rem auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .hero-image-wrapper {
        min-height: 300px;
    }
    
    .hero-image-item {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        min-height: 250px;
    }
    
    .hero-image-item {
        max-width: 220px;
    }
    
    .hero-image {
        margin-bottom: 2rem;
    }
    
    .typewriter-wrapper {
        display: block;
        margin-top: 0.5rem;
    }
    
    #typewriter {
        color: #00CC52;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

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

/* Default style for animate-on-scroll elements before they animate */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.5s ease;
}

/* Animation Classes */
.animate-on-scroll.fade-in,
.animate-on-scroll.slide-in-left,
.animate-on-scroll.slide-in-right,
.animate-on-scroll.slide-in-up {
    opacity: 1;
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

.slide-in-up {
    animation: slideInUp 1s ease-in-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

@keyframes bgPan {
    from { background-position: 0% 0%; }
    to { background-position: 200% 200%; }
}

/* Typewriter wrapper styles */
.typewriter-wrapper {
    display: block;
    color: #00CC52;
    font-weight: 700;
    line-height: 1.2;
    max-width: 100%;
}

#typewriter {
    color: #00CC52;
    font-weight: 700;
    font-size: 0.9em;
    white-space: normal;
    display: inline-block;
}

.cursor {
    color: #00CC52;
    font-weight: 700;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* Features Section Styles */
.features {
    background-color: #1A1D21;
    padding: 6rem 0;
    color: white;
}

/* Footer */
.modern-footer {
    background-color: #2D4359;
    color: white;
    padding: 0;
    margin-top: auto;
    position: relative;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 4rem 0 2rem;
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #00CC52;
}

.company-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    margin-bottom: 1.2rem;
    display: inline-block;
}

.footer-logo img {
    padding: 0;
    border-radius: var(--border-radius);
    background-color: transparent;
    transition: all 0.3s ease;
    max-width: 80px;
    height: auto;
}

.footer-logo img:hover {
    transform: translateY(-5px);
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links ul li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section.links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-section.links ul li a i {
    margin-right: 0.8rem;
    font-size: 0.75rem;
    color: #00CC52;
}

.footer-section.links ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-section.contact-info .contact-details {
    list-style: none;
    padding: 0;
}

.footer-section.contact-info .contact-details li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.icon-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2584C4, #00CC52);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}

.icon-gradient i {
    color: white;
    font-size: 1rem;
    z-index: 1;
}

.footer-section.contact-info .contact-details li span {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-section.contact-info .contact-details li:hover span {
    color: white;
}

.footer-section.contact-info .contact-details li:hover .icon-gradient {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Newsletter section styles */
.footer-section.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    position: relative;
    max-width: 100%;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(0, 204, 82, 0.3);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    height: calc(100% - 10px);
    border: none;
    background: linear-gradient(135deg, #2584C4, #00CC52);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button i {
    font-size: 1rem;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #00CC52;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-info {
        text-align: center;
    }
    
    .footer-section h3 {
        display: block;
        text-align: center;
    }
    
    .footer-section h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section.links ul li a {
        justify-content: center;
    }
    
    .footer-section.contact-info .contact-details li {
        justify-content: center;
    }
    
    .newsletter-form .form-group {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Old footer styles - keeping this for compatibility with other components */
footer {
    background-color: #2D4359;
    color: white;
    padding: 3rem 0 2rem;
    margin-top: auto;
}

html, body {
    background-color: #1A1D21;
}

/* Desktop Only / Mobile Only */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hub-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .hub-icon {
        font-size: 28px;
        width: 32px;
        height: 32px;
        margin-bottom: 2rem;
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0) rotateY(0deg) rotateX(0deg) scale(1);
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    }
    25% {
        transform: translateY(-10px) rotateY(2deg) rotateX(-1deg) scale(1.02);
        filter: drop-shadow(0 15px 20px rgba(0,0,0,0.3));
    }
    50% {
        transform: translateY(-15px) rotateY(0deg) rotateX(2deg) scale(1.05);
        filter: drop-shadow(0 20px 25px rgba(0,0,0,0.4));
    }
    75% {
        transform: translateY(-10px) rotateY(-2deg) rotateX(1deg) scale(1.02);
        filter: drop-shadow(0 15px 20px rgba(0,0,0,0.3));
    }
    100% {
        transform: translateY(0) rotateY(0deg) rotateX(0deg) scale(1);
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    }
}

.hero-image-item.active {
    opacity: 1;
    transform: scale(1) translateY(0) rotateX(0);
    animation: floatImage 8s ease-in-out infinite;
}

/* Initially hidden elements */
.initially-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.initially-hidden.visible {
    opacity: 1;
    visibility: visible;
}

/* Newsletter message styles */
.newsletter-message {
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.newsletter-message i {
    margin-right: 8px;
    font-size: 1rem;
}

.newsletter-message.success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-left: 3px solid #2ecc71;
}

.newsletter-message.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-left: 3px solid #e74c3c;
}

/* Newsletter input validation styles */
.validation-message {
    font-size: 0.8rem;
    margin-top: 0.3rem;
    transition: all 0.3s ease;
    height: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.validation-message.valid {
    color: #059669;
    max-height: 50px;
    opacity: 1;
}

.validation-message.invalid {
    color: #dc2626;
    max-height: 50px;
    opacity: 1;
}

.validation-message.warning {
    color: #d97706;
    max-height: 50px;
    opacity: 1;
}

.newsletter-form input.valid {
    border-color: #059669 !important;
    background-color: rgba(5, 150, 105, 0.05) !important;
}

.newsletter-form input.invalid {
    border-color: #dc2626 !important;
    background-color: rgba(220, 38, 38, 0.05) !important;
}

/* Add shake animation for invalid inputs */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.newsletter-form input.invalid:focus {
    animation: shake 0.6s ease-in-out;
}

.newsletter-message.info {
    background-color: #e0f2fe;
    color: #0369a1;
    border-left: 3px solid #0ea5e9;
}

.newsletter-message.warning {
    background-color: #fef3c7;
    color: #b45309;
    border-left: 3px solid #f59e0b;
}

/* Override default state for submit button during loading */
.newsletter-form button:disabled {
    background: linear-gradient(90deg, #94a3b8, #64748b);
    cursor: not-allowed;
    transform: translateY(0) !important;
}

.newsletter-form button .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

.we-help-you-to {
     animation: fadeIn 18s;
}

:root {
    --primary-color: #2584C4;
    --secondary-color: #2D4359;
    --accent-color: #00CC52;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --light-color: #f8f9fa;
    --dark-color: #1A1D21;
    --gray-color: #7f8c8d;
    --shadow: 0 5px 15px rgba(0,0,0,0.05);
    --hover-shadow: 0 15px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}