 :root {
            --primary-color: #003366;
            --secondary-color: #ffffff;
        }
        body {
            font-family: 'Karla', sans-serif;
        }
        .bg-primary-custom {
            background-color: var(--primary-color) !important;
        }
        .text-primary-custom {
            color: var(--primary-color) !important;
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        .btn-primary-custom:hover {
            background-color: #004488;
            border-color: #004488;
        }
        .floating-buttons {
            position: fixed;
            bottom: 40px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        .floating-btn:hover {
            transform: scale(1.1);
        }
        .btn-call {
            background-color: var(--primary-color);
            color: white;
        }
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
        }
        .hero-section {
            background: linear-gradient(135deg, #001f3f, #8B0000, #006400);
			  background-size: 400% 400%;
			  animation: gradient 15s ease infinite;
			  min-height: 50vh;
			  
            color: white;
            padding: 50px 0 30px;
        }
		
		 


        .service-card {
            transition: transform 0.1s, box-shadow 0.1s;
			border-style:solid;
			border-width:4px;
			border-color:#ffffff;
            height: 100%;
           
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
			background-color:#f5f5f5;
        }
        .service-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .section-title {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
        .brand-badge {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .brand-badge:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        .pricing-table {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .coverage-badge {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 20px;
            margin: 8px;
            border-radius: 25px;
            display: inline-block;
            font-size: 0.95rem;
        }
        .faq-button {
            background-color: white;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            font-weight: 600;
        }
        .faq-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        .why-choose-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%);
            color: white;
            padding: 80px 0;
        }
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
		
		
		
		
		
		
		.blog-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.card-title a {
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #0d6efd !important;
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.3);
}

.card-img-top-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem !important;
        font-size: 1rem;
    }
}