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

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 60px;
    background-color: #f4f7fb;
}   

#navbar {
    background-color: #1a2540;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

#logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

#logo-street {
    color: white;
}

#logo-link {
    color: #3498db;
}

#nav-links {
    display: flex;
    gap: 30px;
}
#nav-links a {
    color: white;
    text-decoration: none;
}

#nav-links a:hover {
    text-decoration: underline;
}

#hero {
    background: linear-gradient(135deg,#0d1b3e 0%, #1a4a8a 60%, #3498db 100%);
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: visible;
}

#hero::before {
    content: "";
    position: absolute;
    top: -100%;
    right: 300px;
    width: 400px;
    height: 400px;
    background: rgb(52, 152, 219, 0.15);
    border-radius: 50%;
}

#hero-text {
    flex: 1;
    z-index: 1;
}

#hero-image {
    z-index: 1;
}

#hero-image img{
    width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 255, 255, 0.15);
}
#hero h2{
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

#hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

#hero-button {
    background-color: #3498db;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
}

#about {
    background-color: white;
    padding: 60px 40px;
}

#about-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

#about-text h2  {
    font-size: 28px;
    color: #1a2540;
    margin-bottom: 20px;
}

#about-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

#about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex-shrink: 0;
}

.stat {
    background-color: #f4f7fb;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
}
.stat h3 {
    color: #3498db;
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat p {
    font-size: 13px;
    color: #555;
}

.button {
    background-color: white;
    color: #3498db;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
}

.button:hover {
    opacity: 0.8;
}

.call-button {
    background-color: #3498db;
    color: white;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

#services   {
    padding: 60px 40px;
    background-color: #f4f7fb;
}

#services h2 {
    color: #1a2540;
    font-size: 28px;
    margin-bottom: 10px;
}

#services > p{
    color: #555;
    margin-bottom: 30px;
}

#services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-card > p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.service-header {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

.service-header h3 {
    flex: 1;
    color: #1a2540;
    font-size: 16px;
}

.arrow {
    font-size: 12px;
    color: #3498db;
    transition: transform 0.3s ease;
}

.service-details {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.service-card.open .service-details {
    display: block;
}

.service-card.open .arrow {
    transform: rotate(180deg);
}
.package {
    background-color: #f4f7fb;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.package-speed {
    font-weight: 600;
    color: #1a2540;
    font-size: 14px;
}

.package-price {
    color: #3498db;
    font-weight: 600;
    font-size: 14px;
}

#portfolio {
    background-color: white;
    padding: 60px 40px;
}

#portfolio h2 {
    color: #1a2540;
    font-size: 28px;
    margin-bottom: 10px;
}

#portfolio > p {
    color: #555;
    margin-bottom: 30px;
}

#portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr) );
    gap: 20px;
    margin-bottom: 30px;
}

.portfolio-card {
    background-color: #f4f7fb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.portfolio-image {
    background-color: #1a2540;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    color: #1a2540;
    font-size: 16px;
    margin-bottom: 8px;
}

.portfolio-info p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.portfolio-tag {
    font-weight: 600;
    background-color: #e8f0fd;
    color: #3498db;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

#portfolio-note {
    color: #888;
    font-size: 14px;
    text-align: center;
}

#gallery {
    padding: 60px 40px;
    background-color: #f4f7fb;
}

#gallery h2 {
    color: #1a2540;
    font-size: 28px;
    margin-bottom: 10px;
}

#gallery > p {
    color: #555;
    margin-bottom: 30px;
}

#gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
}

#contact {
    background-color: #1a2540;
    padding: 60px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#contact-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

#contact-info h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

#contact-info p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 10px;
}

#contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 600px) {
    #navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    #menu-toggle {
        display: block;
    }

    #nav-links{
        display: none;
        flex-direction: column;
        gap: 10px;  
        margin-top: 10px;
        width: 100%;
    }

    #nav-links a {
        display: block;
        padding: 8px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    #nav-links.open {
        display: flex;
    }
    body {
        padding-top: 50px;
        overflow-x: hidden;
    };
    #hero {
        width: 100%;
        flex-direction: column;
        padding: 40px 20px;
    }
    #hero-image {
        display: none;
    }
    #hero-text{
        width: 100%;
    }
    #hero h2{
        font-size: 26px;
    }

    #hero p{
        font-size: 16px;
    }
    #about-inner {
        flex-direction: column;
    }
    #about-stats {
        width: 100%;
    }
    #services-grid {
        grid-template-columns: 1fr;
    }
    #portfolio-grid {
        grid-template-columns: 1fr;
    }
    #gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #location-inner {
        flex-direction: column;
    }
    #testimonials-grid {
        grid-template-columns: 1fr;
    }
    #contact {
        width: 100%;
        padding: 40px 20px;
    }
    #contact-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    #contact-buttons{
        width: 100%;
    }
    .button {
        width: 100%;
        text-align: center;
    }
    footer {
        width: 100%;
        padding: 20px;
    }
}

#footer {
    background-color: #111827;
    padding: 20px 40px;
    text-align: center;
}

#footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

#lightbox.active {
    display: flex;
}

#lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    position: relative;
    z-index: 2001;
    object-fit: contain;
}

#location {
    background-color: white;
    padding: 60px 40px;
}

#location h2 {
    color: #1a2540;
    font-size: 28px;
    margin-bottom: 10px;
}

#location > p {
    color: #555;
    margin-bottom: 30px;

}

#location-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

#location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background-color: #f4f7fb;
    padding: 20px;
    border-radius: 10px;
}

.location-icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
}

.location-item h3 {
    color: #1a2540;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.location-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

#map-container {
    flex: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 400px;
}

#map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: block;
}

#testimonials {
    background-color: #1a2540;
    padding: 60px 40px 60px 40px;
}

#testimonials h2{
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}

#testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-info h4{
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}