/**
 * Service Pages Styles - OPTIMIZED
 * Professional styling for Digital Marketing, Data Analytics, and Cyber Security pages
 * Fixed: Floating icon animation flickering issue
 *
 * @package LandingPage
 */

/* ==================== SERVICE PAGE COMMON STYLES ==================== */

.service-page {
    padding-top: 76px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #ffffff;
}

/* ==================== HERO SECTION ==================== */

.service-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.service-stats {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-hero-buttons {
    margin-top: 2rem;
}

/* Hero Visuals */
.service-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Social Media Icons - Digital Marketing - OPTIMIZED NO FLICKER */
.floating-icons {
    position: relative;
    width: 400px;
    height: 400px;
}

.icon-float {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    will-change: transform;
}

.icon-float i {
    font-size: 1.8rem;
    color: white;
}

/* Standard floating animation for icons 1-4 and 6 - DISABLED */
.icon-float.icon-1,
.icon-float.icon-2,
.icon-float.icon-3,
.icon-float.icon-4,
.icon-float.icon-6 {
    /* animation: float 3s ease-in-out infinite; */
}

/* Position icons 1-4 and 6 */
.icon-float.icon-1 { top: 10%; left: 20%; animation-delay: 0s; }
.icon-float.icon-2 { top: 20%; right: 15%; animation-delay: 0.5s; }
.icon-float.icon-3 { bottom: 30%; left: 10%; animation-delay: 1s; }
.icon-float.icon-4 { bottom: 20%; right: 20%; animation-delay: 1.5s; }
.icon-float.icon-6 { top: 60%; right: 30%; animation-delay: 2.5s; }

/* Special handling for centered icon-5 - ANIMATION DISABLED */
.icon-float.icon-5 { 
    top: 50%; 
    left: 50%; 
    margin-left: -30px; /* Half of width (60px / 2) */
    margin-top: -30px;  /* Half of height (60px / 2) */
    /* animation: float-centered 3s ease-in-out infinite; */
    /* animation-delay: 2s; */
}

/* Standard float animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

/* Centered float animation - no transform conflicts */
@keyframes float-centered {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

/* Analytics Visual */
.analytics-visual .chart-animation {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.chart-animation i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    /* animation: pulse 2s ease-in-out infinite; */
    will-change: transform, opacity;
}

.chart-animation i:nth-child(1) { animation-delay: 0s; }
.chart-animation i:nth-child(2) { animation-delay: 0.5s; }
.chart-animation i:nth-child(3) { animation-delay: 1s; }
.chart-animation i:nth-child(4) { animation-delay: 1.5s; }

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

/* Security Visual */
.security-visual {
    position: relative;
}

.security-shield {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.security-shield > i {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.shield-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    /* animation: pulse-ring 2s ease-out infinite; */
    will-change: transform, opacity;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.threat-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.threat-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 100, 100, 0.7);
    /* animation: threat-move 4s ease-in-out infinite; */
    will-change: transform, opacity;
}

.threat-icons i:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.threat-icons i:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.threat-icons i:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 2s; }
.threat-icons i:nth-child(4) { bottom: 15%; right: 20%; animation-delay: 3s; }

@keyframes threat-move {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    25% { transform: translate(10px, -10px); opacity: 0.8; }
    50% { transform: translate(-10px, 10px); opacity: 0.5; }
    75% { transform: translate(-10px, -10px); opacity: 0.8; }
}

/* ==================== SERVICE DETAILS SECTION ==================== */

.services-detail {
    background: white;
}

.service-detail-item {
    padding: 60px 0;
}

.service-detail-item.bg-light {
    background: #f8f9fa !important;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-detail-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: #28a745;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 1.2rem;
}

/* Benefits Cards */
.service-benefits h4,
.analytics-insights h4,
.platforms-we-manage h4,
.seo-process h4,
.email-stats h4,
.ad-types h4,
.content-impact h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.benefit-card i {
    font-size: 2rem;
    color: #007bff;
    margin-right: 1.5rem;
    min-width: 40px;
}

.benefit-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-card p {
    margin: 0;
    color: #666;
}

/* Platform Grid */
.platform-grid, .cloud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.platform-item, .cloud-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.platform-item:hover, .cloud-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.platform-item i, .cloud-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.platform-item span, .cloud-item span {
    display: block;
    font-weight: 500;
    color: #333;
}

/* SEO Process */
.seo-process, .security-layers {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.process-step, .layer-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number, .layer-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.process-step h5, .layer-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.process-step p, .layer-item p {
    margin: 0;
    color: #666;
}

/* Email Stats & Campaign Types */
.email-stats, .ad-types, .prediction-examples {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.email-stat, .campaign-type, .prediction-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.email-stat i, .campaign-type i, .prediction-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-right: 1.5rem;
}

.email-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.25rem;
}

.email-stat p, .campaign-type p, .prediction-item p {
    margin: 0;
    color: #666;
}

.campaign-type h5, .prediction-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Content Impact */
.content-impact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.impact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.impact-item i {
    font-size: 2rem;
    color: #007bff;
    margin-right: 1rem;
    min-width: 40px;
}

.impact-item p {
    margin: 0;
    color: #555;
    font-size: 1.05rem;
}

/* Analytics Insights */
.analytics-insights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.marketing-metrics {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.competitive-edge {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.insight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.insight-card i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.insight-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.insight-card p {
    margin: 0;
    color: #666;
}

/* Metric Cards */
.metric-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.metric-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.metric-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.metric-card p {
    color: #666;
    margin: 0;
}

/* Data Visualization Types */
.viz-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.viz-type {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.viz-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.viz-type i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.viz-type h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.viz-type p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Machine Learning Models */
.ml-models {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.ml-model {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.ml-model h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
}

.ml-model h5 i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 0.75rem;
}

.ml-model ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ml-model ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.ml-model ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
}

/* Security Layers */
.security-layers h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Threat Types */
.threat-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.threat-type {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.threat-type i {
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: 0.75rem;
}

.threat-type h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.threat-type p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Compliance Standards */
.compliance-standards {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.compliance-badge {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.compliance-badge i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.compliance-badge span {
    display: block;
    font-weight: 600;
    color: #333;
}

/* Security Training */
.training-impact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.impact-stat {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.impact-stat i {
    font-size: 2.5rem;
    color: #007bff;
    margin-right: 1.5rem;
}

.impact-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.25rem;
}

.impact-stat p {
    margin: 0;
    color: #666;
}

.training-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.module-badge {
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==================== ANALYTICS PROCESS SECTION ==================== */

.analytics-process, .analytics-tools {
    background: white;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.process-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.process-card p {
    color: #666;
    margin: 0;
}

/* Tools & Technologies */
.tool-logo {
    background: white;
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tool-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.tool-logo i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.tool-logo p {
    margin: 0;
    font-weight: 500;
    color: #333;
}

/* ==================== SOC SECTION ==================== */

.soc-section {
    background: white;
}

.soc-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.soc-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.soc-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #218838);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.soc-icon i {
    font-size: 2.5rem;
    color: white;
}

.soc-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.soc-feature p {
    color: #666;
    margin: 0;
}

/* ==================== WHY CHOOSE US SECTION ==================== */

.why-choose-us {
    background: white;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2.5rem;
    color: white;
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.why-card p {
    color: #666;
    margin: 0;
}

/* ==================== CTA SECTION ==================== */

.service-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-cta .section-title {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== SERVICE MORE LINK ==================== */

.service-more-link {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-more-link:hover {
    color: #0056b3;
    transform: translateX(5px);
}

.service-more-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-more-link:hover i {
    transform: translateX(5px);
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
    .platform-grid, .cloud-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-stats {
        flex-wrap: wrap;
    }
    
    .service-hero-visual {
        height: 300px;
        margin-top: 3rem;
    }
    
    .floating-icons {
        width: 300px;
        height: 300px;
    }
    
    .platform-grid, .cloud-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0 60px;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-intro {
        font-size: 1rem;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-detail-item {
        padding: 40px 0;
    }
    
    .service-detail-item h3 {
        font-size: 1.5rem;
    }
    
    .metric-row {
        grid-template-columns: 1fr;
    }
    
    .platform-grid, .cloud-grid, .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .service-stats {
        text-align: left;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .platform-grid, .cloud-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-visual {
        height: 250px;
    }
    
    .floating-icons {
        width: 250px;
        height: 250px;
    }
    
    .icon-float {
        width: 50px;
        height: 50px;
    }
    
    .icon-float i {
        font-size: 1.5rem;
    }
    
    /* Adjust centering for smaller icon */
    .icon-float.icon-5 { 
        margin-left: -25px; /* Half of 50px */
        margin-top: -25px;
    }
}