/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global Variables */
:root {
    --primary-color: #000000;
    --accent-color: #32CD32;
    --white-color: #FFFFFF;
    --light-gray: #F4F4F4;
    --dark-gray: #333333;
    --text-color: #555555;
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    color: #32CD32;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: capitalize;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Header Styles */

/* Header Styles */
.full-bg-header {
    background-color: #000000; /* Solid black background */
    position: fixed; /* Makes header sticky */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Remove background image and overlay from header only */
.full-bg-header::before {
    content: none;
}

/* Keep background for hero section */
.full-bg-section {
    background-image: url('ho12.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.full-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Header content styles */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #464d46; /* Lime green */
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Added for horizontal centering */
    padding-top: 80px;
    text-align: center; /* Centers text content */
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px; /* Optional: prevents content from stretching too wide */
    padding: 0 20px; /* Adds padding on smaller screens */
    margin: 0 auto; /* Centers the content block */
}

.hero-text h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2; /* Better spacing for headings */
}

.hero-text p {
    color: white;
    font-size: 1.2rem;
    margin: 0 auto 30px; /* Centers paragraph horizontally */
    max-width: 600px;
    line-height: 1.6; /* Better readability */
}

.btn {
    display: inline-block;
    background-color: #32CD32;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 auto; /* Centers button */
}

.btn:hover {
    background-color: #000;
    color: #32CD32;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .hero {
        padding-top: 60px; /* Adjusted for mobile header */
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/* Add this to prevent content from being hidden behind sticky header */
body {
    padding-top: 80px;
}

/* Services Section */
.services-section {
    background-color: var(--white-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--light-gray);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-weight: 500;
    margin: 5px 10px;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    flex: 1;
    padding-right: 50px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-stats {
    display: flex;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

/* Contact Section */
.contact-content {
    display: flex;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.contact-info h2 {
    color: var(--white-color);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white-color);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.contact-form {
    flex: 1;
    padding: 60px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
/* Footer */
/* Footer */
.main-footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #FFFFFF;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-col p {
    margin-bottom: 20px;
    color: #EAEAEA;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #EAEAEA;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #32CD32;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #FFFFFF;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #32CD32;
}

.contact-info p {
    color: #EAEAEA;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.contact-info i {
    margin-right: 10px;
    color: #32CD32;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #EAEAEA;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #32CD32;
}

.copyright {
    color: #EAEAEA;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content,
    .about-content {
        flex-direction: column;
    }

    .hero-text,
    .about-text {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-image,
    .about-image {
        width: 100%;
    }

    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-cta {
        margin: 30px 0 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 576px) {
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }

    .filter-btn {
        margin: 5px;
        padding: 5px 15px;
        font-size: 0.9rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 15px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 15px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}



/* Base Styles */
:root {
    --primary: #000000;
    --accent: #32CD32;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #555555;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.nav-cta {
    margin-left: 30px;
    padding: 10px 25px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: var(--white);
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Services Hero */
.services-hero {
   
    padding: 60px 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
   
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
/* Services Section */
/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Center the featured card */
.center-card {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.service-card.featured {
    border: 2px solid #32CD32;
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #32CD32;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #32CD32;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 20px;
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-link {
    color: #32CD32;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .center-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
}
/* CTA Section */
.cta-section {
    background-color: var(--accent);
    color: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Footer */
.main-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col p {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    margin-left: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-cta {
        margin: 30px 0 0;
    }

    .hamburger {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 15px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}






/* Base Styles */
:root {
    --primary: #000000;
    --accent: #32CD32;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #555555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-section h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-black {
    background-color: var(--primary);
    color: var(--white);
    margin-top: 30px;
}

.btn-black:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    margin-bottom: 40px;
    padding-left: 100px;
    position: relative;
}

.process-step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.process-step h3 span {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

/* Text Section */
.text-section {
    padding: 80px 0;
}

.text-section.dark-bg {
    background-color: var(--primary);
    color: var(--white);
}

.text-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
    text-align: center;
}

.text-section.dark-bg h2 {
    color: var(--white);
}

.text-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

/* CEO Section */
.ceo-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.ceo-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ceo-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ceo-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ceo-message {
    flex: 1;
}

.ceo-message h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

cite {
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .ceo-content {
        flex-direction: column;
    }
    
    .process-step {
        padding-left: 0;
        padding-top: 90px;
    }
    
    .process-step h3 span {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-section h1,
    .features-section h2,
    .process-section h2,
    .text-section h2 {
        font-size: 2rem;
    }
    
    blockquote {
        font-size: 1.3rem;
    }
}










/* Contact Page Styles */


.contact-hero h1 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.contact-hero p {
    font-size: 1.2rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-main {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-form h2,
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2:after,
.contact-info h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #32CD32;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #32CD32;
    outline: none;
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-primary {
    background-color: #32CD32;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #2a8a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

/* Contact Info */
.contact-info {
    background-color: #000000;
    padding: 40px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: white;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon i {
    color: #32CD32;
    font-size: 1.2rem;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #32CD32;
}

.info-text p {
    color: #ecf0f1;
    margin: 0;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    margin-top: 50px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .info-item {
        flex-direction: row;
    }
    
    .contact-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}




/* Service Hero Section */
:root {
    --primary: #000000;        /* Black */
    --accent: #32CD32;         /* Lime Green */
    --white: #FFFFFF;          /* White */
    --light-gray: #F4F4F4;     /* Light Gray */
    --dark-gray: #7f8c8d;      /* Keeping existing dark gray for text */
}

/* Service Hero Section */
.service-hero {
    background-color: var(--white);
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-hero p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Importance Section */
.importance-section {
    padding: 80px 0;
    background-color: var(--white);
}

.importance-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary);
}

.content-block {
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: var(--primary);
}

.content-block p {
    margin-bottom: 20px;
}

.icon-box {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
    text-align: center;
}

.icon-box .icon {
    width: 80px;
    height: 80px;
    background-color: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box .icon i {
    color: var(--accent);
    font-size: 2rem;
}

.icon-box h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.principle-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.principle-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.principle-icon i {
    color: var(--accent);
    font-size: 1.5rem;
}

.principle-card h4 {
    color: var(--primary);
}

.principle-card p {
    color: var(--dark-gray);
}

.cta-box {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--primary);
    border-radius: 10px;
    color: var(--white);
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 20px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: var(--primary);
}

.process-section .subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-card.center-card {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.process-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent);
}

.process-card.center-card:before {
    width: 100%;
    height: 5px;
}

.process-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-card.center-card .process-icon {
    margin-left: auto;
    margin-right: auto;
}

.process-icon i {
    color: var(--accent);
    font-size: 1.5rem;
}

.process-card h3 {
    color: var(--primary);
}

.process-card p {
    color: var(--dark-gray);
}

/* CTA Section */
.service-cta {
    background-color: var(--accent);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.service-cta h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.service-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}



/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Base Animation Styles */
.animate-on-scroll {
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Service Hero Animation */
.service-hero .hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

/* Importance Section Animations */
.importance-section h2 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.content-block {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.icon-box {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.principles-grid .principle-card:nth-child(1) {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.principles-grid .principle-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.principles-grid .principle-card:nth-child(3) {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 1s;
}

.cta-box {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.2s;
}

/* Services Section Animations */
.services-section h2 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.services-section .subtitle {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.services-grid .service-card:nth-child(1) {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.services-grid .service-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.services-grid .service-card:nth-child(3) {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.services-grid .service-card:nth-child(4) {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 1s;
}

.services-grid .service-card:nth-child(5) {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.2s;
}

.services-grid .service-card:nth-child(6) {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 1.4s;
}

/* Platforms Section Animations */
.platforms-section h2 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.platforms-grid .platform-card:nth-child(1) {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.platforms-grid .platform-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.platforms-grid .platform-card:nth-child(3) {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.platforms-grid .platform-card:nth-child(4) {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 1s;
}

/* Process Section Animations */
.process-section h2 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.process-section .subtitle {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.process-steps .process-card:nth-child(1) {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.process-steps .process-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.process-steps .process-card:nth-child(3) {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.process-steps .process-card:nth-child(4) {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 1s;
}

.process-steps .process-card:nth-child(5) {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.2s;
}

.process-steps .process-card:nth-child(6) {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 1.4s;
}

/* CTA Section Animation */
.service-cta {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* JavaScript-Triggered Animations */
.animate {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate.animated {
    opacity: 1;
    transform: translate(0, 0);
}
























/* Graphic Design Specific Styles */
.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-hero p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

/* Services Grid */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
}

.services-section .subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--dark-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    color: var(--accent);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    background-color: var(--light-gray);
}

.process-card.center-card {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}
















/* Social Media Management Specific Styles */
.platforms-section {
    padding: 80px 0;
    background-color: var(--white);
}

.platforms-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.platform-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.platform-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.platform-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .platform-card {
        padding: 20px 15px;
    }
    
    .platform-card i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
























/* Social Media Advertising Specific Styles */
.platform-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.platform-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.platform-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.platform-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        padding: 25px 20px;
    }
}





















/* SEO Specific Styles */
.results-section {
    padding: 80px 0;
    background-color: var(--white);
}

.results-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.result-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.result-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.result-icon i {
    color: var(--accent);
    font-size: 1.8rem;
}

.result-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.result-card p {
    color: var(--dark-gray);
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-card {
        padding: 30px 20px;
    }
}
















/* Hosting & Maintenance Specific Styles */
.plans-section, .maintenance-section {
    padding: 80px 0;
    background-color: var(--white);
}

.plans-section h2, .maintenance-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.plans-grid, .maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card, .maintenance-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.plan-card:hover, .maintenance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.plan-card.featured, .maintenance-card.featured {
    border: 2px solid var(--accent);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.plan-card h3, .maintenance-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--dark-gray);
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.features li i {
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 4px;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 12px;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .plans-grid, .maintenance-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .price {
        font-size: 2rem;
    }
    
    .plan-card, .maintenance-card {
        padding: 30px 20px;
    }
}



/* Full Package Specific Styles */
/* Hero Section */
.package-hero {
  
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.package-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
   
}

.package-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
   
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: #2a8a2a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

/* Overview Section */
.overview-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.overview-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.content-block {
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.content-block p {
    margin-bottom: 20px;
}

.example-box {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

.example-box h3 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.example-content {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.example-image {
    flex: 1;
    max-width: 500px;
}

.example-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.example-details {
    flex: 1;
    max-width: 500px;
}

.example-details h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.features li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.features li i {
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 4px;
}

.results {
    font-style: italic;
    color: var(--primary);
    padding: 10px 15px;
    background-color: rgba(50, 205, 50, 0.1);
    border-left: 3px solid var(--accent);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: var(--accent);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--dark-gray);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.process-section .subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.process-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.process-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent);
}

.process-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon i {
    color: var(--accent);
    font-size: 1.5rem;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.process-card p {
    color: var(--dark-gray);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
}

.pricing-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--dark-gray);
}

.pricing-card .features {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

.pricing-card .features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.pricing-card .features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--accent);
    background-color: var(--accent);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
    border-color: var(--primary);
}

/* Featured card button styles */
.pricing-card.featured .btn-outline {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pricing-card.featured .btn-outline:hover {
    background-color: white;
    color: var(--primary);
    border-color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* CTA Section */
.package-cta {
    background-color: var(--accent);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.package-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.package-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}



    

    








body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--white-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--primary-color);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: auto;
    display: block;
}

.privacy-container {
    padding: 60px 0;
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

p, li {
    color: #333;
    font-size: 1rem;
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
}

footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px 0 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .privacy-container {
        padding: 40px 0;
    }
}



















/* Shared Styles (Can be used for both Privacy Policy and Terms pages) */
:root {
    --primary-color: #000000;
    --accent-color: #32CD32;
    --white-color: #FFFFFF;
    --text-color: #EAEAEA;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--white-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--primary-color);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: auto;
    display: block;
}

.terms-container, .privacy-container {
    padding: 60px 0;
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

p, li {
    color: #333;
    font-size: 1rem;
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
}

footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px 0 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Icons */
.fas {
    margin-right: 8px;
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .terms-container, .privacy-container {
        padding: 40px 0;
    }
}











/* Header Styles */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #32CD32;
}

.nav-cta {
    margin-left: 30px;
    padding: 10px 20px;
    background-color: #32CD32;
    color: #000000;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.nav-cta i {
    font-size: 1.2rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #000000;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-cta {
        margin: 20px 0 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}








/* Base Styles */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: #000;
    padding: 15px 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 40px; /* Adjust as needed */
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #32CD32; /* Lime green */
}

/* WhatsApp CTA Button */
.nav-cta {
    background-color: #32CD32;
    color: black;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.nav-cta:hover {
    background-color: white;
}

/* Mobile Menu Button (Hidden by default on desktop) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #000;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}













/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366; /* WhatsApp green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E; /* Darker green */
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}










/* Header Styles */
.sticky-header {
    position: sticky;
    top: 0;
    background: #000; /* Black header */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo - Always visible */
.logo img {
    height: 40px;
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* All Navigation Links */
.nav-btn, .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff; /* White text */
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

/* Regular Links */
.nav-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Icons - White Color */
.nav-btn i, 
.whatsapp-btn i {
    color: #fff; /* White icons */
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff; /* White hamburger icon */
    transition: all 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000; /* Black mobile menu */
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-btn, .whatsapp-btn {
        width: 100%;
        justify-content: center;
        margin: 5px 0;
        padding: 12px;
    }
    
    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}















/* Global Styles */
:root {
    --primary: #000000;
    --accent: #32CD32;
    --bg: #FFFFFF;
    --text-light: #EAEAEA;
    --border: #F4F4F4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--primary);
    line-height: 1.6;
    background: var(--bg);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.careers-hero {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.careers-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.careers-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
    
}

/* About Section */
.about-team {
    padding: 60px 0;
    background: var(--bg);
}

.about-team h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background: var(--border);
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: var(--bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon i {
    color: var(--accent);
    font-size: 1.8rem;
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Job Listings */
.job-listings {
    padding: 60px 0;
}

.job-listings h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.job-card {
    background: var(--bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    padding: 30px;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.job-card h3 {
    color: var(--primary);
    margin-top: 0;
    font-size: 1.4rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.job-meta i {
    color: var(--accent);
}

.job-cta {
    margin-top: 20px;
}

.apply-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
}

.apply-btn:hover {
    background: #2AA22A;
}

/* Application Form */
.application-section {
    padding: 60px 0;
    background: var(--border);
}

.application-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
}

.application-section p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
    opacity: 0.8;
}

.cv-upload-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #2AA22A;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2.2rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}



















/* Our Work Section */
.our-work-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
}

.work-categories {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 30px;
}

.work-category {
  text-align: center;
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.work-category.active {
  background-color: #32CD32;
  color: white;
}

.work-category:hover:not(.active) {
  background-color: #f0f0f0;
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.work-examples {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.work-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.work-card:hover {
  transform: translateY(-10px);
}

.work-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.1);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.view-btn {
  padding: 10px 25px;
  background: #32CD32;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: #000;
}

.work-details {
  padding: 20px;
}

.work-details h4 {
  margin-bottom: 10px;
  color: #000;
}

.work-details p {
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .work-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .work-category {
    width: 80%;
  }
}



/* === Project Showcase === */
.project-showcase {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.showcase-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* === Project Details === */
.project-details {
    padding: 60px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--accent);
}

.detail-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* === Challenge/Solution === */
.challenge-solution {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.challenge, .solution {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.challenge {
    border-top: 4px solid #32CD32;
}

.solution {
    border-top: 4px solid var(--accent);
}

/* === Key Features === */
.key-features {
    padding: 80px 0;
}

.key-features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .cs-grid {
        grid-template-columns: 1fr;
    }
    
    .case-header h1 {
        font-size: 2.2rem;
    }
}


/* Add these styles to your existing CSS */
.tech-badge {
    display: inline-block;
    background-color: #e0f7fa;
    color: #000000;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
    border: 1px solid #b2ebf2;
}

.tech-stack {
    margin-top: 30px;
    text-align: center;
}

.tech-stack h3 {
    margin-bottom: 15px;
    color: var(--primary);
}




body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

/* === Header === */
.design-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.design-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.design-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* === Design Category Sections === */
.design-category {
    margin-bottom: 60px;
}

.design-category:nth-child(even) {
    background-color: var(--light-bg);
}

.design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.design-content {
    padding: 30px;
}

.design-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.design-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.design-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.design-image:hover img {
    transform: scale(1.05);
}

.design-process {
    margin-top: 30px;
}

.process-step {
    margin-bottom: 20px;
}

.process-step h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    margin-bottom: 5px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .design-grid {
        grid-template-columns: 1fr;
    }
    
    .design-image {
        order: -1;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}





/* Social Media Design Specific Styles */
.social-media-showcase {
    margin-bottom: 80px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.social-media-header {
    margin-bottom: 40px;
    text-align: center;
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.platform-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.platform-icon h3 {
    margin: 0;
    font-size: 1.8rem;
}

.design-specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.design-specs i {
    margin-right: 5px;
}

.design-features {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.design-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.design-features i {
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 3px;
}

/* Platform Specific Colors */
.facebook .platform-icon i { color: #1877F2; }
.instagram .platform-icon i { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ad-design .platform-icon i { color: #FF5A5F; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .social-media-showcase {
        padding: 20px 15px;
    }
    
    .design-specs {
        flex-wrap: wrap;
        gap: 10px;
    }
}





.work-category {
  padding: 20px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  color: var(--accent-color);
  background-color: transparent;
}

.work-category i {
  font-size: 24px;
  margin-bottom: 8px;
}

.work-category h3 {
  margin: 0;
  font-size: 16px;
}

.work-category:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.work-category:hover i {
  color: var(--white-color);
}

.work-category.active {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.work-category.active i {
  color: var(--white-color);
}



















/*start online academy */
#quran-hero {
    padding: 4rem 0;
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
}

#quran-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

#quran-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content */
#quran-main-content {
    padding: 1rem 0;
}

.content-wrapper {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.main-content {
    flex: 2;
}

.sidebar {
    flex: 1;
}

.content-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
    color: #000000;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #32CD32;
    font-size: 2rem;
}

.content-section h3 {
    color: #2c5c2c;
    margin: 1.8rem 0 1rem 0;
    font-size: 1.5rem;
}

.content-section h4 {
    color: #555;
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.2rem;
}

.content-section p, .content-section ul, .content-section ol {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    padding-left: 1.8rem;
}

.content-section ul li, .content-section ol li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-card {
    background: #f8f9fa;
    padding: 1.8rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2c5c2c;
}

.service-card h3 {
    color: #2c5c2c;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    padding: 1.5rem;
    background: #f0f7f0;
    border-radius: 8px;
}

.step h4 {
    color: #2c5c2c;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

/* Author Section */
.author-section {
    background: #f0f7f0;
    border-left: 4px solid #2c5c2c;
}

.author-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.author-image {
    flex: 0 0 200px;
}

.author-image img {
    width: 100%;
    border-radius: 50%;
    border: 4px solid #2c5c2c;
}

.author-info {
    flex: 1;
}

.author-info h3 {
    color: #2c5c2c;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.author-section a {
    color: #2c5c2c;
    text-decoration: none;
    font-weight: 500;
}

.author-section a:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar-widget {
    background: #F4F4F4;
    padding: 1.8rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
}

.sidebar-widget h3 {
    color: #000000;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #32CD32;
}

.sidebar-widget ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-widget ul li {
    margin-bottom: 0.8rem;
}

.sidebar-widget ul li a {
    color: #555555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    font-weight: 500;
}

.sidebar-widget ul li a:hover {
    color: #2c5c2c;
    padding-left: 8px;
}

.sidebar-widget p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.sidebar-widget a {
    color: #2c5c2c;
    text-decoration: none;
}

.sidebar-widget a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3.5rem;
    background: linear-gradient(135deg, #f0f7f0 0%, #e0efe0 100%);
    border-radius: 10px;
    margin: 3rem 0;
    border: 2px solid #2c5c2c;
}

.cta-section h2 {
    color: #000000;
    margin-bottom: 1.5rem;
    border-bottom: none;
}

.cta-section p {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.cta-button {
    padding: 1.2rem 3rem;
    background: #2c5c2c;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}






/* busines 2 */



           :root {
            --primary-color: #000000;
            --accent-color: #32CD32;
            --white-color: #FFFFFF;
            --light-gray: #F4F4F4;
            --dark-gray: #333333;
            --text-color: #555555;
            --transition: all 0.3s ease;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        #business-hero {
           
          
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        #business-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        
            background-size: cover;
            opacity: 0.3;
        }

        #business-hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
           
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        #business-hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
          
        }

        /* Main Content */
        #business-main-content {
            padding: 2rem 0 4rem;
        }

        .content-wrapper {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
        }

        .main-content {
            flex: 2;
        }

        .content-section {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: var(--white-color);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .content-section h2 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--accent-color);
            font-size: 2rem;
        }

        .content-section h3 {
            color: var(--dark-gray);
            margin: 1.8rem 0 1rem 0;
            font-size: 1.5rem;
        }

        .content-section h4 {
            color: var(--text-color);
            margin: 1.5rem 0 0.8rem 0;
            font-size: 1.2rem;
        }

        .content-section p, .content-section ul, .content-section ol {
            margin-bottom: 1.2rem;
            line-height: 1.8;
        }

        .content-section ul, .content-section ol {
            padding-left: 1.8rem;
        }

        .content-section ul li, .content-section ol li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .business-card {
            background: var(--light-gray);
            padding: 1.8rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
        }

        .business-card:hover {
            background: #e8e8e8;
        }

        .business-card h3 {
            color: var(--dark-gray);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            gap: 1.5rem;
        }

        .step {
            padding: 1.5rem;
            background: rgba(50, 205, 50, 0.1);
            border-radius: 8px;
            transition: var(--transition);
        }

        .step:hover {
            background: rgba(50, 205, 50, 0.15);
            transform: translateX(5px);
        }

        .step h4 {
            color: var(--dark-gray);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        /* Author Section */
        .author-section {
            background: rgba(50, 205, 50, 0.1);
            border-left: 4px solid var(--accent-color);
        }

        .author-content {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        .author-image {
            flex: 0 0 200px;
        }

        .author-image img {
            width: 100%;
            border-radius: 50%;
            border: 4px solid var(--accent-color);
        }

        .author-info {
            flex: 1;
        }

        .author-info h3 {
            color: var(--dark-gray);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .author-section a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }

        .author-section a:hover {
            text-decoration: underline;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 3.5rem;
            background: linear-gradient(135deg, rgba(50, 205, 50, 0.1) 0%, rgba(50, 205, 50, 0.05) 100%);
            border-radius: 10px;
            margin: 3rem 0;
            border: 2px solid var(--accent-color);
        }

        .cta-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            border-bottom: none;
        }

        .cta-section p {
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            background: var(--accent-color);
            color: var(--white-color);
            border: none;
            border-radius: 6px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .cta-button:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .author-content {
                flex-direction: column;
                text-align: center;
            }
            
            .author-image {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            #business-hero h1 {
                font-size: 2.2rem;
            }
            
            #business-hero p {
                font-size: 1.1rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .content-section h2 {
                font-size: 1.7rem;
            }
            
            .content-section h3 {
                font-size: 1.3rem;
            }
            
            .cta-section {
                padding: 2rem;
            }
        }

        /* Animation for elements */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .content-section, .business-card, .step {
            animation: fadeIn 0.6s ease-out;
        }

        /* Stagger animations for better visual flow */
        .content-section:nth-child(1) { animation-delay: 0.1s; }
        .content-section:nth-child(2) { animation-delay: 0.2s; }
        .content-section:nth-child(3) { animation-delay: 0.3s; }
        .content-section:nth-child(4) { animation-delay: 0.4s; }
        .content-section:nth-child(5) { animation-delay: 0.5s; }

















 /*busines 3 */



        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section with ID business-hero-3 */
        #business-hero-3 {
           
          
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        #business-hero-3::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
          
            background-size: cover;
            opacity: 0.3;
        }

        #business-hero-3 h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
          
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        #business-hero-3 p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
          
        }

        /* Main Content */
        #business-main-content {
            padding: 2rem 0 4rem;
        }

        .content-wrapper {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
        }

        .main-content {
            flex: 2;
        }

        .content-section {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: var(--white-color);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .content-section h2 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--accent-color);
            font-size: 2rem;
        }

        .content-section h3 {
            color: var(--dark-gray);
            margin: 1.8rem 0 1rem 0;
            font-size: 1.5rem;
        }

        .content-section h4 {
            color: var(--text-color);
            margin: 1.5rem 0 0.8rem 0;
            font-size: 1.2rem;
        }

        .content-section p, .content-section ul, .content-section ol {
            margin-bottom: 1.2rem;
            line-height: 1.8;
        }

        .content-section ul, .content-section ol {
            padding-left: 1.8rem;
        }

        .content-section ul li, .content-section ol li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .strategy-card {
            background: var(--light-gray);
            padding: 1.8rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
        }

        .strategy-card:hover {
            background: #e8e8e8;
        }

        .strategy-card h3 {
            color: var(--dark-gray);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            gap: 1.5rem;
        }

        .step {
            padding: 1.5rem;
            background: rgba(50, 205, 50, 0.1);
            border-radius: 8px;
            transition: var(--transition);
        }

        .step:hover {
            background: rgba(50, 205, 50, 0.15);
            transform: translateX(5px);
        }

        .step h4 {
            color: var(--dark-gray);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        /* Services Section */
        .services-section {
            background: rgba(50, 205, 50, 0.05);
            padding: 3rem 2.5rem;
            border-radius: 10px;
            margin: 3rem 0;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .service-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .service-card h3 {
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        /* Author Section */
        .author-section {
            background: rgba(50, 205, 50, 0.1);
            border-left: 4px solid var(--accent-color);
        }

        .author-content {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        .author-image {
            flex: 0 0 200px;
        }

        .author-image img {
            width: 100%;
            border-radius: 50%;
            border: 4px solid var(--accent-color);
        }

        .author-info {
            flex: 1;
        }

        .author-info h3 {
            color: var(--dark-gray);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .author-section a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }

        .author-section a:hover {
            text-decoration: underline;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 3.5rem;
           
            border-radius: 10px;
            margin: 3rem 0;
            border: 2px solid var(--accent-color);
        }

        .cta-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            border-bottom: none;
        }

        .cta-section p {
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            background: var(--accent-color);
            color: var(--white-color);
            border: none;
            border-radius: 6px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .cta-button:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        /* Highlight Box */
        .highlight {
          
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .author-content {
                flex-direction: column;
                text-align: center;
            }
            
            .author-image {
                margin: 0 auto;
            }

            .service-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            #business-hero-3 h1 {
                font-size: 2.2rem;
            }
            
            #business-hero-3 p {
                font-size: 1.1rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .content-section h2 {
                font-size: 1.7rem;
            }
            
            .content-section h3 {
                font-size: 1.3rem;
            }
            
            .cta-section {
                padding: 2rem;
            }
        }

        /* Animation for elements */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .content-section, .strategy-card, .step {
            animation: fadeIn 0.6s ease-out;
        }

        /* Stagger animations for better visual flow */
        .content-section:nth-child(1) { animation-delay: 0.1s; }
        .content-section:nth-child(2) { animation-delay: 0.2s; }
        .content-section:nth-child(3) { animation-delay: 0.3s; }
        .content-section:nth-child(4) { animation-delay: 0.4s; }
        .content-section:nth-child(5) { animation-delay: 0.5s; }








         /*busines 4 */

          

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section with ID business-hero-4 */
        #business-hero-4 {
           
          
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        #business-hero-4::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           
            background-size: cover;
            opacity: 0.3;
        }

        #business-hero-4 h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--white-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        #business-hero-4 p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
        
        }

        /* Main Content */
        #business-main-content {
            padding: 2rem 0 4rem;
        }

        .content-wrapper {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
        }

        .main-content {
            flex: 2;
        }

        .content-section {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: var(--white-color);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .content-section h2 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--accent-color);
            font-size: 2rem;
        }

        .content-section h3 {
            color: var(--dark-gray);
            margin: 1.8rem 0 1rem 0;
            font-size: 1.5rem;
        }

        .content-section h4 {
            color: var(--text-color);
            margin: 1.5rem 0 0.8rem 0;
            font-size: 1.2rem;
        }

        .content-section p, .content-section ul, .content-section ol {
            margin-bottom: 1.2rem;
            line-height: 1.8;
        }

        .content-section ul, .content-section ol {
            padding-left: 1.8rem;
        }

        .content-section ul li, .content-section ol li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .strategy-card {
            background: var(--light-gray);
            padding: 1.8rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
        }

        .strategy-card:hover {
            background: #e8e8e8;
        }

        .strategy-card h3 {
            color: var(--dark-gray);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            gap: 1.5rem;
        }

        .step {
            padding: 1.5rem;
            background: rgba(65, 105, 225, 0.1);
            border-radius: 8px;
            transition: var(--transition);
        }

        .step:hover {
            background: rgba(65, 105, 225, 0.15);
            transform: translateX(5px);
        }

        .step h4 {
            color: var(--dark-gray);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        /* Services Section */
        .services-section {
         
            
            padding: 3rem 2.5rem;
            border-radius: 10px;
            margin: 3rem 0;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .service-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .service-card h3 {
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        /* Author Section */
        .author-section {
            background: rgba(65, 105, 225, 0.1);
            border-left: 4px solid var(--accent-color);
        }

        .author-content {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        .author-image {
            flex: 0 0 200px;
        }

        .author-image img {
            width: 100%;
            border-radius: 50%;
            border: 4px solid var(--accent-color);
        }

        .author-info {
            flex: 1;
        }

        .author-info h3 {
            color: var(--dark-gray);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .author-section a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }

        .author-section a:hover {
            text-decoration: underline;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 3.5rem;
          
            border-radius: 10px;
            margin: 3rem 0;
            border: 2px solid var(--accent-color);
        }

        .cta-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            border-bottom: none;
        }

        .cta-section p {
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            background: var(--accent-color);
            color: var(--white-color);
            border: none;
            border-radius: 6px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .cta-button:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        /* Highlight Box */
        .highlight {
         
            border-left: 4px solid #4169E1;
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .author-content {
                flex-direction: column;
                text-align: center;
            }
            
            .author-image {
                margin: 0 auto;
            }

            .service-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            #business-hero-4 h1 {
                font-size: 2.2rem;
            }
            
            #business-hero-4 p {
                font-size: 1.1rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .content-section h2 {
                font-size: 1.7rem;
            }
            
            .content-section h3 {
                font-size: 1.3rem;
            }
            
            .cta-section {
                padding: 2rem;
            }
        }

        /* Animation for elements */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .content-section, .strategy-card, .step {
            animation: fadeIn 0.6s ease-out;
        }

        /* Stagger animations for better visual flow */
        .content-section:nth-child(1) { animation-delay: 0.1s; }
        .content-section:nth-child(2) { animation-delay: 0.2s; }
        .content-section:nth-child(3) { animation-delay: 0.3s; }
        .content-section:nth-child(4) { animation-delay: 0.4s; }
        .content-section:nth-child(5) { animation-delay: 0.5s; }













/* blog */

      

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--white-color);
            color: var(--text-color);
            line-height: 1.6;
          
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .blog-header {
            text-align: center;
            margin: 40px 0 60px;
        }

        .blog-header h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .blog-header p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            color: var(--dark-gray);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .blog-card {
            background: var(--white-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 20px;
        }

        .blog-content h2 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.85rem;
            color: var(--dark-gray);
        }

        .blog-author {
            color: var(--accent-color);
            font-weight: 600;
            margin-right: 10px;
        }

        .blog-category {
            background: var(--light-gray);
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
        }

        .read-more {
            display: inline-block;
            margin-top: 15px;
            color: var(--accent-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .read-more:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-header h1 {
                font-size: 2rem;
            }
        }





        /* busines 5 */
         

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        #business-hero-ai {
          
            color: var(--white-color);
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        #business-hero-ai::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
          
            background-size: cover;
            opacity: 0.3;
        }

        #business-hero-ai h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
          
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        #business-hero-ai p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
           
        }

        /* Main Content */
        #business-main-content {
            padding: 2rem 0 4rem;
        }

        .content-wrapper {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
        }

        .main-content {
            flex: 2;
        }

        .content-section {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: var(--white-color);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .content-section h2 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--accent-color);
            font-size: 2rem;
        }

        .content-section h3 {
            color: var(--dark-gray);
            margin: 1.8rem 0 1rem 0;
            font-size: 1.5rem;
        }

        .content-section h4 {
            color: var(--text-color);
            margin: 1.5rem 0 0.8rem 0;
            font-size: 1.2rem;
        }

        .content-section p, .content-section ul, .content-section ol {
            margin-bottom: 1.2rem;
            line-height: 1.8;
        }

        .content-section ul, .content-section ol {
            padding-left: 1.8rem;
        }

        .content-section ul li, .content-section ol li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .strategy-card {
            background: var(--light-gray);
            padding: 1.8rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
        }

        .strategy-card:hover {
            background: #e8e8e8;
        }

        .strategy-card h3 {
            color: var(--dark-gray);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            gap: 1.5rem;
        }

        .step {
            padding: 1.5rem;
            background: rgba(126, 87, 194, 0.1);
            border-radius: 8px;
            transition: var(--transition);
        }

        .step:hover {
            background: rgba(126, 87, 194, 0.15);
            transform: translateX(5px);
        }

        .step h4 {
            color: var(--dark-gray);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        /* Services Section */
        .services-section {
            background: rgba(126, 87, 194, 0.05);
            padding: 3rem 2.5rem;
            border-radius: 10px;
            margin: 3rem 0;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .service-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .service-card h3 {
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        /* Author Section */
        .author-section {
          background: rgba(50, 205, 50, 0.05);

            border-left: 4px solid var(--accent-color);
        }

        .author-content {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        .author-image {
            flex: 0 0 200px;
        }

        .author-image img {
            width: 100%;
            border-radius: 50%;
            border: 4px solid var(--accent-color);
        }

        .author-info {
            flex: 1;
        }

        .author-info h3 {
            color: var(--dark-gray);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .author-section a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }

        .author-section a:hover {
            text-decoration: underline;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 3.5rem;
          background: rgba(50, 205, 50, 0.05);

            border-radius: 10px;
            margin: 3rem 0;
            border: 2px solid var(--accent-color);
        }

        .cta-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            border-bottom: none;
        }

        .cta-section p {
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            background: var(--accent-color);
            color: var(--white-color);
            border: none;
            border-radius: 6px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .cta-button:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        /* Highlight Box */
        .highlight {
           background: rgba(50, 205, 50, 0.05);

            border-left: 4px solid #7E57C2;
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }

        /* Stats Container */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--dark-gray);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .author-content {
                flex-direction: column;
                text-align: center;
            }
            
            .author-image {
                margin: 0 auto;
            }

            .service-cards {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            #business-hero-ai h1 {
                font-size: 2.2rem;
            }
            
            #business-hero-ai p {
                font-size: 1.1rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .content-section h2 {
                font-size: 1.7rem;
            }
            
            .content-section h3 {
                font-size: 1.3rem;
            }
            
            .cta-section {
                padding: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        /* Animation for elements */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .content-section, .strategy-card, .step {
            animation: fadeIn 0.6s ease-out;
        }

        /* Stagger animations for better visual flow */
        .content-section:nth-child(1) { animation-delay: 0.1s; }
        .content-section:nth-child(2) { animation-delay: 0.2s; }
        .content-section:nth-child(3) { animation-delay: 0.3s; }
        .content-section:nth-child(4) { animation-delay: 0.4s; }
        .content-section:nth-child(5) { animation-delay: 0.5s; }




















        /* busines 6 */




        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        #business-hero-4 {
           
            color: var(--white-color);
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        #business-hero-4::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           
            background-size: cover;
            opacity: 0.3;
        }

        #business-hero-4 h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
          color: #000000;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        #business-hero-4 p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
          
        }

        /* Main Content */
        #business-main-content {
            padding: 2rem 0 4rem;
        }

        .content-wrapper {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
        }

        .main-content {
            flex: 2;
        }

        .content-section {
            margin-bottom: 3rem;
            padding: 2.5rem;
            background: var(--white-color);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .content-section h2 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--accent-color);
            font-size: 2rem;
        }

        .content-section h3 {
            color: var(--dark-gray);
            margin: 1.8rem 0 1rem 0;
            font-size: 1.5rem;
        }

        .content-section h4 {
            color: var(--text-color);
            margin: 1.5rem 0 0.8rem 0;
            font-size: 1.2rem;
        }

        .content-section p, .content-section ul, .content-section ol {
            margin-bottom: 1.2rem;
            line-height: 1.8;
        }

        .content-section ul, .content-section ol {
            padding-left: 1.8rem;
        }

        .content-section ul li, .content-section ol li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        .strategy-card {
            background: var(--light-gray);
            padding: 1.8rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
        }

        .strategy-card:hover {
            background: #e8e8e8;
        }

        .strategy-card h3 {
            color: var(--dark-gray);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }

        /* Process Steps */
        .process-steps {
            display: grid;
            gap: 1.5rem;
        }

        .step {
            padding: 1.5rem;
         background: rgba(50, 205, 50, 0.05);

            border-radius: 8px;
            transition: var(--transition);
        }

        .step:hover {
            background: rgba(255, 107, 53, 0.15);
            transform: translateX(5px);
        }

        .step h4 {
            color: var(--dark-gray);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        /* Services Section */
        .services-section {
 background: rgba(50, 205, 50, 0.05);







            padding: 3rem 2.5rem;
            border-radius: 10px;
            margin: 3rem 0;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .service-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .service-card h3 {
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        /* Author Section */
        .author-section {
            border-left: 4px solid var(--accent-color);
        }

        .author-content {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        .author-image {
            flex: 0 0 200px;
        }

        .author-image img {
            width: 100%;
            border-radius: 50%;
            border: 4px solid var(--accent-color);
        }

        .author-info {
            flex: 1;
        }

        .author-info h3 {
            color: var(--dark-gray);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .author-section a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
        }

        .author-section a:hover {
            text-decoration: underline;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 3.5rem;
           
            border-radius: 10px;
            margin: 3rem 0;
            border: 2px solid var(--accent-color);
        }

        .cta-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            border-bottom: none;
        }

        .cta-section p {
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            background: var(--accent-color);
            color: var(--white-color);
            border: none;
            border-radius: 6px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .cta-button:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        /* Highlight Box */
        .highlight {
         
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }

        /* Budget Table */
        .budget-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 0.9em;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        .budget-table thead tr {
            background-color: var(--accent-color);
            color: white;
            text-align: left;
        }

        .budget-table th,
        .budget-table td {
            padding: 12px 15px;
        }

        .budget-table tbody tr {
            border-bottom: 1px solid #dddddd;
        }

        .budget-table tbody tr:nth-of-type(even) {
            background-color: #f9f9f9;
        }

        .budget-table tbody tr:last-of-type {
            border-bottom: 2px solid var(--accent-color);
        }

        /* Platform Comparison */
        .platform-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .platform-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .platform-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .platform-card h4 {
            color: var(--dark-gray);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .platform-card .price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .author-content {
                flex-direction: column;
                text-align: center;
            }
            
            .author-image {
                margin: 0 auto;
            }

            .service-cards {
                grid-template-columns: 1fr;
            }

            .platform-comparison {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            #business-hero-4 h1 {
                font-size: 2.2rem;
            }
            
            #business-hero-4 p {
                font-size: 1.1rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .content-section h2 {
                font-size: 1.7rem;
            }
            
            .content-section h3 {
                font-size: 1.3rem;
            }
            
            .cta-section {
                padding: 2rem;
            }

            .budget-table {
                font-size: 0.8em;
            }
        }





/* Responsive Table */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto; /* mobile par horizontal scroll allow karega */
  white-space: nowrap; /* text ek line me rahega */
}

.budget-table th,
.budget-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* Mobile view ke liye */
@media (max-width: 768px) {
  .budget-table th,
  .budget-table td {
    font-size: 12px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .budget-table th,
  .budget-table td {
    font-size: 11px;
    padding: 6px;
  }
}










        

        /* Animation for elements */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .content-section, .strategy-card, .step {
            animation: fadeIn 0.6s ease-out;
        }

        /* Stagger animations for better visual flow */
        .content-section:nth-child(1) { animation-delay: 0.1s; }
        .content-section:nth-child(2) { animation-delay: 0.2s; }
        .content-section:nth-child(3) { animation-delay: 0.3s; }
        .content-section:nth-child(4) { animation-delay: 0.4s; }
        .content-section:nth-child(5) { animation-delay: 0.5s; }







/* whats on blog */





.blog-section {
  padding: 60px 20px;
  background: var(--white-color);
}

.section-title {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white-color);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-gray);
}

.blog-content .meta {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding: 10px 18px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.read-more:hover {
  background: var(--dark-gray);
}

.view-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

.view-more {
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}

.view-more:hover {
  background: var(--accent-color);
}
















/* map*/


.map-container {
  width: 100%;
  max-width: 800px;   /* map ki max width */
  height: 400px;      /* map ki height */
  margin: 0 auto;     /* center align */
  border-radius: 10px; /* rounded corners */
  overflow: hidden;   /* border radius apply */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* thoda shadow */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}










/* blog sr*/

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
