/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.logo span {
    color: #3498db;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #3498db;
}

nav ul li a.active {
    color: #3498db;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: #072336;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature {
    flex: 0 0 calc(33.333% - 30px);
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 50px;
    color: #05314e;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f1f8fe;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonial {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial .author {
    font-weight: 600;
    color: #093452;
}

/* Page Header */
.page-header {
    background-color: #023658;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    margin: 60px 0;
}

.about-image {
    flex: 0 0 45%;
    padding-right: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 0 0 50%;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
}

/* Team Section */
.team {
    padding: 60px 0;
    background-color: #f1f8fe;
}

.team h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.team-members {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.member {
    flex: 0 0 calc(33.333% - 30px);
    text-align: center;
    margin-bottom: 30px;
}

.member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.member p {
    color: #3498db;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.service {
    display: flex;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    flex: 0 0 80px;
    font-size: 40px;
    color: #3498db;
    margin-right: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Process Section */
.process {
    padding: 60px 0;
    background-color: #f1f8fe;
}

.process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step {
    flex: 0 0 calc(25% - 30px);
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #fff;
}

.contact .container {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    flex: 0 0 40%;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: #3498db;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-form {
    flex: 0 0 55%;
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Map Section */
.map {
    padding: 60px 0;
    background-color: #f1f8fe;
}

.map h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 0 0 calc(33.333% - 30px);
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3498db;
}

.footer-section p {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .contact .container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        flex: 0 0 100%;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .feature {
        flex: 0 0 calc(50% - 30px);
    }
    
    .step {
        flex: 0 0 calc(50% - 30px);
    }
    
    .member {
        flex: 0 0 calc(50% - 30px);
    }
    
    .service {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .feature,
    .step,
    .member {
        flex: 0 0 100%;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 20px;
    }
    
    .service {
        padding: 20px;
    }
    
    .footer-section {
        flex: 0 0 100%;
    }
}
/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-button a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-button span {
    font-weight: 600;
    font-size: 16px;
}

/* Responsive for WhatsApp Button */
@media (max-width: 576px) {
    .whatsapp-button a {
        padding: 12px 20px;
    }
    
    .whatsapp-button i {
        font-size: 20px;
    }
    
    .whatsapp-button span {
        font-size: 14px;
    }
}
/* Pricing Page Styles */
.pricing-plans {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.pricing-plans h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background: #3498db;
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header.basic {
    background: #3498db;
}

.pricing-header.pro {
    background: #2c3e50;
}

.pricing-header.enterprise {
    background: #16a085;
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.pricing-period {
    font-size: 16px;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px;
    list-style: none;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: #3498db;
    margin-right: 10px;
}

.pricing-features li.unavailable i {
    color: #e74c3c;
}

.pricing-features li.unavailable {
    text-decoration: line-through;
    color: #95a5a6;
}

.pricing-btn {
    display: block;
    background: #3498db;
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.pricing-btn:hover {
    background: #2980b9;
}

.pricing-card.pro .pricing-btn {
    background: #2c3e50;
}

.pricing-card.pro .pricing-btn:hover {
    background: #1a252f;
}

.pricing-card.enterprise .pricing-btn {
    background: #16a085;
}

.pricing-card.enterprise .pricing-btn:hover {
    background: #138a72;
}
 .slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .slide-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .slide-dot.active {
            background: white;
        }

        .slide-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s;
        }

        .slide-arrow:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .slide-arrow.left {
            left: 20px;
        }

        .slide-arrow.right {
            right: 20px;
        }

        /* Pricing tables */
        .pricing-plans {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .pricing-card {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .pricing-header {
            background: #3498db;
            color: white;
            padding: 30px;
            text-align: center;
        }

        .pricing-header.basic {
            background: #3498db;
        }

        .pricing-header.pro {
            background: #2c3e50;
        }

        .pricing-header.enterprise {
            background: #16a085;
        }

        .pricing-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .pricing-price {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .pricing-period {
            font-size: 16px;
            opacity: 0.8;
        }

        .pricing-features {
            padding: 30px;
            list-style: none;
        }

        .pricing-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .pricing-features li i {
            color: #3498db;
            margin-right: 10px;
        }

        .pricing-features li.unavailable i {
            color: #e74c3c;
        }

        .pricing-features li.unavailable {
            text-decoration: line-through;
            color: #95a5a6;
        }

        .pricing-btn {
            display: block;
            background: #3498db;
            color: white;
            text-align: center;
            padding: 15px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .pricing-btn:hover {
            background: #2980b9;
        }

        .pricing-card.pro .pricing-btn {
            background: #2c3e50;
        }

        .pricing-card.pro .pricing-btn:hover {
            background: #1a252f;
        }

        .pricing-card.enterprise .pricing-btn {
            background: #16a085;
        }

        .pricing-card.enterprise .pricing-btn:hover {
            background: #138a72;
        }
         /* Why Choose Us Section */
        .why-choose-us {
            padding: 60px 0;
            background-color: #f1f8fe;
            text-align: center;
        }

        .why-choose-us h2 {
            font-size: 36px;
            margin-bottom: 40px;
            color: #2c3e50;
        }

        .benefits-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .benefit-card {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            background: rgb(255, 255, 255);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            font-size: 40px;
            color: #3498db;
            margin-bottom: 20px;
        }

        .benefit-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .benefit-description {
            color: #7f8c8d;
            line-height: 1.6;
        }
/* Social Media Links Styles */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    color: #333;
    padding: 15px 15px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link i {
    margin-right: 10px;
    font-size: 18px;
}

.social-link span {
    font-weight: 500;
    font-size: 14px;
}

/* Platform-specific hover colors */
.social-link.instagram:hover {
    background-color: #e1306c;
    color: white;
}

.social-link.whatsapp:hover {
    background-color: #25D366;
    color: white;
}

.social-link.facebook:hover {
    background-color: #3b5998;
    color: white;
}

.social-link.messenger:hover {
    background-color: #00C6FF;
    color: white;
}

.social-link.email:hover {
    background-color: #EA4335;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 80%;
        text-align: center;
    }
}



  /* Footer Styles */
        footer {
            background-color: #2c3e50;
            color: #fff;
            padding: 60px 0 20px;
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #3498db;
        }

        .footer-section p {
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #3498db;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }
        /* Image Slider Section */
        .slider-section {
            padding: 50px 0;
            background-color: #fff;
            text-align: center;
        }

        .slider-section h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: #2c3e50;
        }

        /* Medium Size Image Slider */
        .image-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            height: 400px;
        }

        .slider-container {
            display: flex;
            transition: transform 0.1s ease;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .slide-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .slide-content p {
            font-size: 16px;
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.1s;
        }

        .slider-dot.active {
            background: white;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s;
            z-index: 10;
        }

        .slider-arrow:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .slider-arrow.left {
            left: 20px;
        }

        .slider-arrow.right {
            right: 20px;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: #fff;
        }

        .features .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .feature {
            flex: 0 0 calc(33.333% - 30px);
            text-align: center;
            padding: 30px;
            margin-bottom: 30px;
            background-color: #f8f9fa;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .feature i {
            font-size: 50px;
            color: #3498db;
            margin-bottom: 20px;
        }

        .feature h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background-color: #f1f8fe;
            text-align: center;
        }

        .testimonials h2 {
            font-size: 36px;
            margin-bottom: 40px;
            color: #2c3e50;
        }

        .testimonial {
            max-width: 700px;
            margin: 0 auto;
            padding: 30px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .testimonial p {
            font-size: 20px;
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial .author {
            font-weight: 600;
            color: #3498db;
        }
         .service-card {
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-image {
            height: 180px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-icon {
            font-size: 32px;
            color: #3498db;
            margin-bottom: 15px;
        }

        .service-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .service-description {
            color: #7f8c8d;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .service-btn {
            display: inline-block;
            background: #3498db;
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
            align-self: flex-start;
        }

        .service-btn:hover {
            background: #2980b9;
        }
 .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            background-color: #25D366;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            flex: 1;
        }
        
        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        .whatsapp-btn i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .notification {
            padding: 10px;
            margin-top: 10px;
            border-radius: 4px;
            display: none;
        }
        
        .success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

   