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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'AspireSC';
    src: url('aspire-sc-webfont.woff2') format('woff2'),
         url('aspire-sc-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'AspireSC', sans-serif;
    color: white;
    background-color: #131313;
    margin: 0;
    padding: 0;
    text-shadow:
        -1px -1px 0 black,
         1px -1px 0 black,
        -1px  1px 0 black,
         1px  1px 0 black;
}

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

/* Header */
header {
    background-color: #fd8d10;
    /* background: linear-gradient(135deg, #de9c45 0%, #fd8d10 100%); */
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size:1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fd8d10;
    padding: 0.5rem 1.5rem; /* Made smaller padding */
}

.nav-desktop .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Reduced gap */
    margin: 0;
    padding: 0;
}

.nav-desktop .nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem !important; /* Even smaller */
    line-height: 1.2;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem; /* Smaller padding */
    border-radius: 25px;
}

.nav-desktop .nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background-image: url('DESKTOPMAIN2.png');
    background-size: contain; /* Adjusted for better fit */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #131313;
    color: white;
    /* Set a fixed or minimum height */
    min-height: 600px; /* adjust this to how tall you want the box */
    /* Or you can use fixed height: height: 400px; */
    /* margin-top: 60px;  */
    padding: 0; /* remove padding if you want */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px; */
    /* animation: float 20s infinite linear; */
/* } */

@keyframes float {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: #393838;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background: #0f0f0f;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(11, 11, 11, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Sections */
.section {
    padding: 80px 0;
    background-color: #131313;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #de9c45, #f48e08);
    display: block;
    margin: 20px auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #131313;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    grid-column: 1 / -1;  /* span both columns */
    max-width: 700px;
    margin: 0 auto;
}

/* .about-image {
    text-align: center;
} */

/* .about-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #de9c45, #f48e08);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
} */

/* Services Section */
.services {
    background-color: #131313;
    /* or whatever dark shade you like */
}

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

.service-card {
    background: #131313;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(58, 57, 57, 0.442);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 124, 64, 0.864);
    border-color: #fd8d10;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #de9c45, #f48e08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #ffffff;
}

.service-card p {
    text-align: center;
    color: #ffffff;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #131313;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #131313;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px #fd8d10
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #000000;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff9100;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    background: #fd8d10;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px #fd8d10;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Hide mobile menu by default */
.nav-mobile,
.hamburger,
.mobile-menu {
    display: none;
}

/* --- Mobile only --- */
@media (max-width: 768px) {
    /* Hide desktop nav on mobile */
    .nav-desktop {
        display: none;
    }

    /* Show mobile nav */
    .nav-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #fd8d10;
        padding: 0.5rem 0.8rem; /* Even less padding */
        position: relative;
        min-height: 50px; /* Smaller height */
    }

    /* Mobile logo/company name - Much smaller */
    .nav-mobile .logo {
        font-size: 0.85rem !important; /* Much smaller text */
        font-weight: bold;
        color: white;
        text-decoration: none;
        flex: 1; /* Take available space */
        margin-right: 0.5rem; /* Less margin */
        line-height: 1.1;
        white-space: normal; /* Allow wrapping for line breaks */
        overflow: hidden;
        text-overflow: ellipsis; /* Add ... if too long */
        max-width: calc(100% - 50px); /* More space for text */
    }

    .hamburger {
        display: block;
        font-size: 1.5rem; /* Smaller hamburger */
        background: none;
        border: none;
        cursor: pointer;
        color: white;
        padding: 0.3rem;
        flex-shrink: 0; /* Don't shrink */
        min-width: 40px; /* Smaller touch target */
        text-align: center;
    }

    /* Complete mobile menu definition */
    .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: rgba(220, 120, 10, 0.95);
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        padding: 1rem;
        list-style: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        z-index: 1001; /* Ensure it's on top */
        max-height: 250px; /* limit the visible height */
        overflow-y: auto;  /* add vertical scroll */
        scrollbar-width: thin; /* for Firefox */
        scrollbar-color: #fff rgba(0,0,0,0.2); /* thumb + track colors */
    }

    .mobile-menu li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-menu a {
        display: block;
        padding: 0.75rem;
        text-decoration: none;
        color: white;
        font-size: 0.85rem;
        border-radius: 5px;
        transition: background 0.3s ease;
    }

    .mobile-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-menu.show {
        display: flex;
    }

    /* Service hero styles */
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-hero p {
        font-size: 1.1rem;
    }

    /* Service content layout */
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Features grid layout */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery grid layout */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* CTA button styles */
    .cta-button {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
        max-width: 300px;
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Mobile hero styles */
    .hero {
        background-image: url('MOBILEMAIN1.png');
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #131313;
        min-height: 400px;
        margin-top: 50px; /* Adjusted for mobile header height */
    }

    .hero::before {
        width: 100%;
        height: 100%;
        background-size: 30px 30px;
    }

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

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

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

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

    .contact-form {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 1.5rem;
    }
}

/* Hide the break by default */
.mobile-break {
    display: none;
}

/* Show as line break on mobile only */
@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .nav-mobile .logo {
        font-size: 0.85rem !important;
        max-width: calc(100% - 50px);
    }
    
    .hamburger {
        font-size: 1.5rem;
        min-width: 45px;
    }
}

.find-us {
    background: #131313;
    text-align: center;
    padding: 50px 20px;
}

.find-us-content {
    max-width: 700px;
    margin: 0 auto;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: #fd8d10;
    text-decoration: none;
    font-weight: bold;
}

.map-link:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    color: inherit;
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.social-links a.whatsapp i {
  color: #25D366; /* WhatsApp green */
}

.social-links a.instagram i {
  color: #E4405F; /* Instagram pink */
}

.social-links a.tiktok i {
  color: #69C9D0; /* TikTok blue */
}

.social-links a.facebook i {
  color: #1877F2; /* Facebook blue */
}