@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-bg: #f3f3f3;
    --secondary-bg: #ffffff;
    --accent-color: #00d084;
    --text-primary: #333333;
    --text-secondaryf: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-start: #53535334;
    --gradient-end: #f3f3f3;
}

/* Universal font family */
body,
html,
* {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

html,
body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: clip;
    /* Prevents horizontal scroll without blocking vertical */
    /* Ensures vertical scrolling works */

    margin: 0;
    padding: 0;
    background: var(--primary-bg);
}

body {
    width: 100vw;
    max-width: 100vw;
    background: radial-gradient(ellipse at top, var(--gradient-start) 0%, var(--primary-bg) 70%);
    color: var(--text-primary);
    padding-top: 72px;
    /* Adjust for navbar height */
}

h1 {
    font-size: 45.1px;
}

.primary-text {
    color: #009961;
}


/* Optional: On scroll, make navbar more solid (JS can add .scrolled class) */
.custom-navbar.scrolled {
    background: rgb(255 255 255 / 68%) !important;
    /* More solid on scroll */
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.14);
}

/* --- Fixed Navbar --- */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgb(255 255 255 / 68%) !important;
    /* Original color, slightly transparent */
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
    transition: background 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    padding: 0px 80px;
    min-height: 60px;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    font-family: 'Instrument Sans', Arial, sans-serif;
}

.navbar-brand .highlight {
    color: #00d084;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 300;
    font-size: 0.9rem;
    margin-right: 1.8vw;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 10px;
    /* Space for underline */
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus {
    color: var(--text-primary) !important;
    font-weight: 500;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    top: 119%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 49% !important;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    box-shadow: 0 0 8px 0 var(--accent-color);
    animation: nav-link-active-anim 0.4s ease forwards;
}

@keyframes nav-link-active-anim {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100%;
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    .custom-navbar {
        padding: 0px 20px;
    }

    .navbar-brand {
        margin-left: 0 !important;
        font-size: 1.3rem;
    }

    .navbar-toggler {
        border: none;
        padding: 4px 8px;
        background: #97909036;
    }


    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-nav {
        margin-top: 15px;
        margin-left: 0px !important;
        width: 100%;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 12px 20px;
        display: block;
        text-align: center;
        color: var(--text-primary) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 400;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-color) !important;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .navbar-collapse {
        /* background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(10px); */
        padding: 10px 0;
        margin-top: 10px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
    }

    .navbar-collapse .d-flex {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 10px;
        padding: 0 20px;
    }

    .special-offer-btn,
    .btn-contact {
        width: 90%;
        text-align: center;
        margin: 5px 0px !important;
        width: auto;
    }
}

/* Additional responsive improvements */
@media (max-width: 768px) {
    .custom-navbar {
        padding: 0px 15px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .custom-navbar {
        padding: 0px 10px;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }
}


/* Reusable Button Classes */
.btn-base {
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 24px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--secondary-bg);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
    background: #00b874;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.3);
    color: var(--secondary-bg);
}

.btn-secondary {
    color: var(--accent-color);
    background: transparent;
    text-decoration: underline;
}

.btn-secondary:hover {
    color: #00b874;
    transform: translateY(-2px);
}

.btn-small {
    font-size: 0.9rem;
    padding: 6px 18px;
}

.btn-medium {
    font-size: 0.9rem;
    padding: 8px 24px;
}

.btn-large {
    font-size: 1.1rem;
    padding: 12px 32px;
}

/* Contact Button (Special) */
.btn-contact {
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 3px 17px;
    background: transparent;
    font-weight: 500;
    font-size: 0.9rem;
    margin-left: 1vw;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:hover {
    color: var(--secondary-bg);
    border-color: var(--accent-color);
    background: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 208, 132, 0.3);
}

.main-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    height: 100vh;
    z-index: 1;


}

.main-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2vw;
}

.subtitle {
    border-top: 2px solid var(--border-color);
    display: inline-block;
    background: rgba(255, 255, 255, 0.092);
    color: var(--accent-color) !important;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.main-title {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 0.7rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.main-title .highlight {
    color: var(--accent-color);
    font-weight: 500;
}

.main-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 1.3rem;
    margin-bottom: 2.1rem;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.main-buttons {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-top: 18px;
}

.btn-dark-custom {
    background: var(--accent-color);
    color: var(--secondary-bg);
    border-radius: 8px;
    padding: 6px 18px;
    font-size: 0.8rem;
    border: none;
    font-weight: 500;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.btn-dark-custom:hover {
    background: #00b874;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.3);
}

.btn-link-custom {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: underline;
    background: transparent;
    border: none;
    padding: 6px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-link-custom:hover {
    color: #00b874;
    transform: translateY(-2px);
}

/* Responsive - Main Section */
@media (max-width: 1200px) {
    .main-section {
        padding: 60px 0;
        height: auto;
        min-height: 90vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .main-title {
        font-size: 2.8rem;
    }

    .main-content {
        padding: 0 3vw;
    }
}

@media (max-width: 900px) {
    .main-section {
        padding: 50px 0;
        min-height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .main-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .main-buttons {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .main-buttons .btn-base {
        width: 250px;
        max-width: 90vw;
    }

    .main-desc {
        font-size: 1.05rem;
        padding: 0 2vw;
    }
}

@media (max-width: 600px) {
    .main-section {
        padding: 40px 0;
        min-height: 70vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .main-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .main-content {
        padding: 0 5vw;
    }

    .subtitle {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-bottom: 24px;
    }

    .main-desc {
        font-size: 0.95rem;
        margin-top: 1rem;
        margin-bottom: 1.8rem;
        line-height: 1.6;
    }

    .btn-base {
        font-size: 0.85rem;
        padding: 12px 24px;
    }

    .main-buttons .btn-base {
        width: 280px;
        max-width: 85vw;
    }

    .custom-navbar {
        padding: 0 4vw;
        min-height: 56px;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    body {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.6rem;
    }

    .main-content {
        padding: 0 6vw;
    }

    .subtitle {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .main-desc {
        font-size: 0.9rem;
    }

    .btn-base {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .main-buttons .btn-base {
        width: 260px;
        max-width: 80vw;
    }
}

/* Video Frame Section */
#video-frame {
    padding: 0 30px 80px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    width: 100%;
    max-width: 80%;
    height: 95vh;
    background: var(--secondary-bg);
    border-radius: 8px;
    box-shadow: 0 20px 60px var(--shadow-color);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    opacity: 1;
    transform: scale(1);
    animation: videoContainerFadeUp 1.2s ease-out;
}

@keyframes videoContainerFadeUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.video-player {
    width: 100%;
    height: 100%;
    background: black;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
}

/* CSS for hiding controls removed */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
    box-shadow: 0 8px 48px 0 #00d08411, 0 2px 8px 0 #1111;
    border-radius: 8px;
    padding: 32px 0 32px 0;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Ensure video overlay is always properly positioned */
.video-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10 !important;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: var(--accent-color);
    color: var(--secondary-bg);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
    opacity: 1;
    transform: scale(1);
    animation: playButtonPulse 2s ease-in-out infinite, playButtonFadeUp 1s ease-out;
}

@keyframes playButtonPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 208, 132, 0.6);
    }
}

@keyframes playButtonFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.play-btn:hover {
    background: #00b874;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 208, 132, 0.5);
    animation: none;
}

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

.play-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.3);
}

.video-title {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--secondary-bg);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Video frame animations - handled by GSAP */
.video-container {
    /* Initial state will be set by GSAP */
}

/* Responsive video frame */
@media (max-width: 1200px) {
    #video-frame {
        padding: 0 20px 60px;
    }

    .video-container {
        max-width: 85%;
        height: 80vh;
    }
}

@media (max-width: 900px) {
    #video-frame {
        padding: 0 15px 50px;
    }

    .video-container {
        max-width: 90%;
        height: 65vh;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .video-title {
        font-size: 1.1rem;
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 768px) {
    #video-frame {
        padding: 0 10px 40px;
        margin-top: 40px;
    }

    .video-container {
        width: 95%;
        max-width: 95%;
        height: 50vh;
        min-height: 300px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .video-title {
        font-size: 1rem;
        top: 12px;
        left: 12px;
    }
}

@media (max-width: 480px) {
    #video-frame {
        padding: 0 5px 30px;
        margin-top: 30px;
    }

    .video-container {
        width: 98%;
        max-width: 98%;
        height: 40vh;
        min-height: 250px;
        border-radius: 6px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .video-title {
        font-size: 0.9rem;
        top: 10px;
        left: 10px;
    }

    .video-player {
        border-radius: 6px;
    }

    .video-overlay {
        border-radius: 6px;
        padding: 16px 0;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #111 0%, #00d084 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

#our-services {
    position: relative;
    padding: 80px 80px 0 120px;
    z-index: 1;
}

.services-bg-shape.green2 {
    position: absolute;
    top: -80px;
    left: -120px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, #00d084 0%, transparent 80%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

.services-bg-shape.black2 {
    position: absolute;
    bottom: -100px;
    right: -120px;
    width: 260px;
    height: 280px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
}

.services-wavy {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.services-carousel {
    z-index: 2;
    position: relative;
    border-radius: 8px;
    padding: 32px 0 32px 0;
}

.services-subtitle {
    width: 100%;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--accent-color);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    filter: none;
}

.services-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    letter-spacing: 2px;
    z-index: 1;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(277deg, rgb(47 41 43 / 0%) -70.344%, rgb(3 3 3 / 8%) 100%);
    border-radius: 8px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.13);
    border: none;
    border-top: 3.5px solid var(--accent-color);
    padding: 44px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    box-shadow: 0 16px 48px 0 rgba(0, 208, 132, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.18);
    border-top: 3.5px solid var(--accent-color);
    transform: translateY(-8px);
    transition: 1s ease-in-out;
}

.service-title {
    color: #23232b;
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    z-index: 1;
}

.service-desc {
    color: #444;
    font-size: 1.01rem;
    text-align: left;
    opacity: 0.95;
    z-index: 1;
}

.service-icon {
    font-size: 2.7rem;
    margin-bottom: 18px;
    color: var(--accent-color);
    filter: drop-shadow(0 0 1.5px var(--accent-color));
    z-index: 1;
}

.service-learn-btn {
    margin-top: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #00d08422;
    background: rgba(0, 208, 132, 0.07);
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    transition: all 0.2s;
    text-decoration: none;
}

.service-learn-btn:hover {
    background: var(--accent-color);
    color: #fff;
    border: 1.5px solid var(--accent-color);
    box-shadow: 0 4px 20px #00d08444;
    transform: translateY(-2px) scale(1.04);
}

.service-icon-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 8px #00d08433) brightness(1.05);
    border-radius: 8px;
    background: #f3f3f3;
    z-index: 1;
    transition: transform 0.3s;
    margin-top: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    box-shadow: none;
    background: transparent;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    transition: all 0.2s;
    text-decoration: none;
}

.service-card:hover .service-icon-img {
    transform: scale(1.08) rotate(-6deg);
}

/* Services Section Responsive */
@media (max-width: 1400px) {
    #our-services {
        padding: 60px 60px 0 80px;
    }
}

@media (max-width: 1200px) {
    #our-services {
        padding: 50px 40px 0 60px;
    }

    .services-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 1100px) {
    #our-services {
        padding: 40px 30px 0 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card {
        padding: 36px 20px 28px 20px;
    }
}

@media (max-width: 900px) {
    #our-services {
        padding: 30px 20px 0 20px;
    }

    .services-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 32px 18px 24px 18px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 0.95rem;
    }

    .service-icon {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    #our-services {
        padding: 20px 15px 0 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .services-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .service-card {
        padding: 28px 16px 22px 16px;
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    #our-services {
        padding: 15px 10px 0 10px;
    }

    .services-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .services-subtitle {
        font-size: 0.9rem;
    }

    .services-grid {
        padding: 0 5px;
    }

    .service-card {
        padding: 24px 14px 18px 14px;
        max-width: 350px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-desc {
        font-size: 0.9rem;
        text-align: center;
    }

    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }

    .service-learn-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

#about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 80px 0;
    background: #f3f3f3;
    min-height: 60vh;
    position: relative;
    z-index: 1;
    gap: 48px;
}

.about-img-col {
    flex: 1.1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    min-width: 320px;
    min-height: 340px;
    margin-right: 32px;
}

.about-img-bg {
    position: absolute;
    left: 0;
    top: 10%;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #00d08422 0%, #1111 100%);
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    z-index: 0;
    filter: blur(2px);
}

.about-img-main {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 32px #00d08422, 0 2px 8px #1111;
    position: relative;
    z-index: 2;
}

.about-img-small {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    left: -30px;
    top: 20px;
    z-index: 3;
    box-shadow: 0 4px 16px #00d0849e;
    border: 4px solid #fff;
}

.about-img-wide {
    width: 130px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    left: 30px;
    bottom: -18px;
    z-index: 3;
    box-shadow: 0 4px 16px #00d08422;
    border: 4px solid #fff;
}

.about-info-col {
    flex: 1.2;
    padding-left: 40px;
    min-width: 320px;
    z-index: 2;
}

.about-subtitle {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #00d084;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-subtitle i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: #181014;
    margin-bottom: 14px;
    line-height: 1.18;
}

.about-title .highlight {
    color: #00d084;
    font-weight: 800;
}

.about-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 28px;
    opacity: 0.92;
    max-width: 520px;
}

.about-features {
    display: flex;
    gap: 24px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.about-feature {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 8px;
    box-shadow: 0 2px 12px #00d08411;
    padding: 16px 20px 12px 20px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
    border-left: 4px solid #00d084;
}

.about-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00d084;
    margin-bottom: 6px;
}

.about-feature-desc {
    font-size: 0.98rem;
    color: #222;
    opacity: 0.85;
}

@media (max-width: 1100px) {
    #about {
        flex-direction: column;
        padding: 48px 0 32px 0;
        gap: 0;
    }

    .about-img-col,
    .about-info-col {
        min-width: 0;
        width: 100%;
        padding-left: 0;
        justify-content: center;
        margin-right: 0;
    }

    .about-info-col {
        padding-left: 0;
        margin-top: 32px;
    }

    .about-img-bg {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 700px) {
    .about-title {
        font-size: 1.1rem;
    }

    .about-desc {
        font-size: 0.97rem;
    }

    .about-feature {
        padding: 10px 8px 8px 10px;
        min-width: 100px;
    }

    .about-img-main {
        width: 120px;
        height: 120px;
    }

    .about-img-small {
        width: 50px;
        height: 50px;
        left: -10px;
        top: 4px;
    }

    .about-img-wide {
        width: 70px;
        height: 32px;
        left: 10px;
        bottom: -8px;
    }
}

.services-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px !important;
    position: relative;
}

.services-carousel .swiper-wrapper {
    align-items: stretch;
}

.service-card.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 24px 0;
}

/* Hide grid for carousel */
.services-grid {
    display: none !important;
}

/* Remove Swiper navigation and pagination styles */
/* .swiper-button-next, .swiper-button-prev, .swiper-pagination { display: none !important; } */

.services-carousel .swiper-button-next,
.services-carousel .swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-carousel .swiper-button-next:hover,
.services-carousel .swiper-button-prev:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.services-carousel .swiper-button-next::after,
.services-carousel .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

@media (max-width: 900px) {
    .service-card.swiper-slide {
        /* min-width and max-width removed */
    }
}

@media (max-width: 600px) {
    .service-card.swiper-slide {
        /* min-width and max-width removed */
    }
}

.main-section {
    position: relative;
    z-index: 1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.main-content,
.main-section *:not(#particles-js) {
    position: relative;
    z-index: 1;
}

.core-offers-section {
    position: relative;
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, #f3f3f3 60%, #e8e8e8 100%);
    overflow: hidden;
}

.core-offers-bg {
    position: absolute;
    top: -80px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00d084 0%, transparent 80%);
    filter: blur(80px);
    opacity: 0.13;
    z-index: 0;
}

.core-offers-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.core-offers-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #181014;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.core-offers-desc {
    font-size: 1.1rem;
    color: #444;
    opacity: 0.85;
}

.core-offers-list {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.core-offer-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    box-shadow: 0 8px 32px 0 #00d08411;
    border: 1.5px solid #e0e0e0;
    padding: 38px 28px 28px 28px;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    position: relative;
    overflow: hidden;
}

.core-offer-card:hover {
    box-shadow: 0 16px 48px 0 #00d08433, 0 2px 8px 0 #1111;
    border: 2.5px solid #00d084;
    transform: translateY(-8px) scale(1.03);
}

.core-offer-icon {
    font-size: 2.5rem;
    color: #00d084;
    margin-bottom: 18px;
    animation: iconPulse 2.5s infinite cubic-bezier(.4, 0, .2, 1);
}

@keyframes iconPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 0 #00d084);
    }

    50% {
        filter: drop-shadow(0 0 12px #00d08488);
    }
}

.core-offer-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #181014;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
}

.shimmer-effect-text {
    background: linear-gradient(90deg, #00d084 0%, #fff 50%, #00d084 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: background-position 1s cubic-bezier(.4, 0, .2, 1);
}

.core-offer-card:hover .shimmer-effect-text {
    background-position: 100% 50%;
}

.core-offer-desc {
    font-size: 1rem;
    color: #444;
    text-align: center;
    opacity: 0.88;
}

.core-offers-cta {
    text-align: center;
    margin-top: 18px;
    z-index: 2;
    position: relative;
}

.core-offers-btn {
    font-size: 1.1rem;
    padding: 16px 44px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 16px #00d08422;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.core-offers-btn:hover {
    background: #00d084;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
    .core-offers-list {
        flex-direction: column;
        gap: 24px;
    }

    .core-offer-card {
        max-width: 100%;
    }
}

.auto-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24, 16, 20, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

.auto-popup__content {
    background: linear-gradient(120deg, #23272f 80%, #23272f 100%);
    border-radius: 8px;
    box-shadow: 0 8px 48px #00d08422, 0 2px 8px #1111;
    padding: 40px 32px 32px 32px;
    min-width: 320px;
    max-width: 92vw;
    text-align: center;
    position: relative;
    pointer-events: auto;
    border: 1.5px solid #222c;
}

.auto-popup__icon {
    font-size: 2.2rem;
    color: #00d084;
    margin-bottom: 18px;
    animation: iconPulse 2.5s infinite cubic-bezier(.4, 0, .2, 1);
    filter: drop-shadow(0 0 8px #00d08444);
}

.auto-popup__title {
    font-size: 1.18rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.auto-popup__desc {
    font-size: 1.05rem;
    color: #333333;
    margin-bottom: 24px;
    opacity: 0.92;
}

.auto-popup__cta {
    font-size: 1.08rem;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    background: linear-gradient(90deg, #00d084 60%, #00b874 100%);
    color: #181014;
    border: none;
    box-shadow: 0 4px 16px #00d08422;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
}

.auto-popup__cta:hover {
    background: #00d084;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.auto-popup__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: #333333;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
    border-radius: 4px;
    padding: 2px 8px;
}

.auto-popup__close:hover {
    color: #00d084;
    background: #23272f;
}

@media (max-width: 600px) {
    .auto-popup__content {
        padding: 22px 4vw 18px 4vw;
        min-width: 0;
    }
}

.tech-stack-section {
    background: transparent;
    padding: 54px 0 38px 0;
    text-align: center;
}

.tech-stack-header {
    color: #333333;
    font-size: 1.18rem;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.2px;
}

.tech-stack-slider {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.tech-stack-slider .swiper-wrapper {
    align-items: center;
}

.tech-stack-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    max-width: 180px;
    height: 54px;
    opacity: 0.7;
    filter: grayscale(1) brightness(0.7);
    transition: opacity 0.2s, filter 0.2s;
    border-radius: 8px;
    padding: 10px 18px;
}

.tech-stack-slider .swiper-slide:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

.tech-stack-slider img {
    max-height: 38px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none;
}

@media (max-width: 900px) {
    .tech-stack-slider .swiper-slide {
        min-width: 80px;
        max-width: 120px;
    }

    .tech-stack-header {
        font-size: 1rem;
    }
}




/* From Uiverse.io by vinodjangid07 */
.special-offer-btn {
    width: 140px;
    height: 32px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #ffd277, #77530a, #0f770a, #77ff9e, #0a774b, #17770a);
    background-size: 250%;
    background-position: left;
    color: #ffd277;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 1s;
    overflow: hidden;
}

.special-offer-btn::before {
    position: absolute;
    content: "Get 800$";
    color: #ffd277;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 97%;
    height: 90%;
    border-radius: 50px;
    transition-duration: 1s;
    background-color: #f3f3f3;
    background-size: 200%;
}

.special-offer-btn:hover {
    background-position: right;
    transition-duration: 1s;
    color: #00d084;
}

.special-offer-btn:hover::before {
    background-position: right;
    transition-duration: 1s;
    color: #00d084;

}

.special-offer-btn:active {
    transform: scale(0.95);

    color: #00d084;
}

/* Why Choose Psoft Section - Modern, Transparent, Circular, Techy */
.why-psoft-section {
    position: relative;
    background: transparent;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 1;
    padding: 0 0 80px 0;
}

.why-psoft-cosmic-bg-green {
    position: relative;
    width: 100vw;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.why-psoft-arc-green {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 900px;
    z-index: 1;
    pointer-events: none;
}

.why-psoft-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="60" r="1.5" fill="white" opacity="0.7"/><circle cx="180" cy="120" r="1" fill="white" opacity="0.5"/><circle cx="320" cy="200" r="1.2" fill="white" opacity="0.6"/><circle cx="500" cy="100" r="1.1" fill="white" opacity="0.4"/><circle cx="700" cy="300" r="1.3" fill="white" opacity="0.7"/><circle cx="800" cy="400" r="1.5" fill="white" opacity="0.5"/></svg>');
    background-repeat: repeat;
    opacity: 0.13;
}

.why-psoft-content {
    position: relative;
    z-index: 3;
    padding-top: 120px;
    padding-bottom: 56px;
    padding-left: 32px;
    padding-right: 32px;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.why-psoft-badge {
    border-top: 3px solid var(--border-color);
    display: inline-block;
    background: transparent;
    color: var(--accent-color) !important;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    box-shadow: rgba(255, 255, 255, 0.08) 0px 1px 8px 8px inset, rgba(255, 255, 255, 0.2) 0px 1px 20px 0px inset;
    backdrop-filter: blur(10px);
}

.why-psoft-title {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #333333;
    text-shadow: 0 2px 24px #00d0849e;
}

.why-psoft-subtitle {
    font-size: 1.08rem;
    color: #6a6a6a;
    opacity: 0.82;
    margin-bottom: 38px;
    font-weight: 400;
}

.why-psoft-features-modern {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-top: 32px;
    position: relative;
    z-index: 4;
    flex-wrap: nowrap;
}

.why-psoft-feature-modern {
    background: linear-gradient(277deg, rgb(47 41 43 / 0%) -70.344%, rgb(3 3 3 / 8%) 100%);
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.10);
    /* text-align: center; */
    border: 1.5px solid rgba(255, 255, 255, 0.13);
    padding: 24px 32px;
    min-width: 320px;
    max-width: 420px;
    height: 35vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, border 0.2s, background 0.2s;
}

.why-psoft-feature-modern:hover {
    /* Remove card animation, only icon glows */
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.10);
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    filter: none;
    transform: none;
}

.why-psoft-feature-icon-modern {
    width: 40px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.10);
    margin-bottom: 0;
    margin-right: 24px;
    font-size: 1.5rem;
    color: #00d084;
    border: none;
    transition: box-shadow 0.3s, background 0.3s;
}

.why-psoft-feature-modern:hover .why-psoft-feature-icon-modern {
    background: rgba(255, 255, 255, 0.22);
    color: #00d084;
    box-shadow: 0 0 16px 4px #fff, 0 0 0 4px rgba(255, 255, 255, 0.13);
}

.why-psoft-feature-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: #333333;
    margin: 13px;
    letter-spacing: -0.01em;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    z-index: 1;
}

.why-psoft-feature-desc {
    font-size: 0.9rem;
    color: #6a6a6a;
    opacity: 0.85;
    font-weight: 400;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    z-index: 1;
    margin-top: 8px;
    text-align: center;
}

/* Why Psoft Section Responsive */
@media (max-width: 1200px) {
    .why-psoft-section {
        min-height: 600px;
        padding: 0 0 60px 0;
    }

    .why-psoft-cosmic-bg-green {
        min-height: 550px;
    }

    .why-psoft-content {
        padding-top: 100px;
        padding-bottom: 40px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .why-psoft-title {
        font-size: 2.2rem;
    }

    .why-psoft-features-modern {
        gap: 28px;
    }

    .why-psoft-feature-modern {
        min-width: 280px;
        max-width: 380px;
        height: auto;
        min-height: 200px;
        padding: 20px 28px;
    }
}

@media (max-width: 1000px) {
    .why-psoft-section {
        min-height: 500px;
    }

    .why-psoft-cosmic-bg-green {
        min-height: 450px;
    }

    .why-psoft-title {
        font-size: 2rem;
    }

    .why-psoft-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .why-psoft-features-modern {
        gap: 24px;
        flex-wrap: wrap;
    }

    .why-psoft-feature-modern {
        min-width: 250px;
        max-width: 320px;
        padding: 18px 24px;
    }
}

@media (max-width: 900px) {
    .why-psoft-section {
        min-height: auto;
        padding: 0 0 40px 0;
    }

    .why-psoft-cosmic-bg-green {
        min-height: auto;
    }

    .why-psoft-content {
        padding-top: 80px;
        padding-bottom: 32px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .why-psoft-title {
        font-size: 1.8rem;
    }

    .why-psoft-subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .why-psoft-badge {
        font-size: 0.85rem;
        padding: 4px 16px;
        margin-bottom: 24px;
    }

    .why-psoft-features-modern {
        flex-direction: column;
        gap: 20px;
        padding: 0px 30px;
        align-items: center;
        flex-wrap: wrap;
    }

    .why-psoft-feature-modern {
        flex-direction: column;
        min-width: 0;
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 20px 12px;
        margin: 10px 0px;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    /* .why-psoft-feature-icon-modern {
    margin-right: 16px;
    margin-bottom: 0;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    flex-shrink: 0;
  } */

    .why-psoft-feature-title {
        font-size: 1.1rem;
    }

    .why-psoft-feature-desc {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .why-psoft-content {
        padding-top: 60px;
        padding-bottom: 24px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .why-psoft-title {
        font-size: 1.6rem;
    }

    .why-psoft-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .why-psoft-features-modern {
        gap: 16px;
    }

    .why-psoft-feature-modern {
        padding: 14px 10px;
    }

    .why-psoft-feature-icon-modern {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
        margin-right: 12px;
    }

    .why-psoft-feature-title {
        font-size: 1rem;
    }

    .why-psoft-feature-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .why-psoft-content {
        padding-top: 40px;
        padding-bottom: 20px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .why-psoft-title {
        font-size: 1.4rem;
    }

    .why-psoft-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .why-psoft-badge {
        font-size: 0.8rem;
        padding: 3px 12px;
        margin-bottom: 16px;
    }

    .why-psoft-features-modern {
        gap: 12px;
    }

    .why-psoft-feature-modern {
        padding: 12px 8px;
    }

    .why-psoft-feature-icon-modern {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        margin-right: 10px;
    }

    .why-psoft-feature-title {
        font-size: 0.95rem;
    }

    .why-psoft-feature-desc {
        font-size: 0.75rem;
    }
}

/* --- FAQ Section Modern Cosmic --- */
.faq-section {
    width: 100%;
    border-radius: 8px;
    margin: 100px auto 0px auto;
    padding: 24px 0 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.faq-container {
    display: flex;
    flex-direction: row;
    width: 100vw;
    max-width: 80%;
    background: radial-gradient(43.4% 100% at 0% 100%, #00b8742e 0%, rgb(0 0 0 / 0%) 100%);
    border-radius: 8px;
    box-shadow: 0 4px 32px 0 #00d08411, 0 2px 8px 0 #1111;
    overflow: hidden;
    border: 1.5px solid rgba(0, 208, 132, 0.10);
}

.faq-left {
    flex: 1.1;
    position: relative;
    min-width: 255px;
    min-height: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: transparent;
    padding: 24px 18px 24px 24px;
}

@keyframes faqGlowPulse {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 550;
    color: #333333;
    z-index: 1;
    position: relative;
    text-align: left;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

.faq-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0000000d;
    padding: 26px;
    margin: 13px;
    border-radius: 8px;
}

.faq-accordion {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 0px; */
    background: linear-gradient(277deg, rgb(93 83 86 / 0%) -70.344%, rgb(0 0 0 / 0%) 100% 100%100%);
    border-radius: 8px;
}

.faq-card {
    background: rgba(40, 40, 45, 0.75);
    /* border-radius: 8px; */
    box-shadow: 0 2px 12px #00d08424;
    padding: 0 0;
    overflow: hidden;
    /* border: 1.5px solid transparent; */
    transition: all 0.5s ease 0.1s;
    backdrop-filter: blur(4px);
}

.faq-card.active,
.faq-card:hover {
    /* border: 1px solid var(--accent-color); */
    /* box-shadow: 0 4px 24px #00d0849e; */
    /* background: linear-gradient(277deg, rgb(93 83 86 / 22%) -70.344%, rgb(0 0 0 / 40%) 100%); */
    /* margin: 1px; */
    /* transition: all 0.5s ease; */
}

.faq-question {
    font-size: 0.95rem;
    font-weight: 550;

    color: #fff;
    padding: 16px 18px 16px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    letter-spacing: 0.01em;
}

.faq-card.active .faq-question,
.faq-card:hover .faq-question {
    color: var(--bs-body-bg);
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 14px;
    color: #dee2e6b8;
    transition: all color 0.2s, all transform 0.2s;
}

.faq-card.active .faq-toggle {
    color: var(--secondary-bg);
    transform: rotate(45deg);
    transition: all color 0.2s, all transform 0.2s;

    /* box-shadow: chartreuse; */
    /* box-shadow: 0 2px 24px #ffffff; */
    /* background: tan; */
}

.faq-answer {
    font-size: 0.9rem;
    color: #e0e0e0;
    padding: 0 18px 12px 18px;
    display: none;
    line-height: 1.5;
    /* border-top: 1px solid #23232b; */
    background: transparent;
}

.faq-card.active .faq-answer {
    display: block;
    animation: faqAnswerFade 0.3s;
}

@keyframes faqAnswerFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section Responsive */
@media (max-width: 1200px) {
    .faq-container {
        max-width: 85%;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-left {
        padding: 20px 16px 20px 20px;
    }

    .faq-right {
        padding: 22px;
    }
}

@media (max-width: 1000px) {
    .faq-container {
        max-width: 90%;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .faq-section {
        margin: 80px auto 0px auto;
        padding: 20px 0;
    }

    .faq-container {
        flex-direction: column;
        padding: 0;
        max-width: 95%;
        width: 95vw;
    }

    .faq-left,
    .faq-right {
        padding: 18px 12px 12px 12px;
        min-width: 0;
    }

    .faq-left {
        min-height: auto;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .faq-title {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.2;
    }

    .faq-right {
        background: transparent;
        margin: 0;
        padding: 20px 16px;
    }

    .faq-accordion {
        max-width: 100%;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 18px 16px;
    }

    .faq-answer {
        font-size: 0.85rem;
        padding: 0 16px 16px 16px;
    }

    .faq-toggle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        margin: 60px auto 0px auto;
        padding: 15px 0;
    }

    .faq-container {
        max-width: 98%;
        width: 98vw;
    }

    .faq-title {
        font-size: 1.6rem;
    }

    .faq-left,
    .faq-right {
        padding: 16px 10px 10px 10px;
    }

    .faq-right {
        padding: 15px 12px;
    }

    .faq-question {
        font-size: 0.85rem;
        padding: 16px 14px;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 0.8rem;
        padding: 0 14px 14px 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin: 40px 15px 120px 15px;
        padding: 10px 0;
        width: auto;
    }

    .faq-container {
        max-width: 100%;
        width: 100vw;
        border-radius: 8px;
        padding: 10px;
    }

    .faq-title {
        font-size: 1.4rem;
        letter-spacing: -0.5px;
    }

    .faq-left {
        padding: 14px 8px 8px 8px;
    }

    .faq-right {
        padding: 12px 8px;
    }

    .faq-question {
        font-size: 0.8rem;
        padding: 14px 12px;
        font-weight: 600;
    }

    .faq-answer {
        font-size: 0.75rem;
        padding: 0 12px 12px 12px;
    }

    .faq-toggle {
        font-size: 1.4rem;
        margin-left: 8px;
    }

    .faq-card {
        box-shadow: 0 1px 8px #00d08420;
    }
}

/* Footer Styles */
.footer-main {
    position: relative;
    background: radial-gradient(ellipse at top, var(--gradient-start) 0%, var(--primary-bg) 70%);
    padding: 0;
    width: 100vw;
    max-height: 70vh;
    overflow: visible;
    backdrop-filter: blur(12px);
    margin-top: 18% !important;
}

.footer-shade {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55vw;
    height: 120px;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at top, #7e7e7e 0%, #00000000 80%);
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 0 0 0;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    flex: 1;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 16px;
    padding: 32px 48px;
    padding-top: 94px;
}

.footer-brand {
    min-width: 220px;
    margin-right: 32px;
    background: transparent;
}

.footer-logo {
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #bdbdbd;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-desc {
    color: #333333;
    font-size: 0.9rem;
    margin-bottom: 18px;

}

.footer-columns {
    display: flex;
    gap: 48px;
    background: transparent;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 140px;
}

.footer-col p {
    color: #bdbdbd;
}

.footer-col-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.footer-col a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    background: linear-gradient(90deg, #111 0%, #00d084 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 62px;
    padding: 32px 0 24px 0;
    border-top: 1px solid #e4e4e4;
    position: relative;
    z-index: 1;
    border-radius: 0 0 16px 16px;
    backdrop-filter: blur(8px);
}

.footer-copyright {
    color: #333333;
    font-size: 0.97rem;
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-socials a {
    color: #333333;
    font-size: 1.3rem;
    background: rgba(60, 60, 70, 0.32);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
    background: #fff;
    color: #444a5a;
}

/* Footer and Newsletter Responsive */
@media (max-width: 1200px) {
    .footer-main {
        max-height: none;
        min-height: auto;
    }

    .footer-newsletter-vertical {
        margin-top: -100px !important;
        padding: 16px;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .newsletter-desc {
        font-size: 1rem;
    }

    .footer-links {
        padding: 28px 40px;
        padding-top: 80px;
    }
}

@media (max-width: 1100px) {
    .footer-content {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
        padding: 32px 16px 0 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
        padding: 24px 16px;
        padding-top: 60px;
    }

    .footer-brand {
        margin-bottom: 18px;
        margin-right: 0;
        min-width: auto;
    }

    .footer-columns {
        flex-direction: row;
        gap: 24px;
        flex-wrap: wrap;
    }

    .footer-col {
        min-width: 120px;
        flex: 1;
    }

    .footer-newsletter-vertical {
        margin-top: -80px !important;
        padding: 14px;
    }

    .newsletter-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 900px) {
    /* .footer-main {
    margin-top: 10% !important;
  } */

    .footer-content {
        gap: 24px;
        padding: 24px 12px 0 12px;
    }

    .footer-links {
        padding: 20px 12px;
        padding-top: 50px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 20px;
    }

    .footer-col {
        min-width: auto;
    }

    .footer-newsletter-vertical {
        margin-top: -60px !important;
        padding: 12px;
    }

    .newsletter-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .newsletter-desc {
        font-size: 0.95rem;
    }

    .newsletter-input {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .newsletter-btn.input-group-text {
        font-size: 0.9rem;
        padding: 10px 24px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 20px 8px 0 8px;
        gap: 18px;
    }

    .footer-links {
        padding: 16px 8px;
        padding-top: 40px;
        gap: 16px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 16px;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .footer-desc {
        font-size: 0.85rem;
        text-align: center;
    }

    .footer-columns {
        gap: 16px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col-title {
        font-size: 1rem;
    }

    .footer-col a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 16px 8px 12px 8px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
    }

    .footer-socials {
        gap: 14px;
    }

    .footer-socials a {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .footer-newsletter-vertical {
        margin-top: -50px !important;
        padding: 10px;
    }

    .newsletter-title {
        font-size: 1.3rem;
        text-align: center;
    }

    .newsletter-desc {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 14px;
    }

    .footer-links {
        padding: 12px 5px;
        padding-top: 30px;
        gap: 12px;
    }

    .footer-logo {
        font-size: 1.6rem;
        text-align: start;
    }

    .footer-desc {
        font-size: 0.8rem;
        width: 85%;
        text-align: start;
    }

    .footer-columns {
        gap: 18px;
        align-items: baseline;
    }

    .footer-col-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
        text-align: start;
    }

    .footer-col a {
        font-size: 0.8rem;
        text-align: start;

    }

    .footer-bottom {
        padding: 12px 5px 8px 5px;
        gap: 8px;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-socials {
        gap: 10px;
    }

    .footer-socials a {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .footer-newsletter-vertical {
        margin-top: -40px !important;
        padding: 8px;
    }

    .newsletter-title {
        font-size: 0.8rem;
    }

    .newsletter-desc {
        font-size: 0.75rem;
    }

    .newsletter-input {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .newsletter-btn.input-group-text {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    /* .footer-main {
    margin-top: 8% !important;
  } */
}

.footer-newsletter-vertical {
    margin-top: -120px !important;
    position: relative;
    z-index: 10;
    background: rgba(40, 40, 45, 0.75);
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.10);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    max-width: 100%;
    width: 100%;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: flex-start;
}

.newsletter-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

.newsletter-desc {
    color: #bdbdbd;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

.newsletter-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Remove horizontal layout for md+ screens */
@media (min-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
}

.newsletter-form .input-group {
    width: 100%;
    background: rgba(30, 30, 35, 0.7);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px 0 #ff225033;
    border: 1.5px solid var(--accent-color, #ff2250);
}

.newsletter-input {
    background: transparent;
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 1rem;
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    box-shadow: none;
    outline: none;
}

.newsletter-input:focus {
    background: rgba(30, 30, 35, 0.85);
    color: #fff;
    box-shadow: none;
}

.newsletter-btn.input-group-text {
    color: #fff;
    background: #00d084;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    margin: 3px;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
}

/* .newsletter-btn.input-group-text:hover {
  background: #fff;
  color: #00b874;
  transition: all 1s ease;
} */

/* --- Modern Animations --- */
.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1);
}

.animate-fade-in.visible {
    opacity: 1;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.animate-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Why-Psoft feature card hover */
.why-psoft-feature-modern {
    transition: box-shadow 0.3s, border 0.3s, background 0.3s, transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.why-psoft-feature-modern:hover {
    box-shadow: 0 16px 48px 0 #00d08433, 0 2px 8px 0 #1111;
    border: 0.9px solid #00d084;
    /* transform: translateY(-8px) scale(1.04); */
}

/* FAQ accordion animation */
.faq-card .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.5s cubic-bezier(.4, 0, .2, 1);
}

.faq-card.active .faq-answer {
    max-height: 400px;
    opacity: 1;
}

/* Newsletter input/button focus/hover */
.newsletter-input:focus,
.newsletter-btn.input-group-text:hover {
    box-shadow: 0 0 0 2px #00d08455;
    transform: scale(1.03);
    transition: box-shadow 0.3s, transform 0.3s;
}

/* Footer social icon hover */
.footer-socials a {
    transition: background 0.2s, color 0.2s, transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.footer-socials a:hover {
    background:
        rgba(187, 187, 190, 0.32);
    color: #02c17b;
}


/* EFFECT */


.shimmer-effect {
    color: rgba(0, 155, 31, 0.1);
    background: -webkit-gradient(linear, left top, right top, from(#00b874), to(#c6d4006b), color-stop(0.5, #fff));
    background: -moz-gradient(linear, left top, right top, from(#00b874), to(#c6d4006b), color-stop(0.5, #fff));
    background: gradient(linear, left top, right top, from(#00b874), to(#c6d4006b), color-stop(0.5, #fff));
    -webkit-background-size: 300px 100%;
    -moz-background-size: 300px 100%;
    background-size: 80px 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-animation-name: shimmer;
    -moz-animation-name: shimmer;
    animation-name: shimmer;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-duration: 4.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: #222;
}

@-moz-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@-webkit-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@-o-keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

@keyframes featureFadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes featureScaleUp {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes featureFadeRight {
    0% {
        opacity: 0;
        transform: translateX(60px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.feature-strategy.feature-animate {
    animation: featureFadeLeft 1.1s cubic-bezier(.4, 0, .2, 1) both;
}

.feature-acceleration.feature-animate {
    animation: featureScaleUp 1.1s cubic-bezier(.4, 0, .2, 1) both;
}

.feature-initialization.feature-animate {
    animation: featureFadeRight 1.1s cubic-bezier(.4, 0, .2, 1) both;
}

/* --- About Page Section Styles (Modern/Techy) --- */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    /* padding: 56px 20px 40px 20px; */
    margin-top: 56px;
    border-radius: 8px;
    animation: aboutFadeIn 0.9s cubic-bezier(.4, 0, .2, 1) both;
}

.section-label {
    border-top: 3px solid var(--border-color);
    display: inline-block;
    background: transparent;
    color: var(--accent-color) !important;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    box-shadow: rgba(255, 255, 255, 0.08) 0px 1px 8px 8px inset, rgba(255, 255, 255, 0.2) 0px 1px 20px 0px inset;
    backdrop-filter: blur(10px);
}

.about-title {
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: var(--text-primary, #23243a);
    font-family: 'Inter', Arial, sans-serif;
}

.about-underline {
    width: 80px;
    height: 4px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--primary, #00d084) 0%, var(--gradient-accent, #00c3ff) 100%);
    margin-bottom: 32px;
}

.about-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary, #44485a);
    margin: 50px 0px;
    max-width: 100%;
    font-family: 'Inter', Arial, sans-serif;
    text-align: justify;
}

.about-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 16px;
}

.about-card {
    /* background: linear-gradient(120deg, #fff 80%, var(--gradient-accent, #e0f7fa) 100%); */
    border-radius: 8px;
    /* box-shadow: 0 4px 24px 0 rgba(0, 195, 255, 0.08); */
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 48%;
    /* padding: 32px 28px 28px 28px; */
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

.about-card .section-label {
    /* background: linear-gradient(90deg, var(--primary, #00d084) 0%, var(--gradient-accent, #00c3ff) 100%); */
    font-size: 1.3rem;
    margin-bottom: 18px;
    padding: 0px;
    font-weight: 500;
    /* border-radius: 8px; */
}

.about-card p {
    font-size: 1rem;
    color: var(--text-secondary, #44485a);
    margin: 0;
    line-height: 1.6;
    font-family: 'Inter', Arial, sans-serif;
}

.about-card.about-card-animate {
    opacity: 1;
    transform: translateY(0);
}




/* About and Contact Pages Responsive */
@media (max-width: 1200px) {
    .about-container {
        margin-top: 48px;
        padding: 0 20px;
    }

    .about-title {
        font-size: 2.4rem;
    }

    .contact-main-section h1 {
        font-size: 3rem;
    }

    .contact-form .card {
        padding: 40px 0;
        margin: 30px auto 0 auto;
    }
}

@media (max-width: 1000px) {
    .about-title {
        font-size: 2.2rem;
    }

    .contact-main-section h1 {
        font-size: 2.6rem;
    }

    .services-main-section>div {
        height: auto;
        min-height: 35vh;
    }
}

@media (max-width: 900px) {
    .about-container {
        margin-top: 40px;
        padding: 0 16px;
    }

    .stats-section {
        height: auto;
        margin: 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-desc {
        font-size: 0.95rem;
        margin: 30px 0;
        text-align: left;
    }

    .about-cards-row {
        flex-direction: column;
        gap: 18px;
    }

    .about-card {
        max-width: 100%;
        min-width: auto;
    }

    .about-tags-heading {
        font-size: 1.1rem;
        padding: 5px 18px 5px 14px;
    }

    .about-tag {
        font-size: 0.9rem;
        padding: 6px 16px 6px 14px;
    }

    .contact-main-section h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .contact-main-section .col-lg-5 p {
        margin: 20px 0;
        text-align: center;
    }

    .contact-form .card {
        padding: 32px 0;
        margin: 20px auto 0 auto;
    }

    .services-main-section>div {
        height: auto;
        min-height: 30vh;
        padding: 20px 0;
    }

    .services-main-section .col-lg-6 p {
        font-size: 0.95rem;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .about-container {
        margin-top: 32px;
        padding: 0 12px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-desc {
        font-size: 0.9rem;
        margin: 25px 0;
    }

    .section-label {
        font-size: 0.85rem;
        padding: 4px 12px;
        margin-bottom: 24px;
    }

    .about-cards-row {
        gap: 16px;
    }

    .about-card p {
        font-size: 0.95rem;
    }

    .about-tags-heading {
        font-size: 1rem;
        padding: 4px 16px 4px 12px;
    }

    .about-tag {
        font-size: 0.85rem;
        padding: 5px 14px 5px 12px;
    }

    .contact-main-section h1 {
        font-size: 1.9rem;
    }

    .contact-main-section .col-lg-5 p {
        font-size: 0.95rem;
        margin: 16px 0;
    }

    .contact-form .card {
        padding: 24px 0;
        margin: 16px auto 0 auto;
    }

    .services-main-section>div {
        min-height: 25vh;
        padding: 16px 0;
    }

    .services-main-section .col-lg-6 p {
        font-size: 0.9rem;
        margin-top: 20px;
    }

    .stats-section {
        height: auto !important;
        padding: 16px 0;
        margin: 40px 20px !important;
    }


    .stats-container {
        flex-direction: column;
        gap: 16px;
    }

    .stat-card {
        padding: 16px 0;
    }

    .stat-icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .stat-value {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        margin-top: 24px;
        padding: 0 8px;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-desc {
        font-size: 0.85rem;
        margin: 20px 0;
    }

    .section-label {
        font-size: 0.8rem;
        padding: 4px 10px;
        margin-bottom: 20px;
    }

    .about-cards-row {
        gap: 12px;
    }

    .about-card .section-label {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .about-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-tags-heading {
        font-size: 0.95rem;
        padding: 4px 14px 4px 10px;
    }

    .about-tag {
        font-size: 0.8rem;
        padding: 4px 12px 4px 10px;
    }

    .contact-main-section h1 {
        font-size: 1.7rem;
    }

    .contact-main-section .col-lg-5 p {
        font-size: 0.9rem;
        margin: 12px 0;
    }

    .contact-form .card {
        padding: 20px 0;
        margin: 12px auto 0 auto;
    }

    .services-main-section>div {
        min-height: 20vh;
        padding: 12px 0;
    }

    .services-main-section .col-lg-6 p {
        font-size: 0.85rem;
        margin-top: 16px;
    }

    .stats-container {
        gap: 12px;
    }

    .stat-card {
        padding: 12px 0;
    }

    .stat-icon {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .stat-value {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@keyframes aboutFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- About Tags Section --- */
.about-tags-section {
    margin-top: 40px;
    margin-bottom: 8px;
}

.about-tags-heading {
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    background: linear-gradient(90deg, var(--primary, #00d084) 0%, var(--gradient-accent, #00c3ff) 100%);
    color: #fff;
    border-radius: 8px;
    padding: 6px 22px 6px 16px;
    font-size: 1.15rem;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px 0 rgba(0, 208, 132, 0.10);
}

.about-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.about-tag {
    display: inline-block;
    padding: 7px 20px 7px 18px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary, #00d084);
    background: rgba(0, 208, 132, 0.08);
    border: 1.5px solid var(--primary, #00d084);
    border-radius: 999px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px 0 rgba(0, 208, 132, 0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    user-select: none;
}

.about-tag:hover {
    background: linear-gradient(90deg, var(--primary, #00d084) 0%, var(--gradient-accent, #00c3ff) 100%);
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(0, 195, 255, 0.13);
}

.about-label {
    /* font-family: 'Inter', 'Segoe UI', Arial, sans-serif; */
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    /* letter-spacing: -0.01em; */
    line-height: 1.2;
    color: #333333;
    text-shadow: 0 2px 24px #00d0849e;
    text-shadow: 0 2px 24px rgb(0 208 132 / 42%);
}

/* Stats Section Styles */
.stats-section {
    background: linear-gradient(277deg, rgb(47 41 43 / 0%) -70.344%, rgb(3 3 3 / 0%) 100%);
    border-radius: 8px;
    margin: 40px auto 0 auto;
    max-width: 1100px;
    padding: 0px 0;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 8px 32px 0px;
    height: 160px;
    outline: 1px solid #f1f1f1;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.stat-card {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 36px 0;
}

.stat-icon {
    display: block;
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #00e6a7;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 1rem;
    color: #bdbdbd;
    letter-spacing: 2px;
    font-weight: 500;
}


.contact-form {}

.contact-main-section h1 {
    font-size: 3.4rem;
}

.contact-main-section .col-lg-5 p {
    margin: 25px 0;
}

.contact-form .card {
    background: linear-gradient(277deg, rgb(47 41 43 / 0%) -70.344%, rgb(3 3 3 / 8%) 100%);
    padding: 48px 0;
    margin: 40px auto 0 auto;
    /* box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.13); */
    border-radius: 8px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.13) !important;
    outline: 1px solid #ffffff82;
}



.services-main-section>div {
    height: 41vh;
    border-bottom: 1px solid lightgray;
}

.services-main-section .col-lg-6 p {
    font-size: 1rem;
    margin-top: 50px;
}

/* Inline styles moved from HTML files */

.min-vh-80 {
    min-height: 80vh;
}

.min-vh-60 {
    min-height: 60vh;
}

.rounded-18 {
    border-radius: 18px;
}

.fs-11 {
    font-size: 1.1rem;
}

.btn-green-large {
    background: #00e676;
    color: #fff;
    font-size: 1.15rem;
    padding: .3rem 0;
    border-radius: 8px;
}

.px-5-important {
    padding: 0px !important;
}

/* --- Services Section Modern --- */
.services-section {
    padding: 80px 0 40px 0;
}

.services-section .service-icon {
    font-size: 4rem;
}


.services-section-label {
    color: #2ecc97;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.services-section-title {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #181818;
}

.services-section-subtitle {
    color: #444;
    font-size: 1.08rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.services-cards-row {
    margin-top: 1.5rem;
}

.service-card-modern {
    background: linear-gradient(277deg, rgb(47 41 43 / 0%) -70.344%, rgba(3, 3, 3, 0.044) 100%);
    border-radius: 8px;
    box-shadow: 0 4px 24px 0 rgba(60, 60, 60, 0.07);
    padding: 1.8rem;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
    color: #181818;
}

/* Smooth background & shadow transition on hover */
.service-card-modern:hover {
    box-shadow: 0 8px 32px 0 rgba(44, 204, 151, 0.13);
    background: #333333;
    color: #fff;

}

/* Smooth text color transition for title & description */
.service-title-modern,
.service-desc-modern {
    transition: color 0.3s ease-in-out;
}

.service-card-modern:hover .service-title-modern,
.service-card-modern:hover .service-desc-modern {
    color: #fff;
}


.service-icon-modern {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(44, 204, 151, 0.10);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.portfolio-icon-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(44, 204, 151, 0.10);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.service-icon-modern i {
    font-size: 2.8rem;
    color: #2ecc97;
    z-index: 2;
}

.service-number {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e9ecef;
    opacity: 1;
    text-shadow: 0 2px 8px rgba(60, 60, 60, 0.08);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.service-title-modern {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #181818;
    z-index: 2;
}

.service-desc-modern {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 2.7rem;
    z-index: 2;
}

.service-readmore {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    position: absolute;
    bottom: 0.3rem;
    right: 2rem;
    z-index: 2;
    transition: color 0.18s;
    top: 17rem;
}

.portfolio-readmore {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
}

.service-readmore-circle {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 2px solid #2ecc97;
    border-radius: 50%;
    margin-right: 0.5rem;
    background: transparent;
    transition: border-color 0.18s, background 0.18s;
}

.service-readmore:hover {
    color: #2ecc97;
}

.service-readmore:hover .service-readmore-circle {
    border-color: #1abc80;
    background: #e6f9f2;
}

@media (max-width: 991px) {
    .service-card-modern {
        height: fit-content;
    }

    .service-title-modern {
        font-size: 1rem !important;
    }

    .service-desc-modern {
        font-size: 0.85rem !important;
        text-align: left;
    }

    .services-main-section .col-lg-6 {
        padding: 0px !important;
    }
}

@media (max-width: 767px) {
    .services-section-title {
        font-size: 2rem;
    }

    .service-card-modern {
        min-height: 220px;
        padding: 1.2rem 0.8rem 1.2rem 0.8rem;
    }

    .service-number {
        font-size: 1.3rem;
        top: 10px;
        right: 10px;
    }

    .service-readmore {
        bottom: 0.8rem;
        right: 0.8rem;
    }
}

/* --- Testimonial Section --- */
.testimonial-section {
    background: #f8fafc;
    padding: 70px 0 60px 0;
}

.testimonial-section-label {
    color: #2ecc97;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.testimonial-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #181818;
    margin-bottom: 2.2rem;
}

.testimonial-cards-row {
    margin-top: 1.5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(60, 60, 60, 0.09);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
    min-height: 370px;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px 0 rgba(44, 204, 151, 0.13);
    border: 1.5px solid #2ecc97;
    transform: translateY(-4px) scale(1.025);
}

.testimonial-profile {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.testimonial-img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 12px 0 rgba(44, 204, 151, 0.13);
    border: 3px solid #fff;
}

.testimonial-text {
    margin-top: 48px;
    font-size: 1.08rem;
    color: #222;
    font-style: italic;
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-weight: 700;
    color: #181818;
    font-size: 1.13rem;
    margin-bottom: 0.2rem;
    text-align: center;
}

.testimonial-role {
    color: #7a7a7a;
    font-size: 0.98rem;
    text-align: center;
    margin-bottom: 0.2rem;
}

@media (max-width: 991px) {
    .testimonial-card {
        min-height: 340px;
        padding: 2rem 1rem 1.5rem 1rem;
    }

    .testimonial-img {
        width: 62px;
        height: 62px;
    }
}

@media (max-width: 767px) {
    .testimonial-section-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        min-height: 260px;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }

    .testimonial-img {
        width: 48px;
        height: 48px;
    }

    .testimonial-text {
        margin-top: 32px;
        font-size: 0.98rem;
    }
}

/* Optional: fade/slide-in animation class for testimonials */
.testimonial-card.animated {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4, 1.3, .6, 1), transform 0.7s cubic-bezier(.4, 1.3, .6, 1);
}

.testimonial-card.animated.visible {
    opacity: 1;
    transform: none;
}



/* Calendly Booking Section - Modern Techy Style */
.calendly-section-techy {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    /* background: radial-gradient(ellipse 60% 40% at 30% 40%, #1de9b6 0%, transparent 70%), 
              radial-gradient(ellipse 60% 40% at 70% 60%, #ff1744 0%, transparent 70%),
              #0a0a0a; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    padding: 60px 0 80px 0;
}

.calendly-bg-techy {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-radial-gradient(circle at 50% 50%, rgb(0 0 0 / 4%) 0, rgb(0 0 0 / 0%) 2px, #00000000 4px, transparent 100px);
    opacity: 1;
}

.calendly-card-techy {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.25), 0 1.5px 0 #e0e0e0;
    max-width: 55%;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.calendly-card-header {
    width: 100%;
    background: linear-gradient(277deg, rgb(47 41 43 / 0%) -70.344%, rgb(3 3 3 / 8%) 100%);
    padding: 36px 32px 18px 32px;
    text-align: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.calendly-title {
    color: #333333;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.calendly-subtitle {
    color: #00d084;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.calendly-card-body {
    width: 100%;
    padding: 24px 18px 0 18px;
    background: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calendly-inline-widget {
    width: 100% !important;
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.07);
    border: none;
    min-height: 700px;
    background: transparent;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .calendly-card-techy {
        max-width: 98vw;
        padding: 0 0 16px 0;
    }

    .calendly-card-header {
        padding: 24px 10px 12px 10px;
    }

    .calendly-card-body {
        padding: 12px 2px 0 2px;
    }
}

/* Testimonial Section - Light Modern Theme */
/* Testimonial Section Background */
.testimonial-section-light {
    background: radial-gradient(43.4% 100% at 0% 100%, #4848482e 0%, rgb(0 0 0 / 0%) 100%);
    padding: 80px 0 100px 0;
    margin: auto;
    width: 85vw;
    min-height: 100vh;
    box-shadow: 0 4px 32px 0 #00d08411, 0 2px 8px 0 #1111;
    border-radius: 8px;
}

/* Centered Title and Subtitle */
.testimonial-section-label {
    color: #00d084;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.testimonial-section-title-light {
    color: #333333;
    font-size: 2.7rem;
    font-weight: 800;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.testimonial-section-subtitle-light {
    color: #6a6a6a;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Swiper Slide - Center Card Highlight */
.testimonial-swiper .swiper-slide {
    opacity: 0.25;
    filter: grayscale(1) blur(1px);
    transition: opacity 0.3s, filter 0.3s, transform 0.3s;
    transform: scale(0.97);
    display: flex;
    justify-content: center;
}

.testimonial-swiper .swiper-slide.swiper-slide-active {
    opacity: 1;
    filter: none;
    transform: scale(1.03);
    z-index: 2;
}

/* Testimonial Card */
.testimonial-card-light {
    background: #333333;
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.13);
    padding: 32px 36px 32px 36px;
    margin: 0 12px;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    min-width: 700px;
    max-width: 900px;
    width: 100%;
    position: relative;
    border: none;
    transition: box-shadow 0.2s, background 0.2s;
    justify-content: flex-start;
}

.testimonial-card-light .testimonial-header-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.testimonial-content-light {
    margin-bottom: 0;
    margin-right: 0;
}

.testimonial-name-light {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    margin-bottom: 0;
}

.testimonial-role-light {
    color: #00d084;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-stars {
    color: #ffd600;
    font-size: 1.2rem;
    text-align: right;
    margin-left: 16px;
    margin-top: 2px;
}

.testimonial-text-light {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 400;
    margin: 18px 0 0 0;
}

.testimonial-card-light .testimonial-bottom-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 24px;
}

.testimonial-img-light {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #23242a;
    align-self: flex-end;
}

.testimonial-quote {
    color: #e0e0e0;
    font-size: 3.2rem;
    opacity: 0.13;
    pointer-events: none;
    align-self: flex-end;
}

/* Testimonials Section Responsive */
@media (max-width: 1200px) {
    .testimonial-section-light {
        width: 90vw;
        padding: 60px 0 80px 0;
    }

    .testimonial-section-title-light {
        font-size: 2.4rem;
    }

    .testimonial-card-light {
        min-width: 600px;
        max-width: 750px;
        padding: 28px 32px 28px 32px;
    }
}

@media (max-width: 1000px) {
    .testimonial-section-light {
        width: 95vw;
        padding: 50px 0 70px 0;
    }

    .testimonial-section-title-light {
        font-size: 2.2rem;
    }

    .testimonial-card-light {
        min-width: 550px;
        max-width: 650px;
        padding: 26px 28px 26px 28px;
    }

    .testimonial-name-light {
        font-size: 1.3rem;
    }

    .testimonial-text-light {
        font-size: 1.05rem;
    }
}

@media (max-width: 900px) {
    .testimonial-section-light {
        width: 98vw;
        padding: 40px 0 60px 0;
        min-height: auto;
    }

    .testimonial-section-title-light {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .testimonial-section-subtitle-light {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .testimonial-card-light {
        min-width: 85vw;
        max-width: 90vw;
        padding: 24px 20px 24px 20px;
        min-height: 200px;
    }

    .testimonial-header-row,
    .testimonial-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .testimonial-name-light {
        font-size: 1.2rem;
    }

    .testimonial-text-light {
        font-size: 1rem;
        margin: 16px 0 0 0;
    }

    .testimonial-img-light {
        margin-bottom: 0;
        width: 56px;
        height: 56px;
    }

    .testimonial-quote {
        font-size: 2.8rem;
    }

    .swiper-button-prev.testimonial-swiper-prev,
    .swiper-button-next.testimonial-swiper-next {
        width: 48px;
        height: 48px;
        font-size: 1.8rem;
    }

    .swiper-button-prev.testimonial-swiper-prev i,
    .swiper-button-next.testimonial-swiper-next i {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .testimonial-section-light {
        padding: 30px 0 50px 0;
    }

    .testimonial-section-title-light {
        font-size: 1.8rem;
    }

    .testimonial-section-label {
        font-size: 1rem;
    }

    .testimonial-card-light {
        min-width: 90vw;
        max-width: 95vw;
        padding: 20px 16px 20px 16px;
        margin: 0 8px;
    }

    .testimonial-name-light {
        font-size: 1.1rem;
    }

    .testimonial-text-light {
        font-size: 0.95rem;
    }

    .testimonial-stars {
        font-size: 1.1rem;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .testimonial-section-light {
        padding: 20px 0 40px 0;
    }

    .testimonial-section-title-light {
        font-size: 1.6rem;
        letter-spacing: -0.5px;
    }

    .testimonial-section-subtitle-light {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .testimonial-card-light {
        min-width: 95vw;
        max-width: 98vw;
        padding: 18px 50px 18px 50px;
        margin: 0 4px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
    }

    .testimonial-name-light {
        font-size: 1rem;
    }

    .testimonial-role-light {
        font-size: 0.9rem;
    }

    .testimonial-text-light {
        font-size: 0.9rem;
        margin: 14px 0 0 0;
    }

    .testimonial-img-light {
        width: 48px;
        height: 48px;
    }

    .testimonial-quote {
        font-size: 2.4rem;
    }

    .swiper-button-prev.testimonial-swiper-prev,
    .swiper-button-next.testimonial-swiper-next {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .swiper-button-prev.testimonial-swiper-prev i,
    .swiper-button-next.testimonial-swiper-next i {
        font-size: 1.5rem;
    }
}

/* Testimonial Swiper Custom Arrows */
.swiper-button-prev.testimonial-swiper-prev,
.swiper-button-next.testimonial-swiper-next {
    width: 56px;
    height: 56px;
    background: #23242a00;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    opacity: 1;
    border: none;
}

.swiper-button-prev.testimonial-swiper-prev:hover,
.swiper-button-next.testimonial-swiper-next:hover {
    background: #35363b07;
    color: #fff;
}

.swiper-button-prev.testimonial-swiper-prev::after,
.swiper-button-next.testimonial-swiper-next::after {
    font-family: none !important;
    content: '';
    display: none;
}

.swiper-button-prev.testimonial-swiper-prev i,
.swiper-button-next.testimonial-swiper-next i {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    line-height: 1;
}


.portfolio-section {
    padding: 64px 0 64px 0;
    min-height: 100vh;
}

.portfolio-label {
    color: #00d084;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: center;
}

.portfolio-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: #181818;
    margin-bottom: 1.2rem;
    text-align: center;
}

.portfolio-desc {
    color: #6a6a6a;
    font-size: 1.13rem;
    font-weight: 400;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.2rem auto;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 38px;
}

.portfolio-filter-btn {
    background: #23242a;
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    padding: 5px 20px;
    transition: background 0.4s, color 0.4s;
    cursor: pointer;
    outline: none;
}

.portfolio-filter-btn.active,
.portfolio-filter-btn:focus,
.portfolio-filter-btn:hover {
    background: #00d084;
    color: #181818;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 88%;
    margin: 0 auto;
}

.portfolio-card {
    background: #23242a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.10);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.portfolio-card:hover {
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.18);
}

.portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img {
    transform: scale(1.1);
}

.portfolio-card-overlay {
    transition: 0.75s ease;
    height: 90px;
    padding: 10px;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    margin: 18px auto;
    border-radius: 8px;
    background: rgba(24, 25, 29, 0.92);
    z-index: 2;
}

.portfolio-card:hover .portfolio-card-overlay {
    height: 160px;
    padding-bottom: 32px;
    transition: 1s ease;
}

.portfolio-card-view-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s 0.1s;
}

.portfolio-card:hover .portfolio-card-view-row {
    opacity: 1;
    pointer-events: auto;
}


.portfolio-card-view-btn {
    color: #fff;
    background: transparent;
    font-size: 1.08rem;
    font-weight: 500;
    margin-left: 0;
    transition: background 0.2s, color 0.2s, border 0.2s;
    cursor: pointer;
    position: relative;
}

.portfolio-card-view-btn:hover {
    background: #00d084;
    color: #181818;
    border-color: #00d084;
}


.portfolio-readmore {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    position: absolute;
    bottom: 0.3rem;
    right: 2rem;
    z-index: 2;
    transition: color 0.18s;
}

.portfolio-readmore-circle {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 2px solid #2ecc97;
    border-radius: 50%;
    margin-right: 0.5rem;
    background: transparent;
    transition: border-color 0.18s, background 0.18s;
}

.portfolio-readmore:hover {
    color: #2ecc97;
}

.portfolio-readmore:hover .portfolio-readmore-circle {
    border-color: #8ce3c3;
    background: #e6f9f2;
}


.portfolio-card-category {
    color: #ffffffaa;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    border-bottom: 2px solid #00d084;
    width: fit-content;
    padding-bottom: 3px;
}

.portfolio-card-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .portfolio-title {
        font-size: 2rem;
    }

    .portfolio-card-overlay {
        padding: 16px 10px 12px 10px;
    }

    .portfolio-card-title {
        font-size: 1.1rem;
    }
}

/* --- Blog Page Styles --- */
.blog-dark-bg {
    /* background: #0a0a0a !important; */
}

.blog-hero-section {
    text-align: center;
    padding: 64px 0 32px 0;
}

.blog-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px;
    letter-spacing: -1px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.blog-hero-subtitle {
    color: #6a6a6a;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 38px;
}

.blog-search-form {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.blog-search-bar {
    background: #18191d;
    border-radius: 32px;
    padding: 8px 22px;
    display: flex;
    align-items: center;
    width: 380px;
    max-width: 90vw;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.10);
}

.blog-search-bar i {
    color: #bdbdbd;
    font-size: 1.1rem;
    margin-right: 10px;
}

.blog-search-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.08rem;
    width: 100%;
    outline: none;
    padding: 0;
}

.blog-filter-chips {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.blog-chip {
    background: #18191d;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 22px;
    font-size: 1.02rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.4s, color 0.4s;
}

.blog-chip.active,
.blog-chip:focus {
    background: #00d084;
    color: #fff;
}

.blog-chip:hover {
    background: #00d084;
    color: #fff;
}

.blog-grid-section {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 200px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 38px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 64px auto;
}

.blog-card {
    /* background: #18191d; */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 4px 32px 0 rgba(0,0,0,0.13); */
    display: flex;
    flex-direction: column;
    min-height: 420px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    cursor: pointer;
}

.blog-card:hover .blog-card-img {
    transform: translateX(5px) scale(1.4);

}

.blog-card:hover .blog-card-title {
    color: #00b874;
}

.blog-card-img-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: all 1s ease;
}

.blog-card-img-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.0) 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 18px 18px;
}

.blog-card-img-overlay-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.blog-card-img-overlay-title span {
    background: #fff;
    color: #18191d;
    padding: 0 6px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.1em;
    margin-left: 2px;
}

.blog-card-meta-row {
    color: #33333385;
    font-size: 0.80rem;
    margin: 18px 0 0 0;
    display: flex;
    gap: 6px;
    align-items: center;
    font-weight: 700;
}

.blog-card-title {
    color: #333333;
    font-size: 1.18rem;
    font-weight: 700;
    margin: 10px 0 0 0;
    line-height: 1.3;
    transition: all 1s ease;
}

.blog-card-desc {
    color: #bdbdbd;
    font-size: 1.01rem;
    margin: 4px 0 0 0;
    font-weight: 400;
}

.blog-card-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.blog-card-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #23242a;
}

.blog-card-author {
    color: #333333;
    font-size: 1.01rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog-hero-title {
        font-size: 2rem;
    }
}

/* --- Single Service Page Styles --- */

.service-single-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.service-main {
    flex: 2;
    min-width: 0;
}

.service-main-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 32px;
    object-fit: contain;
    max-height: 320px;
}

.service-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.service-title-icon {
    font-size: 4.2rem;
    color: #00d084;
}

.service-title {
    font-size: 1.5rem;
    /* font-weight: 800; */
    color: #23242a;
    margin: 0;
}

.service-desc {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 18px;
}

.service-body {
    color: #222;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-sidebar {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-category-card {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px 18px;
    margin-bottom: 24px;
}

.service-category-title {
    font-weight: 700;
    color: #23242a;
    margin-bottom: 12px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.service-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category-list li {
    margin-bottom: 10px;
}

.service-category-list li.active a,
.service-category-list li a:hover {
    color: #00d084;
    font-weight: 700;
}

.service-category-list li a {
    color: #23242a;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}

.service-cta-card {
    background: linear-gradient(277deg, rgb(47 41 43 / 0%) -70.344%, rgb(3 3 3 / 8%) 100%);
    border-radius: 8px;
    color: #fff;
    padding: 32px 18px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.13);
    margin-bottom: 18%;
}

.service-cta-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
    color: #333333;
}

.service-cta-title span {
    color: #00d084;
}

.service-cta-phone {
    font-size: 1.2rem;
    margin-top: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-cta-phone i {
    margin-right: 8px;
    color: #00d084;
}

.service-cta-email a {
    color: #333333 !important;
    font-weight: 700 !important;
}

@media (max-width: 1200px) {
    .service-single-container {
        gap: 32px;
        padding: 0 16px;
    }

    .service-main {
        padding-right: 16px;
    }

    .service-sidebar {
        min-width: 280px;
    }
}

@media (max-width: 900px) {
    .service-single-container {
        flex-direction: column;
        gap: 24px;
        padding: 0 12px;
    }

    .service-sidebar {
        width: 100%;
        min-width: 0;
        flex-direction: row;
        gap: 16px;
    }

    .service-category-card,
    .service-cta-card {
        width: 100%;
    }

    .service-main {
        padding-right: 0;
    }

    .service-title {
        font-size: 1.4rem;
    }

    .service-desc {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .service-body {
        font-size: 1rem;
    }

    .service-nav-card {
        padding: 12px 8px;
    }

    .service-nav-list {
        padding: 8px 16px;
    }

    .service-nav-list li a {
        font-size: 0.8rem;
        padding: 6px 0 8px 2px;
    }
}

@media (max-width: 768px) {
    .service-single-container {
        gap: 20px;
        padding: 0 10px;
    }

    .service-sidebar {
        flex-direction: column;
        gap: 16px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-title-icon {
        font-size: 3.5rem;
    }

    .service-desc {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .service-body {
        font-size: 0.95rem;
    }

    .service-nav-card {
        padding: 10px 6px;
    }

    .service-nav-list {
        padding: 6px 14px;
    }

    .service-nav-list li a {
        font-size: 0.75rem;
        padding: 5px 0 7px 2px;
    }

    .service-cta-card {
        padding: 16px 12px;
    }

    .service-cta-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .service-cta-email {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-single-container {
        gap: 16px;
        padding: 0 8px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-title-icon {
        font-size: 3rem;
    }

    .service-title-row {
        gap: 12px;
        margin-bottom: 14px;
    }

    .service-desc {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .service-body {
        font-size: 0.9rem;
    }

    .service-nav-card {
        padding: 8px 5px;
    }

    .service-nav-list {
        padding: 5px 12px;
    }

    .service-nav-list li a {
        font-size: 0.7rem;
        padding: 4px 0 6px 2px;
    }

    .service-cta-card {
        padding: 14px 10px;
    }

    .service-cta-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .service-cta-email {
        font-size: 0.85rem;
    }
}

/* --- Custom Service Sidebar Nav Styles (matches provided image) --- */
.service-nav-card {
    background: #333333;
    border-radius: 8px;
    padding: 16px 10px;
    /* reduced padding */
    box-shadow: 0 4px 32px 0 #00d08411, 0 2px 8px 0 #1111;
    border: 1.5px solid #e3e8f7;
}

.service-nav-list {
    list-style: none;
    margin: 0;
    padding: 10px 20px;
}

.service-nav-list li {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    font-size: 0.97rem;
    /* smaller font */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #23242a;
    margin: 0;
    padding: 0;
    border-bottom: 1.5px dotted #9a9a9a;
    transition: color 0.2s;
}

.service-nav-list li:last-child {
    border-bottom: none;
}

.service-nav-list li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0 10px 2px;
    /* tighter vertical padding */
    transition: color 0.2s;
    font-size: 0.85rem;
}

.service-nav-list li.active,
.service-nav-list li.active a {
    color: #00d084 !important;
}

.service-nav-list li a:hover {
    color: #00b874;
}

/* --- Creasoft Project Details Page Styles --- */
.creasoft-breadcrumb {
    background: #f6f8fe;
    padding: 32px 0 0 0;
    border-bottom: 1px solid #e3e8f7;
}

.creasoft-breadcrumb .breadcrumb {
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.creasoft-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #23242a;
    margin-bottom: 8px;
}

.creasoft-subtitle {
    color: #00d084;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.creasoft-main-img {
    border-radius: 8px;
    box-shadow: 0 4px 32px 0 #00d08411, 0 2px 8px 0 #1111;
    width: 100%;
    margin-bottom: 32px;
    object-fit: cover;
    max-height: 420px;
}

.creasoft-info-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #23242a;
}

.creasoft-info-list strong {
    display: inline-block;
    color: #00d084;
}

.creasoft-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 18px;
}

.project-detail-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.creasoft-process-step {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px #00d08411;
    padding: 28px 18px;
    text-align: center;
    margin-bottom: 24px;
    border-left: 4px solid #00d084;
}

.creasoft-process-step .step-icon {
    font-size: 2.2rem;
    color: #00d084;
    margin-bottom: 12px;
}

.creasoft-related-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #23242a;
    margin-bottom: 18px;
}

.creasoft-related-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px #00d08411;
    overflow: hidden;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}

.creasoft-related-card:hover {
    box-shadow: 0 8px 32px 0 #00d08422;
}

.creasoft-related-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.creasoft-related-body {
    padding: 18px 16px 12px 16px;
}

.creasoft-related-title2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #23242a;
    margin-bottom: 4px;
}

.creasoft-related-cat {
    color: #00d084;
    font-size: 0.98rem;
    font-weight: 600;
}

/* --- Compact Technology Card Styles for Project Details --- */
.creasoft-process-step {
    padding: 14px 8px;
    min-height: unset;
}

.creasoft-process-step .step-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.creasoft-process-step .fw-bold {
    font-size: 1rem;
}

.creasoft-process-step .small {
    font-size: 0.85rem;
}

/* --- Creasoft Help/Contact Card Styles --- */
.creasoft-help-card {
    margin-top: 24px;
    background: linear-gradient(277deg, rgb(47 41 43 / 0%) -70.344%, rgb(3 3 3 / 8%) 100%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.13);
}

.creasoft-help-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #23242a;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.creasoft-help-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 14px;
    height: 14px;
    background: #23242a;
    border-radius: 50%;
}

.creasoft-help-desc {
    font-size: 1rem;
    margin-bottom: 24px;
}

.creasoft-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.creasoft-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #23242a;
}

.creasoft-contact-title {
    font-size: 1rem;
    font-weight: 700;
    color: #23242a;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.creasoft-contact-details {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.creasoft-contact-details a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.creasoft-contact-details a:hover {
    color: #00d084;
}

.creasoft-help-card a:hover {
    color: #00d084;
}

/* --- Creasoft Main Image Slider Styles --- */
.creasoft-main-slider {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
}

.creasoft-main-slider .swiper-slide {
    position: relative;
}

.creasoft-main-slider .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.8s ease !important;
}

.creasoft-main-slider .swiper-slide-active {
    opacity: 1 !important;
}

.creasoft-image-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #6ee7b7;
    /* A light green color like the image */
    color: #fff;
    /* Dark green text */
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10;
}

/* --- Enhanced Project Info Card Styles --- */
.creasoft-info-list-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 208, 132, 0.10), 0 2px 8px 0 #1111;
    border: 2.5px solid transparent;
    background-clip: padding-box;
    position: relative;
    margin-bottom: 32px;
    padding: 32px 28px 28px 28px;
    overflow: hidden;
}

.creasoft-info-list-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(120deg, #00d084 0%, #6ee7b7 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
    pointer-events: none;
}

.creasoft-info-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.creasoft-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1.08rem;
    color: #23242a;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.creasoft-info-list li:last-child {
    margin-bottom: 0;
}

.creasoft-info-list .info-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d084 60%, #6ee7b7 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px #00d08422;
}

.creasoft-info-list strong {
    color: #00d084;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-block;
}

.creasoft-info-list a {
    color: #23242a;
    text-decoration: none;
    transition: color 0.2s;
}

.creasoft-info-list a:hover {
    color: #00d084;
}

/* --- Compact & Modern Project Info Card Styles --- */
.creasoft-info-list-card {
    background: #333333 !important;
    box-shadow: 0 4px 16px 0 rgba(0, 208, 132, 0.08);
    border: 1.5px solid #e3e8f7;
    padding: 18px 14px 14px 14px;
    margin-bottom: 20px;
    max-width: 100%;
}

.creasoft-info-list-card::before {
    display: none;
}

.creasoft-info-list {
    padding: 0;
    margin: 0;
}

.creasoft-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.97rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.creasoft-info-list li:last-child {
    margin-bottom: 0;
}

.creasoft-info-list .info-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #00d084;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: none;
}

.creasoft-info-list strong {
    color: #fff;
    font-size: 0.97rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    display: inline-block;
}

.creasoft-info-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.creasoft-info-list a:hover {
    color: #00d084;
}

/* --- Blog Details Page Styles --- */
.container.blog-details {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-main {
    flex: 2;
    background: #fff;
    margin: 40px 0;
    padding: 40px 40px 0 40px;
    border-radius: 10px;
}

.sidebar {
    flex: 1;
    margin: 40px 0 40px 40px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 30px 20px;
    min-width: 320px;
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog-img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0 10px 0;
}

.tags {
    margin: 30px 0;
}

.tags button {
    margin-right: 10px;
    background: #f0f0f0;
    border: none;
    border-radius: 5px;
    padding: 6px 16px;
    cursor: pointer;
}

.related-posts {
    margin: 50px 0 0 0;
}

.related-posts h2 {
    margin-bottom: 20px;
}

.related-posts-list {
    display: flex;
    gap: 20px;
}

.related-post {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    width: 32%;
    box-shadow: 0 2px 8px #0001;
}

.related-post img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.related-post h3 {
    font-size: 1rem;
    margin: 10px 0 5px 0;
}

.related-post span {
    font-size: 0.9em;
    color: #888;
    margin-left: 10px;
}

.comments {
    margin: 60px 0 0 0;
}

.sidebar section {
    margin-bottom: 40px;
}

.sidebar h2 {
    font-size: 1.2em;
    margin-bottom: 18px;
}

.story,
.video,
.event {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.story img,
.video img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
}

.event-date {
    font-weight: bold;
    font-size: 1.5em;
    margin-right: 16px;
    color: #bbb;
}

.event-info {
    line-height: 1.2;
}

@media (max-width: 1100px) {
    .container.blog-details {
        flex-direction: column;
        padding: 0 16px;
    }

    .sidebar {
        margin: 20px 0 0 0;
        min-width: unset;
        padding: 24px 16px;
    }

    .blog-main {
        margin: 30px 0 20px 0;
        padding: 30px 24px 0 24px;
    }
}

@media (max-width: 768px) {
    .container.blog-details {
        padding: 0 12px;
    }

    .blog-main {
        margin: 20px 0 16px 0;
        padding: 20px 16px 0 16px;
    }

    .sidebar {
        margin: 16px 0 0 0;
        padding: 20px 14px;
    }

    .author-info {
        margin-bottom: 20px;
    }

    .author-img {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .blog-img {
        margin: 20px 0 8px 0;
    }

    .tags {
        margin: 20px 0;
    }

    .tags button {
        margin-right: 8px;
        margin-bottom: 8px;
        padding: 5px 12px;
        font-size: 0.9rem;
    }

    .related-posts {
        margin: 30px 0 0 0;
    }

    .related-posts h2 {
        margin-bottom: 16px;
        font-size: 1.3rem;
    }

    .related-posts-list {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container.blog-details {
        padding: 0 8px;
    }

    .blog-main {
        margin: 16px 0 12px 0;
        padding: 16px 12px 0 12px;
    }

    .sidebar {
        margin: 12px 0 0 0;
        padding: 16px 12px;
    }

    .author-info {
        margin-bottom: 16px;
    }

    .author-img {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }

    .blog-img {
        margin: 16px 0 6px 0;
    }

    .tags {
        margin: 16px 0;
    }

    .tags button {
        margin-right: 6px;
        margin-bottom: 6px;
        padding: 4px 10px;
        font-size: 0.85rem;
    }

    .related-posts {
        margin: 24px 0 0 0;
    }

    .related-posts h2 {
        margin-bottom: 14px;
        font-size: 1.2rem;
    }

    .related-posts-list {
        gap: 14px;
    }
}

/* --- Logo Carousel Styles --- */
.logos {
    overflow: hidden !important;
    /* padding: 60px 0 !important; */
    /* background: white !important; */
    white-space: nowrap !important;
    position: relative !important;
    /* margin: 0px 70px; */
}

.logos:before,
.logos:after {
    position: absolute !important;
    top: 0 !important;
    width: 250px !important;
    height: 100% !important;
    content: "" !important;
    z-index: 2 !important;
}

.logos:before {
    left: 0 !important;
    background: linear-gradient(to left, rgb(255 255 255 / 0%), #eceaea) !important;
}

.logos:after {
    right: 0 !important;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #eceaea) !important;
}

.logos:hover .logos-slide {
    /* animation-play-state: paused !important; */
}

.logos-slide {
    display: inline-flex !important;
    animation: 13s slide infinite linear !important;
}

.logos-slide img {
    width: 50px !important;
    object-fit: contain;
    margin: 0 70px !important;
    flex-shrink: 10;
}

.logos-slide-wrapper {
    display: flex;
    width: max-content;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.contact-details {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.13) !important;
    border-radius: 8px;
}

/* === FINAL RESPONSIVE IMPROVEMENTS === */

/* Logos Section Responsive */
@media (max-width: 1200px) {
    .logos {
        padding: 50px 0;
    }

    .logos:before,
    .logos:after {
        width: 200px !important;
    }

    .logos-slide img {
        width: 45px !important;
        margin: 0 60px !important;
    }
}

@media (max-width: 900px) {
    .logos {
        padding: 40px 0;
    }

    .logos:before,
    .logos:after {
        width: 150px !important;
    }

    .logos-slide img {
        width: 40px !important;
        margin: 0 50px !important;
    }
}

@media (max-width: 768px) {
    .logos {
        padding: 30px 0;
    }

    .logos:before,
    .logos:after {
        width: 100px !important;
    }

    .logos-slide img {
        width: 35px !important;
        margin: 0 40px !important;
    }
}

@media (max-width: 480px) {
    .logos {
        padding: 20px 0;
    }

    .logos:before,
    .logos:after {
        width: 80px !important;
    }

    .logos-slide img {
        width: 30px !important;
        margin: 0 30px !important;
    }
}

/* Calendly Section Responsive */
@media (max-width: 1200px) {
    .calendly-section-techy {
        padding: 40px 20px;
    }

    .calendly-card-techy {
        max-width: 90%;
    }

    .calendly-title {
        font-size: 1.8rem;
    }

    .calendly-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .calendly-section-techy {
        padding: 30px 15px;
    }

    .calendly-card-techy {
        max-width: 95%;
    }

    .calendly-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .calendly-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }

    .calendly-inline-widget {
        min-width: 280px !important;
        height: 600px !important;
    }
}

@media (max-width: 768px) {
    .calendly-section-techy {
        padding: 20px 10px;
    }

    .calendly-card-techy {
        max-width: 98%;
    }

    .calendly-title {
        font-size: 1.4rem;
    }

    .calendly-subtitle {
        font-size: 0.85rem;
    }

    .calendly-inline-widget {
        min-width: 260px !important;
        height: 550px !important;
    }
}

@media (max-width: 480px) {
    .calendly-section-techy {
        padding: 15px 5px;
    }

    .calendly-card-techy {
        max-width: 100%;
    }

    .calendly-title {
        font-size: 1.2rem;
    }

    .calendly-subtitle {
        font-size: 0.8rem;
    }

    .calendly-inline-widget {
        min-width: 240px !important;
        height: 500px !important;
    }
}

/* Portfolio Section Responsive */
@media (max-width: 1200px) {
    .portfolio-section {
        padding: 50px 0;
    }

    .portfolio-title {
        font-size: 2.4rem;
    }

    .portfolio-desc {
        font-size: 1.05rem;
    }

    .portfolio-grid {
        gap: 20px;
    }

    .portfolio-filters {
        gap: 14px;
        margin-bottom: 32px;
    }
}

@media (max-width: 900px) {
    .portfolio-section {
        padding: 40px 0;
    }

    .portfolio-title {
        font-size: 2.2rem;
    }

    .portfolio-desc {
        font-size: 1rem;
        margin: 0 auto 1.8rem auto;
    }

    .portfolio-filters {
        gap: 12px;
        margin-bottom: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .portfolio-filter-btn {
        font-size: 0.9rem;
        padding: 4px 16px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 30px 0;
    }

    .portfolio-title {
        font-size: 2rem;
    }

    .portfolio-desc {
        font-size: 0.95rem;
    }

    .portfolio-filters {
        gap: 10px;
        margin-bottom: 24px;
    }

    .portfolio-filter-btn {
        font-size: 0.85rem;
        padding: 3px 14px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 400px;
        margin: 0 auto;
    }

    .portfolio-card {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 20px 0;
    }

    .portfolio-title {
        font-size: 1.8rem;
    }

    .portfolio-desc {
        font-size: 0.9rem;
    }

    .portfolio-filters {
        gap: 8px;
        margin-bottom: 20px;
    }

    .portfolio-filter-btn {
        font-size: 0.8rem;
        padding: 3px 12px;
    }

    .portfolio-grid {
        gap: 12px;
        max-width: 350px;
    }

    .portfolio-card {
        height: 220px;
    }

    .portfolio-card-category {
        font-size: 0.7rem;
    }

    .portfolio-card-title {
        font-size: 1rem;
    }
}

/* Project Details Responsive */
@media (max-width: 1200px) {
    .creasoft-main-img {
        max-height: 350px;
    }

    .creasoft-info-list-card {
        padding: 24px 20px 20px 20px;
    }
}

@media (max-width: 900px) {
    .creasoft-main-img {
        max-height: 300px;
        margin-bottom: 24px;
    }

    .creasoft-section-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .creasoft-process-step {
        padding: 20px 14px;
        margin-bottom: 16px;
    }

    .creasoft-process-step .step-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .creasoft-info-list-card {
        padding: 20px 16px 16px 16px;
        margin-bottom: 24px;
    }

    .creasoft-info-list li {
        margin-bottom: 14px;
        font-size: 0.95rem;
    }

    .creasoft-related-img {
        height: 150px;
    }

    .creasoft-image-tag {
        bottom: 15px;
        left: 15px;
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .creasoft-main-img {
        max-height: 250px;
        margin-bottom: 20px;
    }

    .creasoft-section-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .creasoft-process-step {
        padding: 16px 12px;
        margin-bottom: 14px;
    }

    .creasoft-process-step .step-icon {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .creasoft-process-step .fw-bold {
        font-size: 0.95rem;
    }

    .creasoft-process-step .small {
        font-size: 0.8rem;
    }

    .creasoft-info-list-card {
        padding: 18px 14px 14px 14px;
        margin-bottom: 20px;
    }

    .creasoft-info-list li {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .creasoft-related-img {
        height: 130px;
    }

    .creasoft-related-body {
        padding: 14px 12px 10px 12px;
    }

    .creasoft-related-title2 {
        font-size: 1rem;
    }

    .creasoft-image-tag {
        bottom: 12px;
        left: 12px;
        font-size: 0.85rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .creasoft-main-img {
        max-height: 200px;
        margin-bottom: 16px;
    }

    .creasoft-section-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .creasoft-process-step {
        padding: 14px 10px;
        margin-bottom: 12px;
    }

    .creasoft-process-step .step-icon {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .creasoft-process-step .fw-bold {
        font-size: 0.9rem;
    }

    .creasoft-process-step .small {
        font-size: 0.75rem;
    }

    .creasoft-info-list-card {
        padding: 16px 12px 12px 12px;
        margin-bottom: 16px;
    }

    .creasoft-info-list li {
        margin-bottom: 10px;
        font-size: 0.85rem;
    }

    .creasoft-info-list strong {
        font-size: 0.85rem;
    }

    .creasoft-related-img {
        height: 120px;
    }

    .creasoft-related-body {
        padding: 12px 10px 8px 10px;
    }

    .creasoft-related-title2 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .creasoft-related-cat {
        font-size: 0.9rem;
    }

    .creasoft-image-tag {
        bottom: 10px;
        left: 10px;
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

/* Contact Details Responsive */
@media (max-width: 900px) {
    .contact-details {
        margin: 0 auto;
        max-width: 100%;
    }

    .contact-add-item {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-icon {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-details .col-md-6 {
        margin-bottom: 16px;
    }

    .contact-icon i {
        font-size: 1.5rem !important;
    }

    .contact-add-item h4 {
        font-size: 1rem;
    }

    .contact-add-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-details {
        padding: 15px !important;
    }

    .contact-icon i {
        font-size: 1.3rem !important;
    }

    .contact-add-item h4 {
        font-size: 0.95rem;
    }

    .contact-add-item p {
        font-size: 0.85rem;
    }
}

/* Universal Mobile Touch Improvements */
@media (max-width: 768px) {

    /* Improve touch targets */
    /* .btn-base,
  .portfolio-filter-btn,
  .service-learn-btn,
  .about-tag,
  .faq-question {
    min-height: 44px;
    min-width: 44px;
  } */

    /* Improve text readability */
    body {
        line-height: 1.6;
    }

    /* Improve spacing for touch */
    .navbar-nav .nav-link {
        padding: 12px 0;
    }

    /* Better button spacing */
    .main-buttons .btn-base {
        margin-bottom: 8px;
    }
}

/* High DPI / Retina Display Improvements */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .service-icon,
    .why-psoft-feature-icon-modern,
    .testimonial-img-light,
    .footer-socials a {
        backface-visibility: hidden;
        transform: translateZ(0);
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 900px) and (orientation: landscape) {
    .main-section {
        min-height: 60vh;
        padding: 30px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .video-container {
        height: 70vh;
    }

    .why-psoft-section {
        padding: 0 0 30px 0;
    }

    .why-psoft-content {
        padding-top: 40px;
        padding-bottom: 20px;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .footer-main,
    .faq-section,
    .calendly-section-techy,
    .testimonial-section-light {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .main-section,
    .about-container,
    .portfolio-section {
        page-break-inside: avoid;
    }
}

/* ===== RESPONSIVE STYLES FOR SPECIFIED PAGES ===== */
/* Enhanced responsive styles for project-details.html, service-single.html, blogs.html, blog-details.html, contact.html, services.html */

/* Tablet and Mobile Improvements */
@media (max-width: 1024px) {

    /* Project Details Page */
    .creasoft-main-slider {
        margin-bottom: 20px;
    }

    .creasoft-info-list-card,
    .creasoft-help-card {
        margin-bottom: 20px;
    }

    /* Service Single Page */
    .service-single-container {
        gap: 20px;
        padding: 0 15px;
    }

    /* Services Page */
    .services-main-section .container-fluid {
        padding: 0 20px;
        height: auto;
    }

    .services-main-section .col-lg-6 {
        padding: 0px !important;
    }

    .services-main-section .row {
        margin: 20px 0;
        padding: 20px;
    }

    /* Contact Page */
    .contact-main-section .row {
        margin: 20px 0;
        padding: 20px;
    }
}

@media (max-width: 768px) {

    /* Global navbar adjustments for all pages */
    .custom-navbar {
        padding: 0px 20px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .special-offer-btn,
    .btn-contact {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin: 5px 2px;
    }

    /* Project Details Page */
    .creasoft-main-img {
        max-height: 200px;
    }

    .creasoft-section-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .creasoft-process-step {
        text-align: center;
        padding: 15px 10px;
    }

    .creasoft-info-list-card,
    .creasoft-help-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .creasoft-contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .creasoft-contact-icon {
        margin-bottom: 10px;
    }

    /* Portfolio grid in project details */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .portfolio-card {
        max-width: 100%;
    }

    /* Service Single Page */
    .service-single-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .service-main {
        width: 100%;
    }

    .service-sidebar {
        width: 100%;
        margin-top: 20px;
    }

    .service-main-img {
        max-height: 200px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-nav-list {
        padding: 0;
    }

    .service-nav-list li {
        margin-bottom: 8px;
    }

    .service-nav-list a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .service-cta-card {
        text-align: center;
        padding: 20px 15px;
    }

    .service-cta-title {
        font-size: 1.1rem;
    }

    /* Blogs Page */
    .blog-hero-section {
        padding: 40px 20px;
        text-align: center;
    }

    .blog-hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .blog-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .blog-search-form {
        margin-bottom: 20px;
    }

    .blog-search-bar {
        width: 100%;
        max-width: 100%;
    }

    .blog-filter-chips {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .blog-chip {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .blog-grid-section {
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .blog-card {
        min-height: auto;
    }

    .blog-card-img-wrap {
        height: 180px;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .blog-card-img-overlay-title {
        font-size: 1.1rem;
    }

    /* Blog Details Page */
    .container.blog-details {
        flex-direction: column;
        padding: 0 20px;
    }

    .blog-main {
        margin: 20px 0;
        padding: 20px 15px;
    }

    .sidebar {
        margin: 0 0 20px 0;
        padding: 20px 15px;
        min-width: auto;
    }

    .related-posts-list {
        flex-direction: column;
        gap: 15px;
    }

    .related-post {
        flex-direction: column;
    }

    .related-post img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .story,
    .video {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }

    .story img,
    .video img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .event {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        margin-bottom: 10px;
    }

    .event-date {
        margin-bottom: 10px;
    }

    /* Contact Page */
    .contact-main-section {
        padding: 20px 0;
    }

    .contact-main-section .row {
        margin: 20px 0;
        padding: 0px !important;
    }

    .contact-main-section h1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .section-label {
        text-align: center;
        margin-bottom: 15px;
    }

    .contact-details .rounded {
        padding: 20px 15px;
    }

    .contact-add-item {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-icon {
        margin-bottom: 10px;
    }

    .contact-form .container {
        /* padding: 20px 0; */
        margin: 0px;
        padding: 0px;
    }

    .contact-form .card {
        padding: 15px;
        margin: 0 15px;
    }

    .contact-form .card-body {
        padding: 15px;
    }

    .contact-form h4 {
        font-size: 1.3rem;
        text-align: center;
    }

    .btn-green-large {
        width: 100% !important;
    }

    /* Services Page */
    .services-main-section {
        padding: 20px 0;
    }


    .services-main-section .container-fluid {
        padding: 0 15px;
        height: auto;
    }

    .services-main-section .col-lg-6 {
        padding: 0px !important;
    }

    .services-main-section .row {
        margin: 15px 0;
        padding: 15px;
    }

    .services-main-section h1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .services-section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .services-section-subtitle {
        text-align: center;
        margin-bottom: 30px;
    }

    /* .service-card-modern {
    margin-bottom: 20px;
    padding: 20px 15px;
  }

  .service-title-modern {
    font-size: 1.1rem;
  }

  .service-desc-modern {
    font-size: 0.9rem;
  } */

    /* FAQ Section for multiple pages */
    .faq-container {
        flex-direction: column;
        padding: 20px;
    }

    .faq-left {
        text-align: center;
        margin-bottom: 30px;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-right {
        width: 100%;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 15px;
    }

    .faq-answer {
        padding: 15px;
        font-size: 0.85rem;
    }

    /* Footer adjustments for all pages */
    .footer-newsletter-vertical {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
    }

    .footer-columns {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices - enhanced mobile experience */

    /* Global adjustments */
    .custom-navbar {
        padding: 0px 15px;
        min-height: 50px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .special-offer-btn,
    .btn-contact {
        font-size: 0.7rem;
        padding: 4px 8px;
        margin: 2px 1px;
    }

    /* Project Details Page */
    .creasoft-main-img {
        max-height: 150px;
    }

    .creasoft-section-title {
        font-size: 1rem;
    }

    .creasoft-process-step {
        padding: 10px 5px;
    }

    .step-icon {
        font-size: 1.5rem;
    }

    .creasoft-info-list-card,
    .creasoft-help-card {
        padding: 15px 10px;
    }

    .creasoft-info-list li {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .creasoft-contact-title {
        font-size: 0.8rem;
    }

    .creasoft-contact-details {
        font-size: 0.8rem;
    }

    /* Service Single Page */
    .service-single-container {
        padding: 0 10px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-desc,
    .service-body {
        font-size: 0.9rem;
    }

    .service-nav-list a {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .service-cta-title {
        font-size: 1rem;
    }

    /* Blogs Page */
    .blog-hero-section {
        padding: 30px 15px;
    }

    .blog-hero-title {
        font-size: 1.5rem;
    }

    .blog-hero-subtitle {
        font-size: 0.9rem;
    }

    .blog-search-input {
        font-size: 0.9rem;
    }

    .blog-chip {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .blog-grid-section {
        padding: 0 15px;
        margin-bottom: 40px;
    }

    .blog-card-img-wrap {
        height: 150px;
    }

    .blog-card-title {
        font-size: 0.9rem;
    }

    .blog-card-desc {
        font-size: 0.8rem;
    }

    .blog-card-img-overlay-title {
        font-size: 1rem;
    }

    .blog-card-meta-row {
        font-size: 0.7rem;
    }

    /* Blog Details Page */
    .container.blog-details {
        padding: 0 15px;
    }

    .blog-main {
        padding: 15px 10px;
    }

    .blog-main h1 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .blog-main p {
        font-size: 0.9rem;
    }

    .sidebar {
        padding: 15px 10px;
    }

    .sidebar h2 {
        font-size: 1.1rem;
    }

    .story h3,
    .video h3 {
        font-size: 0.9rem;
    }

    .tags button {
        font-size: 0.8rem;
        padding: 4px 10px;
        margin: 2px 4px 2px 0;
    }

    /* Contact Page */
    .contact-main-section h1 {
        font-size: 1.5rem;
    }

    .contact-details .rounded {
        padding: 15px 10px;
    }

    .contact-add-item h4 {
        font-size: 1rem;
    }

    .contact-add-item p {
        font-size: 0.8rem;
    }

    .contact-form .card {
        margin: 0 10px;
        padding: 10px;
    }

    .contact-form h4 {
        font-size: 1.1rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-control,
    .form-select {
        font-size: 0.9rem;
    }

    /* Services Page */
    .services-main-section h1 {
        font-size: 1.5rem;
    }

    .services-section-title {
        font-size: 1.3rem;
    }

    /* 
  .service-card-modern {
    padding: 15px 10px;
  }

  .service-icon {
    font-size: 2rem;
  }

  .service-title-modern {
    font-size: 1rem;
  }

  .service-desc-modern {
    font-size: 0.8rem;
  } */

    .service-card-modern {
        height: fit-content;
    }

    .service-title-modern {
        font-size: 1rem !important;
    }

    .service-desc-modern {
        font-size: 0.85rem !important;
        text-align: left;
    }

    /* FAQ Section */
    .faq-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.8rem;
        padding: 12px;
    }

    .faq-answer {
        font-size: 0.8rem;
        padding: 12px;
    }

    /* Footer */
    .footer-newsletter-vertical .col-md-6 {
        padding: 10px;
    }

    .newsletter-title {
        font-size: 1.1rem;
    }

    .newsletter-desc {
        font-size: 0.8rem;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-col-title {
        font-size: 0.9rem;
    }

    .footer-col a {
        font-size: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* Landscape orientation fixes for mobile devices */
@media (max-width: 900px) and (orientation: landscape) {
    .blog-hero-section {
        padding: 20px 15px;
    }

    .contact-main-section .row,
    .services-main-section .row {
        margin: 10px 0;
        padding: 10px;
    }

    .faq-container {
        padding: 15px;
    }
}

/* Print styles - hide navigation and optimize for printing */
@media print {

    .custom-navbar,
    .footer-main,
    .faq-section,
    .contact-form,
    .service-sidebar,
    .sidebar {
        display: none !important;
    }

    .blog-main,
    .service-main,
    .container.blog-details {
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .blog-card,
    .service-card-modern,
    .portfolio-card {
        break-inside: avoid;
    }
}

/* ===== ENHANCED MOBILE-FIRST RESPONSIVE STYLES ===== */
/* Additional responsive improvements for contact.html and services.html */

/* Base mobile styles */
@media (max-width: 576px) {

    /* Typography improvements for mobile */
    h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h4 {
        font-size: 1.1rem !important;
    }

    /* Contact page mobile improvements */
    .contact-main-section .section-label {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .contact-add-item h5 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .contact-add-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .contact-icon i {
        font-size: 1.2rem !important;
    }

    /* Services page mobile improvements */
    /* .services-main-section .section-label {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  } */

    .service-card-modern {
        height: fit-content;
    }

    .service-title-modern {
        font-size: 1rem !important;
    }

    .service-desc-modern {
        font-size: 0.85rem !important;
        text-align: left;
    }

    /* .service-icon {
    font-size: 1.5rem !important;
  }

  .service-number {
    font-size: 0.9rem !important;
  } */

    /* Form improvements for mobile */
    .form-control,
    .form-select {
        font-size: 1rem;
        padding: 0.75rem;
    }

    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    /* Button improvements */
    .btn-contact,
    .btn-green-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100% !important;
        margin-bottom: 1rem;
    }

    /* Navbar mobile improvements */
    .custom-navbar {
        padding: 0px 15px;
    }

    .navbar-brand {
        font-size: 1.1rem !important;
    }

    /* Footer mobile improvements */
    .footer-newsletter-vertical {
        padding: 1rem !important;
    }

    .newsletter-title {
        font-size: 1.2rem !important;
    }

    .newsletter-desc {
        font-size: 0.85rem !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {

    /* Hero sections ultra-mobile */
    .contact-main-section .row,
    .services-main-section .row {
        margin: 1rem 0 !important;
    }

    /* Contact details ultra-mobile */
    .contact-details .rounded {
        padding: 1rem !important;
    }

    .contact-add-item {
        margin-bottom: 1.5rem;
    }

    /* Service cards ultra-mobile */
    .service-card-modern {
        padding: 0.75rem !important;
        text-align: center;
    }

    /* Form ultra-mobile */
    .contact-form .card,
    .contact-form .card-body {
        padding: 1rem !important;
    }

    /* Typography ultra-mobile */
    h1 {
        font-size: 1.5rem !important;
    }

    .section-label {
        font-size: 0.8rem !important;
    }

    /* FAQ section mobile */
    .faq-container {
        padding: 1rem !important;
    }

    .faq-title {
        font-size: 1.5rem !important;
    }
}

/* Medium devices (tablets) */
@media (min-width: 577px) and (max-width: 991px) {

    /* Contact page tablet improvements */
    .contact-main-section h1 {
        font-size: 2.2rem;
    }

    .contact-details .rounded {
        padding: 2rem;
    }

    /* Services page tablet improvements */
    .services-main-section h1 {
        font-size: 2.2rem;
    }

    .service-card-modern {
        padding: 1.5rem;
        min-height: 280px;
    }

    /* Form tablet improvements */
    .contact-form .card {
        padding: 2rem;
    }

    .btn-green-large {
        width: 50% !important;
    }
}

/* Landscape mobile improvements */
@media (max-width: 900px) and (orientation: landscape) {

    .contact-main-section,
    .services-main-section {
        padding: 1rem 0;
    }

    .contact-main-section .row,
    .services-main-section .row {
        min-height: auto !important;
        padding: 1rem;
    }

    .contact-details .rounded {
        padding: 1.5rem;
    }

    .service-card-modern {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

/* High DPI / Retina display improvements */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .contact-icon i,
    .service-icon {
        transform: scale(0.9);
    }

    .service-number {
        font-weight: 600;
    }
}

/* Custom responsive utility classes */
.h5-md {
    font-size: 1.25rem;
}

.fa-md-2x {
    font-size: 2em;
}

@media (max-width: 767px) {
    .h5-md {
        font-size: 1rem;
    }

    .fa-md-2x {
        font-size: 1.5em;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .w-100-mobile {
        width: 100% !important;
    }
}

/* Contact form specific improvements */
@media (max-width: 576px) {
    .contact-form .row .col-12 {
        margin-bottom: 1rem;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .contact-form .card {
        margin: 0 0.5rem;
    }
}

/* Services section specific improvements */
@media (max-width: 576px) {
    .services-section {
        padding: 2rem 0;
    }

    .services-section-title {
        font-size: 1.3rem !important;
        margin-bottom: 1rem;
    }

    .services-section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 2rem;
    }

    .service-readmore {
        font-size: 0.85rem;
    }
}

/* Enhanced grid responsiveness */
@media (max-width: 575px) {
    .contact-main-section .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .services-main-section .col-12.col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {

    .btn:focus,
    .form-control:focus,
    .form-select:focus {
        box-shadow: 0 0 0 3px rgba(0, 209, 132, 0.25);
        outline: none;
    }

    .contact-add-item:focus,
    .service-card-modern:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
    }
}

/* Performance optimization for mobile */
@media (max-width: 768px) {

    .faq-glow,
    .footer-shade {
        display: none;
    }

    [data-aos] {
        pointer-events: none;
    }

    [data-aos].aos-animate {
        pointer-events: auto;
    }
}





















/* REACT STYLES */

.service-para h2 {
    margin: 30px 0px;
}

/* Shimmer Effect for Skeleton Loading */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
    display: block;
}

.shimmer-dark {
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}