/* Global Styles */
:root {
    --primary-color: #1E40AF; /* Navy blue primary */
    --secondary-color: #1E3A8A; /* Darker navy blue */
    --accent-color: #3B82F6; /* Bright blue accent */
    --text-color: #F8FAFC;
    --light-text: #CBD5E1;
    --background: #0F2167; /* Navy blue background */
    --card-bg: #172554; /* Darker navy blue for cards */
    --dark-bg: #0A1128; /* Very dark navy for sections */
    --highlight-color: #38BDF8; /* Light blue for highlights */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
header {
    background: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-nav-btn {
    background-color: var(--accent-color);
    color: white !important;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.premium-nav-btn:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.premium-nav-btn::after {
    display: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--highlight-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--highlight-color);
}

.nav-link-clicked {
    animation: nav-click 0.5s ease;
}

@keyframes nav-click {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); color: var(--highlight-color); }
    100% { transform: scale(1); }
}

.nav-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: var(--highlight-color);
    opacity: 0.5;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: nav-ripple 0.5s linear;
}

@keyframes nav-ripple {
    to {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

/* Hero Section */
#hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--background) 0%, var(--dark-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, var(--highlight-color) 0%, transparent 50%);
    opacity: 0.15;
    animation: pulse-bg 4s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237C3AED' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

@keyframes pulse-bg {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.15; }
    100% { transform: scale(1); opacity: 0.1; }
}

@keyframes slide {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--highlight-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.glow-text {
    /* Removed the text shadow that was creating the border effect */
    animation: subtle-pulse 2s ease-in-out infinite alternate;
}

@keyframes subtle-pulse {
    from {
        opacity: 0.9;
    }
    to {
        opacity: 1;
    }
}

.animated-text {
    animation: slideIn 1s ease-out forwards, pulse 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.hero-stats::before,
.hero-stats::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--highlight-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
    animation: float 6s ease-in-out infinite alternate;
}

.hero-stats::before {
    top: -100px;
    left: -100px;
    animation-delay: -2s;
}

.hero-stats::after {
    bottom: -100px;
    right: -100px;
    animation-delay: -4s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, 20px) rotate(10deg); }
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(124, 58, 237, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.4s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover::before {
    opacity: 0.3;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    display: block;
    position: relative;
    animation: countUp 2s ease-out forwards;
}

.stat-number::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at center, var(--highlight-color) 0%, transparent 70%);
    border-radius: 50%;
    top: -5px;
    right: -5px;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.stat-label {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

/* Features Section */
#features {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--background);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--highlight-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.2);
    border-color: var(--highlight-color);
}

.feature-card-clicked {
    animation: feature-click 0.5s ease;
}

@keyframes feature-click {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(0.95) rotate(1deg); box-shadow: 0 0 25px var(--highlight-color); }
    100% { transform: scale(1) rotate(0deg); }
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card i {
    transition: transform 0.4s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

/* Services Section */
#services {
    padding: 80px 0;
    background: var(--background);
    position: relative;
}

/* Main Service Styling */
.main-service {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--primary-color) 100%);
    border: 2px solid var(--highlight-color);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.main-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2338BDF8' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.main-service::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--highlight-color) 0%, transparent 60%);
    opacity: 0.05;
    animation: pulse-bg 8s ease-in-out infinite;
}

.main-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.4);
}

.main-service-icon {
    font-size: 3rem !important;
    color: var(--highlight-color) !important;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--highlight-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(56, 189, 248, 0.3);
    animation: pulse 2s infinite;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.service-features i {
    color: var(--highlight-color);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Main service animations */
.animate-attention {
    animation: attention-pulse 3s ease-in-out infinite;
}

@keyframes attention-pulse {
    0% { box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3); }
    50% { box-shadow: 0 10px 30px rgba(56, 189, 248, 0.6); }
    100% { box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3); }
}

.feature-animate {
    transition: all 0.3s ease;
}

.feature-animate:hover {
    transform: translateX(5px);
    color: var(--highlight-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--highlight-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.2);
    border-color: var(--highlight-color);
}

.service-card-clicked {
    animation: card-click 0.5s ease;
}

@keyframes card-click {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); box-shadow: 0 0 20px var(--highlight-color); }
    100% { transform: scale(1); }
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--highlight-color);
    margin: 1rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.primary-btn {
    background: var(--highlight-color);
    color: white;
}

.primary-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

.secondary-btn {
    background: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-btn:hover {
    background: var(--highlight-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

.btn.premium-btn {
    background: var(--accent-color);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    border: 2px solid var(--highlight-color);
}

.btn.premium-btn:hover {
    background: var(--highlight-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.premium-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn.premium-btn-large {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: white;
    font-size: 1.1rem;
    padding: 15px 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
    border: none;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.btn.premium-btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.7);
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
}

/* Removed glow animation */

.whatsapp-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover i {
    transform: scale(1.2);
}

/* Ripple effect for button clicks */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    z-index: 1;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.ripple-fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Button click animation */
.button-clicked {
    transform: scale(0.95);
    box-shadow: 0 0 15px var(--highlight-color);
}

/* Premium service click animation */
.premium-clicked {
    animation: premium-pulse 1s ease;
}

@keyframes premium-pulse {
    0% { transform: translateY(0); box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3); }
    50% { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(56, 189, 248, 0.6); }
    100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3); }
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.whatsapp-btn:active::before {
    width: 200%;
    height: 200%;
}

/* Contact Section */
#contact {
    padding: 80px 0;
    background: var(--dark-bg);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.1);
    border-color: var(--highlight-color);
}

.contact-card i {
    font-size: 2rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--highlight-color);
    transform: translateY(-3px);
}

/* Floating Premium Button */
.floating-premium-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-premium-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite, pulse 2s infinite;
}

.floating-premium-btn a:hover {
    background: var(--highlight-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.floating-premium-btn i {
    font-size: 1.2rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--highlight-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--highlight-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
}

/* Responsive Design */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2001;
}

.hamburger:hover {
    background: rgba(56, 189, 248, 0.1);
    color: var(--highlight-color);
}

.hamburger i {
    transition: transform 0.3s ease;
}

.nav-links.open + .hamburger i {
    transform: rotate(90deg);
}

@media (max-width: 1226px) {
    .hamburger {
        display: block;
        z-index: 2001;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-bg);
        transition: var(--transition);
        padding: 0;
        z-index: 2000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .nav-links.open {
        left: 0;
    }
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        height: auto;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 1rem;
    }
    .logo img {
        height: 36px;
    }
    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1rem 0;
    }
    .nav-links ul {
        gap: 1.2rem;
    }
    .nav-links a {
        font-size: 1.1rem;
    }
    .hero-stats {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1.2rem !important;
    }
    .stat-item {
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 auto !important;
    }
    
    /* Responsive styling for main service */
    .main-service {
        padding: 1.5rem;
    }
    
    .service-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .premium-badge {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    
    .main-service-icon {
        font-size: 2.5rem !important;
    }
}
