/* Modern theme enhancements */
:root {
    /* Base colors */
    --default-color: #6f9e28;
    --secondary-color: #49494a;

    /* Semantic tokens */
    --background: 0 0% 100%;
    --foreground: 240 10% 3.9%;
    --primary: 96 59% 39%;
    --primary-foreground: 0 0% 98%;
    --secondary: 240 5.9% 10%;
    --secondary-foreground: 0 0% 98%;
    --muted: 240 4.8% 95.9%;
    --muted-foreground: 240 3.8% 46.1%;
    --accent: 240 4.8% 95.9%;
    --accent-foreground: 240 5.9% 10%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 240 5.9% 90%;
    --input: 240 5.9% 90%;
    --ring: 96 59% 39%;

    /* Spacing */
    --container-max-width: min(1140px, 100% - 2rem);
    --container-padding: clamp(1rem, 5vw, 2rem);
    --spacing-x: clamp(1rem, 2vw, 2rem);
    --spacing-y: clamp(1rem, 1vw, 2rem);

    /* Typography */
    --font-size-base: clamp(16px, 1.5vw, 17px);
    --line-height-base: 1.5;
    --heading-line-height: 1.2;

    /* Radii */
    --radius-sm: 0.3rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.8rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

/* Typography */
body {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    gap: 0.5rem;
}

.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Services section */
.services {
    height: 100%;
    padding: var(--spacing-y) var(--spacing-x);
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    border: 1px solid hsl(var(--border));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.services .icons {
    font-size: 2.5rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
}

.services .content {
    flex: 1;
}

.services .content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.services .content p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 0;
}

.services .tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.services .tech-item {
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.services .tech-item:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

/* Header Styles */
.info-head {
    padding: 0.2rem 0;
    font-size: 0.875rem;
    height: 40px;
}

.info-head__contact .call-support,
.info-head__actions .quick-support-lingual {
    margin: 0;
    padding: 0;
    list-style: none;
}

.quick-support-lingual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

/* Language Selector */
.language-selector .btn {
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
}

/* Header Navigation */
.header-nav {
    position: relative;
    background: #fff;
    padding: 0rem;
    border-bottom: 1px solid hsl(var(--border));
    display: flex;
    height: 90px;
    display: block;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}


/* Logo styles */
.brand-logo {
    display: block;
    line-height: 0;
}

.logo-desktop,
.logo-mobile {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Navbar fixes */
.navbar {
    position: static;
}

.navbar-collapse {
    flex-grow: 0;
}

@media (max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: hsl(var(--background));
        padding: 1rem;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: var(--shadow-md);
        border: 1px solid hsl(var(--border));
        z-index: 1000;
    }
}

/* Logo alignment */
.brand-logo,
.brand-logo-mobile {
    display: block;
    padding: 0.90rem 0;
}

/* .brand-logo img,
.brand-logo-mobile img {
    max-height: 40px;
    width: auto;
} */

.brand-logo img {
    height: 60px;
}

.brand-logo img.logo-mobile {
    width: 65px;
    max-height: 65px;
}

/* Toggle button alignment */
.navbar-toggler {
    --navbar-toggler-padding-y: 0.5rem;
    --navbar-toggler-padding-x: 0.75rem;
    --navbar-toggler-font-size: 1.25rem;
    --navbar-toggler-border-radius: var(--radius-md);
    --navbar-toggler-focus-width: 0.25rem;
    --navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    
    padding: var(--navbar-toggler-padding-y) var(--navbar-toggler-padding-x);
    font-size: var(--navbar-toggler-font-size);
    border: 1px solid hsl(var(--border));
    border-radius: var(--navbar-toggler-border-radius);
    transition: var(--navbar-toggler-transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 var(--navbar-toggler-focus-width) hsl(var(--primary) / 0.25);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M5 5l20 20m0-20L5 25'/%3e%3c/svg%3e");
}

/* Navigation styles */
.navbar-nav {
    --nav-item-gap: clamp(1rem, 2vw, 2rem);
    gap: var(--nav-item-gap);
}

.nav-item {
    white-space: nowrap;
}

.nav-link {
    padding: 0.5rem 0;
    color: hsl(var(--foreground));
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Navigation */

.brand-logo,
.brand-logo-small {
    display: block;
}

.brand-logo img,
.brand-logo-small img {
    max-height: 50px;
    width: auto;
}

/* Mobile styles */
@media (max-width: 767px) {
    .nav-item {
        border-bottom: 1px solid hsl(var(--border));
        padding: 0.5rem 0;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid hsl(var(--border));
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 0.75rem 1rem;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
    }
}

/* Responsive fixes */
@media (max-width: 991.98px) {

    .info-head__contact,
    .info-head__actions {
        text-align: center;
    }

    .quick-support-lingual {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 768px) {
    .border-right {
        border: none;
    }

    .services {
        text-align: center;
        padding: var(--spacing-x);
    }

    .services .icons {
        margin: 0 auto 1rem;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }

    .dropdown-menu {
        margin-top: 0.5rem;
        border-radius: var(--radius-md);
        border: 1px solid hsl(var(--border));
        /* box-shadow: 0 1px 2px 2px rgba(74, 85, 104, 0.2), 0 -1px 5px -1px rgba(74, 85, 104, 0.2) !important; */
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        transition: opacity 0.15s ease-in-out;
        box-shadow: var(--shadow-md);
        min-width: 220px;
    }
}

@media (max-width: 767.98px) {
    .header-nav {
        padding: .2rem 0rem;
        z-index: 1030; 
    }
    .brand-logo {
        display: none;
    }

    .brand-logo-small {
        margin: 0 auto;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}

@media(max-width: 575.98px) {
    .navbar-collapse {
        padding: 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 430px) {
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .d-sm-none {
        display: none !important;
    }
}

/* Banner Section */
.page-header.homepage {
    padding: clamp(3rem, 10vw, 6rem) 0;
    background: linear-gradient(to bottom right,
            hsl(var(--background)),
            hsl(var(--muted)));
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border-radius: var(--radius-full, 999px);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.banner-title .highlight {
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary) / 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    max-width: 50ch;
}

.banner-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.banner-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.banner-image {
    position: relative;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.banner-image svg {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .banner-image {
        margin-top: 3rem;
        padding: 0 2rem;
    }

    .banner-cta {
        justify-content: center;
    }

    .banner-stats {
        justify-content: center;
        text-align: center;
    }

    .banner-content {
        text-align: center;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(45deg,
            hsl(var(--primary) / 0.1),
            hsl(var(--background)));
    overflow: hidden;
}

.cta-wrapper {
    position: relative;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-lg);
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    box-shadow:
        0 0 0 1px hsl(var(--primary) / 0.1),
        0 20px 25px -5px hsl(var(--primary) / 0.1),
        0 10px 10px -5px hsl(var(--primary) / 0.04);
}

.cta-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right,
            hsl(var(--primary)),
            hsl(var(--primary) / 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: hsl(var(--muted-foreground));
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cta-buttons .btn {
    padding: 0.875rem 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.cta-buttons .btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .cta-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        justify-content: center;
    }
}

/* Add subtle floating shapes */
.cta-wrapper::before,
.cta-wrapper::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: hsl(var(--primary) / 0.05);
    z-index: -1;
}

.cta-wrapper::before {
    top: -150px;
    right: -150px;
}

.cta-wrapper::after {
    bottom: -150px;
    left: -150px;
}

/* Input Groups */
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group > .form-control,
.input-group > .form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

/* Input Group Text */
.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.5;
    color: hsl(var(--muted-foreground));
    text-align: center;
    white-space: nowrap;
    background-color: hsl(var(--muted));
    border: 1px solid hsl(var(--border));
}

/* Input Group Sizing */
.input-group-sm > .form-control,
.input-group-sm > .input-group-text {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-text {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

/* Input Group Borders */
.input-group > :not(:first-child):not(.dropdown-menu) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > :not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* Input Group Focus */
.input-group:focus-within {
    z-index: 3;
}

.input-group:focus-within .form-control,
.input-group:focus-within .input-group-text {
    border-color: hsl(var(--primary));
}

/* Input Group Buttons */
.input-group .btn {
    position: relative;
    z-index: 2;
}

/* Input Group Icons */
.input-group-icon {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: hsl(var(--muted-foreground));
    background-color: hsl(var(--muted));
    border: 1px solid hsl(var(--border));
    line-height: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .input-group {
        flex-direction: column;
    }

    .input-group > :not(:first-child) {
        margin-left: 0;
        margin-top: -1px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: var(--radius-md);
        border-bottom-right-radius: var(--radius-md);
    }

    .input-group > :not(:last-child) {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: var(--radius-md);
        border-top-right-radius: var(--radius-md);
    }
}

/* Newsletter Form */
#newsletterForm {
    position: relative;
}

#newsletterForm .input-group {
    display: flex;
    align-items: center;
    background: hsl(var(--background));
    border-radius: var(--radius-md);
    border: 1px solid hsl(var(--border));
    padding: 0.25rem;
}

#newsletterForm .input-group-addon {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    color: hsl(var(--muted-foreground));
    background: transparent;
}

#newsletterForm .form-control {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.5rem;
    color: hsl(var(--foreground));
}

#newsletterForm .form-control:focus {
    outline: none;
    box-shadow: none;
}

#newsletterForm .input-group-btn {
    padding-left: 0.25rem;
}

#newsletterForm .btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    #newsletterForm .input-group {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    #newsletterForm .input-group-btn {
        width: auto;
    }
}

/* Footer Base Styles */
#footer {
    /* background: linear-gradient(
        180deg,
        #6d6d6d 0%,
        #5d5d5d 15%,
        #4d4d4d 85%,
        #404040 100%
    ) !important; 
    background: linear-gradient(0deg, #6d6d6d 0%, #5d5d5d 15%, #4d4d4d 85%, #404040 100%) !important;*/
    position: relative;
    z-index: 1;
}

/* Optional: Add a subtle overlay for better text contrast */
#footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Ensure content stays above the overlay */
#inner-footer,
.copyright-footer {
    position: relative;
    z-index: 1;
}

/* Inner Footer (Widget Area) */
#inner-footer {
    padding: clamp(3rem, 5vw, 5rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#inner-footer .widget {
    margin-bottom: 2rem;
}

#inner-footer .widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.75rem;
}

#inner-footer .widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    /* background: hsl(var(--primary)); */
}

#inner-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#inner-footer ul li {
    margin-bottom: 0.75rem;
}

#inner-footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#inner-footer ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Copyright Footer */
.copyright-footer {
    padding: clamp(2rem, 3vw, 3rem) 0;
    background: rgba(0, 0, 0, 0.1);
}

/* Logo Footer */
.logo-footer {
    margin-bottom: 1.5rem;
}

.logo-footer img {
    height: 50px;
    width: auto;
    filter: brightness(0.95);
    transition: opacity 0.2s ease;
}

.logo-footer img:hover {
    opacity: 1;
}

/* Footer Menu */
.menu-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0;
}

.menu-footer li {
    margin: 0;
}

.menu-footer li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}

.menu-footer li a:hover {
    color: #ffffff;
}

/* Copyright Text */
.copy {
    margin-top: 1.5rem;
}

.copy p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* Social Links */
.social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.1); */
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social li a i {
    font-size: 1.125rem;
}

.social li a:hover {
    /* background: hsl(var(--primary)); */
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Fixes */
@media (max-width: 767px) {
    #inner-footer [class*="col-"] {
        margin-bottom: 2rem;
    }

    .copyright-footer .row {
        text-align: center;
    }

    .menu-footer {
        justify-content: center;
    }

    .social {
        justify-content: center;
        margin-top: 2rem;
    }

    .copy {
        text-align: center;
    }

    .logo-footer {
        text-align: center;
    }
}

/* Grid Pattern Overlay */
#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: -1;
}

/* WordPress Services Page */
.wordpress-header {
    position: relative;
    background: linear-gradient(
        135deg,
        hsl(var(--background)) 0%,
        hsl(var(--muted)) 100%
    );
    padding: clamp(4rem, 10vw, 8rem) 0;
    overflow: hidden;
}

/* Banner Content */
.banner-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.banner-title {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.banner-title .highlight {
    color: hsl(var(--primary));
}

.banner-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    max-width: 50ch;
}

.banner-cta {
    display: flex;
    gap: 1rem;
}

/* WordPress Logo Animation */
.wp-animation {
    position: relative;
    width: 100%;
    height: 400px;
}

.wp-logo {
    fill: none;
    stroke: hsl(var(--primary));
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Services Section */
.wp-services {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.service-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.1);
}

.service-card .icon {
    font-size: 2.5rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

/* Portfolio Section */
.wp-portfolio {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: hsl(var(--muted) / 0.5);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.portfolio-image img {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: hsla(var(--primary) / 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

/* Features Section */
.wp-features {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.feature-list {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: hsl(var(--primary));
}

/* CTA Section */
.cta-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(
        45deg,
        hsl(var(--primary) / 0.1),
        hsl(var(--background))
    );
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-cta {
        flex-direction: column;
    }

    .banner-cta .btn {
        width: 100%;
    }

    .feature-list {
        gap: 1.5rem;
    }
}

/* WooCommerce Services Page */
.woocommerce-header {
    background: linear-gradient(
        135deg,
        hsl(var(--background)) 0%,
        hsl(var(--muted)) 100%
    );
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.feature-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.woo-features {
    background: linear-gradient(
        45deg,
        hsl(var(--muted)) 0%,
        hsl(var(--background)) 100%
    );
}

.service-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.service-item i {
    font-size: 2rem;
    color: hsl(var(--primary));
}

.process-card {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    border: 1px solid hsl(var(--border));
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-card .icon {
    font-size: 2.5rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

.woo-cta {
    background: linear-gradient(
        45deg,
        hsl(var(--primary)) 0%,
        hsl(var(--primary) / 0.8) 100%
    );
}

/* Add Responsive Styles */
@media (max-width: 991px) {
    .service-item {
        margin-bottom: 1rem;
    }
    
    .process-card {
        margin-bottom: 1rem;
    }
}

/* Form Styles */
.form-wrapper {
    padding: 3rem;
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

/* Web Application Page Styles */
.webapp-header {
    background: linear-gradient(
        135deg,
        hsl(var(--background)) 0%,
        hsl(var(--muted)) 100%
    );
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

/* Stats Section */
.banner-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Technology Cards */
.tech-group {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.tech-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tech-group h3 {
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tech-group h3 i {
    font-size: 1.25rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-item {
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transform: translateY(-2px);
}

/* Process Cards */
.process-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-card .icon {
    font-size: 2rem;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .tech-group {
        margin-bottom: 1.5rem;
    }
    
    .process-card {
        margin-bottom: 1.5rem;
    }
}

/* Tech Group Cards */
.tech-group {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.tech-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-item {
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

/* Process Cards */
.process-card {
    position: relative;
    padding: 2rem;
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: hsl(var(--primary));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-radius: 50%;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .banner-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .tech-group {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .banner-content {
        text-align: center;
    }
    
    .banner-cta {
        justify-content: center;
    }
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
}

/* Card Styles */
.service-card, .tech-group {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover, .tech-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card .icons, .tech-group .icons {
    font-size: 2.5rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

.service-card h4, .tech-group h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Tech List Items */
.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tech-item {
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .service-card, .tech-group {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .services {
        text-align: center;
    }
    
    .services .icons {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    width: 2rem;
    height: 2rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.feature-content p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card .icon {
    font-size: 2.5rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: hsl(var(--muted-foreground));
}

/* Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .features-list {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .feature-item {
        text-align: left;
    }
}

/* Logo Slider */
.logo-slider {
    background: hsl(var(--muted));
    overflow: hidden;
    position: relative;
}

.section-padding-sm {
    padding: 60px 0;
}

.logo-carousel {
    position: relative;
    padding: 2rem 0;
    margin: 0 -1rem;
}

.logo-track {
    display: flex;
    animation: logoSlide 40s linear infinite;
    width: fit-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    padding: 0 2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(1.2);
    transition: all 0.3s ease;
}

.logo-item:hover .logo-image {
    filter: grayscale(0) brightness(1);
}

/* Gradient fade effects */
.logo-carousel::before,
.logo-carousel::after {
    /* content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none; */
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(
        to right,
        hsl(var(--muted)) 0%,
        transparent 100%
    );
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(
        to left,
        hsl(var(--muted)) 0%,
        transparent 100%
    );
}

@keyframes logoSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .logo-image {
        height: 50px;
    }
}

@media (max-width: 767px) {
    .logo-image {
        height: 40px;
    }
    
    .logo-item {
        padding: 0 1.5rem;
    }

    .logo-carousel::before,
    .logo-carousel::after {
        width: 100px;
    }
}

/* Contact Form Styles */
.contact-section {
    padding: 100px 0;
}

.contact-form-wrapper {
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid hsl(var(--border));
}

.section-title {
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.divider {
    margin: 2rem 0;
    border-color: hsl(var(--border));
    opacity: 0.2;
}

.form-group {
    margin-bottom: 0;
}

.form-control {
    height: 50px;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: .375rem !important;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.1);
    background: hsl(var(--background));
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-submit {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.submit-loader {
    display: none;
    width: 24px;
    height: 24px;
}

.alert-wrapper {
    margin-bottom: 1.5rem;
}

.contact-sidebar {
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid hsl(var(--border));
    height: 100%;
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper,
    .contact-sidebar {
        padding: 1.5rem;
    }
    
    .form-submit {
        flex-direction: column;
        align-items: stretch;
    }
    
    .submit-loader {
        align-self: center;
    }
}

/* Contact Info Page Styles */
.contact-info {
    padding: 100px 0;
}

.content-wrapper {
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid hsl(var(--border));
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.sub-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
    padding-bottom: 0.5rem;
    border-bottom: 2px solid hsl(var(--primary));
}

/* Office Cards */
.office-card {
    background: hsl(var(--muted));
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
}

.office-card h4 {
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.office-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.office-card address {
    color: hsl(var(--muted-foreground));
    margin-bottom: 0;
    font-style: normal;
    line-height: 1.6;
}

/* Contact Cards */
.contact-card {
    background: hsl(var(--muted));
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
}

.contact-card h4 {
    margin-bottom: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--primary));
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: hsl(var(--primary) / 0.8);
}

.contact-link i {
    font-size: 1.2rem;
}

/* Sidebar */
.contact-sidebar {
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid hsl(var(--border));
    height: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info {
        padding: 80px 0;
    }
    
    .contact-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-info {
        padding: 60px 0;
    }
    
    .content-wrapper,
    .contact-sidebar {
        padding: 1.5rem;
    }
    
    .office-card,
    .contact-card {
        margin-bottom: 1rem;
    }
}


/* Animation for MVP box border */
.mvp-box-animate {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: mvpBoxDraw 1.2s ease-out forwards;
  }
  @keyframes mvpBoxDraw {
    to { stroke-dashoffset: 0; }
  }

/* Tagline fade-in */
.slc-tagline-anim {
    opacity: 0;
    animation: slcTaglineFade 0.7s 1.6s ease forwards;
  }
  @keyframes slcTaglineFade {
    to { opacity: 1; }
  }

  /* SLC circles pop-in */
  .slc-circle {
    opacity: 0;
    transform: scale(0.7);
    animation: slcPop 0.6s cubic-bezier(.68,-0.55,.27,1.55) forwards;
  }
  .slc-simple { animation-delay: 0.5s; }
  .slc-lovable { animation-delay: 0.7s; }
  .slc-complete { animation-delay: 0.9s; }
  @keyframes slcPop {
    to { opacity: 1; transform: scale(1); }
  }