*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background-color:black;
}

/* NAVBAR */

.navbar{
    position:absolute;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 80px;
    z-index:10;
}

.logo{
    color:rgb(32, 21, 184);
    height: 50px;
    width: 100px;
    font-size:1opx;
    font: weight 200px;
    margin-bottom: 40px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
}

/* HERO */

.hero{
    height:100vh;
    background:url('plan.jpg') center/cover;
    position:relative;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:white;
    max-width:1000px;
}

.subtitle{
    display:block;
    margin-bottom:15px;
    letter-spacing:2px;
    font-size:14px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    border:2px solid white;
    color:white;
    text-decoration:none;
    transition:.3s;
}

.btn:hover{
    background:white;
    color:black;
}

/* CATEGORY BAR */

.categories{
    display:flex;
    justify-content:center;
    gap:50px;
    padding:30px;
    background:white;
    font-weight:600;
    height: 750px;
}

/* PAGE BANNER */

.page-service{
    height: 400px;
    background:rgb(2, 96, 134);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    background:url('work.jpg') center/cover;
    position:relative;
}

.page-service h1{
    font-size:60px;
    color:rgb(252, 195, 32);
    text-shadow: 6px 6px 6px rgba(0,0,0,.5);
    margin-bottom: 100px;
    margin-right: 50px;

}
.page-about{
    height: 400px;
    background:rgb(2, 96, 134);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    background:url('blue.jpg') center/cover;
    position:relative;
}

.page-about h1{
    font-size:60px;
    color:rgb(252, 195, 32);
    text-shadow: 6px 6px 6px rgba(0,0,0,.5);

}
.page-contact{
    height: 400px;
    background:rgb(2, 96, 134);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    background:url('man.jpg') center/cover;
    position:relative;
}

.page-contact h1{
    font-size:60px;
    color:rgb(252, 195, 32);
    text-shadow: 2px 2px 2px rgba(0,0,0,.5);
    margin-bottom: 100px;

}
/* SERVICES */

.services{
    padding:80px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    height: 1000px;
    background: #f8f9fa;
    margin-bottom: 100px;
}

.card{
    padding:30px;
    box-shadow:0 0 20px rgba(220, 100, 100, 0.1);
}

/* ABOUT */

.about{
    display:flex;
    gap:50px;
    padding:80px;
    background: #f8f9fa;
    height: 1800px;
    margin-bottom: 100px;
}

.about img{
    position:relative;
}

.about-content{
    flex:1;
    height: 150px;
    background: #f8f9fa;

}

/* CONTACT */

.contact{
    padding:80px;
    background: #f8f9fa;
    margin-bottom: 100px;
}

form{
    max-width:700px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ccc;
}

button{
    padding:15px 35px;
    background:black;
    color:white;
    border:none;
    cursor:pointer;
}
#content1
{
width: 35%;
height: 480px;
background-color:white;
float: left;
margin-right: 2%;
}
#content2
{
width: 35%;
height: 480px;
background-color:white;
float: left;
}
.categories2{
    display:flex;
    justify-content: center;
    padding:10px;
    font-weight:600;
    margin-bottom:100px;
    padding: 100px 8%;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h5 {
    color: #c89b3c;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
}

.section-title p {
    max-width: 700px;
    margin: 15px auto 0;
    color: #666;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-box {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.icon {
    width: 100px;
    height: 50px;
    background: #c89b3c;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 80px;
}
/* ABOUT SECTION */
.about-section {
    padding: 100px 8%;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h5 {
    color: #c89b3c;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 16px;
    }
}
/* WORK PROCESS SECTION */
.work-process-section {
    padding: 100px 8%;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h5 {
    color: #c89b3c;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 5px;
    text-align: justify;
}

.process-content strong {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 32px;
    }

    .process-content p {
        font-size: 16px;
    }
}

.section-title {
    margin-bottom: 40px;
}

.section-title h5 {
    color: #c89b3c;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.service-list li::before {
    content: "*";
    position: absolute;
    left: 0;
    color: #c89b3c;
    font-weight: bold;
    font-size: 18px;
}
.service-list li strong {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
}
.contact-details {
    width: 70%;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-details h2 {
    margin-bottom: 20px;
    color: #222;
}

.detail {
    margin-bottom: 15px;
    font-size: 18px;
}

.detail a {
    color: #007bff;
    text-decoration: none;
}
#footer
{
    width: 70%;
    height: 80px;
    background-color: black;
    clear: both;
    margin-left: 227px;
}
#footer ul
{
float: left;
margin-bottom: 50px;
}
#footer ul li
{
display: inline;
margin-right: 30px;
}
#footer ul li a
{
color: white;
text-decoration:underline;
font-size: 20px;
}
#footer p
{
color: white;
float: right;
margin-right: 20px;
}