html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    background-color: #a2beda;
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 8px;
    transition: color 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('assets/banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Underline for headings */
.underline {
    width: 60px;
    height: 4px;
    background-color: #a2beda;
    border-radius: 2px;
}

/* Section padding */
section {
    padding: 80px 0;
}

/* About Section Image */
.circle-img {
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.circle-img img:hover {
    transform: scale(1.05);
}

/* Service Cards */
.service-card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

/* Work Cards */
.work-card img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.work-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Clients / Team Images */
.client-img, .team img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #a2beda;
    color: white;
    padding: 20px 0;
}
