/* Custom CSS Variables */
:root {
    --primary-blue: #003b6f;
    --secondary-blue: #2c5282;
    --accent-gold: #f6d55c;
    --text-light: #ffffff;
    --text-dark: #2d3748;
    --gradient-start: #003b6f;
    --gradient-end: #2c5282;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Navigation Styles */
.custom-navbar {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
}

.logo{
    padding: 15px,25px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.consult-expert-btn {
    background: var(--accent-gold) !important;
    color: var(--primary-blue) !important;
    font-weight: 600;
}

.consult-expert-btn:hover {
    background: #f4d03f !important;
    transform: translateY(-2px);
}

.login-btn {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--text-light);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.dropdown-menu {
    background: var(--primary-blue);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
}

.custom-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--primary-blue);
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.3s ease;
    padding-top: 3rem;
  }
  
  .custom-collapse.show-sidebar {
    left: 0;
  }
  
  /* Optional Enhancements */
  .custom-close-btn {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  @media (min-width: 992px) {
    .custom-collapse {
      position: static;
      width: auto;
      height: auto;
      background: none;
      overflow: visible;
      padding-top: 0;
      left: 0 !important;
    }
  }

  @media (min-width: 992px) {
    .custom-close-btn {
      display: none !important;
    }
  }
/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px; /* Ensure minimum height */
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 80px;
    padding-bottom: 40px; /* Add bottom padding */
    min-height: 100vh;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--accent-gold);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem; /* Add margin bottom for spacing */
}

.hero-btn-primary {
    background: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background: #f4d03f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(246, 213, 92, 0.3);
}

.hero-btn-secondary {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-image {
    animation: slideInRight 1s ease-out;
    position: relative;
    margin-top: 2rem; /* Add top margin for spacing */
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-content {
        padding-top: 120px;
        padding-bottom: 80px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 3rem;
    }
    
    .hero-image {
        margin-top: 0;
        order: -1; /* Move image above text on mobile */
        margin-bottom: 2rem;
    }
    
    .carousel-nav {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        min-height: 700px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-content {
        padding-top: 100px;
        padding-bottom: 60px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image {
        margin-bottom: 1.5rem;
    }
    
    .hero-image img {
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 576px) {
    .carousel-container {
        min-height: 750px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .slide-content {
        padding-top: 90px;
        padding-bottom: 40px;
        padding-left: 0.8rem;
        padding-right: 0.8rem;
        justify-content: flex-start;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
        gap: 0.6rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        max-width: 250px;
    }
    
    .hero-image {
        margin-bottom: 1rem;
        max-height: 250px;
        overflow: hidden;
    }
    
    .hero-image img {
        border-radius: 12px;
        object-fit: cover;
        height: 100%;
    }
    
    .carousel-nav {
        padding: 0 0.5rem;
        top: 45%;
    }
}

/* Extra small screens (347px and below) */
@media (max-width: 400px) {
    .carousel-container {
        min-height: 700px;
    }
    
    .hero-section {
        min-height: 800px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .slide-content {
        padding-top: 80px;
        padding-bottom: 30px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        min-height: 800px;
        justify-content: space-between;
    }
    
    .hero-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-buttons {
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        max-width: 220px;
        width: 100%;
    }
    
    .hero-image {
        margin-bottom: 0;
        max-height: 200px;
        flex-shrink: 0;
    }
    
    .hero-image img {
        border-radius: 10px;
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
    
    .carousel-nav {
        padding: 0 0.3rem;
        top: 40%;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-indicators {
        bottom: 1rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* Landscape orientation for small screens */
@media (max-width: 768px) and (orientation: landscape) {
    .carousel-container {
        min-height: 90vh;
    }
    
    .slide-content {
        flex-direction: row;
        padding-top: 60px;
        padding-bottom: 20px;
        align-items: center;
    }
    
    .hero-text {
        flex: 1;
        padding-right: 1rem;
    }
    
    .hero-image {
        flex: 0 0 40%;
        margin-top: 0;
        margin-bottom: 0;
        max-height: none;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 0;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        max-width: none;
        width: auto;
    }
}

/* Animation adjustments for small screens */
@media (max-width: 576px) {
    .hero-text {
        animation: slideInLeft 0.6s ease-out;
    }
    
    .hero-image {
        animation: slideInRight 0.6s ease-out;
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}
.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--text-light);
}

/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(246, 213, 92, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .carousel-nav {
        padding: 0 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .slide-content {
        padding-top: 100px;
    }
}



/* Services Section Styles */
.services-section {
    background: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}




/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid silver !important;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    border: 1px solid silver !important;
    background: linear-gradient(90deg, transparent, rgba(246, 213, 92, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.briefcase-icon {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
}

.gst-icon {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    color: white;
}

.ip-icon {
    background: linear-gradient(135deg, #9B59B6, #E74C3C);
    color: white;
}

.accounts-icon {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: white;
}

.license-icon {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: white;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-price {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.price-highlight {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
}



.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: rgba(246, 213, 92, 0.1);
    padding-left: 1rem;
    border-radius: 8px;
}

.service-name {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.service-item:hover .service-name {
    color: var(--primary-blue);
    font-weight: 600;
}

.service-arrow {
    color: #ccc;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Background Animation */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(246, 213, 92, 0.1);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

/* Animations */
@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Card Stagger Animation */
.service-card {
    opacity: 0;
    transform: translateY(50px);
    animation: cardSlideUp 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for Icons */
.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: inherit;
    transform: translate(-50%, -50%);
    animation: iconPulse 2s ease-in-out infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
}

/* Intersection Observer Animation */
.service-card.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}






/* Variables */
:root {
    --primary-blue: #002147;
    --secondary-blue: #003366;
    --accent-gold: #f6d55c;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #666666;
    --card-bg: #ffffff;
    --border-light: #e0e0e0;
}

/* Partners Logo Section */
.partners-section {
    background-color: var(--primary-blue);
    padding: 20px 0;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

.partner-logo img {
    max-height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.partner-logo img:hover {
    opacity: 1;
}

/* Product Suite Section */
.product-suite-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zolvit-card {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.product-header {
    margin-bottom: 25px;
}

.product-logo {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 8px;
    color: var(--accent-gold);
}

.libra-logo {
    color: var(--primary-blue);
}

.zolvit-logo {
    color: var(--text-light);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

.zolvit-card .product-title {
    color: var(--text-light);
}

.product-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 15px;
}

.feature-icon {
    color: var(--primary-blue);
    margin-right: 15px;
    min-width: 20px;
}

.zolvit-card .feature-icon {
    color: var(--accent-gold);
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.zolvit-card .feature-text {
    color: var(--text-light);
}

.product-cta {
    margin: 25px 0;
}

.explore-btn {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #e6c64c;
    transform: translateY(-2px);
}

.explore-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(3px);
}

.product-image {
    margin-top: 30px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}






.security-section {
    background: linear-gradient(to right, #fff9e6, #fff3cc);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    margin: 20px;
  }
  
  .security-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .security-icon img {
    width: 100px;
    height: 100px;
  }
  
  .security-content {
    flex: 1;
    min-width: 250px;
  }
  
  .security-content h2 {
    font-size: 28px;
    color: #001933;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .security-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .security-point {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 260px;
  }
  
  .checkmark {
    color: #ffc107;
    font-size: 22px;
    margin-top: 3px;
  }
  
  .security-point p {
    margin: 0;
    font-size: 18px;
    color: #333;
  }
  

/* Success Stories & Reviews Carousel Section - Fully Responsive */
.success-stories-carousel-section {
    background-color: #ffffff;
    padding: clamp(50px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.success-stories-main-title {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
    line-height: 1.3;
    padding: 0 15px;
}

.success-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 3vw, 40px);
    margin-bottom: clamp(30px, 5vw, 60px);
    padding: 0 15px;
}

.success-nav-arrow {
    width: clamp(40px, 6vw, 60px);
    height: clamp(40px, 6vw, 60px);
    border-radius: 50%;
    background-color: #e2e8f0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    touch-action: manipulation;
}

.success-nav-arrow:hover {
    background-color: #cbd5e0;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.success-nav-arrow:active {
    transform: scale(0.95);
}

.success-nav-arrow i {
    color: #4a5568;
    font-size: clamp(0.9rem, 2vw, 1.4rem);
    font-weight: 600;
}

.success-carousel-container {
    flex: 1;
    max-width: min(1000px, 90vw);
    overflow: hidden;
    position: relative;
    border-radius: clamp(15px, 2vw, 20px);
}

.success-slides-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 500%;
}

.success-slide {
    width: 20%;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    gap: clamp(20px, 3vw, 40px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    padding: 0 10px;
}

.success-slide.success-slide-active {
    opacity: 1;
    transform: translateY(0);
}

.success-testimonial-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    padding: clamp(25px, 4vw, 50px);
    border-radius: clamp(15px, 2vw, 20px);
    position: relative;
    flex: 1;
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(200px, 25vw, 300px);
}

.success-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(246, 213, 92, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.success-quote-mark {
    font-size: clamp(3rem, 6vw, 5rem);
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: clamp(10px, 2vw, 20px);
    left: clamp(15px, 3vw, 30px);
    font-family: 'Georgia', serif;
    line-height: 1;
    font-weight: bold;
}

.success-testimonial-text {
    font-size: clamp(0.9rem, 2.2vw, 1.3rem);
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
    font-style: italic;
    font-weight: 400;
}

.success-author-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    background-color: #f8f9fa;
    padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 30px);
    border-radius: clamp(15px, 2vw, 20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: clamp(140px, 20vw, 200px);
    justify-content: center;
}

.success-author-avatar {
    margin-bottom: clamp(10px, 2vw, 20px);
    position: relative;
}

.success-author-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #f6d55c, #f4d03f);
    border-radius: 50%;
    z-index: -1;
}

.success-profile-image {
    width: clamp(60px, 8vw, 90px);
    height: clamp(60px, 8vw, 90px);
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    transition: transform 0.3s ease;
}

.success-profile-image:hover {
    transform: scale(1.05);
}

.success-author-info {
    text-align: center;
}

.success-author-name {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.success-author-surname {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.2;
}

/* Progress Indicators */
.success-progress-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2vw, 20px);
    margin-top: clamp(30px, 5vw, 50px);
    padding: 0 15px;
    flex-wrap: wrap;
}

.success-progress-bar {
    width: clamp(40px, 8vw, 80px);
    height: clamp(4px, 0.8vw, 6px);
    background-color: #e2e8f0;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.success-progress-bar:hover {
    background-color: #cbd5e0;
    transform: scaleY(1.3);
}

.success-progress-bar:focus {
    outline: 2px solid #f6d55c;
    outline-offset: 2px;
}

.success-progress-bar.success-progress-active {
    background-color: #2c5282;
}

.success-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #f6d55c 0%, #f4d03f 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
}

.success-progress-bar.success-progress-active .success-progress-fill {
    animation: successProgressAnimation 6s linear forwards;
}

@keyframes successProgressAnimation {
    from { width: 0%; }
    to { width: 100%; }
}

/* Mobile-First Responsive Breakpoints */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .success-stories-carousel-section {
        padding: 40px 0;
    }
    
    .success-carousel-wrapper {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .success-slide {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 5px;
    }
    
    .success-testimonial-card {
        min-height: 180px;
        padding: 20px;
    }
    
    .success-author-profile {
        min-width: 120px;
        padding: 15px 10px;
    }
    
    .success-nav-arrow {
        position: relative;
        order: 2;
    }
    
    .success-carousel-container {
        order: 1;
        max-width: 95vw;
    }
    
    .success-progress-indicators {
        gap: 8px;
        margin-top: 30px;
    }
    
    .success-progress-bar {
        width: 35px;
        height: 4px;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .success-slide {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .success-testimonial-card {
        min-height: 200px;
    }
    
    .success-author-profile {
        min-width: 150px;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .success-slide {
        flex-direction: row;
        gap: 25px;
    }
    
    .success-testimonial-card {
        min-height: 220px;
    }
    
    .success-author-profile {
        min-width: 160px;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .success-slide {
        gap: 30px;
    }
    
    .success-testimonial-card {
        min-height: 250px;
    }
    
    .success-author-profile {
        min-width: 180px;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .success-slide {
        gap: 40px;
    }
    
    .success-testimonial-card {
        min-height: 300px;
    }
    
    .success-author-profile {
        min-width: 200px;
    }
}

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .success-stories-carousel-section {
        padding: 30px 0;
    }
    
    .success-stories-main-title {
        margin-bottom: 30px;
    }
    
    .success-testimonial-card {
        min-height: 150px;
        padding: 20px;
    }
    
    .success-carousel-wrapper {
        margin-bottom: 30px;
    }
    
    .success-progress-indicators {
        margin-top: 25px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .success-profile-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    .success-slides-track {
        transition: none;
    }
    
    .success-slide {
        transition: opacity 0.3s ease;
    }
    
    .success-progress-fill {
        animation: none !important;
        width: 100% !important;
    }
    
    .success-nav-arrow:hover {
        transform: none;
    }
    
    .success-profile-image:hover {
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .success-author-profile {
        background-color: #2d3748;
    }
    
    .success-author-name,
    .success-author-surname {
        color: #ffffff;
    }
    
    .success-nav-arrow {
        background-color: #4a5568;
    }
    
    .success-nav-arrow i {
        color: #ffffff;
    }
    
    .success-progress-bar {
        background-color: #4a5568;
    }
}

/* Animation Effects */
.success-slide {
    animation: successSlideIn 0.8s ease forwards;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects for Desktop */
@media (hover: hover) {
    .success-testimonial-card {
        transition: all 0.3s ease;
    }
    
    .success-testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(30, 58, 95, 0.3);
    }
    
    .success-author-profile {
        transition: all 0.3s ease;
    }
    
    .success-author-profile:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
}

/* Focus Styles for Accessibility */
.success-nav-arrow:focus {
    outline: 2px solid #f6d55c;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .success-stories-carousel-section {
        padding: 20px 0;
    }
    
    .success-nav-arrow {
        display: none;
    }
    
    .success-progress-indicators {
        display: none;
    }
    
    .success-slide {
        opacity: 1 !important;
        transform: none !important;
    }
}







/* Customer Love Section Styles */
.customer-love-section {
    background-color: #e0e0e0;
    padding: 100px 0;
    position: relative;
}

/* Left Side - Infographic */
.stats-infographic-container {
    text-align: center;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.stats-infographic-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.stats-infographic-image:hover {
    transform: scale(1.02);
}

/* Right Side - Features */
.customer-features-container {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.customer-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 50px;
    line-height: 1.3;
}

.customer-features-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.customer-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

.customer-feature-item:hover {
    transform: translateX(10px);
}

.customer-feature-icon-wrapper {
    flex-shrink: 0;
}

.customer-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2d3748;
    background-color: #f6d55c;
    box-shadow: 0 4px 15px rgba(246, 213, 92, 0.3);
    transition: all 0.3s ease;
}

.customer-feature-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(246, 213, 92, 0.4);
}

.customer-feature-content {
    flex: 1;
}

.customer-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.4;
}

.customer-feature-description {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Icon Specific Styles for Visual Distinction */
.customer-rupee-icon {
    background: linear-gradient(135deg, #f6d55c 0%, #f4d03f 100%);
}

.customer-chart-icon {
    background: linear-gradient(135deg, #f6d55c 0%, #e6c64c 100%);
}

.customer-dashboard-icon {
    background: linear-gradient(135deg, #f6d55c 0%, #f1c40f 100%);
}

.customer-support-icon {
    background: linear-gradient(135deg, #f6d55c 0%, #f39c12 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .customer-section-title {
        font-size: 2.5rem;
    }
    
    .customer-features-container {
        padding: 30px 15px;
    }
    
    .customer-feature-title {
        font-size: 1.3rem;
    }
    
    .customer-feature-description {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .customer-love-section {
        padding: 80px 0;
    }
    
    .stats-infographic-container {
        margin-bottom: 40px;
        padding: 15px;
        min-height: 400px;
    }
    
    .customer-section-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .customer-features-container {
        padding: 20px 10px;
        min-height: auto;
    }
    
    .customer-features-list {
        gap: 30px;
    }
    
    .customer-feature-item {
        gap: 15px;
    }
    
    .customer-feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .customer-love-section {
        padding: 60px 0;
    }
    
    .customer-section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .customer-features-list {
        gap: 25px;
    }
    
    .customer-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .customer-feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .customer-feature-icon-wrapper {
        align-self: center;
    }
    
    .customer-feature-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .customer-feature-description {
        font-size: 0.95rem;
    }
    
    .stats-infographic-image {
        max-width: 400px;
    }
    
    .stats-infographic-container {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .customer-love-section {
        padding: 50px 0;
    }
    
    .customer-section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .customer-features-container {
        padding: 15px 5px;
    }
    
    .customer-features-list {
        gap: 20px;
    }
    
    .customer-feature-item {
        padding: 15px;
        margin: 0 10px;
    }
    
    .customer-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .customer-feature-title {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    
    .customer-feature-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .stats-infographic-container {
        padding: 10px;
        min-height: 250px;
    }
    
    .stats-infographic-image {
        max-width: 350px;
    }
}

@media (max-width: 400px) {
    .customer-section-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .customer-feature-item {
        padding: 12px;
        margin: 0 5px;
    }
    
    .customer-feature-title {
        font-size: 1.1rem;
    }
    
    .customer-feature-description {
        font-size: 0.85rem;
    }
    
    .stats-infographic-image {
        max-width: 300px;
    }
    
    .stats-infographic-container {
        min-height: 200px;
    }
}

/* Animation Effects */
.customer-feature-item {
    opacity: 0;
    transform: translateY(30px);
    animation: customerFadeInUp 0.6s ease forwards;
}

.customer-feature-item:nth-child(1) { animation-delay: 0.1s; }
.customer-feature-item:nth-child(2) { animation-delay: 0.2s; }
.customer-feature-item:nth-child(3) { animation-delay: 0.3s; }
.customer-feature-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes customerFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-infographic-image {
    opacity: 0;
    transform: scale(0.9);
    animation: customerFadeInScale 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes customerFadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover Effects */
.customer-feature-item {
    position: relative;
}

.customer-feature-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #f6d55c, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.customer-feature-item:hover::before {
    opacity: 1;
}

/* Landscape Orientation for Tablets */
@media (max-width: 1024px) and (orientation: landscape) {
    .customer-love-section {
        padding: 60px 0;
    }
    
    .customer-section-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }
    
    .customer-features-list {
        gap: 25px;
    }
    
    .customer-feature-item {
        padding: 10px 0;
    }
    
    .stats-infographic-container {
        min-height: 350px;
    }
}



/* Business Registration Section Styles */
.business-registration-section {
    background: linear-gradient(135deg, #133766 0%, #09376f 100%);
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.business-registration-section .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.business-registration-section .row {
    width: 100%;
    height: 100%;
    align-items: center;
    margin: 0;
}

.registration-content {
    padding: 20px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.registration-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.registration-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 450px;
}

.registration-cta {
    margin-top: 15px;
}

.registration-btn {
    background-color: maroon;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: none;
}

.registration-btn:hover {
    background-color: maroon;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246, 213, 92, 0.4);
}

.registration-image-container {
    text-align: center;
    padding: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-illustration {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.registration-illustration:hover {
    transform: scale(1.02);
}

/* Validated Vision Section */
.validated-vision-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.vision-content {
    text-align: center;
    margin-bottom: 60px;
}

.vision-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.3;
}

.vision-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Company Logos */
.company-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.company-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.company-logo-item:hover {
    transform: translateY(-5px);
}

.company-logo {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.company-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .registration-main-title {
        font-size: 2.5rem;
    }
    
    .registration-subtitle {
        font-size: 1rem;
    }
    
    .registration-illustration {
        max-width: 260px;
        max-height: 260px;
    }
    
    .vision-main-title {
        font-size: 2.5rem;
    }
    
    .vision-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .business-registration-section {
        height: auto;
        min-height: 300px;
        padding: 40px 0;
    }
    
    .business-registration-section .container {
        height: auto;
    }
    
    .business-registration-section .row {
        height: auto;
        flex-direction: column;
    }
    
    .registration-content {
        text-align: center;
        margin-bottom: 30px;
        height: auto;
        padding: 20px 15px;
    }
    
    .registration-main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .registration-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        max-width: none;
    }
    
    .registration-illustration {
        max-width: 220px;
        max-height: 220px;
    }
    
    .validated-vision-section {
        padding: 60px 0;
    }
    
    .vision-main-title {
        font-size: 2.2rem;
    }
    
    .vision-description {
        font-size: 1rem;
    }
    
    .company-logos-container {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .business-registration-section {
        height: auto;
        min-height: 280px;
        padding: 30px 0;
    }
    
    .registration-content {
        padding: 15px 10px;
    }
    
    .registration-main-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .registration-subtitle {
        font-size: 0.95rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .registration-btn {
        font-size: 1rem;
        padding: 10px 25px;
        width: 100%;
        max-width: 250px;
    }
    
    .registration-image-container {
        margin-top: 20px;
        padding: 5px;
    }
    
    .registration-illustration {
        max-width: 200px;
        max-height: 200px;
    }
    
    .validated-vision-section {
        padding: 50px 0;
    }
    
    .vision-content {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .vision-main-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .vision-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .company-logos-container {
        gap: 25px;
        margin-top: 40px;
    }
    
    .company-logo {
        max-height: 50px;
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .business-registration-section {
        height: auto;
        min-height: 260px;
        padding: 25px 0;
    }
    
    .registration-content {
        padding: 10px 5px;
    }
    
    .registration-main-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .registration-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .registration-btn {
        font-size: 0.95rem;
        padding: 9px 20px;
        max-width: 200px;
    }
    
    .registration-illustration {
        max-width: 180px;
        max-height: 180px;
    }
    
    .vision-main-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .vision-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .company-logos-container {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .company-logo-item {
        padding: 10px;
    }
    
    .company-logo {
        max-height: 45px;
        max-width: 90px;
    }
}

@media (max-width: 480px) {
    .business-registration-section {
        height: auto;
        min-height: 240px;
        padding: 20px 0;
    }
    
    .registration-main-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .registration-subtitle {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .registration-btn {
        font-size: 0.9rem;
        padding: 8px 18px;
        max-width: 180px;
    }
    
    .registration-illustration {
        max-width: 160px;
        max-height: 160px;
    }
    
    .vision-main-title {
        font-size: 1.6rem;
    }
    
    .vision-description {
        font-size: 0.85rem;
    }
    
    .company-logo {
        max-height: 40px;
        max-width: 80px;
    }
}

@media (max-width: 400px) {
    .business-registration-section {
        height: auto;
        min-height: 220px;
        padding: 15px 0;
    }
    
    .registration-main-title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .registration-subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .registration-btn {
        font-size: 0.85rem;
        padding: 7px 15px;
        max-width: 160px;
    }
    
    .registration-illustration {
        max-width: 140px;
        max-height: 140px;
    }
    
    .vision-main-title {
        font-size: 1.5rem;
    }
    
    .vision-description {
        font-size: 0.8rem;
    }
    
    .company-logo {
        max-height: 35px;
        max-width: 70px;
    }
}

/* Animation Effects */
.registration-content {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
}

.registration-illustration {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.4s;
}

.vision-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.company-logo-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.company-logo-item:nth-child(1) { animation-delay: 0.5s; }
.company-logo-item:nth-child(2) { animation-delay: 0.6s; }
.company-logo-item:nth-child(3) { animation-delay: 0.7s; }
.company-logo-item:nth-child(4) { animation-delay: 0.8s; }
.company-logo-item:nth-child(5) { animation-delay: 0.9s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background Pattern */
.business-registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(246, 213, 92, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(246, 213, 92, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Landscape Orientation for Tablets */
@media (max-width: 1024px) and (orientation: landscape) {
    .business-registration-section {
        height: 300px;
        padding: 20px 0;
    }
    
    .registration-main-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .registration-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .registration-illustration {
        max-width: 200px;
        max-height: 200px;
    }
    
    .validated-vision-section {
        padding: 50px 0;
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .business-registration-section {
        height: 300px;
    }
    
    .registration-main-title {
        font-size: 3rem;
    }
    
    .registration-subtitle {
        font-size: 1.2rem;
    }
    
    .registration-illustration {
        max-width: 300px;
        max-height: 280px;
    }
}

/* Very Small Screens */
@media (max-width: 320px) {
    .business-registration-section {
        height: auto;
        min-height: 200px;
        padding: 10px 0;
    }
    
    .registration-main-title {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
    
    .registration-subtitle {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .registration-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
        max-width: 140px;
    }
    
    .registration-illustration {
        max-width: 120px;
        max-height: 120px;
    }
}


.blog-carousel-wrapper {
    position: relative;
    overflow: hidden;
  }
  .blog-carousel {
    display: flex;
    transition: transform 0.5s ease;
    flex-wrap: nowrap;
  }
  .blog-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
  @media (max-width: 768px) {
    .blog-card {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }


  .card-img-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }
  
  .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .blog-img:hover {
    transform: scale(1.05);
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
  }
  
  .card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
  }
  
  .btn-link {
    padding: 0;
    color: #007bff;
    text-decoration: underline;
  }
  
  .btn-link:hover {
    color: #0056b3;
  }
  





/* company registration page css */




.vkc-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.vkc-main-content {
    flex: 1;
    padding-right: 350px;
    overflow-x: hidden;
}

.vkc-contact-sidebar {
    position: fixed;
    right: 0;
    top: 95px;
    bottom:15px;
    width: 360px;
    height: 80vh;
    background: #fff;
    border-radius:10px;
    border-left: 1px solid #e5e7eb;
    padding: 10px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

/* Breadcrumb */
.vkc-breadcrumb {
    padding: 20px 40px;
    background: #f8f9fa;
    font-size: 14px;
}

.vkc-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.vkc-breadcrumb a:hover {
    text-decoration: underline;
}

/* Hero Section */
.vkc-hero {
    padding: 40px;
    background: #fff;
    position: relative;
}

.vkc-hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-top:60px;
}

.vkc-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
}

.vkc-sale-badge {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.vkc-sale-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: #fbbf24;
    border-radius: 50%;
}

.vkc-sale-text {
    font-size: 14px;
    margin-bottom: 5px;
}

.vkc-sale-offer {
    font-size: 18px;
    font-weight: bold;
}

.vkc-features {
    list-style: none;
    margin-bottom: 30px;
}

.vkc-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
}

.vkc-feature::before {
    content: '✓';
    background: #3b82f6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vkc-feature-title {
    font-weight: 600;
    color: #1f2937;
}

.vkc-feature-desc {
    color: #6b7280;
    margin-left: 5px;
}

.vkc-zolvit-box {
    border: 2px solid #3b82f6;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    background: #f8faff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vkc-zolvit-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.vkc-zolvit-text {
    flex: 1;
}

.vkc-zolvit-title {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 5px;
}

.vkc-action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.vkc-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.vkc-btn-primary {
    background: #3b82f6;
    color: white;
}

.vkc-btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.vkc-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.vkc-btn-secondary:hover {
    background: #e5e7eb;
}

/* Packages Section */
.vkc-packages {
    padding: 60px 40px;
    background: #f8f9fa;
}

.vkc-packages-header {
    text-align: center;
    margin-bottom: 40px;
}

.vkc-packages-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.vkc-packages-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 30px;
}

.vkc-state-selector {
    background: #e0f2fe;
    border: 1px solid #0284c7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.vkc-state-selector select {
    border: none;
    background: transparent;
    font-size: 16px;
    color: #0284c7;
    font-weight: 600;
}

.vkc-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vkc-package-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.vkc-package-card:hover {
    transform: translateY(-5px);
}

.vkc-package-card.popular {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.vkc-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1f2937;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.vkc-package-header {
    text-align: center;
    margin-bottom: 25px;
}

.vkc-package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.vkc-package-desc {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

.vkc-package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.vkc-price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
}

.vkc-price-original {
    font-size: 1.2rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.vkc-price-discount {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.vkc-govt-fee {
    color: #6b7280;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.vkc-cashback {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vkc-cashback-icon {
    width: 24px;
    height: 24px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.vkc-package-features {
    list-style: none;
    margin-bottom: 25px;
}

.vkc-package-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.vkc-package-feature::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-top: 2px;
}

.vkc-get-started-btn {
    width: 100%;
    padding: 15px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vkc-get-started-btn:hover {
    background: #2563eb;
}

.vkc-get-started-btn.secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.vkc-get-started-btn.secondary:hover {
    background: #3b82f6;
    color: white;
}

/* Contact Form */
.vkc-contact-form {
    background: white;
   
}

.vkc-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.vkc-form-group {
    margin-bottom: 6px;
}

.vkc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

.vkc-form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 13px;
}

.vkc-form-input,
.vkc-form-textarea {
    width: 100%;
    padding: 7px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.vkc-form-input:focus,
.vkc-form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.vkc-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.vkc-submit-btn {
    width: 100%;
    background: #fbbf24;
    color: #1f2937;
    border: none;
    padding: 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.vkc-submit-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.vkc-btn-arrow {
    width: 20px;
    height: 20px;
}

/* Company Content Sections */
.company-content-wrapper {
    margin-right: 350px;
    padding: 20px 40px;
}

.company-nav-pills {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 20px;
    margin: 10px 0;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 85px;
    z-index: 50;
}

.company-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.company-nav-pill {
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
    font-size: 14px;
}

.company-nav-pill:hover,
.company-nav-pill.active {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.company-zolvit-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    color: white;
    border-radius: 20px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.company-zolvit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.company-zolvit-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.company-zolvit-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-zolvit-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.company-features-list {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.company-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.company-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.company-note-box {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.company-note-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.company-note-list {
    list-style: none;
    padding: 0;
}

.company-note-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.company-note-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.company-expert-button {
    background: #ffd700;
    color: #333;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.company-expert-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.company-pricing-text {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.company-content-section {
    background: white;
    margin: 30px 0;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.company-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
}

.company-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.company-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.company-section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.company-section-content p {
    margin-bottom: 20px;
}

.company-highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #667eea;
}

.company-highlight-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.company-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.company-feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.company-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.company-feature-card h4 {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.company-steps-container {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.company-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.company-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.company-step-content h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.company-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.company-comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 15px;
    font-weight: 600;
    text-align: left;
}

.company-comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.company-comparison-table tr:hover {
    background: #f8f9fa;
}

.company-faq-container {
    margin: 30px 0;
}

.company-faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.company-faq-question {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.company-faq-question:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.company-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.company-faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.company-faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.company-faq-toggle.active {
    transform: rotate(45deg);
}

.company-state-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.company-state-link {
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.company-state-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Mobile Form Modal Styles */
.mobile-contact-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.mobile-contact-btn:active {
    transform: scale(0.95);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-form {
    display: grid;
    gap: 20px;
}

.modal-form-group {
    display: grid;
    gap: 8px;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-form-label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.modal-form-input,
.modal-form-textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #f9fafb;
}

.modal-form-input:focus,
.modal-form-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modal-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.modal-submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vkc-main-content {
        padding-right: 0;
    }
    
    .vkc-contact-sidebar {
        display: none;
    }
    
    .mobile-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .company-content-wrapper {
        margin-right: 0;
        padding: 20px;
    }
    
    .company-nav-pills {
        position: relative;
        top: 0;
        margin: 20px 0;
        padding: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .company-nav-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        min-width: max-content;
        padding: 0 10px;
    }
    
    .company-nav-pill {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .company-content-section {
        margin-top: 20px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .vkc-hero {
        padding: 20px;
    }
    
    .vkc-hero-title {
        font-size: 2rem;
    }
    
    .vkc-packages {
        padding: 40px 20px;
    }
    
    .vkc-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .vkc-package-card.popular {
        transform: none;
    }
    
    .vkc-action-buttons {
        flex-direction: column;
    }
    
    .vkc-hero-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .company-nav-pill {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .company-section-title {
        font-size: 1.8rem;
    }
    
    .company-zolvit-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .company-zolvit-content h2 {
        font-size: 2rem;
    }
    
    .company-features-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 20px 0;
    }
    
    .company-comparison-table {
        font-size: 14px;
    }
    
    .company-comparison-table th,
    .company-comparison-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .vkc-hero-title {
        font-size: 1.8rem;
    }
    
    .vkc-packages-title {
        font-size: 1.8rem;
    }
    
    .vkc-price-current {
        font-size: 2rem;
    }
    
    .company-nav-pills {
        padding: 10px;
        margin: 10px 0;
    }
    
    .company-nav-pill {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .mobile-contact-btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
        bottom: 70px;
        right: 35px;
    }
}

html {
    scroll-behavior: smooth;
}

/* Form scroll fix */
@media (min-width: 1025px) {
    .vkc-contact-sidebar.scroll-with-footer {
        position: absolute;
        top: auto;
        bottom: 0;
    }
}

/* Footer Styles with Unique Classes */
.site-footer {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 3px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer Content Sections */
.footer-content-section {
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #dc3545;
    border-radius: 2px;
}

/* Footer Links Grid */
.footer-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    line-height: 1.5;
}

.footer-nav-link:hover {
    color: #f6d55c;
    text-decoration: none;
    transform: translateX(8px);
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #dc3545;
    transition: width 0.3s ease;
}

.footer-nav-link:hover::before {
    width: 12px;
}

/* Calculators Grid */
.footer-calculators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.footer-calculator-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-calculator-highlight {
    color: #f6d55c !important;
    font-weight: 500;
    font-size: 1.15rem !important;
}

.footer-calculator-highlight:hover {
    color: #ffffff !important;
}

/* Legal Information */
.footer-legal-section {
    margin: 45px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-legal-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
}

.footer-legal-link {
    color: #f6d55c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Company Information */
.footer-company-section {
    margin: 35px 0;
}

.footer-company-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Disclaimer */
.footer-disclaimer-section {
    margin: 35px 0;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border-left: 5px solid #dc3545;
}

.footer-disclaimer-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

/* Bottom Footer */
.footer-bottom-section {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer Brand Logo */
.footer-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-start;
}

.footer-logo-icon {
    background: #f6d55c;
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 15px;
}

.footer-logo-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.7rem;
}

/* Footer Navigation */
.footer-navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 3px 0;
}

.footer-bottom-link:hover {
    color: #f6d55c;
    text-decoration: none;
    transform: translateY(-2px);
}

.footer-featured-link {
    color: #dc3545 !important;
    font-weight: 600;
    font-size: 1.15rem !important;
    position: relative;
}

.footer-featured-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #dc3545;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-featured-link:hover::after {
    transform: scaleX(1);
}

/* Social Links */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 25px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social-link:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

.footer-social-link.footer-facebook:hover {
    background-color: #1877f2;
}

.footer-social-link.footer-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-link.footer-linkedin:hover {
    background-color: #0077b5;
}

.footer-social-link.footer-twitter:hover {
    background-color: #1da1f2;
}

.footer-social-link.footer-youtube:hover {
    background-color: #dc3545;
}

/* Red Accent Elements */
.footer-content-section:nth-child(odd) .footer-section-title::after {
    background-color: #dc3545;
}

.footer-content-section:nth-child(even) .footer-section-title::after {
    background-color: #f6d55c;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-calculators-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-navigation {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .site-footer {
        padding: 50px 0 0;
    }
    
    .footer-calculators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-navigation {
        margin: 35px 0;
    }
    
    .footer-social-links {
        justify-content: center;
        margin-top: 35px;
    }
    
    .footer-section-title {
        font-size: 1.5rem;
    }
    
    .footer-nav-link {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .footer-section-title {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .footer-link-grid {
        justify-content: center;
        text-align: center;
    }
    
    .footer-calculators-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-navigation {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }
    
    .footer-nav-column {
        text-align: center;
        align-items: center;
    }
    
    .footer-brand-logo {
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .footer-legal-text,
    .footer-company-text,
    .footer-disclaimer-text {
        text-align: center;
    }
    
    .footer-nav-link {
        font-size: 1.1rem;
    }
    
    .footer-bottom-link {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 40px 0 0;
    }
    
    .footer-content-section {
        margin-bottom: 40px;
        padding-bottom: 25px;
    }
    
    .footer-section-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .footer-link-grid {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-social-links {
        gap: 12px;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-nav-link {
        font-size: 1.05rem;
    }
    
    .footer-bottom-link {
        font-size: 1rem;
    }
    
    .footer-legal-text {
        font-size: 1rem;
    }
    
    .footer-company-text,
    .footer-disclaimer-text {
        font-size: 0.95rem;
    }
}

/* Hover Effects and Animations */
.footer-nav-link,
.footer-bottom-link {
    position: relative;
    overflow: hidden;
}

.footer-nav-link::after,
.footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background-color: #dc3545;
    transition: left 0.3s ease;
}

.footer-nav-link:hover,
.footer-bottom-link:hover {
    left: 0;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: var(--primary-blue);
    transform: translateX(5px);
    padding-left:5px;
    border-radius: 5px;
    text-align: center;
}

/* Scroll Animation */
.footer-content-section {
    opacity: 0;
    transform: translateY(40px);
    animation: footerFadeInUp 0.7s ease forwards;
}

.footer-content-section:nth-child(1) { animation-delay: 0.1s; }
.footer-content-section:nth-child(2) { animation-delay: 0.2s; }
.footer-content-section:nth-child(3) { animation-delay: 0.3s; }

@keyframes footerFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}






.mouse-tracker {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #c71585; 
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out;
    box-shadow: none; 
  }
  
  
@media (max-width: 728px) {
    .mouse-tracker{
        display: none;
    }
}