/* Custom Styles */
:root {
    --primary-color: #72F1AB;
    --success-color: #72F1AB;
    --primary-dark: #44D67A;
    --text-color: #333;
    --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, #72F1AB 0%, #44D67A 100%);
    --gradient-hover: linear-gradient(135deg, #44D67A 0%, #72F1AB 100%);
}

/* Hero Section */
.hero-section {
     background: linear-gradient(
        to bottom right, 
        rgba(24, 71, 152, 0.8),   /* #184798 */
        rgba(0, 0, 0, 0.6),       /* #000000 */
        rgba(214, 32, 34, 0.6),   /* #D62022 */
        rgba(10, 136, 69, 0.7)    /* #0A8845 */
    ),
    url('https://source.unsplash.com/1600x900/?business');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 80px;
}

/* pricing Section */
.pricing-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    border: none;
    background: white;
    position: relative;
    overflow: hidden;
    
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.03;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover::before {
    opacity: 0.06;
}

/* Pricing Cards */
.pricing-card {
    height: 100%;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.02;
    z-index: 1;
}

.pricing-card:hover::before {
    opacity: 0.04;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

/* Service Package Cards */
.service-package-card {
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* Pricing Cards */
.pricing-card {
    height: 100%;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: transparent;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.03;
    z-index: -1; /**test css**/
}

.pricing-card:hover::before {
    opacity: 0.08;
}

/* Buttons */
.btn-success {
    background: var(--gradient);
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-success:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-success:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-success::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn-success:hover::after {
    width: 200%;
    height: 200%;
}

.custom_button {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-outline-primary.custom_button:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary.custom_button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary.custom_button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: -1;
}

.btn-outline-primary.custom_button:hover::after {
    width: 200%;
    height: 200%;
}

/* Card Body Padding */
.card-body {
    padding: 1.5rem;
}

/* Package Title */
.card-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
}

/* Package Description */
.card-text {
    color: #666;
    font-size: 1rem;
    padding: 20px;
}

.currency {
    font-size: 1.2rem;
}

.period {
    font-size: 1.2rem;
    color: #666;
}

.featured-plan {
    border: 2px solid var(--success-color);
    margin-top: -1rem;
}

.featured-plan .badge {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--success-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Contact Form */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(114, 241, 171, 0.25);
}

/* General Styles */
body {
    padding-top: 76px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Titles */
section h2 {
    text-align: center;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 4rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Card Body */
.card-body {
    padding: 2rem;
    text-align: center;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}

/* Button Styles */
.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-success:hover {
    background-color: #44D67A;
    border-color: #44D67A;
}

.btn-outline-primary.custom_button {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary.custom_button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Card Body Padding */
.card-body {
    padding: 2rem;
}

/* List Items */
.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Badge Styling */
.badge {
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Hero Section */
.hero-section {
     background: linear-gradient(
        to bottom right, 
        rgba(24, 71, 152, 0.8),   /* #184798 */
        rgba(0, 0, 0, 0.6),       /* #000000 */
        rgba(214, 32, 34, 0.6),   /* #D62022 */
        rgba(10, 136, 69, 0.7)    /* #0A8845 */
    ),
    url('https://source.unsplash.com/1600x900/?business');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 80px;
}

/* Services Section */
.pricing-card {
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Pricing Section */
.price {
    font-size: 2.5rem;
    font-weight: bold;
}

.currency {
    font-size: 1.2rem;
}

.amount {
    color: var(--primary-color);
}

.period {
    font-size: 1.2rem;
}

.featured-plan {
    border: 2px solid var(--success-color);
}

.featured-plan .badge {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Contact Form */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .price {
        font-size: 2rem;
    }
}

/* General Styles */
body {
    padding-top: 0px;
}

/* Smooth Scrolling */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}



/* start service section */
:root {
    --primary-color: #1C704A;
    --secondary-color: #35A66F;
    --accent-color: #2C9465;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, white, var(--accent-color));
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-light);
    scroll-behavior: smooth;
}

/* Hero Section */
/* .hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 150px 0;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
} */

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p.lead {
    font-size: 1.75rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.brand-icon:hover {
    transform: rotate(10deg);
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    padding: 0.5rem;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 0.75rem 2rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
    background: var(--gradient-accent);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* Hero Image */
.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    bottom: -10%;
    left: -10%;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: inherit;
    pointer-events: none;
}

/* Services Section */
#services {
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* pricing Section */
#pricing {
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Service Cards */
/* .service-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(28, 112, 74, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    display: flex;
    flex-direction: column;
} */

/* .services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: stretch;
} */
.services-wrapper .col-md-6 {
    display: flex;
}

.service-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(28, 112, 74, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(28, 112, 74, 0.05) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(28, 112, 74, 0.1);
      /* transform: translateY(-5px); */
    box-shadow: var(--hover-shadow);
}

/* Service Content */
.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--text-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Service Features */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item i {
    font-size: 1.2rem;
    width: 20px;
}

.feature-item span {
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-icon {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Service Content */
.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--text-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Service Features */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item i {
    font-size: 1.2rem;
    width: 20px;
}

.feature-item span {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Section Header */
.section-header {
    position: relative;
    padding: 2rem 0;
}

.section-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card {
        padding: 2rem;
    }

    .service-icon {
        font-size: 4rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 70, 229, 0.2);
}

.service-icon {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
}

.service-card p.text-muted {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-card p:not(.text-muted) {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-card h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
    font-size: 1.25rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateY(2px);
}

.service-card li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
    margin-top: -2px;
}

.service-card li strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.service-card li p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
#service_head{
    color: #1c704a !important;
    font-size: 2.5rem !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand i {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-size: 1.5rem;
}

footer a:hover {
    color: var(--accent-color);
}

/* Contact Form */
.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Footer */
footer {
    margin-top: 4rem;
}

footer a {
    text-decoration: none;
    font-size: 1.5rem;
}

footer a:hover {
    color: #0d6efd !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    }
