body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    color: #d2691e;
}

.text-justify{
    text-align: justify;
}

.social-tag{
    position: fixed;
    right: 0;
    top:40%;
    z-index: 1000;
    overflow: hidden;
}
.social-tag a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    background-color: #18b100;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    padding: 10px;
    transform: translateX(77%);
    transition: transform 0.3s ease-in-out;
}

.social-tag span{
    font-size: 14px;
    color: #fff;
}
.social-tag a:first-child {
    border-radius: 10px 0 0 0;
}

.social-tag a:first-child:hover {
    transform: translateX(0);
}
.social-tag a:last-child {
    background-color: #e43200;
    border-radius: 0
     0 0 10px;
}
.social-tag a:last-child:hover {
    transform: translateX(0);
}
.social-tag i{
    font-size: 32px;
    color: #fff;
}
.top-bar {
    background: #222;
    color: #ccc;
    font-size: 0.9rem;
    padding: 5px 0;
}

.top-bar a {
    color: #d2691e;
    text-decoration: none;
    margin-left: 10px;
}

.logo {
    width: 80px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .logo {
        width: 50px;
    }
}

.hero {
    background: url('images/banner.jpg') center/cover no-repeat;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.about img {
    width: 45%;
    height: auto;
    border-radius: 10px;
}

.about img:nth-child(1) {
    width: 50%;
}
.about img:nth-child(2) {
    margin-left: -50px;
}

.card-body{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
}
.card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 20%, transparent 80%);
}

.card-body h5{
    position: relative;
    font-weight: 600;
}

.card-body p{
    position: relative;
    font-size: 14px;
}

.menu-btn {
    background-color: #18b100;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    text-decoration: none;
}

.menu{
    background: url('images/banner-2.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 150px 0;
}

.menu-btn:hover {
    background-color: #b2541b;
    color: #fff;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

footer {
    background: #222;
    color: #bbb;
    padding: 20px 0;
}

.menu-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    background: white;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 0 10px #2224;
}
.menu-float a{
    text-decoration: none;
}

.menu-float i{
    font-size: 25px;
    color:#d2691e;
    transform: rotate(0deg);
    animation: rotate 2s infinite linear ;
}

.menu-float p {
    margin: 0;
    font-weight: 500;
    color: #000;
}

@keyframes rotate {
    0%{ transform: rotate(0deg);}
    100%{ transform: rotate(360deg); }
}