/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
}

/* Header Styles */
header {
    background-color: #051650;
    color: white;
    height: 100px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 5;
}

.logo-container {
    flex: 1;
}

header .logo {
    width: 100px;
    height: 100px;
    padding: 10px;
}

nav {
    flex: 2;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    list-style: none;
    display: flex;
    transition: all 0.3s ease;
}

.nav-links li {
    margin-left: 20px;
    position: relative;
}

.nav-links li span {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: default;
    display: block;
}

.nav-links li span:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: block;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Dropdown Menu Styles */
.nav-links .dropdown-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #051650;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: opacity 0.3s ease, visibility 0.1s ease-in-out;
}

.nav-links .dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid white;
}

.nav-links .dropdown-menu li:last-child {
    border-bottom: none;
}

.nav-links .dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-links .dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-links li:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 3px 0;
}

/* Responsive Header Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 90px;
        left: 0;
        background-color: #051650;
        z-index: 9;
        padding: 20px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links li span,
    .nav-links li a {
        padding: 15px 20px;
        width: 100%;
        text-align: left;
    }

    .nav-links .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #051650;
        padding-left: 20px;
        display: none;
    }

    .nav-links li:hover .dropdown-menu {
        display: block;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: url('images/main.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
    height: 70vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h1,
.hero p,
.hero a {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-top: 230px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ffcc00;
    color: #0056b3;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e0b800;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 15px;
        height: 45vh;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-top: 125px;
    }

    .hero p {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 8px 15px;
    }
}

/* Services Section */
.services-section {
    padding: 50px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.services-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.services-table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.services-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.services-row.header {
    background-color: #051650;
    color: #fff;
    font-weight: bold;
}

.service-column {
    flex: 1;
    padding: 10px;
    text-align: left;
}

.service-column ul {
    list-style-type: disc;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .services-row {
        flex-direction: column;
        text-align: center;
    }

    .service-column {
        padding: 10px 0;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: zoomIn 0.5s ease-in;
    opacity: 0;
    animation-fill-mode: forwards;
}

.service-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
    background-color: #eef2f9;
}

.service-item:hover .cta-button {
    background-color: #003d80;
}

.service-icon {
    font-size: 50px;
    color: #051650;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #051650;
}

.service-item p {
    font-size: 16px;
    color: #666;
}

.service-features {
    list-style-type: disc;
    padding: 0 0 0 20px;
    text-align: left;
    margin-top: 20px;
    line-height: 1.8;
}

.service-features li {
    margin: 5px 0;
    color: #0056b3;
}

.services-detail-text {
    background-color: #051650;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-detail-text p {
    font-size: 18px;
    color: #fff;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        width: 100%;
    }
}

/* Secretarial Services Section */
.secretarial-services-section {
    padding: 50px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.secretarial-services-section .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    animation: fadeIn 0.5s ease-in-out;
}

.secretarial-services-section .services-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    animation: fadeIn 0.7s ease-in-out;
}

.secretarial-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.secretarial-services-section .service-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-in forwards;
}

.secretarial-services-section .service-item:nth-child(1) { animation-delay: 0.2s; }
.secretarial-services-section .service-item:nth-child(2) { animation-delay: 0.4s; }
.secretarial-services-section .service-item:nth-child(3) { animation-delay: 0.6s; }
.secretarial-services-section .service-item:nth-child(4) { animation-delay: 0.8s; }
.secretarial-services-section .service-item:nth-child(5) { animation-delay: 1.0s; }
.secretarial-services-section .service-item:nth-child(6) { animation-delay: 1.2s; }
.secretarial-services-section .service-item:nth-child(7) { animation-delay: 1.4s; }
.secretarial-services-section .service-item:nth-child(8) { animation-delay: 1.6s; }

.secretarial-services-section .service-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #051650;
}

.secretarial-services-section .service-item p {
    font-size: 16px;
    color: #666;
}

.secretarial-services-section .service-features {
    list-style-type: disc;
    padding: 0 0 0 20px;
    text-align: left;
    margin-top: 20px;
    line-height: 1.8;
}

.secretarial-services-section .cta-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.secretarial-services-section .cta-button:hover {
    background-color: #003d80;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .secretarial-services-section .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-title {
    margin-top: 60px;
    font-size: 28px;
    color: #333;
}

.testimonials-section {
    margin-top: 20px;
    text-align: center;
}

.testimonial {
    font-style: italic;
    color: #666;
    margin: 10px 0;
}

#testimonials {
    padding: 40px 20px;
    background-color: #e9ecef;
    text-align: center;
}

blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
}

.testimonial {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 10px;
}

.star-rating {
    font-size: 1.5rem;
    color: #ffd700;
}

/* FAQ Section */
.faq-title {
    margin-top: 60px;
    font-size: 28px;
    color: #333;
}

.faq-section {
    padding: 60px 30px;
    background-color: white;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    color: #051650;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.faq-item {
    border-bottom: 1px solid #0056b3;
    padding: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e6f0ff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #051650;
}

.plus-icon {
    font-size: 1.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #051650;
}

.faq-answer {
    display: none;
    padding: 15px 0;
    color: #0056b3;
    background-color: #f1faff;
    border-radius: 5px;
    margin-top: 10px;
}

.faq-answer p {
    margin: 0;
    color: black;
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 30px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    color: #051650;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1 1 220px;
    margin: 20px;
    padding: 20px;
    border: 2px solid #051650;
    border-radius: 8px;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 40px;
    color: #051650;
    margin-bottom: 15px;
}

/* Achievements Section */
.achievements {
    background: linear-gradient(135deg, #e1f5fe, #bbdefb);
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.achievements h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #051650;
    width: 100%;
    text-align: center;
}

.achievement {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 20px;
    margin: 15px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    flex: 1;
    max-width: 300px;
}

.achievement-icon {
    font-size: 40px;
    color: #0056b3;
    margin-right: 20px;
}

.achievement-content h3 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.achievement-content p {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

/* Call to Action Section */
.call-to-action {
    text-align: center;
    padding: 60px 20px;
    margin: 40px 0;
    background-color: #e9ecef;
    border-radius: 10px;
}

.call-to-action h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.call-to-action p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Footer Styles */
footer {
    background-color: #051650;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.footer-section {
    text-align: left;
}

.footer-section i {
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

.footer-section .location-icon {
    color: #e74c3c;
}

.footer-section .phone-icon {
    color: #3498db;
}

.footer-section .whatsapp-icon {
    color: #25d366;
}

.footer-section .email-icon {
    color: #d44638;
}

.footer-section a.email-link {
    text-decoration: none;
    color: yellow;
}

.footer-section a.email-link:hover {
    text-decoration: underline;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffcc00;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom i {
    font-size: 24px;
    margin: 0 10px;
    color: white;
    transition: color 0.3s ease;
}

.footer-bottom i:hover {
    color: #ffcc00;
}

@media (max-width: 768px) {
    .footer-section:nth-child(1),
    .footer-section:nth-child(2),
    .map-section {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Map Section */
.map-section {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 300px;
}

/* Floating Chat Icon */
.floating-chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #25d366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.floating-chat-icon a {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.floating-chat-icon:hover {
    transform: scale(1.4);
}

/* Modern Marquee */
.modern-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #051650;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    border: 2px solid #ff9900;
    box-sizing: border-box;
    position: relative;
}

.modern-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-text 30s linear infinite;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 60px 30px;
    text-align: center;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-us-section h2 {
    margin-bottom: 30px;
    color: #051650;
    font-family: Arial, sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.benefit-item {
    flex: 0 1 calc(33.33% - 40px);
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.benefit-item:hover i {
    color: #ff5722;
}

.benefit-item h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #051650;
}

.benefit-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 18px;
    }

    .benefit-item {
        flex: 0 1 100%;
        margin: 9px 0;
        padding: 13px;
    }

    .why-choose-us-section h2 {
        font-size: 18px;
    }

    .benefit-item h3 {
        font-size: 16px;
    }

    .benefit-item p {
        font-size: 12px;
    }
}

/* Main Section */
main {
    padding: 40px 20px;
}

/* About Us Section */
.about-us {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 20px;
}

.about-us h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #051650;
}

.about-us h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #051650;
}

.about-us p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-us ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-us ul li {
    margin-bottom: 10px;
}

/* Contact Us Section */
.contact-us-section {
    padding: 50px 20px;
    background-color: #f4f6f8;
    color: #333;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.contact-details {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-details h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-details p {
    margin-bottom: 15px;
}

.contact-details ul {
    list-style-type: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-details li i {
    margin-right: 10px;
    color: #0056b3;
}

.address-icon {
    color: #e74c3c;
}

.phone-icon {
    color: #3498db;
}

.whatsapp-icon {
    color: #25d366;
}

.email-icon {
    color: #d44638;
}

.hours-icon {
    color: #2ecc71;
}

.email-link {
    color: #d44638;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.contact-details h3 {
    font-size: 20px;
    margin-top: 20px;
    color: #2c3e50;
}

.contact-details p i {
    margin-right: 10px;
    vertical-align: middle;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form .submit-button {
    background-color: #0056b3;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .submit-button:hover {
    background-color: #003d80;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

/* Live Chat */
#tawkchat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

/* Timeline Section */
.timeline {
    position: relative;
    padding: 20px 0;
    margin: 30px 0;
    border-left: 4px solid #051650;
}

.timeline-event {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
}

.timeline-icon {
    position: absolute;
    left: -20px;
    top: 0;
    background-color: #051650;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
}

.timeline-content {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.timeline-content h4 {
    font-size: 18px;
    color: #051650;
    margin-bottom: 5px;
}

.timeline-content p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.timeline-event:hover .timeline-content {
    background-color: #051650;
    color: white;
    transform: scale(1.02);
}

.timeline-event:hover .timeline-content h4,
.timeline-event:hover .timeline-content p {
    color: white;
}

.timeline-event:hover .timeline-icon {
    background-color: #0056b3;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .timeline {
        border-left: none;
        padding-left: 5px;
    }

    .timeline-event {
        padding-left: 30px;
    }

    .timeline-icon {
        left: -15px;
    }

    .timeline-content {
        padding: 10px 20px;
    }

    .timeline-content h4 {
        font-size: 15px;
    }

    .timeline-content p {
        font-size: 13px;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.scroll-to-top-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.scroll-to-top-btn:focus {
    outline: none;
}

/* Accounting and Taxation Services */
.accounting-services h2,
.taxation-services h2,
.why-choose-us h2 {
    font-size: 2.4em;
    color: #4caf50;
    margin-bottom: 30px;
}

.accounting-services ul,
.taxation-services ul {
    list-style-type: none;
    padding-left: 0;
}

.accounting-services ul li,
.taxation-services ul li {
    margin-bottom: 30px;
    font-size: 1.3em;
    display: flex;
    align-items: flex-start;
    line-height: 1.8;
}

.accounting-services ul li i,
.taxation-services ul li i {
    color: #4caf50;
    margin-right: 20px;
    font-size: 1.8em;
}

.accounting-services ul li strong,
.taxation-services ul li strong {
    font-weight: bold;
}

.why-choose-us p {
    font-size: 1.3em;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    line-height: 1.8;
}

.why-choose-us i {
    color: #4caf50;
    margin-right: 20px;
    font-size: 1.8em;
}

/* Services Section */
section.services {
    background-color: #ffffff;
    padding: 60px 30px;
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

section.services h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #051650;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 1px;
}

section.services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

section.services li {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 25px;
    padding: 25px;
    border: 1px solid #e1e4e8;
    position: relative;
}

section.services h3 {
    font-size: 1.8rem;
    color: #051650;
    margin-bottom: 15px;
    font-weight: 600;
}

section.services ul ul {
    margin-top: 15px;
    padding-left: 25px;
}

section.services ul ul li {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

section.services ul ul li strong {
    color: #2c3e50;
    font-weight: 700;
}

section.services ul ul li::before {
    content: '➤';
    color: #2980b9;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1px;
}

@media (min-width: 768px) {
    section.services {
        padding: 80px 50px;
    }

    section.services h2 {
        font-size: 3.2rem;
    }

    section.services li {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    section.services h3 {
        font-size: 2rem;
    }
}

/* Main Carousel */
.carousel {
    position: relative;
    width: 950px;
    height: 550px;
    overflow: hidden;
    margin: 40px auto 25px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 0 0 50%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    padding: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: gray;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: black;
}

@media (max-width: 600px) {
    .carousel {
        width: 450px;
        margin: 40px auto 0;
    }

    .carousel-dots {
        margin: 0;
        padding: 0;
    }

    .dot {
        margin: 0 3px;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    .carousel-track {
        transition: transform 1s ease-in-out;
    }
}

/* Twitter Carousel */
.twitter-carousel {
    max-width: 800px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.twitter-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.twitter-carousel-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.twitter-carousel-dots {
    text-align: center;
    margin-top: 10px;
}

.twitter-dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.twitter-dot.active {
    background-color: #051650;
}

@media (max-width: 768px) {
    .twitter-carousel {
        max-width: 100%;
        padding: 0 10px;
    }

    .twitter-carousel-slide {
        padding: 0 5px;
    }
}

/* Twitter Alert */
.twitter-alert {
    max-width: 100%;
    margin: 30px auto;
    background: #ffffff;
    border: 1px solid #e6ecf0;
    border-radius: 12px;
    padding: 15px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.alert-heading {
    font-size: 18px;
    font-weight: bold;
    color: #051650;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.alert-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.alert-avatar {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.alert-details {
    display: flex;
    flex-direction: column;
}

.alert-username {
    font-weight: bold;
    color: #051650;
}

.alert-handle,
.alert-timestamp {
    color: #657786;
    font-size: 12px;
}

.alert-content {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #14171a;
}

.alert-content a {
    color: #051650;
    text-decoration: none;
}

.alert-content a:hover {
    text-decoration: underline;
}

.alert-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #e6ecf0;
}

.action-button {
    background: none;
    border: none;
    color: #051650;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.action-button:hover {
    color: #0d95e8;
}

.action-button i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .twitter-alert {
        padding: 10px;
    }

    .alert-heading {
        font-size: 16px;
    }

    .alert-content {
        font-size: 13px;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}