/*
Theme Name: DigiBaba Web & SEO
Theme URI: https://digibabaa.world/
Description: High-converting landing page for Web Development and SEO services.
Version: 1.0
Author: DigiBabaa
Author URI: https://digibabaa.world/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: landing-page, seo, business, dark-mode
*/

:root {
    --primary: #0EA5E9;
    --secondary: #0F172A;
    --accent: #F43F5E;
    --text: #E2E8F0;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--secondary);
    color: var(--text);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Include all the extracted CSS from the HTML here */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

/* Header / Hero */
header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top left, #1e293b, #0f172a);
    position: relative;
    padding: 100px 20px 40px;
}

.hero-content { z-index: 10; max-width: 900px; }
.badge {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid var(--primary);
}

h1 { font-size: 4.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; letter-spacing: -2px; }
h1 span {
    color: var(--primary);
    background: linear-gradient(135deg, #0EA5E9, #38BDF8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.hero-subtext { font-size: 1.4rem; color: #94A3B8; margin-bottom: 40px; line-height: 1.6; }
.cta-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-5px);
}

/* Features */
.features-section { padding: 120px 20px; background: #0B1121; }
.section-header { text-align: center; max-width: 900px; margin: 0 auto 80px; position: relative; }
.section-header h2 { 
    font-size: 4rem; 
    font-weight: 800; 
    margin-bottom: 25px; 
    letter-spacing: -2px; 
    line-height: 1.1; 
}
.section-header h2 span {
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
}
.section-header p { 
    color: #94A3B8; 
    font-size: 1.4rem; 
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.feature-card { background: var(--glass); border: 1px solid var(--border); border-radius: 20px; padding: 40px; transition: 0.3s; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary); background: rgba(14, 165, 233, 0.05); }
.feature-icon { font-size: 3rem; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: white; }
.feature-card p { color: #94A3B8; line-height: 1.6; }

/* Portfolio */
.portfolio-section { padding: 120px 20px; background: #0F172A; text-align: center; }
.portfolio-filters { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 1px solid var(--border); color: #94A3B8; padding: 10px 25px; border-radius: 50px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.filter-btn.active, .filter-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(14, 165, 233, 0.1); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; max-width: 1400px; margin: 0 auto; }
.portfolio-card { background: var(--glass); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-align: left; display: flex; flex-direction: column; }
.portfolio-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.portfolio-card.hidden { display: none; opacity: 0; }
.portfolio-img-wrapper { width: 100%; height: 220px; overflow: hidden; background: #0B1121; }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; border-bottom: 1px solid var(--border); transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1); }
.portfolio-info { padding: 25px; }
.portfolio-info h4 { font-size: 1.3rem; margin-bottom: 10px; color: white; }
.portfolio-info p { color: #94A3B8; font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5; }
.portfolio-link { display: inline-flex; align-items: center; color: var(--primary); text-decoration: none; font-weight: 700; font-size: 0.9rem; gap: 8px; transition: 0.3s ease; }
.portfolio-link:hover { color: #38BDF8; transform: translateX(5px); }
.portfolio-link svg { transition: transform 0.3s ease; }
.portfolio-link:hover svg { transform: translate(2px, -2px); }
.see-more-container { margin-top: 60px; }
#seeMoreBtn { background: rgba(14, 165, 233, 0.1); border: 1px solid var(--primary); color: var(--primary); padding: 15px 40px; border-radius: 50px; font-weight: 700; cursor: pointer; transition: 0.3s; font-size: 1.1rem; }
#seeMoreBtn:hover { background: var(--primary); color: white; box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3); transform: translateY(-3px); }

/* Testimonials */
.testimonials-section { padding: 120px 20px; text-align: center; background: var(--secondary); position: relative; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; max-width: 1200px; margin: 60px auto 0; }
.video-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; text-align: center; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
.video-card:hover { border-color: rgba(14, 165, 233, 0.4); transform: translateY(-8px); background: rgba(255, 255, 255, 0.05); }
.video-container-16-9 { position: relative; padding-bottom: 56.25%; height: 0; background: #000; }
.video-container-16-9 video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.video-info { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.rating { color: #FBBF24; font-size: 1.1rem; margin-bottom: 12px; display: flex; justify-content: center; gap: 2px; }
.testimonial-text { color: #E2E8F0; font-size: 1rem; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.testimonial-author { color: var(--primary); font-weight: 700; font-size: 1.1rem; margin-top: auto; }

/* Modal & Form */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.95); z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.3s ease;
    backdrop-filter: blur(5px);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--secondary); border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px; padding: 40px; width: 90%; max-width: 600px;
    position: relative; transform: translateY(20px); transition: 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.close-modal {
    position: absolute; top: 15px; right: 20px;
    background: transparent; border: none; color: #94A3B8;
    font-size: 2rem; cursor: pointer; transition: 0.2s;
}
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; color: #94A3B8; margin-bottom: 8px; font-size: 0.95rem; }
.form-control { 
    width: 100%; padding: 15px; background: rgba(0,0,0,0.3); 
    border: 1px solid var(--border); border-radius: 10px; color: white; 
    font-family: inherit; font-size: 1rem; box-sizing: border-box;
    transition: 0.3s;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2); }

.package-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.package-option { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 12px; padding: 15px; text-align: center; cursor: pointer; transition: 0.3s; }
.package-option:hover { border-color: var(--primary); background: rgba(14, 165, 233, 0.05); }
.package-option.active { border-color: var(--primary); background: rgba(14, 165, 233, 0.1); box-shadow: 0 0 15px rgba(14, 165, 233, 0.2); }
.package-option h4 { margin: 0 0 5px 0; font-size: 1rem; color: white; }
.package-option span { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.next-steps-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 25px; animation: fadeIn 0.5s ease; }
.btn-link { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; border-radius: 10px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-calendly { background: #006bff; color: white; }
.btn-linkedin { background: #0077b5; color: white; }

/* CTA Section */
.cta-section { padding: 100px 20px; background: linear-gradient(135deg, #0f172a 0%, #064e3b 100%); text-align: center; border-top: 1px solid var(--border); }
.cta-box { max-width: 800px; margin: 0 auto; background: rgba(0, 0, 0, 0.3); border: 1px solid var(--border); border-radius: 30px; padding: 60px 40px; backdrop-filter: blur(10px); }

/* Footer */
footer { padding: 50px; text-align: center; border-top: 1px solid var(--border); color: #64748B; background: #0B1121; }
