﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bowlby+One&family=Days+One&family=Lilita+One&family=Titan+One&display=swap');


body {
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(135deg, rgb(239 243 240) 0%, rgb(255 255 255) 100%);
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #5faee3;
    text-decoration: none;
}

h1,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h2,
h3 {
    font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
    background: linear-gradient(65deg, rgb(30 175 139), rgb(52 152 219));
    color: #f9f9f9;
    border-radius: 50%;
}

.back-to-top i {
    font-size: 28px;
    color: #ffffff;
    line-height: 0;
}

.back-to-top:hover {
    background: linear-gradient(65deg, rgb(15 118 93), rgb(16 125 198));
    color: white;
    transform: rotate(-45deg);
}

.back-to-top i:hover {
    color: white;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    z-index: 997;
    transition: all 0.5s ease;
    padding: 16px 0;
    background: linear-gradient(135deg, rgb(32 94 134), rgb(3 114 104 / 90%));
    width: 90%;
    border-radius: 60px;
    top: 30px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 53%);
    margin: 0px auto 0;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    top: 0;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    border: 0;
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    /* White logo text */
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #d1ffd3;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: inline-block;
    padding: 12px 20px;
    font-size: 17px;
    font-weight: 500;
    color: #f8f9fa;
    white-space: nowrap;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
    color: #ffffff;
    text-decoration: none;
}

.navbar li:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: #f8fcff;
    bottom: 7px;
    left: 15px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
}

.navbar li:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}


.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 10px 30px;
    margin-left: 30px;
    border-radius: 50px;
    color: white;
    background: #25d366;
    transition: all 0.3s ease;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    background: #d1ffd3;
    border: 2px solid #09601d;
    color: #000000;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #000000;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #header {
        box-shadow: 0px 2px 12px rgba(106, 91, 91, 0.0);
        border: 0px;
        width: 100%;
        border-radius: 0;
        top: 0;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(12, 70, 122, 0.9), rgba(0, 150, 136, 0.9));
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    text-align: center;
    font-size: 28px;
    color: #ffffff;
}

.navbar-mobile ul.list-border li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    margin: 18px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #4ed5da;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 0px;
    background: #000000;
    color: white;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #000000;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(12, 70, 122, 0.9), rgba(0, 150, 136, 0.9));
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: left;
    height: 100%;
    min-height: 100vh;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    max-width: 100%;
    margin-top: 15px;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
    text-decoration: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ffffff, #eeeeee);
    color: #3e3232;
    border: 2px solid white;
}

.hero-btn-primary:hover {
    background: transparent;
    transform: translateY(-3px);
    color: white;
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid white;
}

.hero-btn-secondary:hover {
    background: white;
    color: #3e3232;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-section .row {
        flex-direction: column-reverse;
    }

    .hero-content {
        text-align: center;
        padding: 10px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-cta-buttons {
        justify-content: center;
    }
}


/*--------------------------------------------------------------
# Tax Advisory Schedule (Timeline Style)
--------------------------------------------------------------*/

.tax-schedule {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-header h2 {
    font-size: 30px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.schedule-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
    margin: 20px 0;
    border-left: 4px solid #1e6084;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.timeline-icon {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1e6085;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    padding: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    background-color: #1eaf8b;
    transform: translateY(-50%) scale(1.1);
}

/* Timeline Content Styling */
.timeline-content {
    margin-left: 70px;
    max-width: 80%;
}

.timeline-content h4 {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.timeline-content a {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(45deg, #1eaf8b, #0066cc);
    color: white;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.timeline-content a:hover {
    background: linear-gradient(45deg, #17a079, #005bb5);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-timeline {
        padding: 20px;
    }

    .timeline-item {
        flex-direction: column;
        padding: 15px 0;
    }

    .timeline-content {
        margin-left: 0;
        text-align: center;
    }

    .timeline-icon {
        top: auto;
        left: auto;
        right: 100%;
        transform: translateX(50%);
    }

    .timeline-item:hover .timeline-icon {
        background-color: #1eaf8b;
        transform: translate(50%) scale(1.1);
    }

    .timeline-content a {
        width: 100%;
    }
}


/*--------------------------------------------------------------
# Features Section - Modern Design
--------------------------------------------------------------*/

.features {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border-left: 5px solid #1d5f84;
    /* Left border to create focus */
}

.feature-card .icon-wrapper {
    background-color: #1c6281;
    padding: 20px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: absolute;
    top: -25px;
    left: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .icon-wrapper {
    background-color: #1e76a7;
    top: -25px;
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.feature-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #1e6085;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
}

.feature-card:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .feature-card {
        padding: 20px;
    }

    .feature-card .icon-wrapper {
        font-size: 20px;
        padding: 15px;
        width: 40px;
        height: 40px;
    }

    .feature-card h4 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Tax Advisory Highlights Section
--------------------------------------------------------------*/

.tax-advisory-section {
    padding: 80px 0;
    background-color: #eaf3fb;
}

.highlight-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.highlight-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 60px;
    color: #007bff;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 28px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.highlight-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
}

/* Responsive design */
@media (max-width: 991px) {
    .highlight-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .highlight-card {
        margin-bottom: 20px;
        padding: 25px;
    }

    .highlight {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}


.section-title {
    text-align: left;
    padding-bottom: 25px;
}

.section-title h2 {
    font-size: 32px;
    position: relative;
    color: #3e3e3e;
    font-weight: 500;
    font-family: "Playfair Display", serif;
}

.section-title h4 {
    font-size: 40px;
    text-transform: uppercase;
    position: relative;
    color: #000000;
    font-family: 'Caladea', serif;
}

.section-title h4::after {
    content: "";
    width: 100px;
    height: 1px;
    background: #000000;
    display: inline-block;
}

.section-title h4::after {
    margin: 0 0 8px 15px;
}


.section-title p {
    margin: 15px 0 0 0;
}

@media screen and (max-width: 768px) {
    .section-title {
        padding-left: 20px;
    }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us {
    padding: 80px 0;
    background: #f8f9fa;
    background: linear-gradient(135deg, rgba(12, 70, 122, 0.9), rgba(0, 150, 136, 0.9));
    border-top-left-radius: 300px;
    border-bottom-right-radius: 300px;
    font-family: 'Poppins', sans-serif;
}

.about-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-image {
    flex: 0 0 40%;
    padding-right: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 0 0 60%;
    padding-left: 30px;
}

.about-us .section-header h2 {
    font-size: 36px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-us .section-header p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.features-list li i {
    margin-right: 10px;
    font-size: 22px;
    color: #ffffff;
}

.features-list li:hover {
    color: #B2EBF2;
    transform: translateX(5px);
}

.features-list li:hover i {
    color: #B2EBF2;
}

.about-contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.about-contact-btn:hover {
    background: linear-gradient(45deg, #134b78, #075b0d);
    transform: translateY(-5px);
    border: 2px solid #66b3f9;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-inner {
        flex-direction: column;
        align-items: center;
    }

    .about-us {
        border-top-left-radius: 250px;
        border-bottom-right-radius: 250px;
        font-family: 'Poppins', sans-serif;
    }

    .about-image {
        flex: 0 0 80%;
        margin-bottom: 30px;
    }

    .about-content {
        flex: 0 0 100%;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-header p {
    font-size: 18px;
    color: #777;
    margin-bottom: 50px;
    text-align: center;
}

/*--------------------------------------------------------------
# Service  Section
--------------------------------------------------------------*/
.services .nav-pills .nav-link {
    border: none;
    padding: 14px;
    font-size: 18px;
    color: #ffffff;
    background: #1b888e;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgb(48 52 57 / 55%);
}

.services .nav-pills .nav-link:hover,
.services .nav-pills .nav-link.active {
    background: #1e6084;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.services .nav-link i {
    color: #007bff;
    color: #ffffff;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.services .nav-pills .nav-link:hover i,
.services .nav-pills .nav-link.active i {
    color: #fff;
}

.services .service-description {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services .whatsapp-btn {
    text-align: left;
    margin-top: 30px;
}

.services .btn-whatsapp {
    display: inline-block;
    padding: 12px 30px;
    background-color: #128c7e;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services .btn-whatsapp:hover {
    background-color: #28b1a1;
    transform: scale(1.05);
    color: #fff;
    text-decoration: none;
}

.services .service-description:hover {
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.services .service-description h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.services .service-description p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.services .service-description ul.list-unstyled {
    margin-bottom: 20px;
    padding-left: 0;
}

.services .service-description ul.list-unstyled li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.services .service-description ul.list-unstyled li i {
    color: #1d7a8c;
}


.services .btn-custom i {
    font-size: 18px;
}

.services .nav-pills {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
}

.services .nav-pills .nav-link {
    padding: 14px;
    font-size: 15px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    justify-content: left;
    box-shadow: 0 6px 15px rgb(16 46 78 / 60%);
    min-width: 150px;
}


.services span {
    font-size: 24px;
    text-align: left;
}

@media (max-width: 1024px) {

    .services span {
        font-size: 19px;
    }
}


@media (max-width: 768px) {
    .services .nav-pills .nav-link i {
        font-size: 20px;
    }

    .services .nav-pills .nav-link h4 {
        font-size: 14px;
    }

    .services span {
        font-size: 17px;
    }
}



@media (min-width: 768px) {

    .services .nav-pills {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (min-width: 1024px) {
    .services .nav-pills {
        grid-template-columns: repeat(1, 1fr);
    }
}


/*--------------------------------------------------------------
#Why Choose US section
--------------------------------------------------------------*/

.why-choose-us-tax {
    background: linear-gradient(45deg, #226188, #1b8b8f);
    padding-top: 50px;
    padding-bottom: 50px;
    border-top-left-radius: 250px;
    border-bottom-right-radius: 250px;
}

.why-choose-us-tax .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    display: inline-block;
}

.why-choose-us-tax .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80%;
    height: 3px;
    background-color: #ffffff;
}

.why-choose-us-tax .section-description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: left;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.icon-container i {
    font-size: 24px;
    color: #000000;
    transition: color 0.3s ease;
}

.icon-container:hover i {
    color: #000000;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.feature-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .why-choose-us-tax .feature-text {
        text-align: center;
    }

    .why-choose-us-tax .feature-text .ms-4 {
        margin-left: 0;
        margin-top: 10px;
    }

    .why-choose-us-tax .image-container img {
        max-width: 100%;
    }
}

/*--------------------------------------------------------------
# Pricing  Section
--------------------------------------------------------------*/


.pricing-section {
    background-color: #f9f9f9;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
    text-align: center;
}

.pricing-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}

.pricing-title {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 32px;
    font-weight: 700;
    color: #1f758b;
    margin-bottom: 20px;
}

.pricing-price span {
    font-size: 18px;
    color: #777;
}

.pricing-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.pricing-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    justify-content: left;
}

.pricing-features li i {
    margin-right: 10px;
}


.card-footer {
    margin-top: auto;
    font-size: 14px;
    color: #605f5f;
    margin-bottom: 10px;
}

.featured {
    border: 2px solid #1f6085;
    background-color: #f0f8ff;
}

.featured .pricing-title {
    color: #1f758b;
}


/* Responsive Design */


.pricing-section .col-md-6 {
    margin-bottom: 20px;
}


@media (max-width: 768px) {
    .pricing-section .col-md-6 {
        margin-bottom: 30px;
    }
}


/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/
.testimonials {
    background-color: #f9f9f9;
    padding: 60px 0;
    position: relative;
}

.testimonials .section-title {
    margin-bottom: 50px;
}

.testimonials h4 {
    font-size: 24px;
    color: #4c4c4c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.testimonials h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    width: calc(25% - 30px);
    background-color: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    background: linear-gradient(45deg, #007d5e, #0066cc);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.testimonial-header .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-bottom: 15px;
}

.testimonial-header h3 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
}

.testimonial-header p {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-body {
    padding: 20px;
    text-align: center;
    border-radius: 0 0 12px 12px;
}

.testimonial-body p {
    font-size: 15px;
    color: #434242;
    font-style: italic;
    margin-bottom: 10px;
}

/* Media Queries */
@media (max-width: 1224px) {
    .testimonial-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 750px) {
    .testimonial-card {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .testimonials h2 {
        font-size: 28px;
    }

    .testimonials h4 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-container {
    background: linear-gradient(45deg, #07654d, #0052a3);
    padding: 40px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.contact-box:hover {
    transform: translateY(-10px);
}

.contact-box h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.contact-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s ease, transform 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00d4b6;
    transform: scale(1.02);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s ease;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -12px;
    font-size: 14px;
    color: #00d4b6;
    background: #0c4666;
    padding: 2px 6px;
    border-radius: 6px;
}

.contact-btn {
    background: #128c7e;
    color: #fff;
    font-size: 18px;
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.contact-btn:hover {
    background: #018170;
    transform: scale(1.05);
}

.contact-info {
    max-width: 550px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

.contact-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.contact-info .whatsapp-btn {
    background: #128c7e;
    color: #fff;
    font-size: 18px;
    padding: 14px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 44%);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-info .whatsapp-btn i {
    margin-right: 10px;
}


.contact-info .whatsapp-btn:hover {
    box-shadow: 0 8px 20px rgb(0 0 0 / 0%);
}


.button-area span {
    font-size: 17px;
    margin-top: 0.5rem;
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-box,
    .contact-info {
        width: 100%;
    }
}


/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/

.faq {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-header p {
    font-size: 18px;
    color: #777;
    margin-bottom: 50px;
    text-align: center;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #2f89b9;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #1eaf8b;
}


.faq-question i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 20px;
    font-size: 16px;
    color: #555;
    display: none;
}

.faq-item.active .faq-question {
    background-color: #1eaf8b;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    transition: max-height 0.3s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Footer Section (Centered, Modern, with Logo)
--------------------------------------------------------------*/
.modern-footer {
    background: linear-gradient(45deg, #026e53, #015ab2);
    color: #fff;
    padding: 30px 0px 10px 0px;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
}

.footer-info p {
    font-size: 19px;
    color: rgb(255 255 255);
    max-width: 600px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.footer-links a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #00d4b6;
    transform: translateY(-5px);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}

.footer-social a {
    color: #fff;
    font-size: 30px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #00d4b6;
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.6;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        text-align: left;
        gap: 20px;
    }

    .footer-container {
        padding: 0px 20px;
    }

    .footer-social {
        gap: 20px;
    }

    .footer-logo {
        width: 100%;
        max-width: 300px;
        text-align: left;
    }

    .footer-info p {
        font-size: 16px;
    }
}


.pt-cus {
    margin-top: 100px;
    margin-bottom: 00px;
}

.footer-links-white li>a {
    color: white !important;
}