/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2196F3;
    --secondary-color: #F59E0B;
    --dark-bg: #0a0b1e;
    --darker-bg: #1a1f3a;
    --darkest-bg: #0f1020;
    --text-light: #ffffff;
    --text-gray: #d1d5db;
    --text-gray-400: #9ca3af;
    --border-color: rgba(33, 150, 243, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--darkest-bg) 100%);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--darkest-bg) 100%);
}

/* Utilities */
.max-w-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    background: rgba(10, 11, 30, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
}

.navbar-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
}

.navbar-desktop {
    display: none;
    gap: 3rem;
    align-items: center;
}

.navbar-desktop a {
    text-decoration: none;
}

@media (min-width: 1024px) {
    .navbar-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-gray);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.btn-schedule {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976D2 100%);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 1.1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-schedule:hover {
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
    transform: scale(1.02);
}

/* Mobile Menu */
.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-menu a{
        text-decoration: none;
        line-height: 1;
    }
    .cta-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
    }


}

.mobile-menu {
    background: rgba(10, 11, 30, 0.99);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    background: none;
    border: none;
    color: var(--text-gray);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: left;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-color);
}

.btn-schedule-mobile {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976D2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 11, 30, 0.325), rgba(10, 11, 30, 0.44)), /* New tint layer */ linear-gradient(rgba(10, 11, 30, 0.778), rgba(10, 11, 30, 0.542));
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 1rem 4rem;
    overflow: hidden;
}


.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background iframe {
    width: 100vw;
    min-height: 900px;
    object-fit: cover;
    scale: 2;
    opacity: 0.2;
}




.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 50rem;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-logo {
    width: 18rem;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.6s ease;

}

@media (max-width: 768px){
    .hero-logo {
        width: 15rem;
    }
    .hero{
        padding-top: 1rem;
    }
    .hero-background {
        height: 900px;
        opacity: 0.3;
        scale: 3;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-logo {
        max-width: 15rem;
    }
    .hero-background {
        height: 99vh;
        opacity: 0.3;
        scale: 3;
    }
    
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(33, 150, 243, 0.2);
    border: 2px solid rgba(33, 150, 243, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.2);
    animation: fadeInDown 0.6s ease;
    width: fit-content;
}

.hero-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary-color);
}

.hero-badge span {
    font-size: 1.125rem;
    color: white;
}

.hero-title {
    font-size: 2rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: inherit;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    max-width: 60rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-title span {
  /* Gradient Background */
  background-image: linear-gradient(to right, #2196F3, #F59E0B, #2196F3);
  
  /* Clipping the background to the text */
  -webkit-background-clip: text;
  background-clip: text;
  
  /* Making the text see-through */
  color: transparent;
  
  /* Default Typography from your variables */
  font-family: var(--font-sans);
  font-size: var(--text-base); /* assuming default base size */
  line-height: var(--text-base--line-height);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.0rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: oklch(.928 .006 264.531);
    margin-bottom: 3rem;
    max-width: 35rem;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    max-width: 32rem;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976D2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.5);
}

.btn-secondary {
    background-color: #f59e0b;
    ;
    color: white;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(33, 150, 243, 0.1);
    transform: scale(1.02);
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--darkest-bg) 100%);
}

.contact-container {
    max-width: 42rem;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.0;
}

.contact-title {
    font-size: 2rem;
    font-weight: inherit;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(33, 150, 243, 0.2);
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.form-label span {
    color: var(--secondary-color);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1a1f3a;
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-radius: 1rem;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-gray-400);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(33, 150, 243, 0.2);
}

.form-input::disabled,
.form-select::disabled {
    background: rgba(255, 255, 255, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976D2 100%);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: inherit;
}

.btn-submit:hover {
    transform: scale(1.01);
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
}

.form-success {
    text-align: center;
    padding: 3rem 0;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.success-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.success-text {
    color: var(--text-gray);
}

/* Services Section */
.services-section {
    padding: 6rem 1rem;
    background: var(--dark-bg);
    position: relative;
}

.services-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.3;
}

.services-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.services-bg-circle-1 {
    top: 25%;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(33, 150, 243, 0.2);
}

.services-bg-circle-2 {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(245, 158, 11, 0.2);
}

.services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 79vw;
    z-index: 1;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray-400);
    max-width: 48rem;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label {
    display: inline-block;
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.section-label span {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(33, 150, 243, 0.4);
}

.service-icon-box {
    color: white;
    padding: 1rem;
    border-radius: 1.3rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
    transition: transform 0.3s ease;
    width: 99%;
}

.service-icon-box h3 {
    font-weight: inherit;
}

.service-card:hover .service-icon-box {
    transform: scale(1.05);
}

.service-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.service-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0;
}

.service-description {
    line-height: 1.6;
    color: var(--text-gray-400);
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.5;
}

.service-benefit {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray-400);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    flex-shrink: 0;
    margin-top: 0.25rem;
    position: relative;
    top: 3px;
}

.service-button {
    width: 100%;
    height: 12%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1976D2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-button:hover {
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
}
/* Why Choose Section Base Styles */
.why-choose {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* Reduced gap for mobile */
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    padding: 1.5rem; /* Compact padding for mobile */
}

.why-choose-title {
    font-size: 1.875rem;
    font-weight: inherit;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-choose p {
    color: var(--text-gray-400);
    font-size: 1.13rem;
    margin-bottom: 2rem;
}

.why-choose-list {
    list-style: none;
    line-height: 1.5;
    padding: 0;
}

/* Flex Container for Icon + Text */
.why-choose-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start; /* FIX: Prevents icon container from stretching vertically */
}

/* The Circular Background */
.why-choose-check-container {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    width: 24px;  /* Fixed size */
    height: 24px; /* Fixed size */
    flex-shrink: 0; /* FIX: Prevents icon from squishing horizontally */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px; /* Centers icon with the first line of text */
}

/* The Icon Inside */
.why-choose-check {
    width: 12px;
    height: 12px;
    color: var(--text-light);
    flex-shrink: 0;
}

.why-choose-text {
    color: var(--text-light);
    font-size: 0.95rem; /* Improved readability for mobile */
    line-height: 1.4;
}

.why-choose-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
}

/* --- Media Queries --- */

/* Desktop / Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .why-choose {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem;
        gap: 3rem;
    }

    .why-choose-title {
        font-size: 2.25rem;
    }

    .why-choose-text {
        font-size: 1rem;
    }

    .why-choose-check-container {
        width: 26px;
        height: 26px;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .why-choose {
        padding: 2em;
        border-radius: 1.5rem;
    }

    .why-choose-title {
        font-size: 1.5rem;
    }
}
/* Call to Action Section */
.cta-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--darkest-bg) 100%);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(33, 150, 243, 0.2);
    border: 2px solid rgba(33, 150, 243, 0.5);
    padding: 0.2rem 0.7rem;
    border-radius: 9999px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.2);
    animation: fadeInDown 0.6s ease;
    width: fit-content;
}

.cta-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--secondary-color);
    animation: spin 2s linear infinite;

}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: inherit;
    color: white;
    margin-bottom: 1.5rem;
    margin-top: -rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-gray-400);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    max-width: 32rem;
    margin: 0 auto;
}

.cta-buttons a {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 8px;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 90%;
    margin: 1rem auto 4rem auto;
}

.cta-stat {
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    background-color: #ffffff0d;

}

.cta-stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0;
}

.cta-stat-label {
    margin: 0;
    color: var(--text-gray-400);
    font-size: 0.875rem;
}

/* Blog Section */
.blog-section {
    padding: 6rem 1rem;
    background: white;
}

.blog-section .section-title {
    text-align: center;
    color: var(--dark-bg);
    font-weight: inherit;
}

.blog-section .section-subtitle {
    text-align: center;
    margin: 0 auto 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(33, 150, 243, 0.4);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: rgba(33, 150, 243, 0.2);
    border: 1px solid rgba(33, 150, 243, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.blog-excerpt {
    color: var(--text-gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-gray-400);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-readtime {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */

.footer {
    background: var(--dark-bg);
    color: var(--text-gray);
    padding: 4rem 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-large {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .footer-section-large {
        grid-column: 1 / 3;
    }
}

@media (min-width: 1024px) {
    .footer-section-large {
        grid-column: 1 / 2;
    }
}

.footer-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: inherit;
    display: inline;
    position: relative;
    bottom: 1rem;
}

.footer-logo {
    width: 3rem;
    background-color: white;
}

.footer-text {
    color: var(--text-gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.footer-subtitle {
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-gray-400);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hide-lg {
        display: none;
    }
}


/* Local SEO Only CSS */
.hero-seo {
    background: linear-gradient(rgba(10, 11, 30, 0.8), rgba(10, 11, 30, 0.8)),
        url('images/local-seo.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 50rem;

}

.hero-seo .hero-content {
    margin: 0 auto 0 10rem;
    align-items: flex-start;
    justify-content: start;
    text-align: left;
    line-height: 1;
    width: 100vw;
}

.hero-seo .hero-content .section-label {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.hero-seo .hero-description {
    line-height: 1.5;
    text-align: justify;
    hyphens: auto;
}

.hero-seo .hero-content .hero-title {
    line-height: 1;
    font-family: sans-serif;
}

.hero-seo .hero-content a {
   /* margin: auto;*/
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 3.5rem;
    width: 265px;
}

.hero-seo .hero-content .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section-seo .services-header {
    width: 60vw;
    margin-top: 3rem;
    margin-bottom: 0;
}

.services-section-seo .services-header .section-title {
    font-weight: inherit;
}

.seo-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.seo-features .seo-feature-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    background-color: #ffffff0d;
}

.seo-features .seo-feature-section div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
}

.seo-feature-section-2 {
    height: 15rem;
}

.seo-features .seo-feature-section-2 div {
    width: 4rem;
    height: 4rem;
}

/* 3x3 section */
.section-seo-3x3 {
    background-color: var(--darkest-bg);
}

.section-seo-3x3-head h2 {
    font-size: 3rem;
    font-weight: inherit;
    color: white;
    margin-bottom: 1rem;
    margin-top: 3rem;
    text-align: center;
}

.section-seo-3x3-head p {
    font-size: 1.2rem;
    font-weight: inherit;
    margin-bottom: 1rem;
    text-align: center;
}

.section-seo-3x3-foot {
    font-size: 1.2rem;
    font-weight: inherit;
    margin-bottom: 5rem;
    text-align: center;
}

.section-seo-3x3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.3rem;
    width: 80rem;
    margin: 3rem auto;
}

.grid-3x3 .grid-3x3-item {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.7rem;
    gap: 0.3rem;
}

.grid-3x3 .grid-3x3-item div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
}

.bottom-line-section {
    background-color: #1a1f3a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.bottom-line-head h2 {
    font-size: 3rem;
    font-weight: inherit;
    color: white;
    margin-bottom: 1rem;
    margin-top: 3rem;
    text-align: center;
}

.bottom-line-head p {
    font-size: 1.2rem;
    font-weight: inherit;
    margin-bottom: 1rem;
    text-align: center;
    width: 50rem;
    margin: 3rem;
}

.bottom-line-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    width: 60rem;
    margin-bottom: 2rem;
}

.bottom-line-main div {
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
}

.bottom-line-main div h2 {
    font-size: 1.5rem;
    font-weight: inherit;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}


.bottom-line-foot p {
    font-size: 1.2rem;
    font-weight: inherit;
    margin-bottom: 5rem;
    text-align: center;
    width: 50rem;
}

/* Tablet and Small Laptops */
@media (max-width: 1024px) {
    .hide-lg {
        display: none;
    }

    .hero-seo .hero-content {
        margin: 0 2rem;
        /* Remove the large 10rem left margin */
        width: auto;
    }

    .grid-3x3 {
        width: 90%;
        /* Switch from fixed 80rem to fluid width */
        grid-template-columns: repeat(2, 1fr);
        /* Drop to 2 columns */
    }

    .bottom-line-main {
        width: 90%;
        grid-template-columns: 1fr 1fr;
    }

    .bottom-line-head p,
    .bottom-line-foot p {
        width: 90%;
        margin: 1rem auto;
        /* Ensure text doesn't overflow */
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    /* Hero Section Adjustments */
    .hero-seo {
        height: auto;
        padding: 1rem 1rem;
        background-size: cover;
        background-position: center;
    }

    .hero-seo .hero-content .section-label {
        margin-top: 0rem;
        margin-bottom: 1rem;
    }
    .hero-seo .hero-content .hero-title {
        font-size: 1.8rem;
}
    .hero-seo .hero-content {
        margin: 0 auto;
        text-align: left;
        align-items: left;
    }

    /* Services Header */
    .services-section-seo .services-header {
        width: 100%;
        padding: 0 1rem;
    }

    /* SEO Features Grid */
    .seo-features {
        grid-template-columns: 1fr;
        /* Stack vertically */
        margin-top: 2rem;
    }

    /* 3x3 Grid Section */
    .grid-3x3 {
        grid-template-columns: 1fr;
        /* Stack vertically */
        width: 100%;
        padding: 0 1rem;
    }

    .section-seo-3x3-head h2,
    .bottom-line-head h2 {
        font-size: 2rem;
        /* Shrink titles for mobile */
    }

    /* Bottom Line Section */
    .bottom-line-main {
        grid-template-columns: 1fr;
        /* Stack vertically */
        width: 100%;
        padding: 0 1rem;
    }
}


/* AI VOICE AGENT PAGE */

.hero-ai {
    background: linear-gradient(rgba(10, 11, 30, 0.897), rgba(10, 11, 30, 0.8)),
        url('images/ai-voice.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-ai .hero-content {
    margin: 0 auto 0 10rem;
    align-items: flex-start;
    justify-content: start;
    text-align: left;
    line-height: 1;
    width: 100vw;
}

.hero-ai .hero-content .section-label {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.hero-ai .hero-description {
    line-height: 1.5;
}

.hero-ai .hero-content .hero-title {
    line-height: 1;
    font-family: sans-serif;
}

.hero-ai .hero-content a {
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 3.5rem;
}

.hero-ai .hero-content .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976D2;
    margin-bottom: 2rem;
}

.hero-ai .hero-btn1 {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 1.5rem;
    /* Rounded corners */
    background:
        linear-gradient(135deg, #2195f32c, #f59f0b34),
        rgba(255, 255, 255, 0.05);
    /* Glassmorphism effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
    backdrop-filter: blur(10px);
    /* Blurs the background image slightly */
    max-width: 600px;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: flex-start;
    /* Align content to the left */
}

.hero-ai .hero-btn-sec {
    align-self: flex-start;

}

.hero-ai .hero-btn-sec span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Makes it a circle */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.hero-btn-sec2 h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-btn-sec2 p {
    color: #cbd5e1;
    /* Light gray/blue text */
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* The phone number link */
.hero-btn-sec2 a {
    background: none !important;
    /* Remove the button gradient from the phone link */
    color: #F59E0B;
    height: auto !important;
    font-weight: 100;
    font-size: 1.5rem;
    text-decoration: none;
    align-self: flex-start;
}


.hero-ai .hero-content>a {
    border-radius: 0.9rem;
    margin-bottom: 3rem;
}

/* AI Services Section Specific Styles */

.services-section-ai {
    background-color: var(--darker-bg);
}

.services-section-ai .services-header {
    line-height: 1;
    width: 60vw;
    margin-top: 3rem;
    margin-bottom: 0;
}

.services-section-ai .services-header .section-subtitle1 {
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--text-gray-400);
    text-align: center;
    width: 60vw;
}


.services-section-ai .services-header .section-title {
    /* width: 60vw; */
    font-weight: inherit;
}

/* Feature Grid Layout */
.ai-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

/* Feature Card Styling */
.ai-features .ai-feature-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    background-color: #ffffff0d;
    /* Matching the subtle transparent white background */
    transition: transform 0.3s ease;
    /* Optional: adds a slight lift on hover */
}

/* Icon Container Styling */
.ai-features .ai-feature-section div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 4rem;
    /* Matching the larger icon size from your SEO feature-section-2 */
    height: 4rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

/* Adjusting SVG colors inside the AI section */
.ai-features .ai-feature-section svg {
    color: white;
}

.ai-features .spam-calls {
    border: 2px solid rgba(255, 0, 0, 0.347);
}

.ai-features .time-wasters {
    border: 2px solid #f59f0b4b;
}

.ai-features .spam-calls div {
    background: rgb(216, 15, 15);
    border: 1px solid black;
}

.ai-features .time-wasters div {
    background: var(--secondary-color);
    border: 1px solid black;
}

.services-section-ai .services-header .section-subtitle2 {
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--text-gray-400);
    text-align: center;
    width: 70vw;
    margin-bottom: 2rem;
}


.services-section-ai .services-header .section-title2 {
    width: 60vw;
    font-weight: inherit;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem
}

/* Container and Wrapper */
.comparison-container-ai {
    padding: 4rem 2rem;
    background-color: transparent;
    /* Adjust based on your parent section */
    display: flex;
    width: 100%;
    height: 80%;
    justify-content: center;
}

.comparison-wrapper {
    display: flex;
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
}

/* Base Card Styling */
.comp-card-ai {
    flex: 1;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #1a1b26;
    /* Dark slate background */
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
}

/* Specific Card Borders/Glows */
.card-negative {
    background-color: rgba(255, 0, 0, 0.082);
    border-color: rgba(239, 68, 68, 0.3);
    /* Subtle red border */
}

.card-positive {
    background: linear-gradient(135deg, #2195f320, #f59f0b37);
    border-color: rgba(59, 130, 246, 0.3);
    /* Subtle blue border */
}

/* Sticker Styling (Text-based) */
.sticker-ai {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.sticker-red {
    background-color: #ef4444;
    color: #ffffff;
}

.sticker-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
}

/* Titles and Lists */
.comp-title-ai {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.comp-list-ai {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    line-height: 0.7;
}

.comp-list-ai li {
    color: #d1d5db;
    /* Light gray text */
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

/* Bullet Points (Customized) */
.comp-list-ai li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.card-positive .comp-list-ai li::before {
    content: "✓";
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Container and Section Setup */
.ai-solution-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a30559d 50%, var(--darkest-bg) 100%);
    padding: 80px 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    text-align: left;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);

}

.ai-solution-container {
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Problem Card Styling */
.ai-solution-card {
    flex: 1;
    background-color: #282f5685;
    /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    
    text-align: justify;
    hyphens: auto;
}

.ai-solution-card__title {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 600;
}

.ai-solution-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #cacedb;
    /* Slightly dimmed text */
    margin-bottom: 20px;
}

/* Content Side Styling */
.ai-solution-content {
    flex: 1.2;
    
}

.ai-solution-content__heading {
    text-align: left;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.ai-solution-content__description {
    font-size: 18px;
    line-height: 1.6;
    color: #cacedb;
    margin-bottom: 25px;
    text-align: justify;
    hyphens: auto;
}



.ai-solution-content__heading {
    font-size: 36px;
}

.ai-never-stops{
        background: linear-gradient(135deg, var(--dark-bg) 0%, #2a30559d 50%, var(--darkest-bg) 100%);

    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}


.ai-never-stops>.services-content .services-header .section-title {
    width: 70vw;
    margin-top: 3rem;
    font-weight: inherit;
}

.ai-never-stops .services-content .section-subtitle2 {
    width: 69vw;
    font-size: 1.25rem;
    color: var(--text-gray-400);
    text-align: center;
    margin-bottom: 1rem;
}

.ai-never-stops .services-content .section-subtitle3 {
    width: 69vw;
    font-size: 1.25rem;
    color: var(--text-gray-400);
    text-align: center;
    margin-bottom: -7rem;
}

.ai-never-stops>.services-content {
    line-height: normal;
}

.ai-never-stops-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

/* Feature Card Styling */
.ai-never-stops-features .ai-feature-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    background-color: #ffffff0d;
    /* Matching the subtle transparent white background */
    transition: transform 0.3s ease;
    /* Optional: adds a slight lift on hover */
}

.ai-never-stops-features .ai-feature-section div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 4rem;
    /* Matching the larger icon size from your SEO feature-section-2 */
    height: 4rem;
    border-radius: 1rem;
}

/* Adjusting SVG colors inside the AI section */
.ai-never-stops-features .ai-feature-section svg {
    color: white;
}

.ai-never-stops-features .ai-feature-section h3 {
    margin: 1rem auto;
}


/* Section Wrapper */
.v-ai-off-clock-section {
    background-color: #0a0b1e00;
    /* Matching your dark theme */
    padding: 100px 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
}

/* Outer Bordered Container */
.v-ai-off-clock-container {
    max-width: 1200px;
    width: 120%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    /* Subtle glow effect to match image */
    background: radial-gradient(circle at center, rgba(47, 68, 155, 0.323) 0%, transparent 70%), var(--darker-bg);
}

/* Header Styling */
.v-ai-off-clock-header {
    max-width: 960px;
    margin: 0 auto 50px auto;
}

.v-ai-off-clock-title {
    font-size: 42px;
    font-weight: inherit;
    line-height: 1.2;
    margin-bottom: 30px;
}

.v-ai-off-clock-lead,
.v-ai-off-clock-subtext {
    font-size: rem;
    line-height: 1.6;
    color: #cacedb;
    margin-bottom: 20px;
}

/* Features Grid */
.v-ai-off-clock-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.v-ai-off-clock-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 15px;
    transition: transform 0.3s ease;
}

.v-ai-off-clock-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.v-ai-off-clock-item__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.v-ai-off-clock-item__desc {
    font-size: 14px;
    color: #a0a5b5;
}

/* Section Base with your custom color mix */
.v-ai-features-section {
    background: radial-gradient(circle at center, rgba(47, 68, 155, 0.323) 0%, transparent 70%), var(--darker-bg);
    padding: 80px 24px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
}

.v-ai-features-container {
    max-width: 1200px;
    width: 100%;
}

/* Intro Text Styling */
.v-ai-features-intro {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.v-ai-features-intro__text {
    font-size: 18px;
    line-height: 1.6;
    color: #cacedb;
}

/* 3-Column Grid */
.v-ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Feature Card Styling */
.v-ai-features-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.v-ai-features-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Icon Box with the Gradient seen in the image */
.v-ai-features-card__icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    /* Matching the orange-to-blue gradient icons */
    background: linear-gradient(135deg, #60a5fa 0%, #f59e0b 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.v-ai-features-card__title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.v-ai-features-card__desc {
    font-size: 15px;
    line-height: 1.5;
    color: #a0a5b5;
}

/* Tablet and Small Laptops */
@media (max-width: 1024px) {

    /* Hero Adjustments */
    .hero-ai .hero-content {
        margin: 0 4rem;
        width: auto;
    }

    .hero-ai {
        min-height: auto;
        padding-bottom: 4rem;
        background-size: cover;
        background-position: 65% 50%;
    }

    /* Header widths */
    .services-section-ai .services-header,
    .services-section-ai .services-header .section-subtitle1,
    .services-section-ai .services-header .section-subtitle2,
    .services-section-ai .services-header .section-title2,
    .ai-never-stops>.services-content .services-header .section-title,
    .ai-never-stops .services-content .section-subtitle2,
    .ai-never-stops .services-content .section-subtitle3 {
        width: 90vw;
    }

    /* Grid Adjustments */
    .ai-features,
    .ai-never-stops-features,
    .v-ai-features-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns for tablet */
        gap: 1.5rem;
    }

    .v-ai-off-clock-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Container Adjustments */
    .v-ai-off-clock-container {
        width: 95%;
        padding: 40px 20px;
    }

    .ai-solution-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {

    /* Hero Section */
    .hero-ai {
        min-height: auto;
        padding-bottom: 4rem;
        background-size: cover;
        background-position: 65% 50%;
        /* Cover works better for mobile backgrounds */
    }

    .hero-ai .hero-content {
        margin: 0 1.5rem;
        align-items: left;
        text-align: left;
    }

    .hero-ai .hero-btn1 {
        flex-direction: column;
        padding: 1.5rem;
        max-width: 100%;
    }

    /* Header font sizes */
    .services-section-ai .services-header .section-title2,
    .ai-solution-content__heading,
    .v-ai-off-clock-title {
        font-size: 2.2rem;
    }
    .services-section-ai .services-content{
        width: 90%;
    }
    /* Comparison Cards */
    .comparison-wrapper {
        flex-direction: column;
        /* Stack cards vertically */
    }

    /* Resetting Fixed Widths to full */
    .services-section-ai .services-header,
    .services-section-ai .services-header .section-subtitle1,
    .services-section-ai .services-header .section-subtitle2,
    .services-section-ai .services-header .section-title2,
    .ai-never-stops>.services-content .services-header .section-title,
    .ai-never-stops .services-content .section-subtitle2,
    .ai-never-stops .services-content .section-subtitle3 {
        width: 100%;
        padding: 0 0.2rem;
    }
    .comparison-container-ai{
        padding: 4rem 0;
    }
    .comp-list-ai li{
    line-height: 1.3;        
        
    }

    /* Stack all Grids to 1 Column */
    .ai-features,
    .ai-never-stops-features,
    .v-ai-features-grid,
    .v-ai-off-clock-grid {
        grid-template-columns: 1fr;
    }

    /* Remove massive negative margins/spacings */
    .ai-never-stops .services-content .section-subtitle3 {
        margin-bottom: 2rem;
    }

    .ai-solution-card {
        padding: 20px;
    }

    .v-ai-off-clock-container {
        padding: 30px 15px;
    }
}

/* website design */

.hero-website-design {
    background: linear-gradient(rgba(10, 11, 30, 0.325), rgba(10, 11, 30, 0.44)),
        /* New tint layer */
        linear-gradient(rgba(10, 11, 30, 0.778), rgba(10, 11, 30, 0.542)),
        /* Original gradient */
        url('images/website-design.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.hero-website-design .hero-content {
    margin: 0 auto 0 10rem;
    align-items: flex-start;
    justify-content: start;
    text-align: left;
    line-height: 1;
    width: 100vw;
}

.hero-website-design .hero-content .section-label {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.hero-website-design .hero-description {
    line-height: 1.5;
}

.hero-website-design .hero-content .hero-title {
    line-height: 1;
    font-family: sans-serif;
}

.hero-website-design .hero-content a {
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 3.5rem;
}

.hero-website-design .hero-content .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976D2;
    margin-bottom: 2rem;
}



.hero-website-design .hero-btn-sec {
    align-self: flex-start;
    margin-bottom: 6.9rem;

}

/* The phone number link */
.hero-btn-sec2 a {
    background: none !important;
    /* Remove the button gradient from the phone link */
    color: #F59E0B;
    height: auto !important;
    font-weight: 100;
    font-size: 1.5rem;
    text-decoration: none;
    align-self: flex-start;
}

.stop-losing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 4rem auto;
}

.stop-losing-sec1 {
    display: flex;
    width: 75rem;
    margin-bottom: 4rem;
}

.stop-losing-sec1-div1 h2 {
    font-size: 3rem;
    font-weight: inherit;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.stop-losing-sec1-div1 p {
    font-size: 1.3rem;
    color: var(--text-gray-400);
    line-height: 1.2;
    margin-bottom: 2rem;
    margin-right: 3rem;
    
    text-align: justify;
    hyphens: auto;
}

.stop-losing-sec1-div2 {
    border: 2px solid var(--border-color);
    border-radius: 2rem;
    padding: 2rem;
    width: 80rem;
    max-height: 13rem;
    align-self: center;
    background-color: var(--darker-bg);
}

.stop-losing-sec1-div2 h2 {
    font-weight: inherit;
}

.stop-losing-sec2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stop-losing-sec2-title {
    font-size: 3.2rem;
    font-weight: inherit;
    color: white;
    margin-bottom: 2rem;
}

.stop-losing-sec2-subtitle {
    font-size: 1.4rem;
    font-weight: inherit;
    color: var(--text-gray-400);
    margin-bottom: 2rem;
    padding: 0 2rem;
    
    margin-top: 1rem;
    text-align: justify;
    hyphens: auto;
}

.stop-losing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
    width: 90%;
}

.stop-losing-grid-item .grid-item-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    
}

.stop-losing-grid-item .grid-item-list .grid-li {
    display: flex;
    gap: 0.6rem;
}


.stop-losing-grid-item .grid-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    line-height: 1.5;
}

.stop-losing-grid-item .grid-li span svg {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 1.2rem;
    border-radius: 3rem;
}

/* Unique wrapper to prevent style leakage */
.ss-feature-section {
    background-color: var(--darker-bg);
    /* Deep dark blue background */
    padding: 80px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    text-align: left;
}

.ss-container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 60px;
    /* Space between card and text */
}

/* Feature Card Styling */
.ss-card {
    background-color: #ffffff0d;
    border: 1px solid #3d445e;
    border-radius: 24px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    /* max-width: 450px; */
}

.ss-icon-box {
    width: 40px;
    height: 40px;
    color: #3b82f6;
    /* Blue icon color */
    margin-bottom: 20px;
}

.ss-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: left;
}

.ss-card-text {
    color: #adb5bd;
    line-height: 1.6;
    font-size: 1.05rem;
    text-align: left;
    hyphens: auto;

}

/* Right Side Content Styling */
.ss-content {
    flex: 1;
}

.ss-main-heading {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: inherit;
    text-align: left;
}

.ss-main-description {
    color: #adb5bd;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
    text-align: justify;
    hyphens: auto;
}

/* Container Background & Font */
.trust-section-wrapper {
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    text-align: center;
}

.trust-section-container {
    max-width: 800px;
    width: 100%;
}

/* Header Text */
.trust-section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.trust-section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    /* Light grey/blue text */
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* The Glassmorphism/Gradient Card */
.trust-section-card {
    margin-top: 50px;
    padding: 60px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Radial gradient for the subtle glow effect */
    background: #ffffff0d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.trust-section-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-section-card-headline {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.trust-section-card-subtext {
    font-size: 1.1rem;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

/* Container styling */
.cp-fx-section {
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    color: #ffffff;
}

.cp-fx-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 500;
}

/* Flexbox layout for cards */
.cp-fx-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Individual Card Styling */
.cp-fx-card {
    background-color: #1a1c2e;
    /* Slightly lighter navy for cards */
    border: 1px solid #ff1a1a;
    /* Subtle red glow on hover */
    border-radius: 16px;
    padding: 20px 20px 0 20px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}



/* The Red Icon */
.cp-fx-icon-box {
    background-color: #ff0000;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.cp-fx-close-icon {
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

/* Text elements */
.cp-fx-card-title {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.cp-fx-card-text {
    font-size: 0.9rem;
    color: #a0a4c1;
    /* Muted gray/blue for the subtext */
    margin: 0;
}

/* Section Container */
.wb-up-section {
    background-color: var(--darker-bg);
    /* Dark background */
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-align: center;
}

/* Heading */
.wb-up-heading {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

/* Grid Layout */
.wb-up-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Feature Box */
.wb-up-item {
    background-color: #2b2f44;
    /* Slightly lighter box color */
    border: 1px solid #3e445e;
    /* Subdued border */
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    text-align: left;
    transition: transform 0.2s ease;
}

/* Checkmark Icon Design */
.wb-up-check-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    /* display: flex;
  align-items: center;
  justify-content: center; */
    margin-right: 20px;
    flex-shrink: 0;
}


/* Text Styling */
.wb-up-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #d1d5db;
    margin: 0;
}

/* Section Background and Padding */
.lb-rs-section {
    background-color: #1a1e35;
    /* Dark blue/navy background */
    padding: 100px 20px;
    text-align: center;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
}

/* Centered content wrapper */
.lb-rs-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Main Heading Styling */
.lb-rs-main-title {
    font-size: 2.8rem;
    /* Large, bold impact */
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

/* Middle Description Paragraph */
.lb-rs-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cbd5e1;
    /* Slightly muted white/grey */
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-weight: 400;
}

/* Bottom Tagline Styling */
.lb-rs-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-top: 20px;
}

/* Tablet and Small Laptops */
@media (max-width: 1024px) {

    /* Hero Adjustments */
    .hero-website-design .hero-content {
        margin: 0 4rem;
        width: auto;
    }

    /* Stop Losing Section */
    .stop-losing-sec1 {
        width: 90%;
        flex-direction: column;
        /* Stack the intro and the card */
        gap: 2rem;
    }

    .stop-losing-sec1-div2 {
        width: 100%;
        max-height: none;
        /* Allow card to grow with content */
    }

    /* Grids */
    .wb-up-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 1rem;
    }

    /* Side-by-side features */
    .ss-container {
        flex-direction: column;
        /* text-align: center; */
        gap: 40px;
    }

    .ss-main-description {
        max-width: 100%;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {


    h2,h3{
        font-size: 24px !important;
    }
    p{
        font-size: 16px !important;
    }

    /* Hero Reset */
    .hero-website-design .hero-content {
        margin: 0 1.5rem;
    }

    .hero-website-design .hero-btn-sec {
        margin-bottom: 3rem;
        align-self: center;
    }

    /* Typography Scaling */
    /* .stop-losing-sec1-div1 h2,
    .stop-losing-sec2-title,
    .ss-main-heading,
    .lb-rs-main-title,
    .wb-up-heading {
        font-size: 2rem;
    } */

    /* Sections and Containers */
    .stop-losing-sec1,
    .stop-losing-sec1-div2,
    .ss-container,
    .trust-section-container,
    .wb-up-grid {
        width: 100%;
        padding: 1rem 1.2rem;
        max-width: 100%;
    }

    /* Grids to Single Column */
    .wb-up-grid,
    .cp-fx-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .stop-losing-grid{
        display: flex;
        flex-direction: column;
    }

    .cp-fx-card {
        width: 100%;
        /* Make full width on mobile */
        max-width: 300px;
    }

    /* Spacing Adjustments */
    .stop-losing-sec1-div1 p {
        margin-right: 0;
        font-size: 1.1rem;
    }

    .cp-fx-card-text{
    padding: 1rem;
    }
    .ss-card {
        padding: 25px;
        min-width: unset;
    }

    .trust-section-card {
        padding: 40px 20px;
    }

    .lb-rs-main-title {
        font-size: 1.8rem;
    }
}


    /* new css */
    
    .lb-rs-section {
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a30559d 50%, var(--darkest-bg) 100%);

}

.stop-losing {
    max-width: 100vw;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a30559d 50%, var(--darkest-bg) 100%);
    margin: 0px;
    padding: 4rem 10rem;
}

.stop-losing-sec1 {
    max-width: 80vw;
}

@media (max-width: 1024px) {
    .stop-losing {
        margin: 0px;
        padding: 2rem 5rem;
    }

    .stop-losing-sec1 {
        max-width: 100vw;
    }

    /* Mobile Devices */
    @media (max-width: 768px) {
        .stop-losing {
            margin: 0px;
            padding: 2rem 0.3rem;
            background: linear-gradient(135deg, var(--dark-bg) -25%, #2a30559d 50%, var(--darkest-bg) 115%);
        }

        .stop-losing-sec1 {
            max-width: 100vw;
        }
    }
}



        .hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #0b132b, #000);
}

#hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}