/*
Theme Name: Verve Marketing Solutions
Theme URI: https://vervemarketing.in
Author: Verve Marketing
Author URI: https://vervemarketing.in
Description: Custom WordPress theme for Verve Marketing Solutions - Offline Marketing Experts Pan India
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: verve-marketing
*/

/* ========================================
   CSS RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --dark-blue: #1e40af;
    --light-blue: #60a5fa;
    --gradient-start: #3b82f6;
    --gradient-end: #1d4ed8;
    --black: #000000;
    --white: #ffffff;
    --text-gray: #6b7280;
    --light-gray: #f3f4f6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.site-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ========================================
   HERO SECTION (HOMEPAGE)
======================================== */
.hero-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.2) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--white);
}

.hero-text .subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.cta-button:hover {
    background: transparent;
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SECTIONS COMMON STYLES
======================================== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    line-height: 1.8;
    margin-bottom: 60px;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    background: linear-gradient(to bottom, #1e40af 0%, #000000 100%);
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-icon {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
}

.about-icon svg {
    width: 200px;
    height: 200px;
}

.founder-section {
    background: linear-gradient(to bottom, #000000 0%, #1e40af 50%, #60a5fa 100%);
    padding: 80px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 40px 30px;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-details {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--light-blue);
}

.service-detail p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ========================================
   WHY CHOOSE US SECTION
======================================== */
.why-choose-section {
    background: linear-gradient(to bottom, #2563eb 0%, #60a5fa 100%);
    color: var(--white);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    line-height: 1.8;
    opacity: 0.9;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 24px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 8px;
    font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    background: var(--white);
    color: var(--primary-blue);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content p {
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-blue);
        padding: 20px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content,
    .about-content,
    .founder-content,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section {
        padding: 40px 0;
    }
}
/* ========================================
   FORCE ALL TEXT TO WHITE
======================================== */
body, p, h1, h2, h3, h4, h5, h6, div, span, a, li, td, th, label {
    color: #ffffff !important;
}

.founder-section h2,
.founder-section p,
.founder-text,
.about-section h2,
.about-section p {
    color: #ffffff !important;
}