/* Elements Creatives styles 
Static html files using Bootstrap 5
*/
        /* Global CSS Styles */
        :root {
            --primary: #003566;
            --secondary: #FFD60A;
            --dark: #001D3D;
            --light: #F8F9FA;
            --body-color: #4A4A4A;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--body-color);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
        }
        
        .navbar-light .navbar-brand {
            color: white;
        }
        
        .navbar-dark .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-dark .navbar-nav .nav-link:hover {
            color: white;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            padding: 180px 0 120px;
            color: white;
        }
        
        .btn-primary {
        background-color: var(--secondary); /* FF-D60A yellow */
        border-color: var(--secondary);
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        color: #003566 !important; /* Dark blue text on yellow */
        }
        .btn-primary:hover {
        background-color: var(--primary); /* 003566 blue */
        border-color: var(--primary);
        color: #ffffff !important; /* White text on blue */
        }

        .btn-outline-light {
        color: #f8f9fa; /* Light text for outline button */
        }
        .btn-outline-light:hover {
        background-color: var(--primary); /* 003566 blue */
        border-color: var(--primary);
        color: #ffffff !important; /* White text on blue */
        }
        .section-title {
            position: relative;
            margin-bottom: 50px;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto 0;
        }
        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Service Section Styles */
        .service-box {
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background: white;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        }
        
        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        /* Portfolio Section Styles */
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .portfolio-img {
            transition: all 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #003566e0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        /* Platform Section Styles */
        .platform-icon {
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            color: #6c757d;
        }
        
        .platform-item:hover .platform-icon {
            color: var(--secondary);
            transform: scale(1.05);
        }
        
        .bg-platform-primary {
            background-color: var(--primary);
        }
        
        .platform-item {
            height: 100%;
        }       
        /* Testimonial Section Styles */
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            margin: 15px;
        }
        
        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .team-img {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background: var(--light);
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            color: var(--dark);
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        /* Contact Section Styles */   
        .social-icons a:hover {
            background: var(--primary);
            color: white;
        }
        
        .contact-info-box {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .contact-info-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        /* Footer Section Styles */
        footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background: var(--primary);
            position: absolute;
            left: 0;
            bottom: 0;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            z-index: 1000;
            display: none;
            transition: all 0.3s ease;
        }
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-link i {
    font-size: 32px;
}

/* WjatsApp Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsAPP Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-link i {
        font-size: 28px;
    }
}