
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #000;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #000;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.6;
}

.cta-btn {
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-btn {
    background: #fff;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #fff;
}

/* Hero Content Section - Separate from slider */
.hero-content-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-section .hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-content-section .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.hero-content-section .hero-btn {
    background: #fff;
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-content-section .hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-content-section h1 {
        font-size: 2rem;
    }

    .hero-content-section .hero-description {
        font-size: 1rem;
    }

    .hero-content-section .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* Template Showcase */
.template-showcase {
    padding: 5rem 2rem;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.template-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.template-card:hover {
    transform: translateY(-5px);
}

.template-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.template-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.template-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.template-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    background: #000;
    color: #fff;
    padding: 5rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Boost Section */
.boost-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.boost-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.tab {
    padding: 1rem 0;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
    font-weight: 500;
}

.tab.active {
    border-bottom-color: #000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-image {
    border-radius: 0.5rem;
    overflow: hidden;
}

.tab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tab-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tab-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.service-card {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-image {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Slider */
.gallery-slider {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 3rem auto 0;
    overflow: hidden;
    border-radius: 0.5rem;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-nav:hover {
    background: #fff;
}

.slider-nav.prev {
    left: 1rem;
}

.slider-nav.next {
    right: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    background: #fff;
}

.testimonial-container {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.testimonial {
    display: none;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: #666;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.contact-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

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

.submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #333;
}

.menu-btn {
    display: none !important;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 2rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-column.footer-contact {
    margin-left: auto;
}

.footer-column.footer-contact h3 {
    text-align: left;
}

.footer-column.footer-contact .contact-icons {
    justify-content: flex-start;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    transition: background 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Contact Icons in Footer */
.contact-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.contact-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.contact-icon.whatsapp:hover {
    background: #25D366;
}

.contact-icon.facebook:hover {
    background: #1877F2;
}

.contact-icon.linkedin:hover {
    background: #0A66C2;
}

.contact-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 60px;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-content {
    padding: 4rem 2rem;
    background: #fff;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 4rem;
    text-align: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.about-values {
    margin-bottom: 4rem;
}

.about-values h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.about-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-cta .hero-btn {
    background: #fff;
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero {
        padding: 6rem 1rem 3rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: auto !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 60px !important;
    }

    .hero-slider {
        position: relative !important;
        height: auto !important;
    }

    .hero-slide {
        position: relative !important;
        height: auto !important;
        display: none;
    }

    .hero-slide.active {
        display: block;
    }

    .hero-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        background: none !important;
    }

    .hero-indicators {
        bottom: 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tab-content.active {
        grid-template-columns: 1fr;
    }

    nav {
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }


       .header-content {
        padding: 0.8rem 1rem;
        flex-direction: row;
    }

    /* Logo text smaller */
    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    /* Hide nav on mobile by default */
    nav {
        position: fixed;
        top: 60px;
        right: 0;
        background: #fff;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        border-left: 1px solid #eee;
        transform: translateX(100%);
        transition: 0.3s ease;
    }

    /* Show menu when active */
    nav.active {
        transform: translateX(0);
    }

    /* Hamburger button */
    .menu-btn {
        display: block !important;
        font-size: 26px;
        cursor: pointer;
    }
}
