* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Global Variables Setup */
:root {
    /* Primary Colors */
    --color-primary: #4C6EF5;
    /* Royal Blue */
    --color-primary-light: #7B94F7;
    --color-primary-dark: #364FC7;

    /* Secondary Colors */
    --color-secondary: #20C997;
    /* Teal Green */
    --color-secondary-light: #63E6BE;
    --color-secondary-dark: #099268;

    /* Accent Colors */
    --color-accent: #FF922B;
    /* Orange Accent */
    --color-accent-light: #FFC078;
    --color-accent-dark: #E8590C;

    /* Neutral Colors */
    --color-text: #212529;
    /* Dark Charcoal */
    --color-muted: #868E96;
    /* Muted Grey */
    --color-light: #F8F9FA;
    /* Light Grey Background */
    --color-white: #FFFFFF;

    /* Success, Warning, Error */
    --color-success: #51CF66;
    /* Green */
    --color-warning: #FCC419;
    /* Yellow */
    --color-error: #FF6B6B;
    /* Red */

    /* Font Families */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-accent: 'Poppins', sans-serif;
}

body {
    font-family: 'Montserrat';
}

h1 {
    font-weight: 900;
}

h2 {
    font-weight: bold;
}

h3 {
    font-weight: bold;
}

h4 {
    font-weight: 600;
}

h5 {
    font-weight: 600;
}

h6 {
    font-weight: 500;
}

p,
a {
    font-weight: 500;
}

a,
button {
    outline: none;
    text-decoration: none;
}

.primary_btn {
    background: #289EFD;
    color: #fff;
    font-size: 16px;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 20px;
}

.secondary_btn {
    background: transparent;
    border-radius: 20px;
    border: 2px solid #61B7FD;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}



/* General Header Styling */
.main-header {
    background: linear-gradient(90deg, #c8ffc2, #41a535); 
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px; 
    width: auto;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #000000; 
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links li a:hover {
    color: #ffffff; 
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.btn-signin {
    text-decoration: none;
    color: #000000; 
    font-weight: 600;
    font-size: 1em;
    transition: color 0.3s ease;
}

.btn-signin:hover {
    color: #ffffff; 
}

.btn-getstarted {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ffffff; 
    color: #41a535; 
    border: none;
    border-radius: 8px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(170, 150, 255, 0.2); 
    transition: all 0.3s ease;
}

.btn-getstarted:hover {
    box-shadow: 0 8px 20px rgba(170, 150, 255, 0.3); 
    transform: translateY(-2px); 
}
.btn-getstarted:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(170, 150, 255, 0.15);
}

/* Hero Section */
.hero-section {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    background-color: #ffff;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.tagline {
    color: #6a6a6a;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 62px;
    margin-top: 0;
    color: #2c3e50; 
    margin-bottom: 10px;
}

.gradient-text{
    color: #41a535;
}

.description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
}



.btn-primary {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 16px 32px; 
    font-size: 1.15em; 
    font-weight: 700;
    letter-spacing: 0.5px; 
    text-align: center;
    text-decoration: none;
    color: #ffffff; 
    background: linear-gradient(45deg, #ceffc9, #41a535); 
    border: none;
    border-radius: 10px; 
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
    transform: translateY(0);  
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 2);    
    gap: 10px;
}

/* Hover State */
.btn-primary:hover {
    background: linear-gradient(45deg, #41a535,  #ceffc9);  
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); 
    transform: translateY(-4px); 
}

/* Active (Click) State */
.btn-primary:active {
    background: linear-gradient(45deg, #e04a6e, #5067d0); 
    transform: translateY(0); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 
}

/* Icon Styling */
.btn-primary .btn-icon {
    width: 20px; 
    height: 20px;
    stroke: #ffffff; 
    transition: transform 0.3s ease; 
}


.btn-primary:hover .btn-icon {
    transform: translateX(5px); 
}

/* .btn-secondary {
    background-color: #fff;
    color: #41a535;
    border-color: #41a535;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #41a535;
    color: white;
} */

.ratings {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9em;
    color: #6a6a6a;
}

.stars {
    color: #f7b307; 
}

.rating-logos {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.rating-logos img {
    max-height: 60px; 
}

/* Hero Image Section */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-assistant-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px; 
}


.overlay-card {
    position: absolute;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.profile-card {
    top: 15%; 
    left: 10%; 
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-info span {
    font-weight: 600;
    font-size: 0.9em;
}

.rating-stars {
    color: #f7b307;
    font-size: 0.8em;
}

.stats-card {
    bottom: 20%; 
    left: 15%; 
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
}

.progress-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2em;
    color: #4a90e2;
    border: 5px solid #e6f0fa;
    background: conic-gradient(#4a90e2 57%, #e6f0fa 0%); /* Example for 57% */
}

.stat-item p {
    margin-top: 5px;
    font-size: 0.8em;
    color: #777;
}


.chat-bubble {
    bottom: 5%; 
    right: 5%; 
    background-color: #fff;
    border-radius: 20px 20px 0 20px; 
    padding: 15px 20px;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.chat-content {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-weight: 600;
    font-size: 0.9em;
    color: #4a90e2; 
    margin-bottom: 5px;
}

.chat-message {
    font-size: 0.95em;
    color: #333;
    margin-bottom: 8px;
}

.click-to-select {
    font-size: 0.8em;
    color: #777;
    text-align: right;
    width: 100%;
}




/* Styling for the "What Does a Virtual Assistant Do?" section */

.what-does-va-do {
    padding: 50px 0;
    background-color: #ffffff; 
    text-align: center;
    margin: 0 auto;
}

.what-does-va-do .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: block; 
}

.what-does-va-do h2 {
    font-size: 52px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 62px;
}

.what-does-va-do .section-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.what-does-va-do .jump-link {
    font-size: 1em;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.what-does-va-do .jump-link a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.what-does-va-do .jump-link a:hover {
    color: #357bd8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.service-item {
    background-color: #fff;
    padding: 25px; 
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.service-icon {
    flex-shrink: 0; 
    width: 60px; 
    height: 60px;
    background-color: #e6f0fa; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.service-icon img {
    width: 35px; 
    height: 35px;
}
.service-content {
    flex-grow: 1;
    text-align: left; 
}
.service-item h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 0; 
    margin-bottom: 8px; 
}

.service-item p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #555;
    margin-bottom: 0; 
}


/* Hiring Section */

.hiring-section {
    padding: 50px 0;
    background-color: #f1ffef; 
    text-align: center;
    width: 100%;
    margin: 0 auto;
}
.hiring{
    max-width: 1200px;
    margin: 0 auto;
}
.hiring h2{
    font-size: 52px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 62px;
}
.hiring p{
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px auto;
}
.creative-hire-now-btn {
    margin: 0 auto;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 16px 32px; 
    font-size: 1.15em; 
    font-weight: 700;
    letter-spacing: 0.5px; 
    text-align: center;
    text-decoration: none;
    color: #ffffff; 
   /* Creative Background Gradient */
    background: linear-gradient(45deg, #ceffc9, #41a535); 
    border: none;
    border-radius: 10px; 
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
    transform: translateY(0);  
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 2);    
    gap: 10px;
}

/* Hover State */
.creative-hire-now-btn:hover {
    background: linear-gradient(45deg, #41a535,  #ceffc9);  
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); 
    transform: translateY(-4px); 
}

/* Active (Click) State */
.creative-hire-now-btn:active {
    background: linear-gradient(45deg, #e04a6e, #5067d0); 
    transform: translateY(0); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 
}

/* Icon Styling */
.creative-hire-now-btn .btn-icon {
    width: 20px; 
    height: 20px;
    stroke: #ffffff; 
    transition: transform 0.3s ease; 
}


.creative-hire-now-btn:hover .btn-icon {
    transform: translateX(5px); 
}

.main-footer {
    background-color: #ffffff;
    color: #000000;
    padding-top: 60px;
    padding-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 180px;
    margin-bottom: 20px;
}

.brand-column {
    flex: 1.5;
    min-width: 250px;
    text-align: center; /* This should center the logo image */
}

.footer-logo img {
    max-width: 120px;
    margin-bottom: 25px;
    /* No changes needed here, as text-align: center on parent handles it */
}

.social-links {
    display: flex;
    gap: 15px;
    /* NEW: Centering the social links block itself */
    justify-content: center; /* Centers the icons within the social-links flexbox */
    margin: 0 auto; /* Centers the social-links flexbox within its parent (.brand-column) */
    max-width: fit-content; /* Ensures the margin:auto works */
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #41a535;
    border-radius: 50%;
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background-color: black;
    color: #ffffff;
}

.social-links svg {
    width: 20px;
    height: 20px;
}       

/* Copyright section styles */
.footer-copyright {
    text-align: center;
    padding-top: 20px; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    color: #000000; 
    font-size: 0.9em;
}