/* ========================================
   Just TaxOn - Main Stylesheet
   ======================================== */

/* Global Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C3E50;
    --secondary-color: #24cc63;
    --accent-color: #E74C3C;
    --background-color: #ECF0F1;
    --text-white: #FFFFFF;
    --text-dark: #2C3E50;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========================================
   Topper Section
   ======================================== */

.topper {
    background-color: #24cc63; /* Changed background color */
    color:black;
    padding: 12px 0;
    font-size: 14px;
}

.topper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topper-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.topper-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topper-left ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.topper-left ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topper-left ul li i {
    color: white;
}

.topper-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topper-nav {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}
li i.fas {
    color: black;
}


.topper-nav li a {
    text-decoration: none;
    color: black;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
    padding: 5px 0;
}

.topper-nav li a:hover {
    color: var(--secondary-color);
}

.topper-nav li a.active {
    color:black;
}

.topper-nav li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    color: var(--text-white);
    font-size: 14px;
    transition: var(--transition);
}

.social-media a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ========================================
   Fixed Header Styles
   ======================================== */

.fixed-header {
    background-color: white;
    color: var(--text-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
padding: 6px 15px;
    
}

.fixed-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Logo - Updated to image */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 30px;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

/* Navigation - Fixed to prevent line break */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 18px;
    align-items: center;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    background:white;
}

.main-nav ul li {
    position: relative;
    white-space: nowrap;
}

.main-nav ul li a {
    text-decoration: none;
    color:black;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 5px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav ul li a:hover {
    color:green;
    background-color:white;
}

.main-nav ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Dropdown Menu - Fixed to Column Layout */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    width: 100%;
}

.dropdown-menu li a:hover {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    padding-left: 25px;
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: black;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 15px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
    color: var(--text-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(52, 152, 219, 0.1)"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #bdc3c7;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    background-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 14px;
    color: #bdc3c7;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Services Section
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
}

.service-card .card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: #7f8c8d;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #7f8c8d;
    font-size: 14px;
}

.service-features li i {
    color: var(--secondary-color);
    font-size: 12px;
}

.service-card .btn-outline {
    padding: 8px 20px;
    font-size: 14px;
}

/* ========================================
   About Section
   ======================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 30px;
    color: #7f8c8d;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 30px;
    color: var(--secondary-color);
    min-width: 40px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-item p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    background-color: var(--text-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 0 auto;
}

.testimonial-content {
    margin-bottom: 25px;
}

.rating {
    color: #f39c12;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #7f8c8d;
    line-height: 1.8;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: #2980b9;
    transform: scale(1.1);
}

/* ========================================
   Contact Section
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    min-width: 30px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* ========================================
   Footer Styles
   ======================================== */

.footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    position: relative;
}

/* Footer Top */
.footer-top {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Footer Logo */
.footer-logo h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo h2 span {
    color: var(--secondary-color);
}

.footer-logo p {
    color: #bdc3c7;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Footer Contact */
.footer-contact ul {
    list-style: none;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-contact ul li i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-top: 3px;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a i {
    color: var(--secondary-color);
    font-size: 10px;
}

.footer-links li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 30px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background-color: var(--secondary-color);
    color: var(--text-white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Footer Social */
.footer-social h4 {
    font-size: 16px;
    margin: 20px 0 15px;
    color: var(--text-white);
}

.footer-social .social-links {
    display: flex;
    list-style: none;
    gap: 12px;
}

.footer-social .social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social .social-links li a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p {
    margin: 0;
    color: #bdc3c7;
    font-size: 14px;
}

.footer-bottom-content p i {
    margin: 0 5px;
}

/* ========================================
   Back to Top Button
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

/* ========================================
   Buttons & Utilities
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color) !important;
    color: var(--text-white) !important;
    padding: 10px 25px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    display: inline-block !important;
    text-align: center !important;
}

.btn-primary:hover {
    background-color: #2980b9 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

/* Section Padding */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background-color: var(--text-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card p {
    color: #7f8c8d;
    line-height: 1.8;
}

/* Form Styling */
.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form Error Messages */
.error-message {
    color: var(--accent-color);
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* Background Colors */
.bg-white {
    background-color: var(--text-white);
}

/* Clearfix */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* Text Colors */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-white { color: var(--text-white); }

/* Spacing */
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }










/* ========================================
   Scroll Animations
   ======================================== */

/* Add aos.css import in header.php for animations */
/* Or use custom animations below */

/* Custom Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Hero Section - Enhanced
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
    color: var(--text-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(52, 152, 219, 0.1)"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    background: linear-gradient(to right, var(--text-white), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #bdc3c7;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .btn-outline {
    border: 2px solid var(--text-white);
    background-color: transparent;
    color: var(--text-white);
}

.hero-buttons .btn-outline:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:hover {
    background-color: rgba(52, 152, 219, 0.15);
    transform: translateY(-8px);
    border-color: var(--secondary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--text-white);
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background-color: var(--secondary-color);
    top: -100px;
    left: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background-color: var(--accent-color);
    bottom: -50px;
    right: -50px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    bottom: 100px;
    left: 20%;
    animation: floatShape 30s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, 50px); }
    50% { transform: translate(0, 100px); }
    75% { transform: translate(-50px, 50px); }
}

/* ========================================
   Services Section
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 45px 30px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.2);
}

.service-card .card-icon {
    font-size: 55px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 25px;
    color: #7f8c8d;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #7f8c8d;
    font-size: 14px;
    transition: var(--transition);
}

.service-features li:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.service-features li i {
    color: var(--secondary-color);
    font-size: 14px;
}

.service-card .btn-outline {
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 25px;
}

/* ========================================
   About Section
   ======================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 35px;
    color: #7f8c8d;
    line-height: 1.8;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background-color: rgba(52, 152, 219, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 35px;
    color: var(--secondary-color);
    min-width: 50px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.feature-item p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    background: linear-gradient(135deg, var(--text-white) 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 0 auto;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.testimonial-content {
    margin-bottom: 30px;
}

.rating {
    color: #f39c12;
    font-size: 24px;
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: #7f8c8d;
    line-height: 1.8;
    font-size: 17px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-info h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
}

.slider-btn:hover {
    background-color: #2980b9;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

/* ========================================
   Contact Section
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 32px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(52, 152, 219, 0.03);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background-color: rgba(52, 152, 219, 0.08);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 28px;
    color: var(--secondary-color);
    min-width: 40px;
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    color: #7f8c8d;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--text-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 30px;
}

/* Rest of the CSS remains the same... */




/* ========================================
   Income Tax Filing Page Styles
   ======================================== */

/* Hero Carousel */
.hero-carousel {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-carousel .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-carousel .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-carousel .hero-content p {
    font-size: 18px;
    max-width: 650px;
    margin-bottom: 35px;
}

.hero-carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 3;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}

.carousel-btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--text-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--text-white);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 15px;
}

/* Service Types Grid */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-type-card {
    background-color: var(--text-white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
    border-color: var(--secondary-color);
}

.service-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--text-white);
}

.service-type-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-type-card p {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #7f8c8d;
    font-size: 13px;
}

.service-list li i {
    color: var(--secondary-color);
    font-size: 12px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--text-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-white);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-content p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
    color: var(--text-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(52, 152, 219, 0.1)"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text-white), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #bdc3c7;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 30px;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background-color: var(--text-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    background-color: rgba(52, 152, 219, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 18px;
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.show {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #7f8c8d;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid,
    .service-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-carousel .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-carousel .hero-content p {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .carousel-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-carousel .container {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .features-grid,
    .service-types-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        gap: 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}