/* Digital Marketing Success Hub - Styles */
/* Color Scheme: Green, Yellow, and Saffron (Indian Flag Colors) */

/* CSS Variables for Color Scheme */
:root {
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #138808;
    --dark-green: #0d5c06;
    --light-saffron: #FFB366;
    --yellow: #FFD700;
    --light-yellow: #FFF4CC;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;
    --border-gray: #DDDDDD;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--light-saffron) 50%, var(--yellow) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 L1200,0 L1200,60 Q900,90 600,60 T0,60 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x bottom;
    opacity: 0.5;
}

.hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.motivational-quote {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    font-style: italic;
    font-size: 1.1em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

/* Main Content */
main {
    padding: 60px 20px;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--green);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.section-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-title {
    color: var(--green);
    font-size: 2.2em;
    margin-bottom: 20px;
    padding-top: 20px;
    border-bottom: 3px solid var(--yellow);
    padding-bottom: 10px;
}

.section-content {
    font-size: 1.1em;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 15px;
}

.section-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.section-content li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.section-content li strong {
    color: var(--green);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--light-yellow) 0%, #FFF8E1 100%);
    border-left: 4px solid var(--saffron);
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-size: 1.05em;
}

/* Motivational Box */
.motivational-box {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--light-saffron) 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2em;
    font-style: italic;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(255, 153, 51, 0.3);
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.type-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--yellow);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    border-color: var(--green);
}

.type-card h3 {
    color: var(--green);
    margin-bottom: 12px;
    font-size: 1.3em;
}

/* Tools List */
.tools-list {
    margin-top: 30px;
}

.tool-item {
    background: linear-gradient(135deg, #ffffff 0%, #f9fff9 100%);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--saffron);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tool-item h3 {
    color: var(--green);
    margin-bottom: 10px;
    font-size: 1.4em;
}

/* Opportunities Grid */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.opportunity-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--light-saffron);
    text-align: center;
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(19, 136, 8, 0.2);
    border-color: var(--green);
}

.opportunity-card h3 {
    color: var(--green);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.salary {
    color: var(--saffron);
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 15px;
}

/* AI Applications */
.ai-applications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.ai-card {
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--yellow);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.ai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.2);
    border-color: var(--saffron);
}

.ai-card h3 {
    color: var(--green);
    margin-bottom: 12px;
    font-size: 1.3em;
}

.ai-card p {
    margin-bottom: 10px;
}

.ai-card strong {
    color: var(--saffron);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(19, 136, 8, 0.3);
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section > p {
    font-size: 1.3em;
    margin-bottom: 40px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat h3 {
    font-size: 2.5em;
    color: var(--yellow);
    margin-bottom: 10px;
}

/* Comments Section */
.comments-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--saffron);
}

.comment-form {
    margin-bottom: 40px;
}

.input-field,
.textarea-field {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.input-field:focus,
.textarea-field:focus {
    outline: none;
    border-color: var(--green);
}

.textarea-field {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(19, 136, 8, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(19, 136, 8, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Comments Container */
.comments-container {
    margin-top: 30px;
}

.comment {
    background: linear-gradient(135deg, #ffffff 0%, #fffef9 100%);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--yellow);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author {
    font-weight: bold;
    color: var(--green);
    font-size: 1.1em;
}

.comment-date {
    color: #888;
    font-size: 0.9em;
}

.comment-text {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.delete-btn {
    background: linear-gradient(135deg, var(--saffron) 0%, #ff6633 100%);
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 153, 51, 0.3);
}

.delete-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(255, 153, 51, 0.5);
}

.no-comments {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer p {
    margin-bottom: 10px;
}

.footer-quote {
    font-style: italic;
    color: var(--yellow);
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .types-grid,
    .opportunities-grid,
    .ai-applications {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2em;
    }

    .content-section {
        padding: 25px;
    }

    .section-number {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }

    .hero {
        padding: 50px 15px;
    }

    .motivational-quote {
        font-size: 1em;
        padding: 15px 25px;
    }
}