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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    background: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.fan-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.company-name {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.website {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4287f5;
    background: rgba(66, 135, 245, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Background */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero-with-background {
    background-image: 
        linear-gradient(rgba(26, 26, 46, 0.75), rgba(26, 26, 46, 0.75)),
        url('background_pic.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    border: 2px solid transparent;
}

.btn-primary {
    background: #4287f5;
    color: #fff;
}

.btn-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 135, 245, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #4287f5;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #4287f5;
    transition: all 0.3s;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.service-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.text-center {
    text-align: center;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

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

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 5rem 0;
}

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

.content-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-section ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.content-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4287f5;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.expertise-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4287f5;
}

.expertise-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.expertise-item p {
    color: #666;
    margin-bottom: 0;
}

/* Services Page */
.services-detailed {
    padding: 5rem 0;
    background: #f8f9fa;
}

.service-detail {
    background: #fff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 5px solid #4287f5;
}

.service-detail h3 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-detail p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-detail ul {
    list-style: none;
    margin: 1rem 0;
}

.service-detail ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.service-detail ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4287f5;
    font-weight: bold;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    margin-bottom: 2.5rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    color: #4287f5;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #4287f5;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 600;
}

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

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

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

/* Footer */
footer {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #4287f5;
    white-space: nowrap;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4287f5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* Responsive Design */

/* Tablet devices (iPad, etc.) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    /* Logo adjustments for tablet */
    .fan-icon {
        width: 55px;
        height: 55px;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .website {
        font-size: 0.95rem;
    }
    
    /* Show mobile menu on tablets */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

/* Mobile devices (phones) */
@media (max-width: 768px) {
    /* Tighter container padding on mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Logo adjustments for mobile */
    .logo {
        gap: 0.75rem;
        max-width: 75%;
    }
    
    .fan-icon {
        width: 50px;
        height: 50px;
    }
    
    .company-name {
        font-size: 1.1rem;
        line-height: 1.15;
    }
    
    .website {
        font-size: 0.85rem;
    }
    
    /* Minimal navigation padding for mobile */
    nav {
        padding: 0.5rem 0;
    }
    
    /* Very tight nav wrapper */
    .nav-wrapper {
        min-height: auto;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Ensure mobile menu toggle is always visible and properly styled */
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        z-index: 1001;
        padding: 0.3rem;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
    }

    /* Hero section */
    .hero {
        padding: 4rem 0 3rem;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Page headers */
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }

    /* Sections */
    .features,
    .services-preview,
    .about-content,
    .services-detail {
        padding: 3rem 0;
    }
    
    .features h2,
    .services-preview h2,
    .cta h2,
    .about-intro h2,
    .services-overview h2 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1.05rem;
    }

    /* Grids */
    .services-grid,
    .features-grid,
    .services-grid-detailed,
    .expertise-cards,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }

    /* Contact page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h3 {
        white-space: normal;
        font-size: 1rem;
    }
    
    /* CTA section */
    .cta {
        padding: 3rem 0;
    }
    
    .cta p {
        font-size: 1rem;
        max-width: 100%;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .logo {
        gap: 0.5rem;
        max-width: 72%;
    }
    
    .fan-icon {
        width: 45px;
        height: 45px;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .website {
        font-size: 0.8rem;
    }
    
    .nav-wrapper {
        gap: 0.4rem;
    }
    
    nav {
        padding: 0.4rem 0;
    }
    
    .hero {
        padding: 3rem 0 2rem;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 0.95rem;
    }

    .features h2,
    .services-preview h2,
    .cta h2 {
        font-size: 1.6rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .feature-card,
    .service-card,
    .service-card-detailed {
        padding: 1.5rem;
    }
    
    .service-card h3,
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Reduce spacing on small screens */
    .features,
    .services-preview,
    .about-content,
    .services-detail,
    .cta {
        padding: 2.5rem 0;
    }
    
    .service-icon,
    .card-icon {
        font-size: 2.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }
}

/* About Page Styles */
.about-content {
    padding: 5rem 0;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

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

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.expertise-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.expertise-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.expertise-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.services-overview {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
}

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

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

.service-column h3 {
    color: #4287f5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.service-column ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-column ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4287f5;
    font-weight: bold;
}

.approach-section {
    margin-bottom: 4rem;
}

.approach-section h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

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

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

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

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

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

.benefit {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #4287f5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit h4 {
    color: #4287f5;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

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

/* Services Page Styles */
.services-detail {
    padding: 3rem 0;
    background: #f8f9fa;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding-top: 2.5rem;
}

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

.service-card-detailed {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.service-header {
    margin-bottom: 1.5rem;
}

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

.service-header h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-detailed p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}
