/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

body {
    /* background: linear-gradient(180deg, #2E2952, #0f172a); */
    font-family: sans-serif;
    /* space for fixed navbar */
}

/* ================= NAVBAR ================= */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(37, 100, 235, 0.701);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: 0.3s ease;
}

/* Scroll effect */
.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= LOGO ================= */
.logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #ffffff;
    border-radius: 10px;
    display: inline-block;
}

/* ================= NAV LINKS ================= */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}

/* Hover underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #2563EB;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ================= BUTTONS ================= */
.cta-buttons {
    display: flex;
    gap: 10px;
}

.btn-outline {
    border: none !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.btn-outline:hover {
    background: #2563EB;
    color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, #2563EB, #769df0) !important;
    border: none;
    color: #fff;
    border: 1px solid #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    white-space: nowrap;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* ================= MOBILE MENU ================= */
.mobile-cta {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #2563EB;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        transition: 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
    }

    .cta-buttons {
        display: none;
    }

    .mobile-cta {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 500px) {

    .logo {
        font-size: 18px;
    }

    .btn-primary,
    .btn-outline {
        padding: 7px 12px;
        font-size: 13px;
    }
}

/* ================= HERO SECTION ================= */
.hero {
    min-height: 100vh;
    background: url(../images/banner.png)no-repeat center center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.hero::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .7;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* CONTENT */
.hero-content {
    flex: 1;
    text-align: left;
    position: relative;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #2563EB;
}

.hero p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 25px;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 10px;
    display: inline-block;
}

.btn {
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;

}

.secondary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    background: #2563EB !important;
}

/* WHATSAPP UI */
.whatsapp-ui {
    position: relative;
    flex: 1;
    max-width: 320px;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* HEADER */
.chat-header {
    background: #075e54;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 35px;
    height: 35px;
    background: #ccc;
    border-radius: 50%;
}

.chat-header span {
    font-size: 12px;
    display: block;
}

/* BODY */
.chat-body {
    padding: 15px;
    background: #0b141a;
    height: 220px;
    overflow-y: auto;
}

/* MESSAGES */
.msg {
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 80%;
    font-size: 13px;
}

.user {
    background: #005c4b;
    margin-left: auto;
}

.bot {
    background: #202c33;
}

/* TYPING */
.typing {
    width: 50px;
}

.dots::before {
    content: "...";
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 34px;
    }

    .whatsapp-ui {
        width: 240px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 80px;
        margin-top: 80px;
    }

    .hero-wrapper {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .whatsapp-ui {
        position: relative;
        margin: 30px auto 0;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 320px;
    }

    .chat-body {
        height: 180px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 13px;
    }
}

/* trusted logo */
/* =========================
   SOCIAL PROOF SECTION
========================= */
.social-proof {
    padding: 50px 20px;
    background: radial-gradient(circle at top, #1e3a8a, #020617);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Glow effect (premium touch) */
.social-proof::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.25);
    /* #2563EB glow */
    filter: blur(120px);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

/* =========================
   TRUST TEXT
========================= */
.trust-text {
    position: relative;
    z-index: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    opacity: 0.85;
}

.trust-text span {
    color: #2563EB;
    font-weight: 700;
}

/* =========================
   LOGO MARQUEE
========================= */
.logo-marquee {
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
    z-index: 1;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 22s linear infinite;
}

.logo-track img {
    height: 80px;
    filter: grayscale(100%) brightness(1.6);
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Hover effect */
.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

/* Scroll Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================
   STATS SECTION
========================= */
.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

/* BIG NUMBERS */
.stat h2 {
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(90deg, #2563EB, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LABEL */
.stat p {
    margin-top: 10px;
    opacity: 0.7;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {
    .stats {
        gap: 50px;
    }

    .stat h2 {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .social-proof {
        padding: 70px 15px;
    }

    .trust-text p {
        font-size: 16px;
    }

    .logo-track {
        gap: 40px;
    }

    .stats {
        gap: 30px;
    }

    .stat h2 {
        font-size: 34px;
    }

    .stat p {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stat h2 {
        font-size: 28px;
    }
}

/* ================= FEATURES ================= */
.features {
    padding: 50px 20px;
    background: #020617;
    color: #fff;
}

.features-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT LIST */
.features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* FEATURE ITEM */
.feature {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.6;
}

.feature span {
    font-size: 24px;
}

/* ACTIVE FEATURE */
.feature.active {
    background: rgba(37, 99, 235, 0.1);
    border-left: 3px solid #2563EB;
    opacity: 1;
}

/* HOVER EFFECT */
.feature:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* TEXT */
.feature h3 {
    font-size: 18px;
}

.feature p {
    font-size: 13px;
    opacity: 0.7;
}

/* RIGHT PREVIEW */
.feature-preview {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
}

/* Glow */
.feature-preview::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.3);
    filter: blur(100px);
    top: -50px;
    right: -50px;
}

/* PREVIEW TEXT */
.feature-preview h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.feature-preview p {
    opacity: 0.8;
    margin-bottom: 20px;
}

/* PREVIEW BOX */
.preview-box {
    background: #0f172a;
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    opacity: 0.9;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .features-wrapper {
        flex-direction: column;
    }

    .feature-preview {
        width: 100%;
    }
}

/* product design */

/* ================= EXPERIENCE SECTION ================= */
.multi-channel {
    padding: 50px 20px;
    background: radial-gradient(circle at center, #020617, #000);
    color: #fff;
    text-align: center;
}


/* HEADER */
.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    opacity: 0.7;
    margin-bottom: 60px;
}

/* CHANNEL CONTAINER */
.channels {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    flex-wrap: wrap;
}

/* CHAT CARDS */
.channel {
    width: 260px;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
    transform: perspective(1000px) rotateY(0deg);
}

/* UNIQUE POSITIONS */
.web {
    transform: rotate(-8deg);
}

.whatsapp {
    transform: scale(1.05);
    z-index: 2;
}

.messenger {
    transform: rotate(8deg);
}

/* HOVER EFFECT */
.channel:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 3;
}

/* HEADER */
.chat-header {
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
}

/* BODY */
.chat-body {
    padding: 15px;
}

/* MESSAGES */
.user {
    background: #1e293b;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 8px;
    text-align: left;
    font-size: 13px;
}

.bot {
    background: #2563EB;
    padding: 8px;
    border-radius: 8px;
    text-align: left;
    font-size: 13px;
}

/* PLATFORM COLORS */
.web .chat-header {
    background: #334155;
}

.whatsapp .chat-header {
    background: #075e54;
}

.messenger .chat-header {
    background: #0084ff;
}

@media (max-width: 768px) {

    .section-header h2 {
        font-size: 26px;
    }

    .multi-channel .container {
        flex-direction: column;
    }

    .channels {
        flex-direction: column;
        gap: 30px;
    }

    .channel {
        transform: none !important;
        width: 100%;
        max-width: 320px;
    }

    .channel:hover {
        transform: scale(1.05);
    }
}

/* ================= HOW IT WORKS ================= */
.how-it-works {
    padding: 100px 20px;
    background: #d4d4d4;
    color: #222222;
    text-align: center;
}

/* HEADER */
.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    opacity: 0.7;
    margin-bottom: 70px;
}

/* STEPS CONTAINER */
.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 30px;
}

/* FLOW LINE */
.steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, #2563EB, #60a5fa);
    z-index: 0;
}

/* STEP */
.step {
    position: relative;
    z-index: 1;
    max-width: 200px;
}

/* ICON */
.icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: rgb(37, 100, 235);
    border: 2px solid #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.step:hover .icon {
    background: #2563EB;
    transform: scale(1.1);
}

/* TEXT */
.step h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.step p {
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 768px) {

    .steps {
        flex-direction: column;
        gap: 50px;
    }

    .how-it-works .container {
        flex-direction: column;
    }

    /* vertical line */
    .steps::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        content: none;
    }

    .step {
        max-width: 100%;
    }
}

/* ================= handover SECTION ================= */
.handover {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #020617, #000);
    color: #fff;
}

.handover-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* CHAT UI */
.handover-chat {
    flex: 1;
    display: flex;
    justify-content: center;
}

.chat-box {
    background: #0f172a;
    padding: 25px;
    border-radius: 16px;
    width: 300px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

/* MESSAGES */
.bot {
    background: #1e293b;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.agent {
    background: #2563EB;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

/* HANDOVER LINE */
.handover-line {
    text-align: center;
    font-size: 12px;
    margin: 15px 0;
    opacity: 0.7;
    position: relative;
}

.handover-line::before,
.handover-line::after {
    content: "";
    height: 1px;
    width: 30%;
    background: #2563EB;
    position: absolute;
    top: 50%;
}

.handover-line::before {
    left: 0;
}

.handover-line::after {
    right: 0;
}

/* RIGHT CONTENT */
.handover-content {
    flex: 1;
}

.handover-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.subtitle {
    opacity: 0.8;
    margin-bottom: 20px;
}

/* POINTS */
.handover-points {
    list-style: none;
}

.handover-points li {
    margin-bottom: 12px;
    font-size: 15px;
    opacity: 0.9;
}

@media (max-width: 768px) {

    .handover-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .handover-chat {
        order: 2;
    }

    .handover-content {
        order: 1;
    }

    .chat-box {
        width: 100%;
        max-width: 320px;
    }
}

/* use cases */
/* ================= USE CASES ================= */
.architecture {
    padding: 50px 20px;
    background: #33469e;
    color: #fff;
    text-align: center;
}

/* HEADER */
.section-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.section-header p {
    opacity: 0.7;
    margin-bottom: 60px;
}

/* FLOW */
.arch-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* BOX */
.arch-box {
    background: #0f172a;
    padding: 20px 25px;
    border-radius: 14px;
    font-size: 14px;
    min-width: 140px;
    position: relative;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ICON */
.arch-box span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    opacity: 0.8;
}

/* HIGHLIGHT NLP */
.highlight {
    border: 1px solid #2563EB;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

/* HOVER */
.arch-box:hover {
    transform: translateY(-5px);
}

/* ARROW LINE */
.arrow {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #2563EB, #60a5fa);
    position: relative;
}

/* ARROW HEAD */
.arrow::after {
    content: "";
    position: absolute;
    right: -5px;
    top: -4px;
    border-left: 6px solid #60a5fa;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

@media (max-width: 768px) {

    .arch-flow {
        flex-direction: column;
    }

    .architecture .container {
        flex-direction: column;
    }

    .arrow {
        width: 2px;
        height: 30px;
    }

    .arrow::after {
        top: auto;
        bottom: -6px;
        right: -2px;
        transform: rotate(90deg);
    }
}


/* ================= FOOTER ================= */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo + Description */
.footer-logo-desc {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo-desc .logo img {
    max-width: 150px;
    /* margin-bottom: 10px; */
}

.footer-logo-desc p {
    color: #ccc;
    font-size: 14px;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

/* Extras */
.footer-extras {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-extras .social-icons a {
    font-size: 24px;
    margin-right: 15px;
    color: #ccc;
    transition: color 0.3s;
}

.footer-extras .social-icons a:hover {
    color: #fff;
}

.footer-extras .newsletter {
    display: flex;
}

.footer-extras .newsletter input {
    padding: 8px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer-extras .newsletter button {
    padding: 8px 15px;
    border: none;
    background: #2563EB;
    color: #fff;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background 0.3s;
}

.footer-extras .newsletter button:hover {
    background: #2563EB;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-extras {
        flex-direction: column;
        gap: 15px;
    }

    .footer-extras .newsletter {
        width: 100%;
    }

    .footer-extras .newsletter input {
        flex: 1;
    }
}


/* pricing page */
/* ================= PRICING PAGE ================= */
.princing-banner {
    text-align: center;
    padding: 50px 20px;
    margin-top: 80px;
    color: #ffffff;
    background: radial-gradient(circle, #020617, #000);
}

.princing-banner h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.princing-banner p {
    opacity: 0.7;
    font-size: 18px;
}

/* PRICING SECTION */
.pricing {
    margin: 80px 0;
    text-align: center;
}

.pricing-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #2564eb6c;
    border-radius: 20px;
    padding: 40px 25px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 32px;
    margin: 15px 0;
    color: #2563EB;
}

.pricing-card .price span {
    font-size: 16px;
    color: #fff;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.pricing-card a.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #2563EB;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s;
}

.pricing-card a.btn-primary:hover {
    background: #60a5fa;
}

/* Highlight Recommended Plan */
.recommended {
    border: 2px solid #2563EB;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.4);
    transform: scale(1.05);
    z-index: 1;
}

/* Hover effects */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

/* ================= CONTACT SECTION ================= */
.banner {
    background: radial-gradient(circle, #2563EB, #000);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
}

.banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 16px;
    opacity: 0.9;
}

.contact-container {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

/* Image */
.contact-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-image {
    width: 50%;
}

/* Form */
.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    margin-bottom: 20px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

/* Button */
.contact-form button {
    width: 100%;
    padding: 12px;
    background: #2563EB;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.contact-form button:hover {
    opacity: 0.9;
}

/* Message */
.form-msg {
    font-size: 13px;
    margin-bottom: 10px;
}

.form-msg.error {
    color: red;
}

.form-msg.success {
    color: green;
}

/* ================= CONTACT INFO ================= */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    background: #f9fafb;
    padding: 60px 20px;
    /* max-width: 1100px; */
    margin: auto;
}

.info-card {
    background: #2563EB;
    padding: 25px;
    color: #ffffff;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    margin-bottom: 10px;
}

.info-card img {
    width: 24px;
    margin-bottom: 10px;
    filter: invert(1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ================= MAP ================= */
.map iframe {
    width: 100%;
    height: 350px;
    border: none;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {

    .banner h1 {
        font-size: 26px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

.error {
    color: #ff4d4d;
    font-size: 14px !important;
    min-height: 20px;
}

.success {
    color: #22c55e;
    font-weight: bold;
}

/* solution page */
.solution-banner {
    text-align: center;
    padding: 50px 20px;
    color: #ffffff;
    margin-top: 80px;
    background: radial-gradient(circle, #020617, #000);
}

.solution-banner h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.solution-banner p {
    opacity: 0.7;
    font-size: 18px;
    margin-bottom: 30px;
}

.solution-banner .btn-primary {
    padding: 15px 30px;
    border-radius: 10px;
    background: #2563EB;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.solution-banner .btn-primary:hover {
    background: #60a5fa;
}

/* SOLUTIONS CARDS */
.solutions {
    padding: 50px 30px;
    text-align: center;
    background: radial-gradient(circle at top, #1e3a8a, #020617);
    color: #ffffff;
}

.solution-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    color: #ffffff;
}

.card {
    background: #0f172a;
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    transition: 0.3s;
    margin: 0 auto;
}

.card i {
    font-size: 36px;
    color: #2563EB;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    opacity: 0.7;
    font-size: 14px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

/* PROBLEMS */
.problems {
    padding: 50px 30px;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    color: #ffffff;
}

.problem {
    background: #2563EB;
    padding: 25px;
    border-radius: 16px;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    transition: 0.3s;
    margin: 0 auto;
}

.problem i {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 12px;
}

.problem h3 {
    margin-bottom: 8px;
}

.problem p {
    opacity: 0.7;
    font-size: 13px;
}

.problem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* IMPACT STATS */
.impact {
    padding: 50px 30px;
    text-align: center;
    background: radial-gradient(circle at top, #1e3a8a, #020617);
    color: #ffffff;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat h3 {
    font-size: 36px;
    color: #2563EB;
    margin-bottom: 5px;
}

.stat p {
    opacity: 0.7;
    font-size: 14px;
}

/* CTA DEMO */
.cta-demo {
    text-align: center;
    margin: 80px 0;
}

.cta-demo .btn-primary {
    padding: 15px 30px;
    border-radius: 10px;
    background: #2563EB;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.cta-demo .btn-primary:hover {
    background: #60a5fa;
}

/* RESPONSIVE */
@media(max-width:768px) {

    .solution-cards,
    .problem-grid,
    .impact-stats {
        flex-direction: column;
        gap: 30px;
    }
}