/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-image: url("sat.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* NAVIGATION */
nav {
    background: #2c1d49;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.nav-links a,
.nav-links a:visited,
.nav-links a:active {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: .3s;
}

.nav-links a:hover {
    color: gold;
}


/* HERO SECTION */
.hero {
    background: linear-gradient(
        rgba(44,29,73,.8),
        rgba(44,29,73,.8)
    );
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 22px;
}


/* MAIN CONTENT */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}


/* CARDS */
.card {
    background: rgba(255,255,255,.92);
    color: #222;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.card p {
    margin-bottom: 18px;
}


/* HEADINGS */
h1 {
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 15px;
    color: #2c1d49;
}


/* PROJECT GRID */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 20px;
}


/* BUTTONS */
button {
    background: gold;
    color: #222;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
}

button:hover {
    background: #d4af37;
}


/* CONTACT FORM */
form {
    display: flex;
    flex-direction: column;
}

input,
textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

textarea {
    min-height: 150px;
    resize: vertical;
}


/* CONTACT BUTTONS */
.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-btn {
    background: gold;
    color: #222;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.contact-btn:hover {
    background: #d4af37;
}


/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
}


/* IMAGES */
.profile-pic {
    width: 250px;
    border-radius: 50%;
    display: block;
    margin: 20px auto;
    border: 5px solid gold;
}

.hero-logo {
    width: 300px;
    max-width: 90%;
    display: block;
    margin: 0 auto 20px auto;
}


/* RATES PAGE */
.rates-page {
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
}

.rate-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.rate-card {
    background: white;
    color: #222;
    border-radius: 15px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.rate-card h2 {
    color: #0000cc;
    font-size: 32px;
}

.featured {
    border: 3px solid gold;
    transform: scale(1.03);
}


/* POPUP */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.85);
}

.popup-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
}

.popup-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px gold;
}

.close {
    position: absolute;
    top: -15px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
}


/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}