* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #fced20;     /* Logo color */
    --secondary: #000000;   /* Black */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

body {
    background-color: var(--white);
    color: var(--secondary);
    line-height: 1.6;
    scroll-behavior: smooth;
}
/* Contact Links Styling */
.contact-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.contact-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
}

.contact-method a.contact-link:hover .contact-method {
    transform: translateY(-5px);
}

/* Phone number formatting for mobile devices */
@media (max-width: 768px) {
    a[href^="tel"] {
        text-decoration: none;
        color: inherit;
    }
    
    a[href^="tel"]:hover {
        text-decoration: none;
        color: inherit;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: var(--secondary); /* Changed to black */
    color: var(--white); /* Changed to white */
    text-align: center;
    padding: 100px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white); /* Changed to white */
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--white); /* Changed to white */
}

.hero-tagline {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--white); /* Changed to white */
}

/* Sections */
.content-section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--secondary);
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto;
}

/* Content Container */
.content-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary);
}

.page-title {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.page-subtitle {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

/* Founder Page */
.founder-info {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.founder-image {
    flex: 0 0 300px;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary);
}

.founder-details {
    flex: 1;
}

.founder-details h2 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.founder-details .title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.founder-quote {
    font-style: italic;
    color: var(--dark-gray);
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 20px 0;
    background: linear-gradient(to right, rgba(252, 237, 32, 0.1), transparent);
}

/* Services Page */
.service-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 2px solid var(--primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: rgba(252, 237, 32, 0.05);
}

.service-item h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 24px;
}

.service-item h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.service-item p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
}

/* FAQ Page */
.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary);
}

.faq-question {
    padding: 20px;
    background-color: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e6d21c;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--secondary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    display: none;
    background-color: var(--white);
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 5px;
    color: var(--dark-gray);
}

/* Contact Page */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary);
}

.contact-method:hover {
    transform: translateY(-5px);
    background-color: rgba(252, 237, 32, 0.05);
}

.contact-method i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-method h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-method p {
    color: var(--dark-gray);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: var(--white);
    color: var(--secondary);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(252, 237, 32, 0.2);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.cta-title {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: #e6d21c;
    border-color: #e6d21c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 237, 32, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: #111;
    border-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 237, 32, 0.3);
}

/* Package System Styles (for home page only) */
.experience-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.experience-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.experience-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.experience-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background-color: rgba(252, 237, 32, 0.05);
}

.experience-card.active {
    background-color: var(--primary);
    color: var(--secondary);
}

.experience-card.active h3 {
    color: var(--secondary);
}

.experience-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.packages-section {
    padding: 80px 0;
    background-color: var(--white);
}

.packages-container {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
}

.package-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s;
    position: relative;
    border: 2px solid var(--primary);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: rgba(252, 237, 32, 0.02);
}

.package-card.popular {
    border: 3px solid var(--primary);
    transform: scale(1.05);
    background-color: rgba(252, 237, 32, 0.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: none;
}

.package-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    color: var(--dark-gray);
}

.package-features li i {
    color: var(--primary);
    margin-right: 10px;
}

.package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* WhatsApp Button - Yellow Border */
.whatsapp-btn {
    background-color: #25D366;
    color: var(--white);
    border: 2px solid var(--primary); /* Yellow border */
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    border-color: var(--primary); /* Keep yellow border */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

.whatsapp-btn i {
    margin-right: 8px;
}

/* Form Section - REMOVE */
.form-section {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .founder-info {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        flex: 0 0 auto;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .content-container {
        padding: 20px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 20px;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .experience-card {
        width: 100%;
        max-width: 300px;
    }
    
    .package-card.popular {
        transform: none;
    }
}

/* Founder LinkedIn Link */
.founder-linkedin {
    margin-top: 20px;
    text-align: center;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0077B5;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #0077B5;
}

.linkedin-link:hover {
    background-color: #005582;
    border-color: #005582;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
    color: white;
}

.linkedin-link i {
    font-size: 20px;
}

/* Founder Image ke neeche LinkedIn link ke liye spacing */
.founder-image {
    flex: 0 0 300px;
    text-align: center;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .founder-info {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        flex: 0 0 auto;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .linkedin-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}