﻿/********** Template CSS **********/
:root {
    --primary: #FF6B35;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #FFF4F0;
    --dark: #1A1A1A;
}

/*** Brand color overrides to keep theme consistent ***/
.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: all 0.3s ease;
}

/* =========================
   Logo
========================= */
.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 110px;              /* keep logo strong, reduce vertical space */
    width: auto;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.04);
}

/* =========================
   Navbar container
========================= */
.navbar {
    min-height: 110px;          /* tighter height while keeping structure */
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
}

/* Scroll state */
.navbar.scrolled {
    min-height: 82px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .navbar-brand img {
    height: 80px;
}

/* =========================
   Top bar
========================= */
.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.07);
}

/* =========================
   Nav links (desktop)
========================= */
.navbar .navbar-nav {
    gap: 6px;
}

.navbar .navbar-nav .nav-link {
    padding: 0 14px;
    line-height: 110px;         /* keep in sync with navbar height */
    color: var(--tertiary);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.navbar.scrolled .navbar-nav .nav-link {
    line-height: 82px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 26px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
    opacity: 0.6;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* =========================
   Dropdown arrow (CSS only)
========================= */
.navbar .dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

@media (min-width: 992px) {
    .navbar .nav-item:hover .dropdown-toggle::after {
        transform: rotate(-135deg);
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 991.98px) {

    .fixed-top {
        top: 0;
    }

    .fixed-top.wow {
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important;
    }

    .navbar {
        min-height: 80px;
        background: #ffffff;
    }

    .navbar-brand img {
        height: 65px;
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 8px;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        background: #ffffff;
        padding: 0.75rem 0.5rem 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 28px rgba(18, 31, 51, 0.08);
    }

    .navbar .navbar-nav .nav-link {
        line-height: normal;
        padding: 12px 16px;
        width: 100%;
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-link::after {
        bottom: 8px;
        left: 24px;
        right: 24px;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        background: rgba(255, 107, 53, 0.08);
    }
}

/* =========================
   Desktop dropdown animation
========================= */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: all 0.35s ease;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/header.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/
.facts {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(45, 45, 45, 0.1) 100%);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(45, 45, 45, 0.1) 100%);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}

/* Modern Business Consulting Enhancements */
.hero-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #2D2D2D 100%);
}

.tech-focused-card {
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.tech-focused-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--primary);
}

.future-proofing-text {
    background: linear-gradient(135deg, var(--primary), #2D2D2D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.service-tab-modern {
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-tab-modern:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

.service-tab-modern.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.business-consulting-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #2D2D2D 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    color: white;
    text-align: center;
}

.insight-driven-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
}

/* Enhanced animations for business consulting */
@keyframes businessPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.business-pulse {
    animation: businessPulse 2s infinite;
}

/* Modern button styles for consulting */
.btn-consulting {
    background: linear-gradient(135deg, var(--primary), #2D2D2D);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-consulting:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Strategic insights styling */
.strategic-insights {
    position: relative;
    overflow: hidden;
}

.strategic-insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.strategic-insights:hover::before {
    left: 100%;
}

/* Enhanced navbar for business consulting */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.navbar-scrolled .navbar-brand {
    color: var(--primary) !important;
}

.navbar-scrolled .nav-link {
    color: var(--tertiary) !important;
}

.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active {
    color: var(--primary) !important;
}

/* Form validation styles */
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Business consulting specific animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out;
}

/* Carousel text readability improvements */
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}




.carousel-caption h1 {
    color: #2D2D2D !important;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption .lead {
    color: #2D2D2D !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Carousel button alignment */
.carousel-caption .btn {
    margin-top: 1rem;
    margin-right: 1rem;
    display: inline-block;
    vertical-align: top;
}

.carousel-caption .btn-outline-light {
    border-color: #2D2D2D;
    color: #2D2D2D;
}

.carousel-caption .btn-outline-light:hover {
    background-color: #2D2D2D;
    border-color: #2D2D2D;
    color: white;
}

/* Ensure carousel doesn't overlap with navbar */
.carousel-container {
    margin-top: 110px;
    padding-top: 20px !important;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .carousel-caption {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .carousel-caption h1 {
        font-size: 2rem !important;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
    }
}
/* Contact us FAQ section styling */

.faq-section {
     /* dark black background */

    border-radius: 15px;
    color: #fff;
  }

  
  .accordion-item {
    background: rgba(255, 140, 0, 0.05); /* very light orange overlay */
    border: 1px solid rgba(255, 140, 0, 0.2);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .accordion-item:hover {
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.5); /* glowing orange on hover */
  }
  
  .accordion-button {
    background: rgba(255, 140, 0, 0.08); /* subtle orange */
    color: #161616; /* orange text */
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .accordion-button:not(.collapsed) {
    background: rgba(255, 140, 0, 0.3); /* active orange background */
    color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
  }
  
  .accordion-body {
    background: rgba(0,0,0,0.05); /* very subtle black overlay */
    color: #030303; /* light orange for text inside */
  }
  
  .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.5);
  }

  .accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 1.2rem;
    color: #ffa500;
    font-weight: bold;
  }
  
  .accordion-button:not(.collapsed)::after {
    content: '-';
  }

  .footer .text-end .btn-link {
    text-align: right;
  }

  .form-message {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    animation: fadeSlideIn 0.3s ease-out;
}

.form-success {
    background-color: #e6f4ea;
    color: #1e7e34;
    border-left: 5px solid #28a745;
}

.form-error {
    background-color: #fdecea;
    color: #842029;
    border-left: 5px solid #dc3545;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* contact us faq styling end */


/* Form Message Styles */
.form-message {
    animation: fadeSlideIn 0.3s ease-in-out;
    border-radius: 8px;
    padding: 16px 20px;
    border-left: 4px solid;
    background-color: #f8f9fa;
}

.form-success {
    border-left-color: #28a745;
    background-color: #f0f8f5;
    color: #1e5631;
}

.form-success strong {
    color: #155724;
    font-weight: 600;
}

.form-error {
    border-left-color: #dc3545;
    background-color: #fef5f5;
    color: #721c24;
}

.form-error strong {
    color: #a51f1f;
    font-weight: 600;
}

/* Button Loading State */
.btn:disabled {
    opacity: 0.8;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.25em;
}

.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    animation: fadeSlideIn 0.3s ease-out;
}

.form-success {
    background-color: #e6f4ea;
    color: #1e7e34;
    border-left: 5px solid #28a745;
}

.form-error {
    background-color: #fdecea;
    color: #842029;
    border-left: 5px solid #dc3545;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Image Wrapper */
.faq-image-wrapper {
    position: relative;
    padding: 20px;
}

/* Main Image Container */
.faq-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    z-index: 2;
}

/* Main Image Effects */
.faq-main-image {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    display: block;
    width: 110%;
    height: auto;
    filter: brightness(1) contrast(1.05);
    min-height: 400px;

}

.faq-image-container:hover .faq-main-image {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Image Overlay on Hover */
.faq-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(233, 60, 5, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 15px;
    z-index: 1;
}

.faq-image-container:hover::before {
    opacity: 1;
}

/* Decorative Circle 1 - Top Right */
.decorative-circle-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FF6B35 0%, #E93C05 100%);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

/* Decorative Circle 2 - Bottom Left */
.decorative-circle-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E93C05 0%, #FF6B35 100%);
    border-radius: 50%;
    bottom: -15px;
    left: -15px;
    opacity: 0.15;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* Decorative Square - Top Left */
.decorative-square {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #FF6B35;
    top: 50%;
    left: -30px;
    opacity: 0.08;
    transform: rotate(45deg);
    z-index: 0;
    animation: rotate 10s linear infinite;
}

.decorative-square-2 {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #FF6B35;
    top: 100px;
    left: 60px;
    opacity: 0.08;
    transform: rotate(45deg);
    z-index: 0;
    animation: rotate 10s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

/* FAQ Badge - Top Left Corner of Image */
.faq-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #E93C05 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    z-index: 3;
    animation: bounceIn 1s ease-out;
    transition: all 0.3s ease;
}

.faq-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.faq-badge i {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.faq-badge span {
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Floating Info Card - Bottom Right */
.floating-info-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: slideInRight 1s ease-out;
    animation-delay: 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
    transition: all 0.3s ease;
    color: #000000;
}

.floating-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.floating-info-card .icon-wrapper {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FF6B35 0%, #E93C05 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: rotate 3s linear infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-info-card h6 {
    color: #1A1A1A;
    font-weight: 600;
}

/* FAQ Accordion Styling */
.faq-accordion .faq-item {
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.faq-accordion .faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-accordion .faq-button {
    transition: all 0.3s ease;
    border: none;
    background: white;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
}

.faq-accordion .faq-button:not(.collapsed) {
    background: linear-gradient(135deg, #FFF4F0 0%, #ffffff 100%);
    color: #1A1A1A;
    box-shadow: none;
}

.faq-accordion .faq-button:hover {
    background: #FFF4F0;
}

.faq-accordion .faq-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.15);
}

.faq-accordion .faq-button i {
    transition: transform 0.3s ease;
}

.faq-accordion .faq-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    color: #555555;
    line-height: 1.8;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Staggered Animation for FAQ Items */
.faq-item:nth-child(1) {
    animation: slideInRight 0.5s ease-out;
    animation-delay: 0.1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.faq-item:nth-child(2) {
    animation: slideInRight 0.5s ease-out;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.faq-item:nth-child(3) {
    animation: slideInRight 0.5s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.faq-item:nth-child(4) {
    animation: slideInRight 0.5s ease-out;
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.faq-item:nth-child(5) {
    animation: slideInRight 0.5s ease-out;
    animation-delay: 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .faq-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .floating-info-card {
        bottom: 15px;
        right: 15px;
        padding: 12px 15px;
    }
    
    .faq-badge {
        top: 15px;
        left: 15px;
        padding: 10px 15px;
    }
    
    .decorative-circle-1,
    .decorative-circle-2 {
        display: none;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 2rem auto;
    background: #0f172a;
    isolation: isolate;
}

.why-choose-bg-image {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(130deg, rgba(10, 20, 36, 0.88), rgba(17, 30, 52, 0.76)),
        url('../img2/business-talks.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.02);
}

.why-choose-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0) 36%),
        radial-gradient(circle at 85% 18%, rgba(255, 107, 53, 0.18) 0, rgba(255, 107, 53, 0) 35%),
        repeating-linear-gradient(
            -30deg,
            rgba(255, 255, 255, 0.045) 0 1px,
            rgba(255, 255, 255, 0) 1px 14px
        );
    pointer-events: none;
}

.why-choose-us-section .text-white-75 {
    color: rgba(235, 243, 255, 0.88) !important;
}

.why-choose-us-section .why-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(173, 196, 226, 0.34) !important;
    border-radius: 18px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px rgba(4, 12, 24, 0.42);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
    animation: whyCardRise 0.65s ease-out both;
}

.why-choose-us-section .why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.32s ease;
}

.why-choose-us-section .why-card::after {
    content: "";
    position: absolute;
    inset: -70% auto auto -140%;
    width: 130%;
    height: 220%;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0) 65%);
    transform: rotate(10deg);
    opacity: 0;
    transition: left 0.6s ease, opacity 0.35s ease;
    pointer-events: none;
}

.why-choose-us-section .why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 174, 135, 0.78) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.12) 100%) !important;
    box-shadow: 0 22px 42px rgba(7, 19, 35, 0.52), 0 0 0 1px rgba(255, 126, 74, 0.26);
}

.why-choose-us-section .why-card:hover::before {
    opacity: 0.92;
}

.why-choose-us-section .why-card:hover::after {
    left: 105%;
    opacity: 1;
}

.why-choose-us-section .why-card .icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff824f 0%, #ff6b35 52%, #e64917 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.34);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease;
}

.why-choose-us-section .why-card:hover .icon-wrapper {
    transform: translateY(-2px) scale(1.08) rotate(4deg);
    box-shadow: 0 14px 28px rgba(255, 107, 53, 0.5);
}

.why-choose-us-section .why-card .icon-wrapper i {
    color: #fff;
    font-size: 1.5rem;
}

.why-choose-us-section .why-card h4 {
    color: #f7fbff;
    font-weight: 600;
    font-size: 1.12rem;
    line-height: 1.35;
    margin-bottom: 0.85rem !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    transition: color 0.28s ease, text-shadow 0.28s ease;
}

.why-choose-us-section .why-card p {
    color: rgba(231, 241, 255, 0.9);
    line-height: 1.62;
    margin-bottom: 0;
    font-size: 0.98rem;
    transition: color 0.28s ease;
}

.why-choose-us-section .why-card:hover h4 {
    color: #ffd9c4;
    text-shadow: 0 2px 10px rgba(255, 140, 89, 0.35);
}

.why-choose-us-section .why-card:hover p {
    color: #f5f9ff;
}

.why-choose-us-section .row > [class*="col-"]:nth-child(1) .why-card { animation-delay: 0.08s; }
.why-choose-us-section .row > [class*="col-"]:nth-child(2) .why-card { animation-delay: 0.16s; }
.why-choose-us-section .row > [class*="col-"]:nth-child(3) .why-card { animation-delay: 0.24s; }
.why-choose-us-section .row > [class*="col-"]:nth-child(4) .why-card { animation-delay: 0.32s; }
.why-choose-us-section .row > [class*="col-"]:nth-child(5) .why-card { animation-delay: 0.4s; }
.why-choose-us-section .row > [class*="col-"]:nth-child(6) .why-card { animation-delay: 0.48s; }

@keyframes whyCardRise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .why-choose-us-section {
        border-radius: 24px;
    }

    .why-choose-bg-image {
        transform: none;
    }

    .why-choose-us-section .why-card {
        border-radius: 16px !important;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
    }
}


/* Index about section */
.about-img {
    height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.about-img:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Homepage services section cleanup: align to page grid, light theme, centered content */
.service-section {
    padding: 90px 0;
    background: #ffffff;
}

.animated-background {
    width: min(1320px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 22px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 140, 92, 0.24), transparent 42%),
        radial-gradient(circle at 88% 85%, rgba(255, 107, 53, 0.2), transparent 44%),
        linear-gradient(155deg, #fff1e8 0%, #ffe3d1 50%, #ffd2b3 100%);
    box-shadow: 0 16px 36px rgba(233, 60, 5, 0.14);
}

.animated-background::before {
    content: none;
}

.logo-layout {
    display: grid;
    grid-template-columns: minmax(190px, 230px) minmax(0, 1fr) minmax(190px, 230px);
    gap: 22px;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.left-services-column,
.right-services-column {
    width: auto;
    text-align: center;
}

.services-column {
    gap: 12px;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.86);
    color: #2a3748;
    padding: 14px 16px;
    min-height: 56px;
    line-height: 1.3;
    margin: 0;
}

.service-btn:hover {
    border-color: rgba(255, 107, 53, 0.7);
    box-shadow: 0 10px 22px rgba(255, 107, 53, 0.2);
    background: #ffffff;
}

.service-btn.active {
    border-color: rgba(255, 107, 53, 0.9);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(233, 60, 5, 0.9));
    color: #ffffff;
}

.content-section {
    min-height: 360px;
    max-width: none;
    margin: 0;
    padding: 34px 30px;
    border-radius: 22px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 239, 0.66)),
        radial-gradient(circle at top right, rgba(255, 170, 140, 0.16), rgba(255, 255, 255, 0.4));
    box-shadow: 0 16px 34px rgba(255, 107, 53, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content-section .tab-pane {
    width: 100%;
}

.content-section h3 {
    color: #1f2a36;
}

.content-section p {
    color: #4a5a6b;
}

@media (max-width: 991.98px) {
    .animated-background {
        width: min(1320px, calc(100% - 1rem));
        border-radius: 22px;
    }

    .logo-layout {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .services-column {
        gap: 10px;
    }

    .content-section {
        grid-column: 1 / -1;
        order: -1;
    }
}

@media (max-width: 576px) {
    .animated-background {
        border-radius: 18px;
    }

    .logo-layout {
        grid-template-columns: 1fr;
    }

    .services-column {
        gap: 8px;
    }
}

/* Services mega dropdown */
.navbar .service-mega-wrapper {
    position: static;
}

.navbar .service-mega-menu {
    width: min(1220px, 94vw);
    max-width: calc(100vw - 2rem);
    left: 50% !important;
    transform: translateX(-50%) !important;
    border: 1px solid rgba(255, 107, 53, 0.16);
    border-radius: 16px;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 16px 34px rgba(18, 31, 51, 0.12);
}

.service-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

@media (min-width: 992px) {
    .navbar .navbar-nav {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .service-mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-mega-section {
    padding: 0.25rem;
}

.service-mega-title {
    display: block;
    color: #1f2a36;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    text-decoration: none;
}

.service-mega-title:hover {
    color: var(--primary);
}

.service-mega-menu .dropdown-item {
    white-space: normal;
    padding: 0.24rem 0;
    color: #4a5a6b;
    font-size: 0.92rem;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.service-mega-menu .dropdown-item:hover {
    color: var(--primary);
    background: transparent;
}

.service-mega-menu .service-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 2px;
}

.service-mega-menu .service-icon path,
.service-mega-menu .service-icon rect,
.service-mega-menu .service-icon circle,
.service-mega-menu .service-icon line,
.service-mega-menu .service-icon ellipse {
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 991.98px) {
    .navbar .service-mega-wrapper {
        position: relative;
    }

    .navbar .service-mega-menu {
        width: 100%;
        left: 0 !important;
        transform: none;
        border-radius: 12px;
        margin-top: 0.4rem;
        max-height: 62vh;
        overflow-y: auto;
    }

    .service-mega-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .service-mega-title {
        font-size: 0.96rem;
        margin-bottom: 0.2rem;
    }

    .service-mega-menu .dropdown-item {
        font-size: 0.88rem;
        padding: 0.2rem 0;
    }
}
/* ======================================================
   ABOUT SECTION - CLEAN GEOMETRIC (NO GLASS)
   ====================================================== */

/* ---------- Outer section ---------- */
.about-bg {
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
    padding: 48px 0;
    border-radius: 32px;

    /* visible dotted pattern */
    background-image:
        radial-gradient(
            rgba(245, 158, 11, 0.25) 1.6px,
            transparent 1.6px
        );
    background-size: 26px 26px;
}

/* ---------- Large static corner bubble ---------- */
.about-bg::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    top: -140px;
    left: -140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

/* ---------- Floating animated shapes ---------- */
.about-bg .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    opacity: 0.30;
    filter: blur(0.4px);
    z-index: 1;
    pointer-events: none;

    animation:
        microDrift 3s ease-in-out infinite,
        floatMedium 14s cubic-bezier(.4,0,.2,1) infinite;
}

/* individual bubbles */
.about-bg .shape-1 {
    width: 140px;
    height: 140px;
    top: 18%;
    left: 8%;
    animation:
        microDrift 2.8s ease-in-out infinite,
        floatSlow 16s cubic-bezier(.4,0,.2,1) infinite;
}

.about-bg .shape-2 {
    width: 90px;
    height: 90px;
    bottom: 22%;
    left: 26%;
    animation:
        microDrift 2.5s ease-in-out infinite,
        floatMedium 12s cubic-bezier(.4,0,.2,1) infinite;
    animation-delay: -4s;
}

.about-bg .shape-3 {
    width: 180px;
    height: 180px;
    top: 32%;
    right: 10%;
    animation:
        microDrift 3.4s ease-in-out infinite,
        floatSlow 20s cubic-bezier(.4,0,.2,1) infinite;
    animation-delay: -7s;
}

.about-bg .shape-4 {
    width: 60px;
    height: 60px;
    bottom: 14%;
    right: 32%;
    animation:
        microDrift 2.2s ease-in-out infinite,
        floatFast 9s linear infinite;
    animation-delay: -3s;
}

/* ---------- Organic blob ---------- */
.about-bg .shape-blob {
    position: absolute;
    width: 220px;
    height: 160px;
    top: 52%;
    left: -60px;
    border-radius: 60% 40% 30% 70%;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    opacity: 0.22;
    z-index: 1;
    pointer-events: none;
    animation:
        blobDrift 24s ease-in-out infinite,
        rotatePulse 6s ease-in-out infinite;
}

/* ---------- Content layering ---------- */
.about-bg > .container {
    position: relative;
    z-index: 2;
}

/* ---------- Solid content card (NO glass) ---------- */
/* ---------- Content surface (TRANSPARENT, NOT GLASS) ---------- */
#about-us {
    background: rgba(255, 255, 255, 0.78); /* critical */
    border-radius: 24px;
    padding: 48px;

    /* subtle separation without blocking background */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06);

    /* soft edge so shapes bleed through */
    outline: 1px solid rgba(255, 255, 255, 0.35);
    position: relative;
}

#about-us::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0)
    );
    pointer-events: none;
}

/* text contrast */
#about-us h2,
#about-us h3,
#about-us h4 {
    color: #0f172a;
}

#about-us p,
#about-us span {
    color: #374151;
}

/* ---------- Animations ---------- */
@keyframes floatSlow {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(28px, -58px); }
    100% { transform: translate(0, 0); }
}

@keyframes floatMedium {
    0%   { transform: translate(0, 0); }
    33%  { transform: translate(-38px, -48px); }
    66%  { transform: translate(32px, 28px); }
    100% { transform: translate(0, 0); }
}

@keyframes floatFast {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(48px, -28px); }
    50%  { transform: translate(-28px, -58px); }
    75%  { transform: translate(38px, 28px); }
    100% { transform: translate(0, 0); }
}

@keyframes microDrift {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(3px, -2px); }
    50%  { transform: translate(-2px, 2px); }
    75%  { transform: translate(2px, 1px); }
    100% { transform: translate(0, 0); }
}

@keyframes blobDrift {
    0%   { transform: translate(0, 0) rotate(0deg); }
    40%  { transform: translate(64px, -44px) rotate(8deg); }
    70%  { transform: translate(-44px, 34px) rotate(-6deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes rotatePulse {
    0%   { rotate: 0deg; }
    50%  { rotate: 1.5deg; }
    100% { rotate: 0deg; }
}

/* ---------- Mobile safety ---------- */
@media (max-width: 768px) {
    .about-bg .floating-shape,
    .about-bg .shape-blob {
        display: none;
    }
}

/* ========================================================================
   VAT FILING PAGE - MODERN FINTECH DESIGN
   ======================================================================== */

/* Visual Cards */
.vat-filing-visual-card {
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.vat-filing-visual-card:hover {
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15) !important;
    transform: translateY(-5px);
}

.vat-filing-requirements-card {
    border: 1px solid rgba(0, 102, 204, 0.1);
}

/* Why Section Background */
.vat-filing-why-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(229, 90, 43, 0.15) 100%);
    overflow: hidden;
}

.vat-filing-why-bg {
    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 1440 320\"><path fill=\"rgba(255,255,255,0.15)\" d=\"M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>') no-repeat;
    background-size: cover;
    background-position: bottom;
}

.vat-filing-why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 68, 153, 0.2) 0%, transparent 50%);
}

/* Cards */
.vat-filing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s ease;
}

.vat-filing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.2);
    border: 1px solid rgba(0, 102, 204, 0.5) !important;
}

.vat-filing-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vat-filing-icon-wrapper i {
    font-size: 1.8rem;
    color: #fff;
}

/* Image Placeholders */
.vat-filing-image-placeholder {
    min-height: 400px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vat-filing-placeholder-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.vat-filing-placeholder-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.vat-filing-image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: placeholderMove 20s linear infinite;
}

@keyframes placeholderMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* Service Items */
.vat-filing-service-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.vat-filing-service-item:last-child {
    border-bottom: none;
}

.vat-filing-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 1.5rem;
    font-size: 1.1rem;
}

/* Process Cards */
.vat-filing-process-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vat-filing-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #E55A2B 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vat-filing-process-card:hover::before {
    transform: scaleX(1);
}

.vat-filing-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
}

.vat-filing-process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* FAQ Section */
.vat-filing-faq-section {
    position: relative;
}

.vat-filing-faq-image-wrapper {
    position: relative;
}

.vat-filing-faq-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.vat-filing-faq-placeholder {
    min-height: 400px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Decorative Elements */
.vat-filing-decorative-circle-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    opacity: 0.15;
    top: -30px;
    right: -30px;
    z-index: 0;
}

.vat-filing-decorative-circle-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E55A2B 0%, #FF6B35 100%);
    opacity: 0.1;
    bottom: 40px;
    left: -20px;
    z-index: 0;
}

.vat-filing-decorative-square {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    opacity: 0.08;
    bottom: -20px;
    right: 60px;
    transform: rotate(45deg);
    z-index: 0;
}

.vat-filing-floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.vat-filing-floating-card .icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Accordion */
.vat-filing-faq-accordion .accordion-item {
    border: 1px solid rgba(0, 102, 204, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.vat-filing-faq-accordion .accordion-button {
    background-color: white;
    font-weight: 600;
    color: #333;
    padding: 1.25rem 1.5rem;
}

.vat-filing-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 68, 153, 0.05) 100%);
    color: #FF6B35;
}

.vat-filing-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 102, 204, 0.3);
}

/* CTA Card */
.vat-filing-cta-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(229, 90, 43, 0.15) 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.vat-filing-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: ctaMove 30s linear infinite;
}

@keyframes ctaMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ========================================================================
   VAT REGISTRATION PAGE - MODERN FINTECH DESIGN
   ======================================================================== */

/* Visual Cards */
.vat-reg-visual-card {
    border: 1px solid rgba(0, 170, 99, 0.1);
    transition: all 0.3s ease;
}

.vat-reg-visual-card:hover {
    box-shadow: 0 8px 30px rgba(0, 170, 99, 0.15) !important;
    transform: translateY(-5px);
}

.vat-reg-points-card {
    border: 1px solid rgba(0, 170, 99, 0.1);
}

/* Why Section Background */
.vat-reg-why-section {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    overflow: hidden;
}

.vat-reg-why-bg {
    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 1440 320\"><path fill=\"rgba(255,255,255,0.05)\" d=\"M0,224L48,213.3C96,203,192,181,288,176C384,171,480,181,576,197.3C672,213,768,235,864,229.3C960,224,1056,192,1152,165.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>') no-repeat;
    background-size: cover;
    background-position: bottom;
}

.vat-reg-why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(0, 170, 99, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 136, 80, 0.2) 0%, transparent 50%);
}

/* Cards */
.vat-reg-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s ease;
}

.vat-reg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 170, 99, 0.2);
    border: 1px solid rgba(0, 170, 99, 0.5) !important;
}

.vat-reg-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vat-reg-icon-wrapper i {
    font-size: 1.8rem;
    color: #fff;
}

/* Process Cards */
.vat-reg-process-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 170, 99, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vat-reg-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #E55A2B 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vat-reg-process-card:hover::before {
    transform: scaleX(1);
}

.vat-reg-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 170, 99, 0.15);
}

.vat-reg-process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 170, 99, 0.3);
}

.vat-reg-process-icon {
    color: #FF6B35;
}

.vat-reg-process-icon i {
    font-size: 2rem;
}

/* Image Placeholders */
.vat-reg-image-placeholder {
    min-height: 400px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vat-reg-placeholder-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.vat-reg-image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: placeholderMove 20s linear infinite;
}

/* Service Items */
.vat-reg-service-item {
    margin-bottom: 1rem;
}

/* FAQ Section */
.vat-reg-faq-section {
    position: relative;
}

.vat-reg-faq-image-wrapper {
    position: relative;
}

.vat-reg-faq-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 107, 53, 0.18);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
    z-index: 2;
}

.vat-reg-faq-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.vat-reg-faq-placeholder {
    min-height: 400px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Decorative Elements */
.vat-reg-decorative-circle-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    opacity: 0.15;
    top: -30px;
    right: -30px;
    z-index: 1;
}

.vat-reg-decorative-circle-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E55A2B 0%, #FF6B35 100%);
    opacity: 0.1;
    bottom: 40px;
    left: -20px;
    z-index: 1;
}

.vat-reg-decorative-square {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    opacity: 0.08;
    bottom: -20px;
    right: 60px;
    transform: rotate(45deg);
    z-index: 1;
}

.vat-reg-floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.vat-reg-floating-card .icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Accordion */
.vat-reg-faq-accordion .accordion-item {
    border: 1px solid rgba(0, 170, 99, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.vat-reg-faq-accordion .accordion-button {
    background-color: white;
    font-weight: 600;
    color: #333;
    padding: 1.25rem 1.5rem;
}

.vat-reg-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(0, 170, 99, 0.05) 0%, rgba(0, 136, 80, 0.05) 100%);
    color: #FF6B35;
}

.vat-reg-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 170, 99, 0.3);
}

/* CTA Card */
.vat-reg-cta-card {
    background: linear-gradient(135deg, #f2d6cc  0%, #E55A2B 100%);
    position: relative;
    overflow: hidden;
}

.vat-reg-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,43%) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: ctaMove 30s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .vat-filing-floating-card,
    .vat-reg-floating-card {
        display: none;
    }
    
    .vat-filing-decorative-circle-1,
    .vat-filing-decorative-circle-2,
    .vat-filing-decorative-square,
    .vat-reg-decorative-circle-1,
    .vat-reg-decorative-circle-2,
    .vat-reg-decorative-square {
        display: none;
    }
}

/* ========================================================================
   ENHANCED VISUAL ARTWORK & ANIMATIONS - BOTH VAT PAGES
   ======================================================================== */

/* Floating Animated Shapes */
.vat-filing-why-section::after,
.vat-reg-why-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
    z-index: 1;
}

.vat-filing-why-section::before,
.vat-reg-why-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 90, 43, 0.2) 0%, transparent 51%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: floatShape 6s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Enhanced Card Animations */
.vat-filing-card,
.vat-reg-card {
    position: relative;
    overflow: hidden;
}

.vat-filing-card::after,
.vat-reg-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.vat-filing-card:hover::after,
.vat-reg-card:hover::after {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Pulsing Icon Wrapper */
.vat-filing-icon-wrapper,
.vat-reg-icon-wrapper {
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
}

.vat-filing-icon-wrapper::before,
.vat-reg-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    opacity: 0.3;
    animation: ripple 2s ease-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* 3D Card Effect */
.vat-filing-process-card,
.vat-reg-process-card {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vat-filing-process-card:hover,
.vat-reg-process-card:hover {
    transform: translateY(-10px) rotateX(5deg);
}

/* Rotating Background Gradient */
.vat-filing-cta-card::after,
.vat-reg-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.3) 0%, 
        rgba(229, 90, 43, 0.1) 50%, 
        rgba(255, 107, 53, 0.3) 100%);
    animation: gradientRotate 8s linear infinite;
    z-index: 0;
}

@keyframes gradientRotate {
    0% { transform: rotate(0deg) scale(1.5); }
    100% { transform: rotate(360deg) scale(1.5); }
}

/* Floating Particles Effect */
.vat-filing-image-placeholder::after,
.vat-reg-image-placeholder::after,
.vat-filing-faq-placeholder::after,
.vat-reg-faq-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-50px) translateX(30px); opacity: 0.5; }
}

/* Enhanced Visual Card with Glow Effect */
.vat-filing-visual-card,
.vat-reg-visual-card {
    position: relative;
}

.vat-filing-visual-card::before,
.vat-reg-visual-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: linear-gradient(45deg, #FF6B35, #E55A2B, #FF6B35);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

.vat-filing-visual-card:hover::before,
.vat-reg-visual-card:hover::before {
    opacity: 0.6;
    filter: blur(10px);
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Decorative Lines Animation */
.vat-filing-requirements-card::after,
.vat-reg-points-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, transparent, #FF6B35, transparent);
    transition: height 0.8s ease;
}

.vat-filing-requirements-card:hover::after,
.vat-reg-points-card:hover::after {
    height: 100%;
}

/* Staggered Animation for Service Items */
.vat-filing-service-item,
.vat-reg-service-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.vat-filing-service-item:nth-child(1),
.vat-reg-service-item:nth-child(1) { animation-delay: 0.1s; }
.vat-filing-service-item:nth-child(2),
.vat-reg-service-item:nth-child(2) { animation-delay: 0.2s; }
.vat-filing-service-item:nth-child(3),
.vat-reg-service-item:nth-child(3) { animation-delay: 0.3s; }
.vat-filing-service-item:nth-child(4),
.vat-reg-service-item:nth-child(4) { animation-delay: 0.4s; }
.vat-filing-service-item:nth-child(5),
.vat-reg-service-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Number Badge with Counter Animation */
.vat-filing-number,
.vat-reg-process-number {
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4),
                0 0 20px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.vat-filing-number:hover,
.vat-reg-process-number:hover {
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6),
                0 0 30px rgba(255, 107, 53, 0.3);
    transform: scale(1.1) rotate(5deg);
}

/* Accordion Enhanced Animations */
.vat-filing-faq-accordion .accordion-button,
.vat-reg-faq-accordion .accordion-button {
    position: relative;
    overflow: hidden;
}

.vat-filing-faq-accordion .accordion-button::before,
.vat-reg-faq-accordion .accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #E55A2B);
    transition: width 0.4s ease;
}

.vat-filing-faq-accordion .accordion-button:not(.collapsed)::before,
.vat-reg-faq-accordion .accordion-button:not(.collapsed)::before {
    width: 100%;
}

/* Enhanced Floating Card Animation */
.vat-filing-floating-card,
.vat-reg-floating-card {
    animation: floatingCard 3s ease-in-out infinite;
}

@keyframes floatingCard {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

/* Process Card Connector Lines */
.vat-filing-process-card::after,
.vat-reg-process-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vat-filing-process-card:hover::after,
.vat-reg-process-card:hover::after {
    opacity: 1;
    animation: lineGrow 0.6s ease;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 20px; }
}

/* Decorative Circles with Animation */
.vat-filing-decorative-circle-1,
.vat-filing-decorative-circle-2,
.vat-reg-decorative-circle-1,
.vat-reg-decorative-circle-2 {
    animation: circleFloat 6s ease-in-out infinite;
}

.vat-filing-decorative-circle-2,
.vat-reg-decorative-circle-2 {
    animation-delay: -3s;
}

@keyframes circleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    50% { transform: translate(20px, -20px) scale(1.2); opacity: 0.25; }
}

/* Square Decoration Rotation */
.vat-filing-decorative-square,
.vat-reg-decorative-square {
    animation: squareRotate 10s linear infinite;
}

@keyframes squareRotate {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

/* Button Hover Effects Enhancement */
.vat-filing-cta-card .btn,
.vat-reg-cta-card .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.vat-filing-cta-card .btn::before,
.vat-reg-cta-card .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.vat-filing-cta-card .btn:hover::before,
.vat-reg-cta-card .btn:hover::before {
    width: 300px;
    height: 300px;
}

.vat-filing-cta-card .btn-light:hover {
    background-color: #ffffff !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.vat-filing-cta-card .btn-outline-light:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    border-color: #ffffff !important;
}

/* SVG Icon Animation on Hover */
.vat-filing-visual-card svg,
.vat-reg-visual-card svg {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vat-filing-visual-card:hover svg,
.vat-reg-visual-card:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Alert Box Enhancement */
.alert {
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: alertShine 3s ease-in-out infinite;
}

@keyframes alertShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Image Placeholder Enhanced */
.vat-filing-image-placeholder,
.vat-reg-image-placeholder {
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
}

.vat-filing-image-placeholder:hover,
.vat-reg-image-placeholder:hover {
    box-shadow: 0 15px 60px rgba(255, 107, 53, 0.3);
    transform: scale(1.02);
}

/* FAQ Image Wrapper Enhancements */
.vat-filing-faq-image-wrapper,
.vat-reg-faq-image-wrapper {
    animation: subtleHover 4s ease-in-out infinite;
}

@keyframes subtleHover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Text Gradient Effect for Headings */
.vat-filing-why-section h2,
.vat-filing-why-section h4,
.vat-reg-why-section h2,
.vat-reg-why-section h4 {
    color: #FF6B35;
    font-weight: 600;
}

/* VAT Filing Page - Heading Color Consistency */
.bg-light h2:not(.text-white),
.bg-light h1:not(.text-white) {
    color: #FF6B35 !important;
}

.container-xxl h2:not(.text-white):not(.accordion-header) {
    color: #FF6B35;
}

.container-xxl h1:not(.text-white) {
    color: #FF6B35;
}

/* Icon Wrapper Floating Effect */
.vat-filing-icon-wrapper i,
.vat-reg-icon-wrapper i {
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Process Icon Enhancement */
.vat-reg-process-icon {
    animation: processIconBounce 2s ease-in-out infinite;
}

@keyframes processIconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Smooth Page Entry Animations */
@media (prefers-reduced-motion: no-preference) {
    .vat-filing-visual-card,
    .vat-filing-requirements-card,
    .vat-reg-visual-card,
    .vat-reg-points-card {
        animation: fadeInUp 0.8s ease forwards;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
    .vat-filing-why-section::after,
    .vat-filing-why-section::before,
    .vat-reg-why-section::after,
    .vat-reg-why-section::before {
        display: none;
    }
    
    .vat-filing-icon-wrapper::before,
    .vat-reg-icon-wrapper::before {
        display: none;
    }
}

/* ========================================================================
   ADDITIONAL POLISH & INTERACTIVE ENHANCEMENTS
   ======================================================================== */

/* Hero Text Animation */
.page-header h1 {
    animation: slideDownFade 1s ease-out;
    color: #FF6B35;
    font-weight: 700;
}

.page-header p {
    animation: slideDownFade 1.2s ease-out;
    color: #555555 !important;
    font-weight: 500;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Number Badges with Glow */
.vat-filing-number::after,
.vat-reg-process-number::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    z-index: -1;
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Interactive Check Icons */
.fa-check-circle {
    transition: all 0.3s ease;
    display: inline-block;
}

.fa-check-circle:hover {
    transform: scale(1.2) rotate(360deg);
    color: #FF6B35 !important;
}

/* Smooth Section Transitions */
.container-xxl {
    transition: all 0.3s ease;
}

/* Enhanced Shadow on Scroll Effect */
.vat-filing-card,
.vat-reg-card,
.vat-filing-process-card,
.vat-reg-process-card {
    will-change: transform, box-shadow;
}

/* Gradient Text for Benefits */
.text-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Icon Rotation on Hover */
.fa-arrow-right {
    transition: transform 0.3s ease;
    display: inline-block;
}

*:hover > .fa-arrow-right {
    transform: translateX(5px);
}

/* Alert Enhancement with Border Animation */
.alert-warning {
    border-left: 4px solid #FF6B35;
    position: relative;
    overflow: hidden;
}

.alert-warning::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(255, 107, 53, 0.3),
        rgba(255, 107, 53, 1),
        rgba(255, 107, 53, 0.3));
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
}

/* Service Icon Enhancements */
.service-mega-menu .service-icon {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dropdown-item:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    fill: #FF6B35;
}

/* Button Press Effect */
.btn {
    transition: all 0.2s ease;
}

.btn:active {
    transform: scale(0.95);
}

/* FAQ Icon Rotation */
.accordion-button i {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    transform: rotate(180deg) scale(1.1);
    color: #FF6B35;
}

/* Card Tilt Effect on Hover */
@media (min-width: 992px) {
    .vat-filing-card,
    .vat-reg-card {
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .vat-filing-card:hover,
    .vat-reg-card:hover {
        transform: perspective(1000px) rotateY(2deg) translateY(-8px);
    }
    
    .col-lg-4:nth-child(even) .vat-filing-card:hover,
    .col-lg-4:nth-child(even) .vat-reg-card:hover {
        transform: perspective(1000px) rotateY(-2deg) translateY(-8px);
    }
}

/* Progress Bar Decoration */
.vat-filing-service-item::before,
.vat-reg-service-item::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: -40px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Heading Underline Animation */
h2, h4 {
    position: relative;
    display: inline-block;
}

.display-5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF6B35, transparent);
    border-radius: 2px;
}

/* Scroll Reveal Animation */
@media (prefers-reduced-motion: no-preference) {
    .wow {
        animation-duration: 1s;
        animation-fill-mode: both;
    }
    
    .fadeInUp {
        animation-name: fadeInUp;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translate3d(0, 40px, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }
}

/* Link Hover Effect */
.btn-link {
    position: relative;
    transition: all 0.3s ease;
}

.btn-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.btn-link:hover::before {
    width: 100%;
}

/* Decorative Dots Pattern */
.bg-light {
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States */
.btn:focus,
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

/* Loading State Shimmer for Images */
.vat-filing-image-placeholder,
.vat-reg-image-placeholder,
.vat-filing-faq-placeholder,
.vat-reg-faq-placeholder {
    position: relative;
    background: linear-gradient(
        135deg,
        #FF6B35 0%,
        #E55A2B 25%,
        #FF6B35 50%,
        #E55A2B 75%,
        #FF6B35 100%
    );
    background-size: 400% 100%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* VAT Registration image frame refinement */
.vat-reg-image-frame {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(255, 107, 53, 0.12);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
    animation: none;
}

.vat-reg-image-frame::before {
    display: none;
}

.vat-reg-image-frame .vat-reg-placeholder-content {
    width: 100%;
    height: 100%;
}

.vat-reg-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

@media (max-width: 768px) {
    .vat-reg-image-frame {
        padding: 14px;
        border-radius: 16px;
    }

    .vat-reg-image-frame img {
        border-radius: 12px;
    }
}

/* Interactive Tooltip Effect */
[title] {
    position: relative;
    cursor: help;
}

/* Micro-interactions for Better UX */
button,
.btn,
a {
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.3);
    user-select: none;
}

/* Performance Optimization */
.vat-filing-card,
.vat-reg-card,
.vat-filing-process-card,
.vat-reg-process-card {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* ========================================================================
   Corporate Tax Registration Page (Scoped)
   ======================================================================== */

.page-header.ctr-page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(118deg, rgba(255, 107, 53, 0.72) 0%, rgba(255, 149, 84, 0.58) 42%, rgba(31, 16, 10, 0.42) 100%), url(../img2/background1.png) center/cover no-repeat;
    padding-top: 11rem;
    padding-bottom: 5.5rem;
}

.page-header.ctr-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 86% 22%, rgba(255, 220, 201, 0.24) 0%, rgba(255, 220, 201, 0.08) 36%, transparent 70%);
    pointer-events: none;
}

.page-header.ctr-page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 110px, rgba(255, 170, 130, 0.08) 110px, rgba(255, 170, 130, 0.08) 118px);
    pointer-events: none;
}

.page-header.ctr-page-header h1 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.page-header.ctr-page-header .container {
    position: relative;
    z-index: 1;
}

#corp-tax-reg {
    position: relative;
    overflow: hidden;
}

#corp-tax-reg .ctr-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 255, 255, 0.9));
}

#corp-tax-reg .ctr-hero .container {
    position: relative;
    z-index: 2;
}

#corp-tax-reg .ctr-hero .container .position-absolute {
    z-index: 1;
    pointer-events: none;
}

#corp-tax-reg .ctr-hero-shape {
    position: absolute;
    top: -120px;
    right: -140px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.35), transparent 70%);
    animation: ctrFloat 8s ease-in-out infinite;
    z-index: 1;
}

#corp-tax-reg .ctr-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 107, 53, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.07) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

#corp-tax-reg .ctr-eyebrow {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#corp-tax-reg .ctr-stat {
    display: flex;
    flex-direction: column;
    padding: 14px 18px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    min-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#corp-tax-reg .ctr-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

#corp-tax-reg .ctr-stat span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF6B35;
}

#corp-tax-reg .ctr-stat small {
    color: #6b7280;
    font-weight: 500;
}

#corp-tax-reg .ctr-hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.15);
}

#corp-tax-reg .ctr-image-placeholder {
    height: 280px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    margin-bottom: 20px;
}

#corp-tax-reg .ctr-mini-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

#corp-tax-reg .ctr-mini-card {
    padding: 12px 14px;
    border-radius: 14px;
    background: #FFF4F0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1f2937;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#corp-tax-reg .ctr-mini-card i {
    color: #FF6B35;
}

#corp-tax-reg .ctr-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.2);
}

#corp-tax-reg .ctr-card {
    padding: 28px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#corp-tax-reg .ctr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 50px rgba(255, 107, 53, 0.18);
}

#corp-tax-reg .ctr-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.15);
    color: #FF6B35;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

#corp-tax-reg .ctr-panel {
    background: #ffffff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

#corp-tax-reg .ctr-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

#corp-tax-reg .ctr-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

#corp-tax-reg .ctr-list i {
    color: #FF6B35;
    margin-top: 4px;
}

#corp-tax-reg .ctr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

#corp-tax-reg .ctr-tags span {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.12);
    color: #FF6B35;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
}

#corp-tax-reg .ctr-tags span:hover {
    background: #FF6B35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

#corp-tax-reg .ctr-image-frame {
    position: relative;
    padding: 20px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

#corp-tax-reg .ctr-floating-note {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #FF6B35;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(255, 107, 53, 0.3);
}

#corp-tax-reg .ctr-step {
    padding: 26px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

#corp-tax-reg .ctr-step span {
    display: inline-block;
    margin-bottom: 16px;
    font-weight: 700;
    color: #FF6B35;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

#corp-tax-reg .ctr-step h6 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

#corp-tax-reg .ctr-step p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

#corp-tax-reg .ctr-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

#corp-tax-reg .ctr-step:hover span {
    transform: scale(1.1);
}

#corp-tax-reg .ctr-outcome {
    padding: 28px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.08);
}

#corp-tax-reg .ctr-outcome h4 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-size: 1.3rem;
}

#corp-tax-reg .ctr-outcome p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 0.98rem;
}

#corp-tax-reg .ctr-outcome:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(255, 107, 53, 0.18);
    border-color: rgba(255, 107, 53, 0.25);
    background: linear-gradient(135deg, #ffffff, rgba(255, 107, 53, 0.02));
}

#corp-tax-reg .ctr-accordion .accordion-item {
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

#corp-tax-reg .ctr-accordion .accordion-item:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.25);
}

#corp-tax-reg .ctr-accordion .accordion-button {
    background: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a1a1a;
    padding: 20px 24px;
    border: none;
    transition: all 0.3s ease;
}

#corp-tax-reg .ctr-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), #ffffff);
    color: #FF6B35;
    box-shadow: none;
}

#corp-tax-reg .ctr-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

#corp-tax-reg .ctr-accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(47%) sepia(78%) saturate(2476%) hue-rotate(347deg) brightness(101%) contrast(101%);
}

#corp-tax-reg .ctr-accordion .accordion-body {
    padding: 20px 24px 24px;
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    background: #ffffff;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

#corp-tax-reg .ctr-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 255, 255, 0.9));
}

@keyframes ctrFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(16px); }
}

/* ========================================================================
   Corporate Tax Filing Page (Scoped)
   ======================================================================== */

#corp-tax-filing {
    position: relative;
    overflow: hidden;
}

/* Corporate Tax Filing styles moved to dedicated corporate-tax-filing.css */
