body {
    font-family: 'Poppins', sans-serif;
    transition: margin 0.5s;
    height: 100vh;
}


.btn-call-us {
    background-color: #D9B79A;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-weight: 500;
    text-decoration: none;
}

.btn-call-us:hover {
    opacity: 0.8;
    transition: 0.3s ease;
    text-decoration: none;
    color: white;
}

.bg-img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("https://ik.imagekit.io/drjoline/public/img/home-header-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(2px);
    background-attachment: fixed;
}


.icon-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: white;
    color: black;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: background-color 0.3s, border-color 0.3s;
}

.icon-container:hover {
    background-color: #4CAF50;
    border-color: white;
    color: white;
    cursor: pointer;
}

.icon-container:hover a {
    background-color: transparent;
    text-decoration: none;
    color: white;
}

.rounded-button span {
    font-weight: 600;
    font-size: 1.1em;
}

.rounded-button {
    color: #333;
}

.logo-container {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.logo {
    width: 150px;
}

.icons {
    width: 30px;
}

.social-icons {
    width: 55px;
}

.width-adjust {
    width: 70%;
}

.share-btn {
    border: none;
    background-color: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 1.1em;
    transition: color 0.3s;
}

.share-btn:hover {
    color: #4CAF50;
}

.tagline {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.3em;
    letter-spacing: 0.5px;
}

.icon-link {
    display: inline-block;
    transition: transform 0.3s, filter 0.3s;
    text-decoration: none;
}

.icon-link:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.5));
}

@media (max-width: 768px) {
    .width-adjust {
        width: 90%;
    }
    
    .logo-container {
        width: 150px;
        height: 150px;
    }
    
    .logo {
        width: 120px;
    }
    
    .rounded-button span {
        font-size: 1em;
    }
    
    .icon-container {
        padding: 15px 15px;
    }
}

@media (max-width: 480px) {
    .width-adjust {
        width: 95%;
    }
    
    .logo-container {
        width: 120px;
        height: 120px;
        padding: 15px;
        margin-bottom: 2rem !important;
    }
    
    .logo {
        width: 100px;
    }
    
    .tagline {
        font-size: 1.1em;
    }
    
    .social-icons {
        width: 45px;
    }
}
