/* Reset & Base */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header */
.new-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #4fc3f7;
    color: #fff;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    border-radius: 5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    color: #fff;
}

.logo-text span:first-child {
    font-size: 16px;
}

.logo-text span:last-child {
    font-size: 12px;
    opacity: 0.8;
}

/* Navigation */
nav ul.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(79,195,247,0.8), rgba(79,195,247,0.8)), 
                url('hero-image.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 70px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero .btn {
    padding: 10px 25px;
    background: #0288d1;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* About */
.about {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.about mark {
    background: #4fc3f7;
    color: #fff;
    padding: 0 5px;
}

/* Services */
.services {
    padding: 80px 20px;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service {
    flex: 1 1 250px;
    background: #e1f5fe;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service:hover {
    transform: translateY(-10px);
}

.service i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0288d1;
}

/* Contact */
.contact {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.contact-item {
    flex: 1 1 200px;
    background: #e1f5fe;
    padding: 20px;
    border-radius: 8px;
}

.contact-item i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #0288d1;
}

/* Footer */
footer {
    background: #0288d1;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media screen and (max-width:768px) {
    nav ul.nav-links {
        display: none;
        flex-direction: column;
        background: #4fc3f7;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
    }

    nav ul.nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}
/* Gallery Section */
.gallery {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s;
}


.gallery-item span {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(79,195,247,0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    font-weight: bold;
}
.gallery {
    background-color: #f0f8ff;
    padding: 30px 0;
}
.gallery img {
    transition: transform 0.3s, opacity 0.3s;
}
.gallery img:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
