:root {
    /* --primary-color: #20C997; */
    --primary-color: #249976;
    --primary-color-rgb: 32, 201, 151;
}

html {
    scroll-behavior: smooth;
}

/* Service Cards Styling */
.service-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 3px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 201, 151, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    border-width: 4px;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.service-card:hover .title-accent {
    width: 100px;
    transform: scale(1.1);
}

.service-card:hover .title-accent::before {
    transform: scaleX(1.2) rotate(-3deg);
    opacity: 0.9;
}

.service-card:hover .title-accent::after {
    transform: scaleX(1.1) rotate(2deg);
    opacity: 0.6;
}

.service-icon i {
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.service-title {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-bottom: 15px;
}

.service-title h4 {
    font-weight: 800;
    font-size: 1.4rem;
    color: #333;
    margin: 0 !important;
    transition: color 0.3s ease;
}

.service-title i {
    font-size: 1.8rem;
    color: #495057;
    transition: all 0.3s ease;
}

.service-card:hover .service-title h4 {
    color: var(--primary-color);
}

.service-card:hover .service-title i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.title-accent {
    width: 80px;
    height: 8px;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
    background: none;
}

.title-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: currentColor;
    border-radius: 50px;
    clip-path: polygon(0% 50%,
            10% 20%,
            20% 70%,
            30% 30%,
            40% 80%,
            50% 40%,
            60% 75%,
            70% 35%,
            80% 65%,
            90% 25%,
            100% 55%);
    transform: rotate(-2deg);
}

.title-accent::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 90%;
    height: 2px;
    background: currentColor;
    opacity: 0.4;
    border-radius: 50px;
    clip-path: polygon(0% 60%,
            15% 30%,
            25% 80%,
            35% 40%,
            45% 70%,
            55% 35%,
            65% 75%,
            75% 30%,
            85% 65%,
            100% 45%);
    transform: rotate(1deg);
}

/* Different colors for each service card */
.service-card:nth-child(1) .title-accent {
    color: #6c757d;
    /* Dark Gray */
}

.service-card:nth-child(2) .title-accent {
    color: #28a745;
    /* Forest Green */
}

.service-card:nth-child(3) .title-accent {
    color: #495057;
    /* Charcoal Gray */
}

.service-card:nth-child(4) .title-accent {
    color: #20c997;
    /* Teal Green */
}

.service-card:nth-child(5) .title-accent {
    color: #343a40;
    /* Dark Gray */
}

.service-card:nth-child(6) .title-accent {
    color: #17a2b8;
    /* Blue Green */
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-features li {
    padding: 2px 0;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 12px;
    width: 12px;
}

/* Pricing Tables Styling */
.pricing-table {
    border: 3px solid;
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* Different border colors for each plan */
.pricing-basic {
    border-color: #3498db !important;
    /* Blue for Basic */
}

.pricing-advanced {
    border-color: var(--primary-color) !important;
    /* Primary green for Advanced */
}

.pricing-enterprise {
    border-color: #e74c3c !important;
    /* Red for Enterprise */
}

.pricing-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Feature list styling for pricing */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0 !important;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 12px;
    width: 12px;
}

/* Button fit width */
.pricing-table .btn-main {
    width: 100%;
    padding: 12px 20px;
}

/* ===== Services Tech Theme Enhancements ===== */
:root {
    --accent-color: #0dcaf0;
    --ink-900: #0b132b;
}

/* Techy glass + gradient border + micro-interactions */
.service-card {
    border-radius: 14px;
    border: 1px solid rgba(var(--primary-color-rgb), .25);
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), .06), rgba(13, 202, 240, .06));
    backdrop-filter: saturate(1.15) blur(2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, border-color .35s;
}

/* Diagonal sheen sweep */
.service-card::before {
    content: "";
    position: absolute;
    inset: -40% -120% auto auto;
    width: 60%;
    height: 220%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .15) 50%, transparent 100%);
    transform: translateX(-120%) skewX(-15deg);
    pointer-events: none;
    transition: transform .9s;
}

/* Neon border scan */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from 180deg at 50% 50%, rgba(13, 202, 240, .55), rgba(32, 201, 151, .55), transparent 30%, transparent 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s;
}

.service-card:hover {
    transform: translateY(-8px) rotateX(1.25deg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
    border-color: rgba(var(--primary-color-rgb), .55);
}

.service-card:hover::before {
    animation: sheen 900ms forwards;
}

.service-card:hover::after {
    opacity: 1;
}

/* Icon gradient + glow */
.service-title h4 {
    color: var(--ink-900);
    letter-spacing: .2px;
}

.service-title i {
    font-size: 1.9rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 6px rgba(var(--primary-color-rgb), .35));
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), filter .35s;
}

.service-card:hover .service-title i {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 6px 16px rgba(var(--primary-color-rgb), .45));
}

/* Flowing accent line under titles */
.title-accent::before {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: accent-flow 3s linear infinite;
}

.title-accent::after {
    opacity: .35;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-title i {
        transition: none !important;
    }

    .service-card:hover {
        transform: none;
    }

    .service-card::before,
    .title-accent::before {
        animation: none !important;
    }

    .service-card::after {
        opacity: .3;
    }
}

/* Keyframes */
@keyframes sheen {
    from {
        transform: translateX(-120%) skewX(-15deg);
    }

    to {
        transform: translateX(120%) skewX(-15deg);
    }
}

@keyframes accent-flow {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Typography enhancements */
body {
    /* font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; */
    font-family: 'JetBrains Mono', monospace;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: .2px;
}

/* Hero stack badges */
.stack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 16px 0;
}

.tech-badge {
    font-size: 12px;
    line-height: 1;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #e0e0e0;
    color: #495057;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(2px);
    transition: all .25s ease;
}

.tech-badge:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), .06);
    box-shadow: 0 2px 10px rgba(var(--primary-color-rgb), .18);
}

section {
    padding: 80px 0 80px 0 !important;
    position: relative;
}

.service-card p {
    text-align: start;
}

/* Portfolio Header Styling */
.portfolio-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.portfolio-subtitle {
    font-size: 10px;
    color: #202020;
    font-weight: 500;
    margin-bottom: 10px;
}

.portfolio-title {
    font-size: 34px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    display: block !important;
}

.portfolio-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Simple Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Homepage shows only 3 projects */
.work-grid-home {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .work-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .work-grid-home {
        grid-template-columns: 1fr;
    }
}

.work-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 14px;
    border: 3px solid #249976;
}
 .section-title-word{
    font-size: 14px;
 }

.work-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
}

.work-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.work-info span {
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Quote Modal Styling */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.quote-modal-content {
    background-color: #fff;
    margin: 3% auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-modal-close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.quote-modal-close:hover {
    color: var(--primary-color);
}

.quote-modal-content h3 {
    text-align: center;
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

#selectedPlan {
    color: var(--primary-color);
    font-weight: 500;
    text-transform: capitalize;
}

.quote-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.quote-option {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.quote-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.option-icon {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.quote-option h4 {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.quote-option p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-option {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-option:hover {
    background: #1eb68a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
    color: white;
    text-decoration: none;
}

.btn-option i {
    font-size: 0.9rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .quote-options {
        grid-template-columns: 1fr;
    }

    .quote-modal-content {
        margin: 15% 20px;
        padding: 30px 20px;
    }
}

/* Quote Request Form Styling */
.quote-request-form label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: block;
    font-size: 0.9rem;
}

.quote-request-form .form-control {
    margin-bottom: 0;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

@media (max-width: 576px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Compact Footer */
footer {
    padding: 30px 0 !important;
    margin-top: 0 !important;
}

footer .container {
    padding: 0 15px;
}

footer .row {
    align-items: center;
}

footer .copy {
    font-size: 0.9rem;
}

footer .social-icons {
    text-align: right;
}

/* Project Modal Styling - New Structure */
.project-modal-header-new {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
    font-family: 'JetBrains Mono', monospace;
}

.project-modal-body-new {
    padding: 20px 0;
}

.modal-images-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-images-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-images-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.modal-slider-container {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 0;
}

.modal-slide-item {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
}

.modal-slide-item img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.modal-slider-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modal-slider-nav:hover {
    background: #2a9d6f;
    transform: scale(1.1);
}

.modal-slider-nav:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
}

.modal-slider-nav i {
    font-size: 16px;
}

.modal-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.modal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-dot.active {
    background: var(--primary-color);
    width: 12px;
    height: 12px;
}

.modal-dot:hover {
    background: #2a9d6f;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-label {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.modal-label strong {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-outcome-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.modal-outcome-list li {
    font-family: 'JetBrains Mono', monospace;
    color: #666;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.modal-outcome-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.modal-cta-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.modal-cta-text {
    color: #666;
    font-size: 1.05rem;
    margin: 0;
    font-style: italic;
}

.modal-cta-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-cta-link:hover {
    color: #17a589;
    text-decoration: underline;
}

.modal-cta-link strong {
    font-weight: 600;
}

/* Responsive for Modal Images Slider */
@media (max-width: 768px) {
    .modal-slide-item img {
        height: 250px;
    }
    
    .modal-slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .modal-slider-nav i {
        font-size: 14px;
    }
    
    .modal-headline {
        font-size: 1.2rem;
    }
}

/* Old Modal Styling (Keep for backwards compatibility) */
.project-modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.project-modal-header h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.project-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-image-main {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 400px;
}

.project-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.detail-section h4 i {
    color: var(--primary-color);
}

.detail-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: #f0f0f0;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    border: 1px solid #e0e0e0;
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-list li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.results-list li i {
    color: var(--primary-color);
}

.project-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Accent-styled outline button (for See My Work) */
.btn-accent-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-accent-outline:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Filled accent button (for See My Work) */
.btn-accent {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

/* Project Badge Styles */
.project-badge {
    display: none;
}

.badge-freelance {
    background: #e8f5e8;
    color: #2d5a2d;
}

.badge-company {
    background: #e3f2fd;
    color: #1565c0;
}

.badge-internal {
    background: #fff3e0;
    color: #e65100;
}

/* Portfolio Slider Styles */
.portfolio-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.portfolio-slider {
    flex: 1;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.slider-item {
    flex: 0 0 calc(33.333% - 15px);
    min-width: calc(33.333% - 15px);
}

/* Navigation Arrows */
.slider-nav {
    background: transparent;
    color: #2d5a2d;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
    font-size: 28px;
    flex-shrink: 0;
}

.slider-nav:hover {
    color: #1e3a1e;
    transform: scale(1.2);
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav:disabled:hover {
    transform: scale(1);
    color: #2d5a2d;
}

/* Slider Counter */
.slider-counter {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Portfolio Section Styles */
.portfolio-section {
    margin-bottom: 40px;
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 !important;
    color: #20C997;
}

.section-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-count {
    color: #999;
    font-size: 1rem;
}

.work-info h4 {
    color: #ffffff;
}

/* Mobile Responsive for Sliders */
@media (max-width: 768px) {
    .slider-container {
        gap: 0 !important;
    }
    
    .slider-item {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        padding-right: 0 !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .portfolio-slider-wrapper {
        gap: 15px;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .slider-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

/* Offer Cards Styling - Compact Design */
.offer-card {
    border-radius: 14px !important;
    border: 3px solid #e0e0e0 !important;
    position: relative !important;
    overflow: visible !important;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), .04), rgba(13, 202, 240, .04)) !important;
    backdrop-filter: saturate(1.15) blur(2px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    min-height: 100% !important;
}

/* Ensure offer cards maintain equal height */
.col-lg-6 .offer-card,
.col-md-12 .offer-card {
    height: 100% !important;
    min-height: 100% !important;
}

/* Ensure row and columns maintain proper height for equal card heights */
.row.g-4 {
    display: flex !important;
    flex-wrap: wrap !important;
}

.row.g-4 > [class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
}

.offer-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

/* Hover effects removed per user request */

/* Different border colors for each offer */
.offer-card:nth-child(1) {
    border-color: #6c757d;
}

.offer-card:nth-child(2) {
    border-color: #28a745;
}

.offer-card:nth-child(3) {
    border-color: #495057;
}

.offer-card:nth-child(4) {
    border-color: #20c997;
}

/* Hover border colors removed */

/* Icon styling */
.offer-icon {
    margin-bottom: 12px;
}

.offer-icon i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 6px rgba(var(--primary-color-rgb), .25));
}

/* Icon hover effect removed */

/* Title and description */
.offer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.offer-best-for {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

/* Details section */
.offer-details {
    padding: 0 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    width: 100%;
}

.offer-label {
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Compact list */
.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li {
    padding: 3px 0;
    color: #666;
    font-size: 0.8rem;
    position: relative;
    padding-left: 12px;
}

/* .offer-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1rem;
} */

/* Process - smaller text */
.offer-process {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

/* Time row - inline */
.offer-time-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
}

/* Milestones */
.offer-milestones {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

/* Add-ons - smaller, lighter */
.offer-addons {
    color: #888;
    font-size: 0.7rem;
    line-height: 1.3;
    font-style: italic;
}

/* Next start */
.offer-next-start {
    color: #333;
    font-size: 0.85rem;
}

/* Button */
.offer-card .btn-main {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .offer-card {
        margin-bottom: 20px !important;
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .offer-title {
        font-size: 1.15rem !important;
    }
    
    .offer-icon i {
        font-size: 2rem !important;
    }
    
    .offer-details {
        padding: 0 5px !important;
    }
    
    .offer-process,
    .offer-best-for,
    .offer-milestones,
    .offer-list li {
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
}

/* Process Section Styling */
.process-container {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: process-counter;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    padding-left: 0;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--primary-color), rgba(var(--primary-color-rgb), 0.2));
}

.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
    position: relative;
    z-index: 1;
}

.process-content {
    flex: 1;
    padding-top: 10px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.process-content strong {
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.process-actions {
    margin-top: 30px;
}

.btn-details {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 15px;
}

.btn-details:hover {
    color: #17a589;
    transform: translateY(-2px);
}

.btn-details i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-details:hover i {
    transform: translateY(2px);
}

/* Process Details Modal Content */
.process-details-content {
    margin-top: 30px;
}

.detail-block {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.detail-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-block h5 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-block h5 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.detail-block p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive for Process Section */
@media (max-width: 768px) {
    .process-container {
        padding: 30px 20px;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .process-step:not(:last-child)::after {
        left: 20px;
        top: 45px;
    }
    
    .process-content {
        font-size: 0.9rem;
        padding-top: 5px;
    }
}

/* FAQ Section Styling */
.faq-container {
    margin-top: 30px;
}

/* Hide FAQ items beyond the first 3 */
.faq-item-hidden {
    display: none;
}

.faq-item-hidden.show {
    display: block;
}

.faq-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.1);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive for FAQ Section */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* About Me Section Styling */
strong {
    color: var(--primary-color);
}

#section-about ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

#section-about ul li, .offer-list li {
    font-family: 'JetBrains Mono', monospace;
    color: #666;
    padding: 3px 0;
    position: relative;
    padding-left: 20px;
}

#section-about ul li:before, .offer-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.offers-card-btn{
    width: fit-content !important;
    align-self: center !important;
    border-radius: 14px !important;
    font-size: 18px !important;
    padding: 8px 25px !important;
}

/* Rounded buttons for FAQ toggle and contact form */
#faqToggleBtn,
#send_message {
    border-radius: 30px !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
}

/* Testimonials Section - Slider */
.testimonial-slider-wrapper {
    position: relative !important;
    padding: 20px 0 !important;
}

.testimonial-slider {
    overflow: hidden !important;
    width: 100% !important;
}

.testimonial-nav-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-top: 30px !important;
}

.testimonial-nav-buttons .slider-nav {
    position: static !important;
    transform: none !important;
}

.testimonial-slider-container {
    display: flex !important;
    transition: transform 0.4s ease !important;
    gap: 20px !important;
}

.testimonial-slide {
    flex: 0 0 calc(50% - 10px) !important;
    min-width: calc(50% - 10px) !important;
}

.testimonial-card {
    background: #fff !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.testimonial-stars {
    color: #ffc107 !important;
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.testimonial-stars i {
    margin-right: 2px !important;
    display: inline-block !important;
}

.testimonial-text {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    flex-grow: 1 !important;
    font-style: italic !important;
    display: block !important;
}

.testimonial-author {
    display: flex !important;
    flex-direction: column !important;
    border-top: 1px solid #f0f0f0 !important;
    padding-top: 12px !important;
}

.testimonial-author strong {
    font-size: 0.95rem !important;
    color: #222 !important;
    margin-bottom: 3px !important;
    display: block !important;
}

.testimonial-author span {
    font-size: 0.8rem !important;
    color: #666 !important;
    display: block !important;
}

.testimonial-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonial-slider-container {
        gap: 0 !important;
    }
    
    .testimonial-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        padding-right: 0 !important;
    }
    
    .testimonial-slider-wrapper {
        padding: 20px 0 !important;
    }
    
    .testimonial-nav-buttons {
        margin-top: 20px !important;
    }
    
    .offer-card {
        margin-bottom: 20px !important;
        height: auto !important;
        min-height: auto !important;
    }
}

/* Marquee Text Colors */
.de-marquee-list .d-item-txt.filled-green {
    color: var(--primary-color) !important;
    -webkit-text-stroke: 0;
}

.de-marquee-list .d-item-txt.filled-black {
    color: #202020 !important;
    -webkit-text-stroke: 0;
}

.de-marquee-list .d-item-txt.outline-green {
    color: transparent !important;
    -webkit-text-stroke: 2px var(--primary-color);
}

.de-marquee-list .d-item-txt.outline-black {
    color: transparent !important;
    -webkit-text-stroke: 2px #202020;
}
.hero-content-container{
    margin-top: 0px !important;
}

@media (max-width: 768px) {
    .hero-content-container{
        margin-top: 150px !important;
    }
}