@import url('https://fonts.googleapis.com/css?family=Poppins:300,400');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Great+Vibes&display=swap');

html, body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

h1 {
    font-family: "Great Vibes", cursive;
    color: #ffffff;
    font-weight: 500;
    font-size: 70px;
}

h2 {
    color: #2b2b2b;
    font-size: 35px;
    line-height: 1.4;
}

p {
    color: #878787;
    font-size: 16px;
    line-height: 25px;
}

section { 
    opacity: 1 !important; 
    visibility: visible !important; 
}

.parallax-section {
    background-attachment: fixed !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
    padding: 80px 0;
}

#home {
    background: url('../images/m_bg1.jpg') center center / cover no-repeat; 
    height: 100vh;
    min-height: 100lvh;
    display: flex;
    align-items: center;
    text-align: right;
}
#home h1{
	font-size: 70px;
}

#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #fff; z-index: 99999;
    display: flex; justify-content: center; align-items: center;
}

.btn-custom {
    background: transparent; border: 1px solid #fff; color: #fff;
    padding: 10px 30px; border-radius: 50px; transition: 0.3s;
    text-decoration: none; display: inline-block;
}
.btn-custom:hover { background: #fff; color: #1a472a; }

.social-link img {
    transition: transform 0.2s;
    max-width: 100%;
    height: auto;
}
.social-link img:hover { transform: scale(1.05); }

a {
    text-decoration: none !important;
    transition: 0.3s;
}

.live-tab {
    position: fixed;
    top: 50px;
    right: -140px;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    background: #0080ff;
}

.live-tab:hover { right: 0; }

.live-tab a {
    display: flex;
    align-items: center;
    color: white !important;
    padding: 12px 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.live-tab i {
    font-size: 24px;
    width: 35px;
    text-align: center;
    margin-right: 15px;
}

.live-tab span {
    white-space: nowrap;
    padding-right: 10px;
}



.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    flex-basis: 0;
    padding: 7px 15px;
    font-size: 22px;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-social svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.btn-yt {
    background-color: #ff0000;
}
.btn-yt:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.btn-tt {
    background-color: #010101;
}
.btn-tt:hover {
    background-color: #fe2c55;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .social-wrapper {
        flex-direction: column;
    }
    .btn-social {
        width: 100%;
        font-size: 22px;
    }
}



.text-3d {
    color: #FFF;
    text-shadow: 
        0 1px 0 #000, 0 2px 0 #111111, 0 3px 0 #a9a9a9,
        0 4px 0 #909090, 0 5px 0 #707070, 0 6px 0 #505050,
        0 7px 0 #303030, 0 8px 1px rgba(0,0,0,0.4), 0 10px 10px rgba(0,0,0,0.3);
}
.btn-flag {
    width: 100px;
    height: 70px;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid red;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-flag .fi {
    width: 100%; 
    height: 100%;
    background-size: cover;
    background-position: center;
}

.btn-flag:hover {
    transform: translateY(-5px);
    border-color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.animated-title {
    background: linear-gradient(to right, #ffffff 20%, #d4af37 40%, #f8f9fa 60%, #ffffff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    display: inline-block;
}

#contact .form-control {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 12px 5px;
    margin-bottom: 15px;
}
#contact .form-control:focus { box-shadow: none; border-bottom-color: #2b2b2b; }

@keyframes shine { to { background-position: 200% center; } }
@keyframes pulse-live { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.live-tab i { animation: pulse-live 2s infinite; }

@media (max-width: 768px) {
    h1 { font-size: 60px; }
    
    .parallax-section, #home {
        background-attachment: scroll !important;
    }
    
    #home { text-align: center; }
    
    
}

@media (max-width: 580px) {
    h1 { font-size: 50px; }
    #home { height: auto; padding: 100px 0; }
}

[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}