/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Header Container */
.header {
   position: fixed;
   width: 100%;
   top: 0;
}

/* Logo */
.logo{
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 0 0 15px 15px;
}
.logo img {
    width: 100%;
}
  
/* Header Top Section */
.header-top {
    padding: 10px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    height: 100%;
    color: #fff;
    
}

.contact i {
    color: #fff;
}

/* Middle Logo */
.middle-logo img {
    height: 50px;
    display: block;
    margin: 0 auto;
}

/* Social Icons */
.social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    height: 100%;
    align-items: center;
}

.social a {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.social a:hover {
    color: #1e8c3a;
}

/* Header Bottom Section */
.header-bottom {
    background: #fff;
    border-radius: 50px;
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navigation Menu */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: black;
    font-size: 14px;
    padding: 8px 5px;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #1e8c3a;
}

/* Call to Action Button */
.cta-button {
    background-color: #8dc891;
    color: white !important;
    font-weight: 600;
    padding: 10px 18px !important;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    display: block;
}

.cta-button:hover {
    background-color: #76b276;
    
}

/* Hero Section */
.hero-section {
    color: white;
    text-align: center;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero-section .text-warning {
    color: #ffcc00 !important;
}

/* Pricing Section */
.card {
    border: none;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.card h3 {
    color: #007b5e;
}
.card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00e3ae;
}
.card ul {
    padding: 0;
    list-style: none;
}
.card ul li {
    margin: 5px 0;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}
