* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    padding-top: 70px;
}

.section {
    padding: 100px 10px;
}

h1,h2{
    font-weight:300;
    letter-spacing:1px;
}

#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #000000, #050301);
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero .btn { 
    background: #ff7f24;
    color: white;
    font-size: 18px;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff7f24;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2 ease;
}

.btn:hover {
    background: #d35400;
    transform: scale(1.05);
}

.about {
    background: #000000;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.about-text ul.services {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.about-text ul.services li {
    margin-bottom: 10px;
    font-size: 16px;
}

.about-image {
    width: 50px;
    border-radius: 12px;
}

.about-image img {
    width: 100%
    border-radius: 10px;
    box-shadow: opx 5px 20px rgba(0,0,0,0.1);
}

.about h2 {
    margin-bottom: 15px;
    font-size: 32px;
}

.gallery h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.cta {
    background: #000000;
    color: white;
    padding: 50px 20px;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

footer {
    background: #333;
    color: white;
    padding: 15px 0;
    margin-top: 30px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    background: black;
    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.logo span {
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    margin-left: 25px;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: opcity 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    opacity: 0.7;
}
