:root {
    --primary: #18192b;
    --secondary: #23244a;
    --accent: #ff3c7e;
    --accent2: #6c63ff;
    --neon: #ff3c7e;
    --neon2: #6c63ff;
    --text-light: #fff;
    --text-muted: #bfc6e0;
    --card-bg: #23244a;
    --card-border: #2d2e4d;
    --section-padding: 60px 0;
    --border-radius: 18px;
    --transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
    --glow: 0 0 16px var(--neon), 0 0 32px var(--neon2);
}

body {
    font-family: "Roboto", Arial, sans-serif;
    background: #13111a;
    color: var(--text-light);
}

a,
a:hover {
    color: var(--accent);
    text-decoration: none;
}

.navbar {
    background: #13111a;
    padding: 15px 0;
}

.navbar .container {
    max-width: 1020px;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 300;
    margin-right: 18px;
    transition: color 0.2s;
}

.nav-link.active,
.nav-link:hover {
    color: var(--accent) !important;
}

.btn-primary,
.btn-neon {
    background: linear-gradient(90deg, var(--neon), var(--neon2));
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 0 16px var(--neon2);
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary:hover,
.btn-neon:hover {
    background: linear-gradient(90deg, var(--neon2), var(--neon));
    color: #fff;
    box-shadow: 0 0 32px var(--neon);
}

.section-title {
    color: var(--accent2);
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero {
    color: var(--text-light);
    padding: 100px 0 60px 0;
    text-align: center;
    position: relative; /* Needed for absolute children */
    overflow: hidden; /* Prevent image spill */
    background: #13111a;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    top: 80%; /* move down towards image */
    transform: translateY(-50%); /* center vertically */
    width: 600px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

.hero::after {
    right: 0; /* bring closer to image from right */
    background-image: url(../images/Light-Effect.png);
    background-position: center center;
}

.hero::before {
    left: 0; /* bring closer to image from left */
    background-image: url(../images/Light-Effect.png);
    background-position: center center;
}

/* .hero-title {
      font-size: 2.7rem;
      font-weight: 700;
      margin-bottom: 18px;
      letter-spacing: 1px;
    } */

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    max-width: 800px;
}

/* .gradient-text {
      background: linear-gradient(45deg, #ff6b9d, #c471ed, #12c2e9, #c471ed, #ff6b9d);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 4s ease-in-out infinite;
    } */

.gradient-text {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(270deg, #4f56ff, #ff4980);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .hero-subtitle {
      font-size: 1.1rem;
       font-weight: 300 !important;
      margin-bottom: 32px;
      color: var(--text-muted);
    } */

.hero-subtitle {
    font-size: 21px;
    color: #bfc6e0;
    line-height: 1.3;
    max-width: 1200px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 12px 36px;
    margin-bottom: 32px;
}

.hero-img {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: 0 0 32px var(--neon2), 0 0 8px var(--neon);
}

/* Card Styles */
.card-neon {
    background: var(--card-bg);
    border: 1.5px solid var(--card-border);
    border-radius: var(--border-radius);
    box-shadow: 0 0 16px #23244a, 0 0 8px var(--neon2);
    color: var(--text-light);
    transition: var(--transition);
}

.card-neon:hover {
    box-shadow: 0 0 32px var(--neon2), 0 0 16px var(--neon);
    border-color: var(--neon2);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 12px;
    text-shadow: 0 0 8px var(--neon);
}

.feature-title {
    color: var(--accent2);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Section backgrounds */
.features,
.about,
.why,
.automation,
.how,
.leadgen,
.footer {
    padding: var(--section-padding);
}

.features,
.why,
.automation,
.how,
.leadgen {
    background: #1a1b2e;
}

.about {
    background: #23244a;
}

/* About Section */
.about-img {
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 16px var(--neon2);
}

/* Why Section */
.why-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 0 16px var(--neon2);
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 24px;
}

/* Automation Section */
.automation-img,
.why-img,
.leadgen-img,
.how-img {
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 350px;
    box-shadow: 0 0 16px var(--neon2);
}

/* Footer */
.footer {
    background: #18192b;
    color: var(--text-muted);
    padding: 40px 0 0 0;
}

.footer .footer-links a {
    color: var(--accent2);
    margin-right: 16px;
    text-decoration: none;
}

.footer .footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background: #111a4a;
    color: #bfc6e0;
    padding: 12px 0;
    text-align: center;
    font-size: 0.95rem;
}

/* Glow/Neon Callouts */
.glow-box {
    background: linear-gradient(
        90deg,
        rgba(255, 60, 126, 0.15),
        rgba(108, 99, 255, 0.15)
    );
    border-radius: var(--border-radius);
    box-shadow: 0 0 32px var(--neon2), 0 0 16px var(--neon);
    padding: 32px 24px;
    text-align: center;
    margin: 40px 0;
}

.glow-btn {
    background: linear-gradient(90deg, var(--neon), var(--neon2));
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 0 16px var(--neon2);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 36px;
    font-size: 1.1rem;
    margin-top: 16px;
}

.glow-btn:hover {
    background: linear-gradient(90deg, var(--neon2), var(--neon));
    color: #fff;
    box-shadow: 0 0 32px var(--neon);
}

/* navbar css */

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-brand img {
    max-height: 30px;
    vertical-align: middle;
}

.navbar-nav {
    gap: 0rem;
}

.nav-link {
    color: #fff !important;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #6c63ff !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #6c63ff, #00d4ff);
    transition: width 0.3s, left 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Services dropdown */
.services-dropdown {
    /* ❗ FIX: back to absolute so it stays under SERVICES */
    position: absolute;
    /* <-- key change */
    top: 100%;
    /* start right below the parent */
    left: 0;
    /* align left edges */
    background: linear-gradient(135deg, #4a47a3 0%, #7c3aed 50%, #ad5389 100%);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 10px;
    margin-top: 15px;
    /* little drop-shadow gap */
    min-width: 280px;
}

.services-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #4a47a3;
}

.dropdown-item {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 3px 0;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.dropdown-item:hover::before {
    left: 0;
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

.btn-login {
    background: transparent;
    color: #6c63ff;
    border: 2px solid #6c63ff;
    border-radius: 25px;
    padding: 8px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #6c63ff;
    color: #fff;
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
}

.navbar-nav .nav-item.dropdown {
    position: relative;
    /* ← anchor for .dropdown-menu */
}

/* ─────────────  RESPONSIVE TWEAKS  ───────────── */

/* ────────────  DESKTOP HOVER BEHAVIOUR  ──────────── */

/* ---------- ALIGN SERVICES DROPDOWN ---------- */

/* hero css */

.hero-section-custom {
    position: relative;
    padding: 80px 0 40px 0;
    overflow: hidden;
    min-height: 600px;
}

.hero-title-group {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
}

.hero-main-title {
    color: #fff;
    font-size: 70px;
    font-weight: 600;
    line-height: 0.5;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-gradient-title {
    font-size: 70px;
    font-weight: 600;
    background: linear-gradient(270deg, #4f56ff, #ff4980);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 0;
    text-align: center;
    line-height: 1;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 60%, #7c3aed 0%, #232133 80%);
    z-index: 1;
}

.hero-desc {
    color: #bfc6e0;
    font-size: 1.15rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5em auto;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

.hero-img-main {
    display: block;
    border-radius: 20px;
    width: 520px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 0 32px #7c3aed33;
    margin: 0 auto;
}

/* features */

.features-section-custom {
    position: relative;
    padding: 80px 0 60px 0;
    overflow: hidden;
}

.features-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #13111a;
    background-image: url(../images/Light-Effect.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.features-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    line-height: 1;
}

.features-demo-btn {
    background: #000;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 24px;
    font-weight: 700;
    font-size: 1.6rem;
    padding: 8px 28px;
    box-shadow: 0 2px 12px #0002;
    display: inline-block;
    background-image: linear-gradient(#000, #000),
        /* Button background */ linear-gradient(30deg, #3151df, #ed804a);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.feature-card-main {
    background: #1d1a26;
    border-radius: 20px;
    box-shadow: 0 0 32px #7c3aed33;
    padding: 32px 28px;
    color: #ffffff;
    max-width: 370px;
    min-height: 260px;
    margin-bottom: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-icon-main {
    font-size: 2.8rem; /* Increased icon size slightly */
    width: 70px; /* Increased width */
    height: 70px; /* Increased height */
    border-radius: 14px; /* Slightly larger rounding to match new size */
    color: #2d2e4d;
    background: #FFFAF1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-title-main {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.feature-desc-main {
    color: #ffffff;
    font-size: 17px;
}

.feature-card-custom {
    background: #1d1a26;
    border-radius: 20px;
    box-shadow: 0 0 24px #7c3aed22;
    padding: 32px 28px;
    color: #ffffff;
    min-height: 220px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-icon-custom {
    font-size: 2.8rem;
    color: #2d2e4d;
    background: #FFFAF1;
    border-radius: 12px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-title-custom {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.feature-desc-custom {
    color: #ffffff;
    font-size: 16px;
}

/* about */

.about-section-custom {
    background: #13111a;
    padding: 80px 0 40px 0;
}

.about-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-gradient {
    background: linear-gradient(90deg, #7c3aed 0%, #ff3c7e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.about-subtitle {
    text-align: center;
    color: #bfc6e0;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.about-icon {
    min-width: 54px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.about-feature-desc {
    color: #bfc6e0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.about-img-gradient {
    background: linear-gradient(135deg, #6c63ff 0%, #ff3c7e 100%);
    border-radius: 32px;
    padding: 8px;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 32px #7c3aed33;
}

.about-img-main {
    display: block;
    border-radius: 24px;
    width: 420px;
    max-width: 100%;
    height: auto;
}

.about-img-logo {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px #232133;
    letter-spacing: 1px;
    pointer-events: none;
}

.about-bottom-desc {
    text-align: center;
    color: #bfc6e0;
    font-size: 1.12rem;
    font-weight: 300;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* WHY BUSINESSES LOVE AI EMPLOYEES */

.why-section-custom {
    background: #13111a;
    padding: 80px 0 60px 0;
}

.why-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.why-gradient {
    background: linear-gradient(270deg, #4f56ff, #ff4980);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.why-subtitle {
    text-align: center;
    color: #bfc6e0;
    font-size: 20px;
    font-weight: 400;
}

/* Video Container */
.why-video-container {
    max-width: 800px;
    width: 100%;
}

.video-player {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-overlay {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
    z-index: 1;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff0000;
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.6);
}

.play-button svg {
    margin-left: 4px;
}

.video-bar {
    background: #181818;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #333;
}

.video-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    flex: 1;
}

.video-icon {
    font-size: 1.2rem;
}

.video-title {
    font-size: 0.9rem;
}

.video-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    color: #6c63ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.control-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
}

.control-btn:hover {
    color: #fff;
}

.youtube-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #bfc6e0;
    font-size: 0.9rem;
}

/* Feature Cards */
.features-grid {
    margin-top: 60px;
}

.feature-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.feature-card {
    background: rgba(35, 36, 74, 0.4);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    max-width: 500px;
    width: 100%;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(35, 36, 74, 0.6);
    border-color: rgba(108, 99, 255, 0.4);
    transform: translateY(-5px);
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #6c63ff;
}

.icon-404 {
    font-size: 20px;
    font-weight: 700;
    color: #6c63ff;
}

.feature-content h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-content p {
    color: #bfc6e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* GLOW CTA SECTION */

.glow-cta-section-custom {
    background: #13111a;
    padding: 0;
}

.glow-cta-card {
    background: #1d1a26;
    border-radius: 24px;
    box-shadow: 0 0 60px 0 #6c63ff55, 0 0 120px 0 #ff3c7e33;
    max-width: 1200px;
    width: 100%;
    min-height: 100px;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    gap: 24px;
}

.glow-cta-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.glow-cta-line {
    display: inline-block;
}

.glow-cta-btn {
    background: #000;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 24px;
    font-weight: 700;
    font-size: 1.6rem;
    padding: 8px 28px;
    box-shadow: 0 2px 12px #0002;
    display: inline-block;
    background-image: linear-gradient(#000, #000),
        /* Button background */ linear-gradient(30deg, #3151df, #ed804a);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* AUTOMATION SECTION */

.automation-section-custom {
    background: none;
    padding: 80px 0 40px 0;
}

.automation-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.automation-gradient {
    background: linear-gradient(90deg, #ff3c7e 0%, #6c63ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.automation-subtitle {
    text-align: center;
    color: #bfc6e0;
    font-size: 20px;
    margin-bottom: 2.5rem;
}

.automation-img-main {
    display: block;
    border-radius: 20px;
    width: 320px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 0 32px #7c3aed33;
    margin: 0 auto;
}

.automation-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
}

.automation-feature-list {
    margin-left: 0;
}

.automation-feature-item {
    display: flex;
    align-items: start;
    gap: 14px;
    color: #bfc6e0;
    font-size: 20px;
    margin-bottom: 0.5rem;
    line-height: 1.4rem;
}

.automation-feature-item b {
    color: #fff;
    font-weight: 400;
    margin-right: 4px;
}

.automation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    border-radius: 12px;
    background: #312d40;
    font-size: 2.5rem;
    color: #a084fa;
    margin-right: 8px;
    flex-shrink: 0;
}

/* HOW IT WORKS SECTION */

.how-section-custom {
    background: #13111a;
    padding: 80px 0;
    position: relative;
}

.how-header {
    top: 100px;
}

.how-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.how-subtitle {
    color: #bfc6e0;
    font-size: 20px;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    background: #FFFAF1;
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.step-card:hover {
    background: #FFFAF1;
    border-color: rgba(108, 99, 255, 0.4);
    transform: translateX(10px);
}

.step-content {
    flex: 1;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.2);
    color: #1d1a26;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-title {
    color: #1d1a26;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.step-description {
    color: #1d1a26;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.step-visual {
    width: 320px;
    flex-shrink: 0;
}

/* .mockup-card {
    background: #6c63ff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
    height: 100%;
} */
.mockup-card {
    background: transparent;
    border-radius: 20px;
    padding: 0px;
    box-shadow: none;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mockup-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

/* Form Mockup */
.mockup-content h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.input-box {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    color: #333;
    font-size: 0.9rem;
    width: 100%;
}

.forgot-password {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-align: right;
    width: 100%;
    cursor: pointer;
    margin: 0.5rem 0 1rem 0;
    text-decoration: underline;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.4;
}

.terms-checkbox input {
    margin-top: 2px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: #f8f9ff;
    color: #1a1a2e;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.welcome-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
}

.mini-stats {
    display: flex;
    gap: 20px;
}

.mini-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c63ff;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

.dashboard-list {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9rem;
}

.list-item:last-child {
    border-bottom: none;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.active {
    background: #d4f4dd;
    color: #28a745;
}

.status-badge.pending {
    background: #fff3cd;
    color: #ffc107;
}

/* Analytics Mockup */
.analytics-mockup {
    background: #f8f9ff;
    color: #1a1a2e;
}

.analytics-header {
    margin-bottom: 1.5rem;
}

.analytics-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    display: block;
    margin-bottom: 1rem;
}

.metric-row {
    display: flex;
    gap: 15px;
}

.metric-box {
    flex: 1;
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

.metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #6c63ff;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 3px;
}

.chart-area {
    display: flex;
    gap: 20px;
    align-items: center;
}

.bar-chart {
    flex: 1;
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 100px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #6c63ff, #9f94ff);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.circle-chart {
    width: 80px;
    height: 80px;
    position: relative;
}

.circle-chart svg {
    transform: rotate(-90deg);
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #6c63ff;
}

/* LEAD GENERATION SECTION */

.leadgen-section-custom {
    background: #13111a;
    background-image: url(../images/Light-Effect.png);
    background-size: cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.leadgen-section-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 80% 50%,
        rgba(108, 99, 255, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.leadgen-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.leadgen-subtitle {
    color: #bfc6e0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 0.9;
}

.leadgen-stats {
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #e0e0f0;
    font-size: 20px;
    line-height: 1.1;
}

.stat-item i {
    color: #6c63ff;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.stat-item strong {
    color: #fff;
    font-weight: 600;
}

.leadgen-cta-text {
    color: #bfc6e0;
    font-size: 20px;
    line-height: 1.1;
}

.leadgen-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leadgen-hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    filter: brightness(0.9) contrast(1.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(0, 209, 255, 0.3) 0%,
        transparent 60%
    );
    filter: blur(40px);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Key Features Section */
.key-features-section {
    margin-top: 5rem;
    text-align: center;
}

#features .features-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;

}

.feature-card {
    background: #1f1f3a;
    border-radius: 20px;
    padding: 24px 20px;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.15);
}

.feature-card:hover {
    background: rgba(35, 36, 74, 0.8);
    border-color: rgba(108, 99, 255, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
}

.feature-icon {
    width: 145px;
    height: 70px;
    background: rgba(108, 99, 255, 0.15);
    border-radius: 16px;
    border: 2px solid rgba(108, 99, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #b18cff;
}

.feature-card:hover .feature-icon {
    background: rgba(108, 99, 255, 0.25);
    border-color: #6c63ff;
    transform: rotate(5deg);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    margin: 0;
    font-size: 16px;
    color: #bfc6e0;
    line-height: 1.6;
}

/*CONTACT CTA SECTION*/

.contact-cta-section {
    background: #13111a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(108, 99, 255, 0.08) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 0.5;
}

.cta-subtitle {
    font-size: 35px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-description {
    font-size: 20px;
    color: #bfc6e0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
*/ .cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

/*CONTACT SECTION*/

.btn-neon {
    background: #000;
    /* solid dark interior */
    color: #fff;
    border: 2px solid transparent;
    /* real border comes from bg layer */
    border-radius: var(--border-radius);
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;

    /* two-layer background:
     1) solid for the inside
     2) gradient for the border   */
    background-image: linear-gradient(#000, #000),
        /* inner */ linear-gradient(45deg, var(--accent), var(--accent2));
    /* border */
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* remove the old hover fill; keep a subtle glow if you like */
.btn-neon:hover {
    color: #fff;
    /* text stays white */
    box-shadow: 0 0 24px var(--accent2, #6c63ff);
    /* optional glow */
}

/* Pricing Section Background */
.pricing-section {
    background: #1d1a26;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(108, 99, 255, 0.15) 0%,
        transparent 70%
    );
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, -50px);
    }
}

.pricing-label {
    color: #ffffff;
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    background: linear-gradient(90deg, #ec4899 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Toggle Switch */
.toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.toggle-label {
    color: #e5e7eb;
    font-size: 1rem;
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4b5563;
    transition: 0.4s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: #ffffff;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #8b5cf6;
}

input:checked + .slider:before {
    transform: translateX(28px);
}

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.card-header {
    background: transparent;
    background-image: linear-gradient(30deg, #3151df 0%, #8d19b5 100%);
    padding: 40px 30px 8px;
    text-align: center;
    position: relative;
    border-radius: 24px 24px 0 0 !important;
}

.ai-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: absolute;
    z-index: 1;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
}

.ai-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.avatar-ring {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: spin 3s linear infinite;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    color: #111827;
    opacity: 1;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: max-content;
    max-width: 250px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #3151df 0%, #8d19b5 100%);
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* position it above the tooltip element */
    left: 30%;
    /* transform: translateX(-50%); */

    opacity: 0;
    transition: opacity 0.3s ease;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.plan-name {
    font-family: "Roboto", Sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-top: 30px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.plan-badge {
    display: inline-block;
    background: #ffffff;
    padding: 4px 25px;
    border-radius: 20px;
    z-index: 1;
    font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    fill: #05056c;
    color: #05056c;
}

.plan-badge-p {
    display: inline-block;
    background-image: linear-gradient(90deg, #3151df 0%, #ed804a 100%);
    padding: 2px;
    border-radius: 20px;
    position: relative;
    bottom: -30px;
}

.card-content {
    background: #ffffff;
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 24px 24px;
}

.price-section {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 25px;
}

.price-wrapper {
    margin-bottom: 8px;
    font-family: "Roboto", Sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #05056c;
}

.old-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    margin-right: 10px;
}

.current-price {
    font-size: 1.875rem;
}

.discount-text {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #8d19b5;
}

.features-section {
    flex: 1;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #111827;
    font-size: 0.975rem;
    line-height: 1.4;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list li span.disabled {
    color: #9ca3af;
}

.highlight-feature {
    background: #f3f4f6;
    margin-left: -12px;
    margin-right: -12px;
    padding: 8px 12px;
    border-radius: 8px;
}

.btn-get-started {
    background: transparent;
    background-image: linear-gradient(30deg, #3151df 0%, #f2295b 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 10px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 50%;
    margin: 0 auto 25px auto;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.25);
    text-align: center;
}

.btn-get-started:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.footer-text {
    text-align: center;
}

.perfect-for {
    color: #dc2626;
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.footer-text p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/*footer*/

.footer-custom {
    background: none;
    padding: 0 0 40px 0;
    position: relative;
}

.footer-card {
    background: #1d1a26;
    border-radius: 32px;
    box-shadow: 0 0 60px 0 #6c63ff55, 0 0 120px 0 #ff3c7e33;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 320px;
    align-items: center;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    flex-wrap: nowrap;
    /* Force icons to stay in one line */
    gap: 4px;
    /* Minimal spacing between icons */
    margin-bottom: 1rem;
    /* Space below icons (adjust if needed) */
    overflow-x: auto;
    /* Prevent layout break if container too narrow */
}

.footer-social-icon {
    width: 32px;
    /* Smaller circle */
    height: 32px;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    font-size: 1rem;
    /* Smaller icon size */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px #6c63ff55;
    transition: transform 0.2s;
}

.footer-social-icon:hover {
    transform: translateY(-2px);
    /* Optional bounce */
    /* No color or background change */
}

.footer-links a {
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ff3c7e;
    text-decoration: underline;
}
.footer-location {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-location span {
    margin-left: 12px;
}
.footer-location img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
}
.location-contact-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 50%, #1a1a2e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.location-contact-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.1) 0%,
        transparent 70%
    );
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Location Section */
.location-wrapper {
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
}

.location-card {
    background: #1d1a26;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.location-card .flag-icon img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.flag-icon {
    margin-bottom: 20px;
}

.location-name {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-address {
    color: #cbd5e1;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-wrapper {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    font-size: 3.1rem;
}

.info-item h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.info-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.info-item a:hover {
    color: #8b5cf6;
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 2rem;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 250px;
}

.powerinai-badge strong {
    color: #1f2937;
    font-size: 1rem;
}

.powerinai-badge span {
    color: #6b7280;
    font-size: 0.75rem;
}

.rating {
    margin: 8px 0;
}

.stars {
    color: #ffa500;
}

.reviews {
    color: #6b7280;
    font-size: 0.75rem;
}

.view-map {
    color: #3b82f6;
    font-size: 0.875rem;
    text-decoration: none;
}

/* Contact Form */
.contact-form {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(17, 24, 39, 0.8);
}

.form-control::placeholder {
    color: #6b7280;
}

select.form-control {
    cursor: pointer;
}

.phone-input {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 100px;
    padding: 12px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .map-container {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .location-contact-section {
        padding: 60px 0;
    }

    .location-card {
        padding: 30px;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .section-title {
        font-size: 2rem;
    }
}

.location-contact-section {
    background: #13111a;
    background-image: url(../images/Light-Effect.png);
    background-size: cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.location-contact-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.1) 0%,
        transparent 70%
    );
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Location Section */
.location-wrapper {
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.contact-section-title {
    font-size: 72px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .map-container {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .location-contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/*blog*/

.blog-section {
    background: #13111a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(139, 92, 246, 0.08) 0%,
        transparent 50%
    );
}

.section-label {
    color: #ffffff;
    font-size: 2.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #cbd5e1;
    font-size: 20px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.blog-section .blog-list {
    position: relative;
    z-index: 1;
}

.blog-section .blog-item {
    background: #1d1a26;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-section .blog-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

.blog-section .blog-image {
    position: relative;
    height: 280px;
    /* height: 100%; */
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.blog-section .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-section .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(139, 92, 246, 0.9);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-section .blog-content {
    padding: 40px;
}

.blog-section .blog-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-section .blog-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-section .blog-title a:hover {
    color: #8b5cf6;
}

.blog-section .blog-excerpt {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-section .blog-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.blog-section .blog-meta > div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 0.875rem;
}

.blog-section .author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-section .author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.blog-section .author span {
    color: #ffffff;
    font-weight: 500;
}

.blog-section .blog-meta i {
    color: #8b5cf6;
    font-size: 1rem;
}

/*blog-details*/

.blog-details-section {
    background: #13111a;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.blog-details-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(139, 92, 246, 0.08) 0%,
        transparent 50%
    );
}

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.blog-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.author-details h4 {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.author-details p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 0.8rem;
}

.post-date i {
    color: #8b5cf6;
}

/* Featured Image */
.featured-image-wrapper {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.6;
}

.blog-meta-bottom {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    margin-top: 1.5rem;
    border: 1px solid #8056e3;
    padding: 20px 0px;
    border-radius: 25px;
}

.blog-details-section .blog-category {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-time {
    color: #cbd5e1;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-time i {
    color: #8b5cf6;
}

/* Blog Content */
.blog-details-section .blog-content {
    background: #1d1a26;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Article Content */
.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 1.375rem;
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
}

.article-content p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.article-content h2 {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.article-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 2px;
}

.article-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.article-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* Blockquote */
blockquote {
    position: relative;
    padding: 2rem 3rem;
    margin: 3rem 0;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(236, 72, 153, 0.1) 100%
    );
    border-radius: 20px;
    border-left: 4px solid #8b5cf6;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(139, 92, 246, 0.2);
    font-family: Georgia, serif;
}

blockquote p {
    font-size: 1.375rem;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    color: #9ca3af;
    font-size: 1rem;
    font-style: normal;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2rem 0 3rem;
}

.stat-card {
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(139, 92, 246, 0.05) 100%
    );
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Images */
.content-image {
    margin: 3rem 0;
}

.content-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.content-image .image-caption {
    margin-top: 1rem;
}

/* Tech Cards */
.tech-card {
    display: flex;
    gap: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s;
}

.tech-card:hover {
    background: rgba(139, 92, 246, 0.08);
    transform: translateX(10px);
}

.tech-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.3);
    line-height: 1;
}

.tech-content h3 {
    margin-top: 0;
}

/* Benefits Showcase */
.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-10px);
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.2) 0%,
        rgba(236, 72, 153, 0.2) 100%
    );
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #8b5cf6;
}

.benefit-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    font-size: 1rem;
    margin: 0;
}

/* Implementation Steps */
.implementation-steps {
    margin: 2rem 0;
}

.step {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s;
}

.step:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.step h3 {
    margin: 0;
    flex: 1;
}

/* Future Trends */
.future-trends {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 2rem 0;
}

.trend {
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(236, 72, 153, 0.1) 100%
    );
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.trend:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.trend-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.trend h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Conclusion Section */
.conclusion-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-section h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    background: #ffffff;
    color: #8b5cf6;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.125rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Share Section */
.share-section {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: 3rem;
}

.share-section h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
}

.share-btn.facebook {
    background: #1877f2;
    color: #ffffff;
}

.share-btn.twitter {
    background: #000000;
    color: #ffffff;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #ffffff;
}

.share-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.share-btn.copy {
    background: #6c757d;
    color: #ffffff;
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* shared blog */

.related-blog-section {
    background: #13111a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.related-blog-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(139, 92, 246, 0.08) 0%,
        transparent 70%
    );
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-100px);
    }
}

.section-label {
    color: #ffffff;
    font-size: 2.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-title {
    font-size: 3.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    /* background: linear-gradient(270deg, #4f56ff, #ff4980); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #cbd5e1;
    font-size: 25px;
    margin-bottom: 3rem;
}

/* Slider Wrapper */
.blog-slider-wrapper {
    position: relative;
    margin: 0 -15px;
    padding: 0 15px;
}

.blog-slider {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 10px 0 30px;
    position: relative;
    z-index: 1;
}

/* Blog Cards */
.blog-card {
    min-width: calc(33.333% - 20px);
    background: #1d1a26;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.25);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    background: rgba(139, 92, 246, 0.9);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a:hover {
    color: #8b5cf6;
}

.blog-card-excerpt {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.author-name {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
}

.blog-details-section .post-date {
    display: block;
    color: #9ca3af;
    font-size: 1rem;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #9ca3af;
    font-size: 0.875rem;
}

.read-time i {
    color: #8b5cf6;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 92, 246, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.slider-nav:hover {
    background: #7c3aed;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.4);
}

.slider-prev {
    left: -25px;
}

.slider-next {
    right: -25px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #8b5cf6;
    width: 30px;
    border-radius: 5px;
}

/*service*/
/*ai-inbound*/

.services-hero-section {
    background: #13111a;
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background gradient effect */
.services-hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Header Styles */
.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    font-size: 4.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 0.7rem;
    letter-spacing: -1px;
}

.ai-inbound-section .gradient-text {
    background: linear-gradient(270deg, #4f56ff, #ff4980);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 52px;
    font-weight: 600;
}

.services-subtitle {
    font-size: 2rem;
    color: #00d9ff;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 2rem;
}

/* Laptop Container */
.laptop-container {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 20px;
}

.laptop-frame {
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.3);
}

.laptop-frame::after {
    content: "";
    /* position: absolute; */
    /* bottom: -20px; */
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 15px;
    background: #2d2e4d;
    border-radius: 0 0 100px 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.screen {
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Description Section */
.service-description {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.description-text {
    color: #cbd5e1;
    font-size: 20px;
    /* line-height: 1.8; */
    margin-bottom: 1.5rem;
    /* text-align: justify; */
    font-weight: 300;
}

.description-text strong {
    color: #8b5cf6;
    font-weight: 600;
}

.ai-inbound-section {
    background: #13111a;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.ai-inbound-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.1) 0%,
        transparent 60%
    );
    filter: blur(80px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.ai-inbound-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.services-hero-section .gradient-text {
    background: linear-gradient(270deg, #4f56ff, #ff4980);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 72px;
    font-weight: 600;
}

.btn-demo {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 30px;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-demo:hover {
    background: #ffffff;
    color: #4a1d7f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Left Column - Visual */
.ai-visual {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.visual-frame {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 20px;
    padding: 6px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.ai-image {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

/* Feature List */
.feature-list {
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    color: #00d9ff;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item p {
    color: #e5e7eb;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.feature-item strong {
    color: #ffffff;
    font-weight: 600;
}

/* Right Column - Content */
.content-wrapper {
    position: relative;
    z-index: 1;
}

.content-title {
    font-size: 2.1rem;
    font-weight: 600;
    color: #00d9ff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-description {
    color: #e5e7eb;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Availability Features */
.availability-features {
    margin-bottom: 3rem;
}

.availability-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.availability-item i {
    color: #00d9ff;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.availability-item p {
    color: #e5e7eb;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Importance Section */
.importance-section {
    margin-top: 2rem;
}

.importance-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00d9ff;
    margin-bottom: 1rem;
}

.importance-text {
    color: #e5e7eb;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 135px;
}

/* Responsive Design */


.ai-outbound-section {
    background: #13111a;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Background gradient effect */
.ai-outbound-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(139, 92, 246, 0.1) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(236, 72, 153, 0.1) 0%,
            transparent 40%
        );
}

.container {
    position: relative;
    z-index: 1;
}

/* Content Blocks */
.content-block {
    margin-bottom: 2rem;
}

.block-title {
    font-size: 2.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 25px;
}

.cyan-title {
    color: #00d9ff;
}

.block-text {
    color: #e5e7eb;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.block-text strong {
    color: #b7b4c7;
    font-weight: 600;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #e5e7eb;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d9ff;
    font-weight: bold;
}

.feature-list li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Image Blocks */
.image-block {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 20px;
    padding: 6px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

/* Column Spacing */
.col-lg-4 {
    padding: 0 20px;
}


/*all-in-one-crm*/

.all-in-one-crm-features {
    margin-bottom: 7rem;
}

.all-in-one-crm-text {
    color: #e5e7eb;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.2rem;
}

.all-in-one-crm-feature-list li {
    color: #e5e7eb;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 20px;
    position: relative;
}

.crm-content-block {
    margin-top: 100px;
    margin-bottom: 2rem;
}

.crm-block-text {
    color: #e5e7eb;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2.75rem;
}

.crm-feature-list li {
    color: #e5e7eb;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 20px;
    position: relative;
}

.last-buttton {
    text-align: center;
}

/*about-section*/

.ai-outbound-section .content-block {
    margin-top: 40px;
}

.key-features-section {
    margin-top: 5rem;
    text-align: center;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
}

.feature-card {
    background: #1d1a26;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    background: #1d1a26;
    border-color: rgba(108, 99, 255, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.15);
    border: 2px solid rgba(108, 99, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #6c63ff;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(108, 99, 255, 0.25);
    border-color: #ffffff;
    transform: rotate(5deg);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-card p {
    color: #B7B4C7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.outbound-description-text {
    color: #cbd5e1;
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    /* text-align: justify; */
    font-weight: 300;
}

.outbound-block-text {
    color: #e5e7eb;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    margin-top: 77px;
    text-align: left;
}

.outbound-last-buttton {
    text-align: center;
    margin-top: 3.1rem;
}

.outbound-block-title {
    font-size: 2.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 2rem;
    margin-top: 25px;
    line-height: 2rem;
}

.outbound-gradient-text {
    background: linear-gradient(270deg, #4f56ff, #ff4980);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.1rem;
    font-weight: 600;
}

.outbound-block-text-two {
    color: #e5e7eb;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    text-align: left;
}

.marketing-last-block-text {
    color: #e5e7eb;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    text-align: left;
}

@media (max-width: 991px) {
    .leadgen-title {
        font-size: 2.5rem;
    }

    .leadgen-hero-img {
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .leadgen-section-custom {
        padding: 60px 0;
    }

    .leadgen-title {
        font-size: 2rem;
    }

    .features-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}


/*multi-channel-automation*/

.multi-description-text{
    color: #cbd5e1;
    font-size: 21px;
    /* line-height: 1.8; */
    margin-bottom: 1.5rem;
    /* text-align: justify; */
    font-weight: 300;
    text-align: center;
}

.multi-last-buttton{
    text-align: center;
    margin-top: 3.1rem;
    margin-bottom: 3.1rem
}

/*lead-tracking*/
.lead-last-buttton{
    text-align: center;
    margin-top: 3.1rem;
}

/*smart-scheduling*/

.smart-description-text{
    color: #cbd5e1;
    font-size: 21px;
    /* line-height: 1.8; */
    margin-bottom: 1.5rem;
    /* text-align: justify; */
    font-weight: 300;
    text-align: left;
}


/* edits */

 body {
      /* background-color: #1e002d; */
        background-color: #13111a;
    }
    .testimonial-section {
      padding: 50px 0;
    }
    .testimonial-text {
      color: white;
    }
    .testimonial-text h2 {
      font-weight: bold;
    }
    .highlight {
      color: #d63384;
    }
    .testimonial-quote {
      font-style: italic;
      margin-top: 20px;
      min-height: 120px;
      transition: opacity 0.3s ease-in-out;
    }
    .video-box {
      background-color: #5b1b6d;
      border-radius: 15px;
      aspect-ratio: 1/1;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 350px;
    }
    .video-box i {
      font-size: 50px;
      color: white;
    }
    .slider-dots {
      display: flex;
      gap: 8px;
      margin-top: 20px;
    }
    .dot {
      width: 40px;
      height: 10px;
      border-radius: 5px;
      background-color: #5b1b6d;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    .dot.active {
      background-color: #a03fad;
    }
