/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background: #f3f2ef;
}

/* ================= TOP CONTACT BAR ================= */
.top-bar {
    background: linear-gradient(90deg, #c29f2f, #e8c75a, #b38705);
    color: #111;
    padding: 7px 30px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.top-bar .social-icons {
    display: flex;
    gap: 12px;
}

.top-bar .social-icons a {
    color: #111;
    font-size: 18px;
    transition: .3s;
    font-weight: bold;
}

.top-bar .social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
}

/* ================= HEADER ================= */
header {
    background: linear-gradient(to right, #0a0a0a, #1a1a1a, #0e0e0e);
    padding: 22px 45px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f7d65c;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .7px;
}

.logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

/* Navigation */
header nav a {
    color: #e6e6e6;
    margin-left: 22px;
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
    padding-bottom: 3px;
}

header nav a:hover,
header nav a.active {
    color: #f7d65c;
    border-bottom: 2px solid #f7d65c;
}

/* ================= HERO SECTION ================= */
.hero {
    background: url('https://images.pexels.com/photos/259588/pexels-photo-259588.jpeg') center/cover no-repeat;
    height: 75vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 0 0 6px #000;
    position: relative;
}

/* Dark Overlay for premium look */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero h1,
.hero p,
.hero .btn {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

/* Hero Button */
.hero .btn {
    background: #f5c518;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 17px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: .3s;
}

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

/* ================= WHY US ================= */
.why-us {
    padding: 70px 20px;
    text-align: center;
}

.why-us h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #111;
}

.why-us p {
    font-size: 17px;
    color: #555;
}

/* ================= LOCATIONS ================= */
.locations {
    padding: 70px 20px;
    background: #fff;
    text-align: center;
}

.locations h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #111;
}

.location-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Cards */
.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    font-size: 16px;
    color: #222;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border: 1px solid #f1e2a4;
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.18);
    border-color: #f5c518;
}

/* ================= FOOTER ================= */
footer {
    background: #0f0f0f;
    color: #e9c84d;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    letter-spacing: .7px;
    border-top: 2px solid #e9c84d3a;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.4);
}

footer:hover {
    background: #161616;
    transition: 0.4s;
}

/* ================= LEFT SIDE PROFILE CIRCLE ================= */
.side-profile {
    position: fixed;
    top: 22%;
    left: 57px;
    z-index: 1000;
}

.profile-circle {
    width: 418px;
    height: 557px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f5c518;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(2.0);
}