/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 28px;
    height: 28px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/



:root {
    /* Standard Colors */
    --primary-color: #0d6efd;
    --bg-light: #f8f9fa;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --whatsapp-green: #25D366;
    --border-color: #dee2e6;

    /* Bootstrap Aliases (Added to make your snippet work) */
    --bs-primary: var(--primary-color);
    --bs-white: #ffffff;
    --bs-light: var(--bg-light);
}

/* --- Top Bar Container --- */
.top-bar {
    background-color: var(--bg-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


/* Borders */
.border-end {
    border-right: 1px solid var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color);
}

/* Link Styles */
a {
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-color);
}

/* --- Section 1: Contact Info --- */
.contact-info-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* --- Section 2: Social & Language --- */
.social-language-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons {
    display: flex;
    align-items: center;
    border-right: 1px solid var(--primary-color);
    padding-right: 12px;
    margin-right: 12px;
}

.social-icons a {
    margin-left: 12px;
    color: var(--primary-color);
}

/* --- FIXED Dropdown Styling --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    color: var(--text-dark);
}

/* The Flip Animation Menu */
.top-bar .dropdown .dropdown-menu {
    display: block;
    /* Changed from display:none to allow transform animation */
    opacity: 0;
    visibility: hidden;
    transform: rotateX(-90deg);
    /* Start flipped up */
    transform-origin: top center;
    background: var(--bg-light);
    min-width: 120px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0;
    /* Flat look for flip effect usually preferred, or keep rounded */
    padding: 10px 0;
    z-index: 1000;
    border: 0;
    /* Removed border as per snippet request */
    transition: all 0.4s ease-in-out;
    /* Smooth transition for flip */
}

/* Hover State: Flip Down */
.top-bar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
    /* Flip to flat */
}

/* Dropdown Items */
.dropdown-item {
    display: block;
    padding: 6px 20px;
    clear: both;
    font-weight: 400;
    color: var(--text-dark);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    font-size: 14px;
    transition: 0.3s;
}

/* Item Hover Effect (From your snippet) */
.top-bar .dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Custom Dropdown Arrow (From your snippet) */
.top-bar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    /* FontAwesome Angle Down */
    font-family: "Font Awesome 6 Free";
    /* Updated to FA6, or "Font Awesome 5 Free" */
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

/* Optional: Rotate arrow on hover */
.top-bar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* --- Section 3: WhatsApp Action --- */
.whatsapp-action-group {
    display: none;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    color: var(--whatsapp-green);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    color: #1ebe57;
}

.comment-badge {
    position: absolute;
    top: 7px;
    right: 12px;
    color: var(--primary-color);
    background: #fff;
    border-radius: 50%;
    padding: 0 2px;
}

.call-info {
    flex-direction: column;
    justify-content: center;
    margin-left: 1rem;
    font-size: 0.9rem;
}

/* --- Animation (Tada) --- */
@keyframes tada {
    0% {
        transform: scale(1);
    }

    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.animate-tada {
    animation: tada 2s infinite;
    animation-delay: 0.9s;
}

/* --- Responsive Queries --- */
@media (min-width: 992px) {
    .d-lg-flex {
        display: flex !important;
    }

    .social-language-group {
        justify-content: flex-end;
    }

    .contact-info-group {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .d-xl-flex {
        display: flex !important;
    }

    .contact-info-group {
        flex: 1;
    }

    .social-language-group {
        flex: 0 0 auto;
        justify-content: center;
    }

    .whatsapp-action-group {
        display: flex !important;
        flex: 0 0 auto;
    }
}



/*** Topbar End ***/


/*** Navbar Start ***/

.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 40px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }



    .navbar .nav-item .dropdown-menu {
        visibility: hidden;
        position: absolute;
        left: -10px;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}


/* Hide dropdown by default */
.drop1down-menu {
    position: absolute;
    top: 100%;
    left: -240px;
    z-index: 1000;
    display: none;
    /* hidden initially */
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .175);
}

/* Show dropdown when parent is hovered */
.dropdown:hover .drop1down-menu {
    display: block;
}


/* Dropdown menu items */
.drop1down-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.drop1down-item:hover,
.drop1down-item:focus {
    color: #fff;
    background-color: #0d6efd;
    /* bootstrap primary color */
}

/* Show the menu when parent has .show */
.drop1down-menu.show {
    display: block;
}

/* Right-aligned menu */
.drop1down-menu-end {
    right: 0;
    left: auto;
}

/* Responsive adjustments for dropdowns */
@media (max-width: 992px) {
    .drop1down-menu {
        position: static;
        float: none;
        min-width: 100%;
        box-shadow: none;
    }
}


/* =========================
   Root Variables (Theme)
========================= */
:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --bg-light: #f8f9fa;
    --text-dark: #333;
    --white: #ffffff;
    --radius-lg: 12px;
    --radius-md: 8px;
    --transition: 0.25s ease;
}

/* =========================
   Mega Menu Container
========================= */
.mega-menu {
    min-width: 930px;
    padding: 10px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.25s ease-out;
    will-change: transform, opacity;
}

.mega-menu-horizontal {
    width: 280px;
    padding: 15px 0;
}

/* Vertical Mega Menu */
.mega-menu-vertical {
    min-width: 280px;
    padding: 10px 0;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.25s ease-out;
    will-change: transform, opacity;
}

.mega-menu-vertical .mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 10px;
}

.mega-menu-vertical .mega-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.mega-menu-vertical .mega-item i {
    font-size: 18px;
    width: 24px;
    color: var(--primary);
}

.mega-menu-vertical .mega-item:hover,
.mega-menu-vertical .mega-item.active {
    background: var(--primary);
    color: var(--white);
}

.mega-menu-vertical .mega-item:hover i,
.mega-menu-vertical .mega-item.active i {
    color: var(--white);
}

.mega-menu-vertical .mega-item span {
    font-size: 15px;
}

/* Grid Layout (Enterprise Product) */
.mega-menu-content {
    width: 100%;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    transition: background var(--transition),
        transform var(--transition),
        box-shadow var(--transition),
        color var(--transition);
}

.mega-menu-item:hover,
.mega-menu-item.active,
.mega-menu-item:focus-visible {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
    outline: none;
}

.mega-menu-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.mega-menu-item:hover .mega-menu-icon,
.mega-menu-item.active .mega-menu-icon {
    background: rgba(255, 255, 255, 0.25);
}

.mega-menu-icon i {
    font-size: 22px;
    color: var(--primary);
    transition: color var(--transition);
}

.mega-menu-item:hover .mega-menu-icon i,
.mega-menu-item.active .mega-menu-icon i {
    color: var(--white);
}

.mega-menu-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: color var(--transition);
}

.mega-menu-item:hover .mega-menu-text,
.mega-menu-item.active .mega-menu-text {
    color: var(--white);
}

/* =========================
   Animation
========================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   Responsive Layout
========================= */
@media (max-width: 1200px) {
    .mega-menu {
        min-width: 600px;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }

    .mega-menu,
    .mega-menu-vertical {
        position: static !important;
        min-width: 100%;
        padding: 15px;
        box-shadow: none;
        background: transparent;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mega-menu-item {
        background: var(--white);
        transform: none;
        box-shadow: none;
    }

    .mega-menu-item:hover,
    .mega-menu-item.active {
        background: var(--primary);
    }

    .mega-menu-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: var(--primary);
    }

    .mega-menu-icon i {
        font-size: 18px;
        color: var(--white);
    }

    .mega-menu-text {
        font-size: 14px;
        color: var(--primary);
        text-align: left;
    }

    .mega-menu-item:hover .mega-menu-text,
    .mega-menu-item.active .mega-menu-text {
        color: var(--white);
    }
}

@media (max-width: 576px) {
    .mega-menu-item {
        padding: 12px;
    }

    .mega-menu-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .mega-menu-icon i {
        font-size: 16px;
    }

    .mega-menu-text {
        font-size: 15px;
    }
}

/*** Navbar End ***/



/*** Carousel Hero Header Start ***/

.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    pointer-events: none;
}



.header-carousel .owl-nav button.owl-prev,
.header-carousel .owl-nav button.owl-next {
    pointer-events: all;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    border: none;
    cursor: pointer;
}

.header-carousel .owl-nav button:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}



.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/

.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(/img/Ways-to-improve-office-productivity-with-customised-web-application-development-min.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}


/*** Single Page Hero Header End ***/


/*** Feature Start ***/

.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


/*** Feature End ***/


/*** Service Start ***/

.service .service-item {
    border-radius: 10px;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}


/*** Service End ***/


/*** FAQs Start ***/

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** FAQs End ***/


/*** Blog Start ***/

.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}


/*** Blog End ***/


/*** Team Start ***/

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}


/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


/*** Testimonial End ***/


/*** Contact Start ***/

.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}


/*** Contact End ***/


/*** Footer Start ***/

.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}


/*** Footer End ***/


/*** copyright Start ***/

.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}


/*** copyright end ***/


/* slider three */

.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 110px;
    padding-right: 20px;
    color: white;
}

.slide11-content {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 110px;
    padding-right: 20px;
    padding-top: 2%;
    margin: 3% 0%;
    color: white;
}

.slide-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease-out;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    animation: slideInLeft 1s ease-out;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
    animation: slideInLeft 1.2s ease-out;
}

.cta-group {
    display: flex;
    gap: 20px;
    animation: slideInLeft 1.4s ease-out;
}

.btn-primary {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: #4CAF50;
    transform: translateY(-3px);
}

.cart-icon {
    width: 20px;
    height: 20px;
}


/* Slide Navigation Dots */

.slider-nav {
    position: absolute;
    left: 40px;
    top: 70%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #ffd700;
    border-color: #ffd700;
    transform: scale(1.3);
}


/* Arrow Navigation */

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}


/* Animations */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Responsive */

@media (max-width: 968px) {
    .slide {
        flex-direction: column;
    }

    .slide-content {
        padding: 40px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .slider-nav {
        left: 20px;
    }
}


/* slider three end */

.container-1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 5px;
}

header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1E90FF;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #1E90FF;
}

nav a.active {
    color: #1E90FF;
}

.btn-demo {
    background: #1E90FF;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-demo:hover {
    background: #1873CC;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    color: #FF8C00;
    font-size: 42px;
    margin-bottom: 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-icon {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1E90FF 0%, #0066CC 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.3);
}

.xamarin-logo {
    font-size: 120px;
    color: white;
    font-weight: bold;
}

.platform-icons {
    position: absolute;
}

.icon-android {
    position: absolute;
    left: -60px;
    font-size: 60px;
}

.icon-apple {
    position: absolute;
    top: -80px;
    font-size: 60px;
}

.icon-windows {
    position: absolute;
    right: -60px;
    font-size: 60px;
}

.hero-text p {
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
    line-height: 1.8;
}

.features-section {
    background: #f8f9fa;
}

.features-section h2 {
    color: #FF8C00;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #1E90FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list li span {
    color: #555;
    line-height: 1.6;
}

.tech-showcase {
    text-align: center;
}

.xamarin-brand {
    margin-bottom: 30px;
}

.xamarin-brand img {
    max-width: 100%;
    height: auto;
}

.xamarin-text {
    font-size: 72px;
    color: #3498DB;
    font-weight: 300;
    margin-bottom: 10px;
}

.xamarin-subtitle {
    color: #1E90FF;
    font-size: 24px;
    font-weight: 500;
}

.platform-box {
    background: #1E90FF;
    padding: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
}

.platform-logo {
    font-size: 120px;
    color: white;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-section h2 {
        color: #FF8C00;
        text-align: center;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .platform-icon {
        width: 300px;
        height: 300px;
    }

    .xamarin-logo {
        font-size: 80px;
    }
}


/* box cards  */

.features1-section {
    text-align: center;
    padding: 60px 20px;
}

.features-section h2 {
    font-size: 26px;
    color: #ff7a00;
    font-weight: 700;
    margin-bottom: 40px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.features2-list {
    list-style: none;
}

.feature-box {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    border-bottom: 4px solid #0066ff;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 32px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.features1-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.feature-box h3 {
    color: #ff7a00;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #555;
}


/* circle */


/* Container and Section */

.ops-support-section {
    background-color: #f9f9f9;
    ;
}

.ops-container {
    padding: 6% 0%;
    text-align: center;
}

.ops-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}


/* Grid */

.ops-grid-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ops-grid-item {
    display: flex;
    width: 1200px;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
    max-width: 200px;
}

.ops-grid-item p {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
}


/* Circles */

.ops-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.yellow-circle {
    background-color: #ffc107;
    color: #fff;
}


/* Dotted Line */


/* Responsive */

@media (max-width: 768px) {
    .ops-grid-row {
        flex-direction: column;
    }

    .ops-line {
        width: 2px;
        height: 40px;
        margin: 20px 0;
        border-top: none;
        border-left: 2px dotted #ccc;
    }
}


/* Animation */

.ops-grid-item {
    opacity: 100;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.ops-grid-item.show {
    opacity: 1;
    transform: translateY(0);
}


/* shadow cards  */

.container11 {
    display: flex;
    gap: 50px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.container12 {
    display: flex;
    gap: 50px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.card {
    background: #fff;
    text-align: center;
    width: 50%;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    padding-left: 0;
    line-height: 1.8;
}

.card ul li::before {
    content: "✓";
    margin-right: 10px;
    color: #ff7a00;
}

.card .ideal {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}


/* End-to-End */

.app-services-section {
    text-align: center;
    padding: 60px 20px;
}

.talk-btn {
    background-color: #ff7a00;
    color: #fff;
    border: none;
    padding: 12px 28px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.talk-btn:hover {
    background-color: #e86b00;
}

.technology-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.toggle-container {
    max-width: 1200px;
    margin: 0 auto;
}

.toggle-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.toggle-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.toggle-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.toggle-header:hover {
    background: #f8f9fa;
}

.toggle-header.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a58ca 100%);
    color: white;
}

.toggle-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.toggle-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a58ca 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.toggle-header.active .toggle-icon {
    background: white;
    color: var(--primary-color);
}

.toggle-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.toggle-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.toggle-header.active .toggle-arrow {
    transform: rotate(180deg);
    color: white;
}

.toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.toggle-content.active {
    max-height: 2000px;
}

.toggle-body {
    padding: 30px;
    background: #f8f9fa;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.tech-badge {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.tech-badge i {
    color: var(--primary-color);
    font-size: 18px;
}

.tech-badge span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.solution-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.15);
}

.solution-card h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a58ca 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.cta-section h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-light-custom {
    background: white;
    color: var(--primary-color);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .section-title h1 {
        font-size: 32px;
    }

    .toggle-header {
        padding: 20px;
    }

    .toggle-title h3 {
        font-size: 18px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
}

.header-section {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease-in;
}

.header-section h4 {
    color: #2563eb;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.header-section h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.header-section p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-card {
    border-radius: 20px;
    background: white;
    margin: 50px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.8s ease-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #015fc9 0%, #315aa7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-title {
    flex: 1;
}

.service-title h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.service-title .subtitle {
    color: #2563eb;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-content {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
}

.service-content p {
    margin-bottom: 20px;
}

.service-content h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #2563eb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: linear-gradient(308deg, #f1f1f1 0%, #ffffff15 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #f59e0b;
}

.highlight strong {
    color: #92400e;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #015fc9 0%, #315aa7 100%);
    border-radius: 20px;
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header-section h1 {
        font-size: 1.8rem;
    }

    .service-card {
        margin: 10px;
        padding: 30px 20px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-title h2 {
        font-size: 1.5rem;
    }

    .container-3 {
        flex-direction: column;
    }
}

/* ========================================
   CLIENT & BADGES SECTIONS - SHARED STYLES
   ======================================== */

.clients-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #1e90ff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.clients-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.clients-section>p {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Custom CSS for the subtle background grid pattern (not easily done with pure Tailwind) */
.clients-section-bg {
    background-image: linear-gradient(135deg, #667eea 0%, #1e90ff 100%);
    position: relative;
    overflow: hidden;
}

.clients-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Simple SVG grid pattern */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

/* Custom scroll snapping for better UX (optional but nice) */
#logoSlider {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Ensure JS scroll is smooth */
}

.logo-item {
    scroll-snap-align: start;
}

/* ========================================
   CONTAINER STYLES
   ======================================== */

.client-container,
.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.carousel-container {
    max-width: 1200px;
    padding: 0;
}

.client-slider-wrapper,
.carousel-container {
    border-radius: 20px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    overflow: hidden;
}



/* ========================================
   OWL CAROUSEL ITEMS
   ======================================== */

.owl-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.owl-carousel .item:hover {
    transform: scale(1.05);
}

/* ========================================
   IMAGE STYLES
   ======================================== */

.client-img,
#logoSlider img {
    width: 140px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.client-img:hover,
#logoSlider img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* ========================================
   NAVIGATION BUTTONS
   ======================================== */

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #667eea;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.scroll-btn:hover {
    background: #764ba2;
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}

/* ========================================
   OWL CAROUSEL NAVIGATION
   ======================================== */

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-nav button {
    pointer-events: all;
    background: #667eea !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.owl-nav button:hover {
    background: #764ba2 !important;
    transform: scale(1.1);
}

/* ========================================
   OWL CAROUSEL DOTS
   ======================================== */

.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #667eea;
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 15px;
    }

    .clients-section h2 {
        font-size: 2rem;
    }

    .clients-section>p {
        font-size: 1rem;
    }

    .client-container {
        padding: 0 50px;
    }

    .client-slider-wrapper,
    .carousel-container {
        padding: 30px 15px;
    }

    .client-img,
    #logoSlider img {
        max-width: 100px;
        max-height: 60px;
    }

    .scroll-btn,
    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .client-container {
        padding: 0 45px;
    }

    .scroll-btn,
    .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Custom CSS for the scroll area and button appearance */
.scroll-container {
    /* Ensures smooth movement when JavaScript updates transform */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-wrapper {
    /* Prevent image stretching in the flex container */
    flex-shrink: 0;
    width: 140px;
    /* Fixed width for each logo item */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}




/* .cookie-banner */

/* NEW DESIGN STYLE - Dark & Modern */
:root {
    --bg: #1a1a1d;
    /* Dark background */
    --surface: #2c2c30;
    /* Slightly lighter for modal/banner */
    --text: #f1f1f1;
    --text-secondary: #a0a0a0;
    --border: #444;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --border-radius: 16px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: var(--font);
    margin: 0;
    background-color: #f0f2f5;
    /* Just for demo contrast */
    min-height: 100vh;
}

/* --- BANNER STYLES --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: var(--surface);
    color: var(--text);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 24px;
    display: none;
    /* Controlled by JS */
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    gap: 20px;
    border: 1px solid var(--border);
    animation: slideUp 0.5s var(--transition);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.cookie-banner__text {
    flex: 1 1 60%;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-banner__text p {
    margin: 0;
    color: var(--text-secondary);
}

.cookie-banner__text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary);
    transition: var(--transition);
}

.cookie-banner__text a:hover {
    color: var(--primary-hover);
    border-bottom-style: solid;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- BUTTONS --- */
.cookie-btn {
    padding: 10px 20px;
    border-radius: 50px;
    /* Pill shape */
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.cookie-btn:active {
    transform: scale(0.95);
}

.cookie-btn.primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.cookie-btn.primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.5);
    transform: translateY(-2px);
}

.cookie-btn.outline {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
}

.cookie-btn.outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(142, 68, 173, 0.1);
}

.cookie-btn.ghost {
    background: transparent;
    color: var(--text-secondary);
}

.cookie-btn.ghost:hover {
    color: #ff6b6b;
    /* Red for reject hint */
    background: rgba(255, 107, 107, 0.1);
}

/* --- MODAL STYLES --- */
.cookie-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    /* Glass blur effect */
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--surface);
    color: var(--text);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 90%;
    max-width: 480px;
    padding: 30px;
    z-index: 10001;
    border: 1px solid var(--border);
    animation: scaleIn 0.3s var(--transition);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.cookie-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.cookie-modal__header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
    line-height: 1;
}

.close-btn:hover {
    color: var(--text);
    transform: rotate(90deg);
}

.cookie-modal__content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 14px;
}

/* Checkbox Styling */
.cookie-option {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.cookie-option:hover {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.05);
}

.cookie-option label {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-option small {
    display: block;
    color: var(--text-secondary);
    margin-top: 6px;
    margin-left: 28px;
    /* Align with text */
    font-size: 12px;
}

.cookie-modal__footer {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* --- REVISIT BUTTON --- */
.cookie-revisit-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cookie-revisit-btn:hover {
    transform: rotate(15deg) scale(1.1);
    border-color: var(--primary);
}

.cookie-revisit-btn img {
    width: 60px !important;
    /* Override inline style */
    height: 60px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        bottom: 0;
        width: 100%;
        border-radius: 16px 16px 0 0;
        max-width: none;
        left: 0;
        transform: none;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* cookies banner end  */





.section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1em;
    color: #fffbfb;
    margin-bottom: 50px;
}

.carousel-wrapper {
    position: relative;
    padding: 0 50px;
    /* Space for buttons */
    margin-top: 30px;
}

.carousel-track-container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    /* Hide overflowing slides */
    padding: 45px 0;
    position: relative;
}

.carousel-track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.carousel-slide {
    flex: 0 0 auto;
    /* Prevent stretching */
    min-width: 16.66%;
    /* 6 logos per view */
    text-align: center;
    padding: 0 15px;
    /* Spacing between logos */
    box-sizing: border-box;
    /* Include padding in width */
}

.carousel-slide img {
    max-width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.carousel-slide img:hover {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #6a6ad9;
    /* Purple color for buttons */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #5a5ac0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-slide {
        width: calc(100% / 4);
        /* Show 4 items */
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        width: calc(100% / 3);
        /* Show 3 items */
    }

    .prev-btn {
        left: -10px;
    }

    .next-btn {
        right: -10px;
    }

    .carousel-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 576px) {
    .carousel-slide {
        width: calc(100% / 3);
        /* Show 2 items */
    }

    .section-title {
        font-size: 2em;
    }

    .section-subtitle {
        font-size: 1em;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
}

/* cookies banner */




/* Main Container */
.keyword-wrapper {
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Inner Flex Container */
.keyword-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* Left Content Area */
.keyword-content {
    flex: 1;
    padding: 60px;
    min-width: 300px;
}

.keyword-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.keyword-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Keyword Tags List */
.keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.keyword {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f2f5;
    color: #333;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid #e1e4e8;
    transition: all 0.3s ease;
    font-weight: 500;
}

.keyword:hover {
    background-color: #2c3e50;
    color: #fff;
    border-color: #2c3e50;
    transform: translateY(-2px);
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #0056b3;
}

/* Right Image Area */
.keyword-image {
    flex: 1;
    min-width: 300px;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.keyword-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.keyword-image:hover img {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .keyword-container {
        flex-direction: column;
    }

    .keyword-image {
        width: 100%;
        min-height: 300px;
        order: -1;
        /* Image on top for mobile */
    }

    .keyword-content {
        padding: 40px;
    }

    .keyword-content h2 {
        font-size: 28px;
    }
}