:root {
    --primary: #365f91;
    --secondary: #ffe640;
    --accent: #e74c3c;
    --light: #cfcfcf;
    --dark: #2c3e50;
    --success: #2ecc71;
    --text: #333;
    --text-light: #6c757d;
}

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

body {
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.navbar-brand span {
    color: var(--secondary);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.1;
}

.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
    height: 100%;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 15px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    background-size: cover;
    background-position: bottom;
    opacity: 0.1;
}

.footer {
    background-color: var(--primary);
    color: white;
    padding: 70px 0 20px;
}

.footer h5 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    animation:
        rotate 3s linear infinite,
        zoom 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.floating-chat i {
    font-size: 32px;
    color: white;
    animation: icon-rotate 2s ease-in-out infinite;
}




.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.5);
}

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

@keyframes icon-rotate {
    0%, 100% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-10deg);
    }
}

@keyframes zoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 450px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 19999;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
    padding: 12px 15px;
    border-radius: 18px;
}

.bot-message {
    background-color: var(--light);
    border-bottom-left-radius: 5px;
    align-self: flex-start;
}

.user-message {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    color: white;
    border-bottom-right-radius: 5px;
    align-self: flex-end;
    margin-left: auto;
}

.page-section {
    padding: 100px 0;
}

.about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    background-color: var(--light);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #2a4a75 0%, var(--primary) 100%);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #f5d630;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Animation classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
}

.scale-in {
    opacity: 0;
    animation: scaleIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Delayed animations */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Navbar styling */
.navbar {
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

/* Adverts Section Styles */
.adverts-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.advert-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    background: white;
}

.advert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.advert-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.advert-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a75 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.advert-content {
    padding: 25px;
}

.advert-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.advert-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.advert-price .original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 10px;
}

.advert-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.advert-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.advert-features li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.9rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.countdown-item {
    background: var(--primary);
    color: white;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    min-width: 60px;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Chat footer */
.chat-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
}


.small-hover-blue {
    transition: box-shadow .25s ease, transform .25s ease;
}
.small-hover-blue:hover {
    transform: translateY(-2px);
    box-shadow: inset 4px 0 0 #2b3990,
    0 0 8px 2px rgba(79,140,255,.55),
    0 0 24px 8px rgba(79,140,255,.35);!important;
}

.blue-orange {
    transition: box-shadow .25s ease, transform .25s ease;
}
.blue-orange:hover {
    transform: translateY(-2px);
    box-shadow: inset 4px 0 0 #f0592d,
    0 0 8px 2px rgba(79,140,255,.55),
    0 0 24px 8px rgba(79,140,255,.35);
}


.orange-hover {
    transition: box-shadow .25s ease, transform .25s ease;
}
.orange-hover:hover {
    transform: translateY(-2px);
    box-shadow: inset 4px 0 0 #f0592d,
    0 0 8px 2px rgba(79,140,255,.55),
    0 0 24px 8px rgba(79,140,255,.35);
    border-bottom: 0.25rem solid #f0592d !important;
}

.glow-hover {
    transition: box-shadow .25s ease, transform .25s ease;
}
.glow-hover:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 8px 2px rgba(79,140,255,.55),
        0 0 24px 8px rgba(79,140,255,.35);
}

.stream-card {
    transition: all 0.2s ease-in-out;
}
.stream-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0,0,0,0.8);
    border-bottom: 0.25rem solid #f0592d !important;
}

.ad-logo{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #ececec;
    border-radius: 10%;
    margin-bottom: 0.25rem;
    background-color: #ffffff;
    box-shadow: 1px 1px 1px;
}

.ad-link {
    font-weight: bold;
    color: #003366;
    text-decoration: none;
}
