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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    background: #000000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    /* background removed */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
}

.logo-title {
    font-size: 24px;
    color: #ff0000;
    font-weight: bold;
}

.logo-subtitle {
    font-size: 12px;
    color: #cccccc;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.image {
    border-radius: 10px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #ff0000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff0000 0%, #8b0000 50%, #000000 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 50px;
}

.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 800"><rect fill="none" width="1200" height="800"/><g opacity="0.1"><circle cx="100" cy="100" r="50" fill="white"/><circle cx="300" cy="200" r="30" fill="white"/><circle cx="500" cy="150" r="40" fill="white"/><circle cx="700" cy="250" r="35" fill="white"/><circle cx="900" cy="100" r="45" fill="white"/><circle cx="1100" cy="200" r="30" fill="white"/></g></svg>');
    opacity: 0.3;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 80px;
    border-radius: 30px;
    text-align: center;
    max-width: 1000px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content .highlight {
    color: #ff0000;
    font-weight: bold;
}

.hero-content p {
    font-size: 20px;
    color: #333;
    margin-top: 20px;
}

/* About Section */
.about {
    background: #000000;
    padding: 100px 50px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.logo-large {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: bold;
    line-height: 1.2;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ff0000;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
}

.founder-info {
    background: rgba(255, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff0000;
    margin-top: 30px;
}

.founder-info p {
    color: #ffffff;
    font-size: 16px;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #ff0000 0%, #8b0000 50%, #000000 100%);
    padding: 100px 50px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

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

.service-card {
    background: #000000;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff0000;
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
    border-color: #ffffff;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff0000;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

/* CTA Section */
.cta-section {
    background: #000000;
    padding: 100px 50px;
}

.cta-header {
    text-align: center;
    margin-bottom: 60px;
}

.cta-header h2 {
    font-size: 48px;
    color: #ff0000;
    margin-bottom: 20px;
}

.cta-header p {
    font-size: 24px;
    color: #ffffff;
}

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

.cta-card {
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.cta-card:hover {
    transform: scale(1.05);
}

.cta-card.red {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.cta-card.blue {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
}

.cta-card.purple {
    background: linear-gradient(135deg, #6600cc 0%, #4d0099 100%);
}

.cta-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.cta-btn:hover {
    background: white;
    color: #000000;
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #ff0000 0%, #8b0000 50%, #000000 100%);
    padding: 100px 50px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 24px;
    margin-bottom: 60px;
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-item {
    background: #000000;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #ffffff;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff0000;
}

.contact-item p {
    font-size: 18px;
    color: #ffffff;
    word-break: break-all;
}

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

.contact-item a:hover {
    color: #ff0000;
}

/* Footer */
footer {
    background: #000000;
    padding: 60px 50px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff0000;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2;
}

.footer-logo h3 {
    font-size: 20px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

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

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 24px;
}

.social-icon:hover {
    background: #ff0000;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #cccccc;
}

/* Call Button */
.call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.call-btn:hover {
    transform: scale(1.15);
}

.call-btn::before {
    content: '📞';
    font-size: 32px;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .hero-content {
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .cta-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .category-title {
        font-size: 28px;
    }
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #000000;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #ff0000;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-50px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ff0000;
}

.modal-header h2 {
    color: #ff0000;
    margin-bottom: 10px;
    font-size: 28px;
    text-align: center;
}

.modal-header p {
    color: #cccccc;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff0000;
    outline: none;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}
