/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Custom dark/blue style inspired by Logo.png --- */
body {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #e3eaf4;
    background: linear-gradient(135deg, #232a34 0%, #2b6cb0 60%, #00cfff 100%);
    min-height: 100vh;
    position: relative;
}

body::before, .background-overlay {
    display: none !important;
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 60% 40%, rgba(80,150,220,0.10) 0%, rgba(30,60,120,0.18) 100%);
}

/* Header and Navigation */
header {
    background: linear-gradient(120deg, #26344d 60%, #2b6cb0 100%);
    box-shadow: 0 8px 32px 0 rgba(0, 207, 255, 0.10);
    position: fixed;
    width: 100%;
    top: 65px;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    padding: 0;
}

.logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 16px #1e3c5e88);
    margin: 0;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(30,60,120,0.18);
    background: rgba(255,255,255,0.03);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    background: linear-gradient(90deg, #00cfff 0%, #2b6cb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.18rem;
    letter-spacing: 2px;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px #00cfff22;
    transition: box-shadow 0.3s, background 0.3s, color 0.3s;
    position: relative;
    text-decoration: none;
}

.nav-links a:hover, .nav-links a:focus {
    color: #fff !important;
    background: #00cfff;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: #fff;
    background-clip: border-box;
    text-fill-color: #fff;
    box-shadow: 0 4px 24px 0 #00cfff88, 0 0 8px #2b6cb0;
}

.nav-links a::after {
    content: '';
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #00cfff 0%, #2b6cb0 100%);
    border-radius: 2px;
    transition: width 0.3s;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
}

.nav-links a:hover::after, .nav-links a:focus::after {
    width: 90%;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #00cfff;
    background: none;
    border: none;
    z-index: 3001;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    background: none;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(120deg, #26344d 60%, #2b6cb0 100%);
    box-shadow: 0 8px 32px 0 rgba(0, 207, 255, 0.10);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1, h2, .service-item h3 {
    color: #00cfff !important;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    letter-spacing: 3px;
    text-shadow: 0 2px 12px #00cfff33, 0 1px 2px #000a;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.hero-content h1::before {
    content: none;
}

.hero-content p {
    font-size: 1.5rem;
    color: #eafdff !important;
}

/* About Section */
#about {
    padding: 5rem 1rem;
    background: none;
    position: relative;
}

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

h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(120deg, #26344d 60%, #2b6cb0 100%);
    box-shadow: 0 8px 32px 0 rgba(0, 207, 255, 0.10);
    padding: 2rem;
    border-radius: 15px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #eafdff !important;
}

.about-text ul {
    list-style: none;
    margin-left: 1rem;
}

.about-text li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
}

/* Contact Section */
#contact {
    padding: 5rem 1rem;
    background: none;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(36, 48, 66, 0.98) !important;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 207, 255, 0.08);
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(90deg, #00cfff 0%, #2b6cb0 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 2px 12px #00cfff44;
    border-radius: 10px;
    transition: box-shadow 0.3s, background 0.3s;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #2b6cb0 0%, #00cfff 100%);
    box-shadow: 0 4px 24px 0 #00cfff88, 0 0 8px #2b6cb0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #6561856d;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item i {
    font-size: 1.5rem;
    color: #3498db;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #6ec1e4;
    text-shadow: 0 1px 4px #000a;
    text-align: center;
    padding: 1.5rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Top Bar Styles */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #101820 !important;
    color: #7ecbff !important;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-info-top {
    display: flex;
    gap: 2rem;
}

.info-item-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item-top i {
    color: #2e8b57;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2e8b57;
}

.social-link i.fab.fa-instagram {
    font-size: 2.93rem;
}
.social-link i.fab.fa-whatsapp {
    font-size: 2.93rem;
    color: #25D366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 0.7rem 0;
    }

    .contact-info-top {
        gap: 1rem;
    }

    .info-item-top {
        font-size: 0.8rem;
    }

    .social-link i.fab.fa-instagram,
    .social-link i.fab.fa-whatsapp {
        font-size: 2rem;
    }

    header {
        top: 55px;
    }

    nav {
        padding: 0.5rem 2vw;
    }

    .logo img {
        height: 12vw;
        min-height: 32px;
        max-height: 56px;
    }

    .menu-btn {
        display: block;
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(120deg, #26344d 60%, #2b6cb0 100%);
        padding: 1rem 0;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 8px 32px 0 rgba(0, 207, 255, 0.10);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.7rem 2vw;
        width: 90%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

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

    .hero-content p {
        font-size: 1.2rem !important;
    }

    .about-content, .service-item, .contact-content {
        padding: 1rem;
    }

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

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

    .contact-info {
        padding: 1rem;
    }

    .info-item {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 0.7rem;
    }

    .contact-info-top {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-link i.fab.fa-instagram,
    .social-link i.fab.fa-whatsapp {
        font-size: 1.8rem;
    }

    header {
        top: 105px;
    }

    .logo img {
        height: 10vw;
        min-height: 28px;
        max-height: 48px;
    }

    .nav-links {
        top: 120px;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.6rem 1vw;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .about-content, .service-item, .contact-content {
        padding: 0.8rem;
    }

    .info-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

/* Services Section */
#services {
    padding: 5rem 1rem;
    background: none;
    position: relative;
}

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

.service-item {
    background: rgba(36, 48, 66, 0.98) !important;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 207, 255, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item i {
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 1rem;
}

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

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

section {
    border-bottom: 2px solid #00cfff33;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
} 