/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #004494;
    --accent-color: #00d2ff;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    --gradient-hero: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
}

.contact-info i,
.social-links i {
    margin-right: 8px;
}

.social-links a {
    color: var(--white);
    margin-left: 20px;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 40px;
    color: var(--light-text);
    max-width: 650px;
    line-height: 1.6;
}

.hero-image-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.hero-banner-img:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3);
    background: linear-gradient(135deg, #004494 0%, #003366 100%);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 60px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-img-container::after {
    opacity: 1;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img-container img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 700;
    transition: var(--transition);
}

.service-card:hover .service-content h3 {
    color: var(--primary-color);
}

.service-content p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.product-card p {
    color: var(--light-text);
    margin-bottom: 25px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-text p {
    margin-bottom: 30px;
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.features-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    background: rgba(0, 86, 179, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.about-image {
    flex: 1;
    height: 400px;
    background: var(--gradient-hero);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(0, 86, 179, 0.2);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 50px;
}

.contact-form-container {
    flex: 1.5;
    min-width: 350px;
    background-color: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fcfcfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.contact-info-box {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
    background: rgba(0, 86, 179, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 700;
}

.info-item p {
    color: var(--light-text);
}

.map-placeholder {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 300px;
}

/* Animations */
.fade-in-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.main-footer {
    background-color: #111;
    color: #aaa;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-col p i {
    margin-right: 15px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Floating AI Guide */
.ai-guide-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: linear-gradient(135deg, #00d2ff 0%, #0056b3 100%);
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.ai-guide-float:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* AI Banner Styles */
.ai-banner-section {
    padding: 60px 0;
    background-color: var(--white);
}

.ai-banner {
    position: relative;
    width: 100%;
    max-width: 970px;
    height: 250px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 210, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 86, 179, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.ai-banner-content {
    position: relative;
    z-index: 10;
    max-width: 500px;
    color: var(--white);
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00d2ff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.ai-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.ai-banner p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.btn-ai {
    background: linear-gradient(90deg, #00d2ff, #0056b3);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}

/* AI Visuals Animation */
.ai-visuals {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.node {
    position: absolute;
    border-radius: 50%;
    background: #00d2ff;
    box-shadow: 0 0 20px #00d2ff;
    animation: pulse 3s infinite ease-in-out;
}

.node-1 {
    width: 10px;
    height: 10px;
    top: 30%;
    right: 20%;
    animation-delay: 0s;
}

.node-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 35%;
    animation-delay: 1s;
}

.node-3 {
    width: 8px;
    height: 8px;
    top: 45%;
    right: 10%;
    animation-delay: 2s;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.5), transparent);
    height: 1px;
    width: 150px;
    transform-origin: left;
    animation: scan 4s infinite linear;
}

.line-1 {
    top: 32%;
    right: 20%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    top: 62%;
    right: 35%;
    transform: rotate(-30deg);
    animation-delay: 1.5s;
}

.line-3 {
    top: 47%;
    right: 10%;
    transform: rotate(15deg);
    animation-delay: 3s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
}

@keyframes scan {
    0% {
        transform: translateX(-100%) rotate(var(--r));
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%) rotate(var(--r));
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .ai-banner {
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .ai-banner-content {
        max-width: 100%;
    }

    .ai-visuals {
        display: none;
    }
}

/* Video Container */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: #000;
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    font-size: 0.7em;
    padding: 2px 8px;
    border-radius: 12px;
    vertical-align: middle;
    margin-left: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Infographic Styles */
.infographic-container {
    position: relative;
}

.info-point {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border: 3px solid #ff6b6b;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
    animation: pulse-ring 2s infinite;
}

.info-point:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(255, 107, 107, 0.6);
}

.info-point::after {
    content: attr(data-label);
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.info-point::before {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.info-point:hover::after,
.info-point:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.point-1 {
    top: 25%;
    left: 30%;
}

.point-2 {
    top: 45%;
    right: 25%;
}

.point-3 {
    bottom: 30%;
    left: 40%;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
}

.solutions-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.solutions-text {
    flex: 1;
}

.solutions-text h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.solutions-text p {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 40px;
}

.solutions-text p strong {
    color: var(--text-color);
    font-weight: 700;
}

.solutions-card-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.solutions-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 600px;
    border-top: 4px solid var(--primary-color);
}

.solutions-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    letter-spacing: 1px;
}

.solutions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.solutions-list li {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}

@media (max-width: 992px) {
    .solutions-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .solutions-text h2 {
        font-size: 2.8rem;
    }

    .solutions-list {
        text-align: left;
    }
}