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

body{
    background: #fafafa;
}

/* Navbar */
.navbar{
    background: linear-gradient(to right, #0f2027, #303a43, #2c5364);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    color: white;
}

/* logo */
.logo{
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* nav links */
.nav-links{
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a{
    color: white;
    text-decoration: none;
}

.nav-links a:hover{
    text-decoration: underline;
}

.search-box{
    display: flex;
    gap: 8px;
}

.search-box input{
    padding: 7px 12px;
    border-radius: 20px;
    border: none;
    width: 230px;
}

.search-box button{
    padding: 6px 14px;
    border: none;
    border-radius: 15px;
    background: #4fd1c5;
    cursor: pointer;
    font-size: 14px;
}

#sbox:hover{
    background-color: #38b2ac;
}

.clear-btn{
    background-color: #e53e3e;
    color: white;
}

.clear-btn:hover{
    background-color: #c53030;
}

/* HERO SECTION */
.container{
    height: 100vh;
    background: url("./images/img.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 120px;
}

/* Dark overlay */
.overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Social Icons */
.social-icons{
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 2;
}

.social-icons i{
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* Hero Content */
.hero-content{
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.hero-content h1{
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 480px;
}

.cta-btn{
    padding: 12px 26px;
    background: #3ccfcf;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* ------------------------------------
            ABOUT US PAGE
------------------------------------- */

.about-hero{
    height: 100vh;
    background: url("./images/img.jpg") center/cover no-repeat;
    position: relative;
    padding: 120px 80px;
    color: white;
}

.about-hero .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0, 0.5);
}

.about-content{
    position: relative;
    max-width: 900px;
}

.about-content h1{
    font-size: 56px;
    margin-bottom: 20px;
}

.about-content p{
    line-height: 1.7;
    font-size: 15px;
}

.team{
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.member {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
    width: 200px;
}

/* ------------------------------------
            ABOUT US PAGE
------------------------------------- */

.contact-hero{
    height: 100vh;
    background: url("./images/img.jpg") center/cover no-repeat;
    position: relative;
    padding: 120px 80px;
    color: white;
}

.contact-hero .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.contact-container{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

/* Left Section */
.contact-left h1{
    font-size: 56px;
    margin-bottom: 10px;
}

.contact-left p{
    font-size: 16px;
    opacity: 0.8;
}

/* Form */
.contact-form{
    background: rgba(0,0,0,0.6);
    padding: 30px;
    width: 420px;
    border-radius: 8px;
}

.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea{
    padding: 12px;
    border-radius: 4px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: rgba(255, 255, 255, 0.7);
}

.contact-form button{
    padding: 12px;
    border: none;
    background: #3ccfcf;
    color: black;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.search-results{
    position: absolute;
    right: 40px;
    top: 120px;
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.results-card{
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.results-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body{
    padding: 15px;
}

.card-body h3{
    margin-bottom: 8px;
}

.card-body p{
    font-size: 14px;
    color: #444;
}

.card-body button{
    margin-top: 10px;
    padding: 8px 14px;
    background: #2bb3b3;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}
