
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    line-height: 1.7;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #0066ff;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #0044aa;
}

header {
    background: #111;
    color: #fff;
    padding: 15px 0;
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav {
    display: flex;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
}

nav a:hover {
    color: #0066ff;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
}


.banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('images/pexels-negativespace-92903.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 130px 20px;
}

.banner h1 {
    font-size: 48px;
}

/* ===== About ===== */
.about {
    background: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 10px;
}

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #0066ff;
}

/* ===== CTA ===== */
.cta {
    background: #0066ff;
    color: #fff;
    text-align: center;
    padding: 90px 20px;
}

.cta .btn {
    background: #fff;
    color: #0066ff;
}

/* ===== Footer ===== */

.site-footer {
    background: #1c1c1c;
    color: #b5b5b5;
    padding: 18px 0;
    font-size: 14px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-right a {
    color: #002fff;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-right a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-right a {
        margin: 0 10px;
    }
}


/* ===== Responsive ===== */
@media(max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
    }

    nav a {
        margin: 15px 0;
    }

    .menu-toggle:checked ~ nav {
        max-height: 300px;
        padding-bottom: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .banner h1 {
        font-size: 32px;
    }
}


/* ===== Contact Section ===== */
.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    background:#fff;
    padding:50px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* Contact Info */
.contact-info{
    padding-right:20px;
}

.contact-info p{
    margin-bottom:20px;
    color:#555;
}

.info-box{
    margin-bottom:20px;
}

.info-box h4{
    margin-bottom:5px;
    color:#0066ff;
}

/* Form */
.contact-form form{
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{
    padding:12px;
    margin-bottom:20px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:14px;
    outline:none;
    transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0066ff;
}

.contact-form textarea{
    resize:none;
    height:120px;
}

.btn{
    padding:12px;
    border:none;
    background:#0066ff;
    color:#fff;
    font-size:16px;
    border-radius:30px;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#0044aa;
}

/* ===== Responsive ===== */
@media(max-width:768px){
    .contact-wrapper{
        grid-template-columns:1fr;
        padding:30px;
    }
}

