    :root {
        --primary: #16364f;
        --primary2: #031e35;
        --secondary: #f89100;
        --primary-light: rgba(22, 54, 79, 0.1);
        --secondary-light: rgba(216, 127, 1, 0.1);
        --dark: #1e1e1e;
        --gray: #4b4b4b;
        --light-gray: #7f7f7f;
        --light-bg: #f8fafc;
        --white: #ffffff;
        --footer-bg: #0a1e2d;
        --transition: all 0.5s ease-in-out;
        --light: #f5f9fd;
        --secondary2: #2a5c7c;
        --accent: #4ca1d9;
        --dark2: #0a1f2e;
        --gray2: #6c757d;
        --success: #4cc9f0;
        --dark-bg: #0a0a0f;
        --card-bg: #13131f;
        --card-border: rgba(255, 255, 255, 0.05);
        --tile-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
        --tile-size: 86px;
    }

    body {
        font-family: "General Sans", sans-serif;
        background-color: var(--light-bg);
        color: var(--dark);
        margin: 0px;
        padding: 0px;
        user-select: none;
    }

    .font-display {
        font-family: "Clash Display", sans-serif;
    }

    .font-heading {
        font-family: "Space Grotesk", sans-serif;
    }

    .bg-primary-light {
        background-color: var(--primary-light);
    }

    .bg-secondary-light {
        background-color: var(--secondary-light);
    }

    .bg-footer {
        background-color: var(--footer-bg);
    }

    .bg-white {
        background-color: white !important;
    }

    .text-wrap{
        word-wrap: break-word;
    }
    .btn-primary {
        background-color: var(--primary);
        border-color: var(--primary);
        color: white;
        padding: 12px 28px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #0e263a;
        border-color: #0e263a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(22, 54, 79, 0.2);
    }

    .btn-secondary {
        background-color: var(--secondary);
        border-color: var(--secondary);
        color: white;
        padding: 12px 28px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background-color: #f89100;
        border-color: #f89100;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(216, 127, 1, 0.2);
    }

    .btn-outline-white {
        border-color: var(--white) !important;
        color: var(--white) !important;
        border-radius: 50px !important;

    }

    .scrolled .btn-outline-white {
        border-color: var(--primary2) !important;
        color: var(--primary2) !important;
        border-radius: 50px !important;
    }

    .scrolled .btn-outline-white:hover {
        border-color: var(--primary2) !important;
        background-color: var(--primary2) !important;
        color: var(--white) !important;

    }

    .btn-outline-white:hover {
        border-color: var(--white) !important;
        color: var(--primary2) !important;
        border-radius: 50px !important;
        background-color: var(--white) !important;
    }

    .jobs-grid .btn {
        border: none;
    }

    .c_btn:hover {
        transform: translateY(0px);
    }

    .btn-outline-primary {
        color: var(--primary);
        border-color: var(--primary);
        padding: 12px 28px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
    }

    .btn-outline-primary:hover {
        background-color: var(--primary);
        border-color: var(--primary);
        color: white;
        transform: translateY(-2px);
    }

    .btnwhite {
        border-color: #f89100;
        color: #f89100;
        transition: all 0.3s ease-in-out;
    }

    .btnwhite:hover {
        border-color: #f89100;
        color: var(--white);
        background-color: #f89100;
    }

    .text-primary {
        color: var(--primary) !important;
    }

    .text-secondary {
        color: var(--secondary) !important;
    }

    .text-gray {
        color: var(--gray);
    }

    .text-black {
        color: #000;
    }

    .text-light-gray {
        color: rgba(255, 255, 255, 0.7);
    }

    .border-primary {
        border-color: var(--primary) !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Space Grotesk", sans-serif;
        font-weight: 700;
        line-height: 1.3;
    }

    a {
        text-decoration: none;
    }

    .display-1,
    .display-2,
    .display-3,
    .display-4 {
        font-family: "Clash Display", sans-serif;
    }

    .section-padding {
        padding: 100px 0;
    }

    .section-title {
        font-family: "Clash Display", sans-serif;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }

    .section-title:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 80px;
        height: 3px;
        background: var(--secondary);
    }

    .section-title.center:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .custom_pagination .page-link {
        color: var(--primary);
        box-shadow: none;
    }

    .active>.page-link,
    .page-link.active {
        color: #fff !important;
        background-color: var(--primary);
        border-color: var(--primary);
        box-shadow: none;
    }

    /* Chat pop css start */
    .chat-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: var(--secondary);
        color: var(--white);
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        z-index: 1000;
    }

    .chat-box {
        position: fixed;
        bottom: 90px;
        right: 20px;
        width: 100%;
        max-width: 350px;
        height: 70vh;
        background: var(--card-bg);
        border-radius: 10px;
        display: none;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid var(--card-border);
        z-index: 999;
        box-shadow: 0 15px 30px rgba(22, 54, 79, 0.5);

    }

    .chat-box.active {
        display: flex;
    }

    .chat-header {
        background: var(--primary2);
        color: var(--white);
        padding: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    .chat-header h2 {
        margin: 0;
        font-size: 16px;
    }

    .chat-header .close-btn {
        cursor: pointer;
        font-size: 18px;
    }

    .chat-body {
        flex: 1;
        overflow-y: auto;
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        scroll-behavior: smooth;
    }

    .message {
        display: flex;
        align-items: flex-end;
        gap: 8px;
    }

    .message .avatar {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--secondary2);
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--white);
        font-size: 14px;
        flex-shrink: 0;
    }

    .msg-text {
        max-width: 75%;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.4;
    }

    .incoming .msg-text {
        background: var(--secondary);
        color: var(--white);
        border-bottom-left-radius: 0;
    }

    .outgoing {
        justify-content: flex-end;
    }

    .outgoing .msg-text {
        background: var(--primary);
        color: var(--white);
        border-bottom-right-radius: 0;
    }

    .chat-footer {
        display: flex;
        align-items: center;
        padding: 10px;
        background: var(--dark2);
        border-top: 1px solid var(--card-border);
    }

    .chat-footer input {
        flex: 1;
        padding: 10px;
        border: none;
        border-radius: 20px;
        outline: none;
        background: var(--card-bg);
        color: var(--white);
        font-size: 14px;
    }

    .chat-footer button {
        background: var(--secondary);
        border: none;
        border-radius: 50%;
        color: var(--white);
        width: 40px;
        height: 40px;
        margin-left: 10px;
        cursor: pointer;
        transition: var(--transition);
    }

    .chat-body::-webkit-scrollbar {
        display: none;
    }

    .chat-body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Chat pop css end */

    /* form pop css start */

    .fade.customModal {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .customModal .modal-content {
        border: none;
        overflow: hidden;
        border-radius: 0px;
    }

    .customModal .form-left {
        position: relative;
    }

    .customModal .form-left img {
        width: 100%;
        height: 100%;
    }

    .customModal .form-right {
        padding: 30px;
        position: relative;
    }

    .customModal .form-right h4 {
        font-weight: 600;
        margin-bottom: 20px;
        color: #16364f;
    }

    .customModal .form-control {
        border: none;
        border-bottom: 1px solid #ccc;
        border-radius: 0;
        box-shadow: none;
    }

    .customModal .form-control:focus {
        border-color: var(--secondary);
        box-shadow: none;
    }

    .customModal .checkboxes {
        margin-top: 10px;
        accent-color: var(--secondary);
    }

    .customModal .checkboxes label {
        margin-right: 15px;
        font-size: 14px;
    }

    .customModal .btn-close {
        position: absolute;
        right: 0px;
        top: 0px;
        background-color: var(--secondary);
        border-radius: 0px;
        padding: 4px;
        opacity: 1;
        background-image: url(../img/close.png);
    }

    /* form pop css end */

    /* whatsapp icon css start*/
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 999;
        display: inline-block;
        background-color: #25d366;
        border-radius: 50%;
        padding: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        animation: bounce 2s infinite;
        transition: transform 0.3s;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }

        60% {
            transform: translateY(-5px);
        }
    }

    /* whatsapp icon css end*/

    /* top header css ctart */
    .top_header {
        background-color: #ff9d13;
        height: 50px;
        overflow: hidden;
        color: #fff;
        padding-inline: 15px;
    }

    .top_header img {
        max-width: 200px;
        width: 100%;
    }

    .top_header a {
        text-decoration: underline !important;
        font-weight: 700;
    }

    .top_header .marquee {
        width: 100%;
        overflow: hidden;
        color: #fff;
        padding: 10px 0;
        white-space: nowrap;
        position: relative;
    }

    .top_header .marquee-inner {
        display: inline-block;
        white-space: nowrap;
        animation: scrollText 15s linear infinite;
    }

    .top_header .marquee-inner span {
        display: inline-block;
        padding-right: 100px;
        /* space between repeats */
    }

    @keyframes scrollText {
        from {
            transform: translateX(0%);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* top header css end */

    /* navbar css  start*/
    .navbar {
        padding: 20px 0;
        top: 50px;
        left: 0;
        transition: all 0.3s ease !important;
    }

    .navbar.nav_white {
        top: 0px;
    }

    .navbar.scrolled {
        padding: 10px 0;
        background-color: var(--white) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: background-color 1s ease-in-out;
        top: 0px;
    }

    .navbar-brand img {
        transition: all 0.3s ease;
    }

    .logo,
    .navbar.scrolled .navbar-brand img {
        width: 100%;
        max-width: 160px;
    }

    .navbar .nav-link {
        font-weight: 500;
        color: var(--white) !important;
        margin: 0 10px;
        position: relative;
    }

    .navbar .btn {
        border-radius: 50px;
    }

    .nav_white.navbar .nav-link,
    .scrolled.navbar .nav-link {
        color: var(--primary2) !important;
    }

    .navbar .nav-link:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: width 0.3s ease;
    }

    .navbar .nav-link:hover:before {
        width: 100%;
    }

    .navbar .nav-link.active:before {
        width: 100%;
    }

    .dropdown-menu {
        /* border: none; */
        border-radius: 12px;
        padding: 8px 0;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        /* opacity: 0; */
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        /* visibility: hidden; */
        /* display: block; */
        min-width: 240px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 8px;
    }

    /* .dropdown:hover .dropdown-menu,
    .dropdown.show .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    } */

    .dropdown-item {
        padding: 10px 20px;
        font-weight: 500;
        transition: all 0.2s ease;
        position: relative;
        color: var(--gray);
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .dropdown-item .service-icon {
        width: 24px;
        height: 24px;
        margin-right: 12px;
        background: var(--secondary-light);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        transition: all 0.2s ease;
        flex-shrink: 0;
    }
    .dropdown-item.kgti .service-icon {
       color: var(--secondary2);
    }
    .dropdown-item.kgti:hover .service-icon {
       background-color: var(--secondary2);
    }
    .dropdown-item.kgti2 .service-icon {
       color: #4ca1d9;
    }
    .dropdown-item.kgti2:hover .service-icon {
       background-color: #4ca1d9;
    }

    .dropdown-item .service-text {
        transition: transform 0.2s ease;
    }

    .dropdown-item:hover .service-icon {
        background: var(--secondary);
        color: white;
    }

    .dropdown-item:not(:last-child):after {
        content: "";
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 0;
        height: 1px;
        background: rgba(0, 0, 0, 0.05);
    }

    .dropdown-item:hover {
        background: linear-gradient(90deg,
                rgba(22, 54, 79, 0.05) 0%,
                rgba(22, 54, 79, 0.01) 100%);
        color: var(--primary);
    }

    .dropdown-toggle::after {
        display: none;
    }

    /* .nav-item.dropdown .nav-link i {
        transition: transform 0.3s ease;
    }

    .nav-item.dropdown:active .nav-link i,
    .nav-item.dropdown.show .nav-link i {
        transform: rotate(180deg);
    } */

    .costcalulater {
        width: 40px;
        height: 40px;
        background-color: var(--white);
        border-radius: 50%;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .scrolled .costcalulater {
        background-color: var(--primary);
    }

    .scrolled .costcalulater img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(177deg) brightness(102%) contrast(102%);
    }

    /* nav css end */

    .openModal {
        cursor: pointer;
    }

    /* Footer section css start */
    .footer-link {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        margin-bottom: 10px;
        display: inline-block;
    }

    .footer_logo {
        width: 100%;
        max-width: 160px;
    }

    .footer-link:hover {
        color: var(--secondary);
        transform: translateX(5px);
    }

    .social-icon {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border-radius: 50%;
        margin-right: 10px;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        background: var(--secondary);
        transform: translateY(-5px);
    }

    /* Footer section css end */


    /* index page css start */

    /* hero section css start  */
    .hero-section {
        background-size: cover;
        padding: 200px 0 100px;
        height: 90vh;
        display: flex;
        align-items: center;
    }

    .herovideo {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        min-height: 100vh;
    }

    .bg_video {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .bg_video::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-color: rgba(22, 54, 79, 0.8);
        z-index: 55;
    }

    .hero-content {
        max-width: 800px;
        display: flex;
        align-items: center;
        flex-direction: column;
        position: relative;
        z-index: 3;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 25px;
        font-family: "Clash Display", sans-serif;
        font-weight: 700;
        letter-spacing: -0.5px;
        text-align: center;
        height: 160px;
    }

    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 40px;
        color: var(--gray);
        font-weight: 400;
        text-align: center;
    }

    .hero-image-container {
        border-radius: 16px;
        overflow: hidden;
    }

    .hero-image-container img {
        transition: transform 0.5s ease;
    }

    .hero-image-container:hover img {
        transform: scale(1.05);
    }

    .typewriter-container {
        display: inline-block;
        position: relative;
        vertical-align: top;
        text-align: left;
    }

    .typewriter-text {
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        color: var(--secondary);
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .typewriter-cursor {
        display: inline-block;
        width: 3px;
        height: 1em;
        background: var(--secondary);
        margin-left: 4px;
        animation: blink 0.8s infinite;
        vertical-align: middle;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }
    }

    /* hero section css end  */


    /* aword section css start */
    .hpaword .award-card {
        background: linear-gradient(to bottom, #ffffff, #f0f9ff);
        border-radius: 12px;
        padding: 25px 20px;
        text-align: center;
        transition: transform 0.3s ease-in-out;
        height: 100%;
        display: flex !important;
        align-items: center;
        flex-direction: column;
    }

    .hpaword .award-card img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .hpaword .award-card p {
        font-size: 0.9rem;
        font-weight: 500;
        color: #111827;
        margin: 0;
    }

    .hpaword .card-1 {
        background: linear-gradient(to bottom, #c5ffe4);
    }

    .hpaword .card-2 {
        background: linear-gradient(to bottom, #dcf1ff);
    }

    .hpaword .card-3 {
        background: linear-gradient(to bottom, #ffd7da);
    }

    .hpaword .card-4 {
        background: linear-gradient(to bottom, #fffcd6);
    }

    .hpaword .card-5 {
        background: linear-gradient(to bottom, #deffc8);
    }

    .hpaword .card-6 {
        background: linear-gradient(to bottom, #dcf5ff);
    }

    .hpaword .card-7 {
        background: linear-gradient(to bottom, #fffcd7);
    }

    .hpaword .card-8 {
        background: linear-gradient(to bottom, #ffe3d6);
    }

    .hpaword .slick-slide {
        margin: 0 15px;
    }

    /* aword section css end */


    /* case-study section css start */
    .case-study-card {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02);
        height: 100%;
    }

    .case-study-card img {
        width: 100%;
        /* height: 200px; */
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .case-study-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    }

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

    .case-study-content {
        padding: 25px;
    }

    /* case-study section css end */

    /* gallery section css start */
    .gallery_section {
        background-color: #FFF;
    }

    .gallery_section .grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .gallery_section .grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* opacity: 0;
        transform: translateY(30px);
        animation: fadeSlide 1s forwards;
        animation-delay: var(--delay, 0s);
        transition: filter 0.4s ease; */
    }

    /* @keyframes fadeSlide {
        to {
            opacity: 1;
            transform: translateY(0);
        }
       } */

    .gallery_section .grid img:hover {
        filter: brightness(1.3) saturate(1.2);
    }

    /* gallery section css end */

    /* Training section css start */
    .training_bg {
        background: linear-gradient(rgba(22, 54, 79, 0.85), rgba(22, 54, 79, 0.9)),
            url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
        width: 100%;
        height: 100%;
        min-height: 200px;
        border-radius: 15px;
        padding: 30px 20px;
    }

    .training_home .highlight-box {
        background-color: transparent !important;
        color: #000;
    }



    /* Training section css end */

    /* Testimonials section css start */
    .custom_testimonial .testimonial-slider {
        position: relative;
        overflow: hidden;
        min-height: 320px;
    }

    .custom_testimonial .testimonial-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 30px;
        transform: translateX(50px);
    }

    .custom_testimonial .testimonial-slide.active {
        opacity: 1;
        transform: translateX(0);
        position: relative;
    }

    .custom_testimonial .testimonial-content {
        background: linear-gradient(135deg, #16364f 0%, #062741 100%);
        color: white;
        padding: 30px;
        border-radius: 15px;
        position: relative;
        max-width: 700px;
        margin-bottom: 25px;
    }

    .custom_testimonial .testimonial-content:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 15px 15px 0;
        border-style: solid;
        border-color: var(--primary) transparent transparent;
    }

    .custom_testimonial .quote-icon {
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.2);
        margin-bottom: 15px;
    }

    .custom_testimonial .testimonial-text {
        font-size: 1.2rem;
        line-height: 1.6;
        font-style: italic;
        margin-bottom: 20px;
    }

    .custom_testimonial .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        text-align: center;
    }

    .custom_testimonial .author-image {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid #e9ecef;
        /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    }

    .custom_testimonial .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .custom_testimonial .author-details {
        text-align: left;
    }

    .custom_testimonial .author-name {
        font-weight: 700;
        font-size: 1.1rem;
        color: #2d3748;
    }

    .custom_testimonial .author-role {
        color: #f89100;
        font-size: 0.9rem;
    }

    .custom_testimonial .slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 25px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .custom_testimonial .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .custom_testimonial .dot {
        width: 12px;
        height: 12px;
        background: #cbd5e0;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .custom_testimonial .dot.active {
        background: #f89100;
        transform: scale(1.3);
    }

    .custom_testimonial .slider-btn {
        background: #f89100;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        font-size: 1.2rem;
    }

    .custom_testimonial .slider-btn:hover {
        background: #16364f;
        transform: translateY(-2px);
    }

    /* Testimonials section css end */

    /* digitalmarketing section css start */
    .marketing_title:after {
        width: 0px;
        height: 0px;
    }

    .marketing_title {
        font-size: 50px;
    }

    .marketing-banner {
        width: 100%;
        background: linear-gradient(120deg,
                var(--primary2),
                var(--primary));
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        padding: 50px;
        backdrop-filter: blur(5px);
    }

    .content-side {
        flex: 1;
        min-width: 300px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .image-side {
        flex: 1;
        min-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .marketing-image {
        width: 100%;
        max-width: 500px;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
        /* animation: float 6s ease-in-out infinite; */
    }

    .pre-title {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        font-size: 1.1rem;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-family: "Outfit", sans-serif;
    }

    .bg-circle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
    }

    .circle-1 {
        width: 350px;
        height: 350px;
        top: -150px;
        left: -150px;
        animation: pulse 15s ease-in-out infinite;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
        bottom: -80px;
        right: 100px;
        animation: pulse 12s ease-in-out infinite reverse;
    }

    .circle-3 {
        width: 150px;
        height: 150px;
        top: 50%;
        right: 200px;
        animation: pulse 10s ease-in-out infinite;
    }

    .bg-square {
        position: absolute;
        background: rgba(255, 255, 255, 0.03);
        transform: rotate(45deg);
    }

    .square-1 {
        width: 150px;
        height: 150px;
        top: 100px;
        right: 300px;
        animation: rotate 20s linear infinite;
    }

    .square-2 {
        width: 100px;
        height: 100px;
        bottom: 80px;
        left: 200px;
        animation: rotate 25s linear infinite reverse;
    }

    .floating-element {
        position: absolute;
        z-index: 1;
        opacity: 0.7;
    }

    .element-1 {
        top: 20%;
        left: 5%;
        font-size: 24px;
        color: #ffd700;
        animation: float 8s ease-in-out infinite;
    }

    .element-2 {
        bottom: 30%;
        right: 10%;
        font-size: 24px;
        color: #4fd1c5;
        animation: float 7s ease-in-out infinite reverse;
    }

    .element-3 {
        top: 15%;
        right: 15%;
        font-size: 20px;
        color: #fc8181;
        animation: float 9s ease-in-out infinite;
    }

    @keyframes float {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(10deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.7;
        }

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

    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* digitalmarketing section css end */

    /* contact section css start */

    .hcontact {
        background-color: #fff;
    }

    .row.no-gutters {
        margin-left: 0;
        margin-right: 0;
    }

    .row.no-gutters>.col-md-4,
    .row.no-gutters>.col-12 {
        padding: 0;
    }

    .border-card {
        /* border: 1px solid #f89100; */
        border: 1px solid #ddd;
        /* border-right: none; */
        border-bottom: none;
    }

    .border-card:nth-child(3n) {
        border-right: 1px solid #ddd;
    }

    .border-card:nth-last-child(-n + 3) {
        border-bottom: 1px solid #ddd;
    }

    .contact-info-card {
        padding: 25px 15px;
        text-align: center;
        transition: 0.3s;
        height: 100%;
        background-color: #fff;
    }

    .contact-info-card i {
        font-size: 22px;
        color: var(--secondary);
        margin-bottom: 10px;
    }

    .contact-info-card:hover {
        background: #f9f9f9;
    }

    /* contact section css end */

    /* index page css end */

    /* contact page css start */

    /* Hero Section */
    .contact-hero {
        background: linear-gradient(rgba(14, 38, 58, 0.9), rgba(14, 38, 58, 0.9)),
            url("https://images.unsplash.com/photo-1568992687947-868a62a9f521?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80");
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
    }

    .nav_white {
        background-color: white;
    }

    .contact-hero p {
        max-width: 700px;
        margin: auto;
    }

    .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-card {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        font-size: 1.5rem;
    }

    .contact-details h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--primary);
    }

    .contact-details p {
        color: var(--text);
        margin-bottom: 5px;
    }

    .contact-form {
        background: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--primary);
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--secondary);
        box-shadow: 0 0 0 3px rgba(248, 145, 0, 0.1);
    }

    textarea.form-control {
        min-height: 50px;
        resize: vertical;
    }

    .map-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 450px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* FAQ Section css start */
    .faq-section {
        background-color: var(--light);
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
        overflow: hidden;
    }

    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-answer {
        padding: 0 20px 20px;
        color: var(--text);
        display: none;
    }

    .faq-question i {
        transition: transform 0.3s;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    /* FAQ Section css end */

    /* contact page css start */

    /* About page css start */

    /* hero section css start */
    .aphero-section {
        background: linear-gradient(rgba(14, 38, 58, 0.9), rgba(14, 38, 58, 0.9)),
            url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80");
    }

    /* hero section css end */

    /* value section css start */
    .apour_value .value-card {
        transition: transform 0.3s ease;
        height: 100%;
        border: none;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .apour_value .value-card:hover {
        transform: translateY(-5px);
    }

    .apour_value .value-icon {
        width: 70px;
        height: 70px;
        background: rgba(248, 145, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--secondary);
        font-size: 1.8rem;
    }

    .apcompany {
        background-color: #fff;
    }

    /* value section css end */

    /* journey section css end */
    .apjourney-section {
        /* background: rgba(22, 54, 79, 0.9); */
        /* background: linear-gradient(135deg, #16364F, #3b82f6); */
        /* background: linear-gradient(135deg, #16364F, #3b82f6); */
        background-color: var(--dark);
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .apjourney-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%,
                rgba(202, 118, 0, 0.15) 0%,
                transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(0, 39, 68, 0.5) 0%, transparent 40%);
        background-size: cover;
        background-position: center;
        opacity: 0.7;
        z-index: -1;
    }

    .apjourney-section .journey-container {
        display: flex;
        flex-direction: column;
        position: relative;
        margin: 50px 0;
    }

    .apjourney-section .journey-container:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        background: linear-gradient(to bottom, #f89100, #ffaa33);
        border-radius: 10px;
    }

    .apjourney-section .journey-item {
        display: flex;
        justify-content: flex-end;
        padding-right: 40px;
        position: relative;
        margin-bottom: 90px;
        width: 50%;
        align-self: flex-end;
    }

    .apjourney-section .journey-item:nth-child(even) {
        align-self: flex-start;
        justify-content: flex-start;
        padding-left: 40px;
        padding-right: 0;
    }

    .apjourney-section .journey-content {
        /* background: rgba(255, 255, 255, 0.05); */
        background: linear-gradient(145deg, var(--primary), var(--primary2));
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 35px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
        width: 100%;
        max-width: 480px;
        position: relative;
        border-left: 5px solid #f89100;
        transition: all 0.4s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }


    .apjourney-section .journey-content:hover {
        transform: translateY(-8px);
        /* box-shadow: 0 15px 40px rgba(248, 145, 0, 0.25); */
        /* background: rgba(255, 255, 255, 0.08); */
        border-color: var(--secondary);
    }

    .apjourney-section .journey-year {
        position: absolute;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #f89100 0%, #ffaa33 100%);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #16364f;
        font-weight: 800;
        font-size: 1.5rem;
        top: -35px;
        right: -50px;
        box-shadow: 0 8px 25px rgba(248, 145, 0, 0.4);
        z-index: 2;
        border: 4px solid rgba(22, 54, 79, 0.2);
    }

    .apjourney-section .journey-item:nth-child(even) .journey-year {
        right: auto;
        left: -50px;
    }

    .apjourney-section .journey-icon {
        font-size: 2.2rem;
        color: #f89100;
        margin-bottom: 25px;
        background: rgba(248, 145, 0, 0.1);
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .apjourney-section .journey-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 18px;
        color: white;
    }

    .apjourney-section .journey-description {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        font-size: 1.1rem;
    }

    .apjourney-section .journey-stats {
        display: flex;
        justify-content: space-around;
        margin-top: 70px;
        flex-wrap: wrap;
        background: rgba(248, 145, 0, 0.1);
        border-radius: 20px;
        padding: 40px 30px;
        border: 1px solid rgba(248, 145, 0, 0.15);
    }

    /* journey section css end */

    /* stats section css start */
    .apstats .stat-box {
        text-align: center;
        padding: 2rem 1rem;
        border-radius: 10px;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .apstats .stat-box:hover {
        transform: translateY(-5px);
    }

    .apstats .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    /* stats section css end */

    /* project-section css start */
    .project-section {
        position: relative;
        background: linear-gradient(135deg, #16364f, #245a7a);
        border-radius: 20px;
        padding: 3rem 2rem;
        overflow: hidden;
        color: #fff;
    }

    .project-section .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.35;
        z-index: 0;
    }

    .project-section .blob-1 {
        width: 300px;
        height: 300px;
        background: radial-gradient(circle at center, #00c6ff, #0072ff);
        top: -100px;
        left: -100px;
    }

    .project-section .blob-2 {
        width: 280px;
        height: 280px;
        background: radial-gradient(circle at center, #ff758c, #ff7eb3);
        bottom: -120px;
        right: -80px;
    }

    .project-section .lines {
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(45deg,
                rgba(255, 255, 255, 0.05) 0,
                rgba(255, 255, 255, 0.05) 1px,
                transparent 1px,
                transparent 20px);
        z-index: 0;
    }

    .project-section .project-content {
        position: relative;
        z-index: 2;
    }

    /* project-section css end */

    /* Why Customers section css start */

    .abcustomers {
        background-color: #fff;
    }

    .abcustomers .feature-icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: linear-gradient(135deg, #16364f, #3b82f6);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .abcustomers .illustration-box {
        position: relative;
        text-align: center;
    }

    .abcustomers .rect-img {
        width: 100%;
        max-width: 500px;
        border-radius: 16px;
    }

    .abcustomers .circle-img {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 6px solid #fff;
        object-fit: cover;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        background: #fff;
    }

    /* Why Customers section css end */

    /* reating  section css start */
    .areating-section .reatting_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 2rem;
    }

    .areating-section .awards-content h3 {
        font-size: 14px;
        background: var(--dark);
        color: var(--white);
        display: inline-block;
        padding: 5px 12px;
        border-radius: 4px;
        margin-bottom: 10px;
    }


    .areating-section .awards-cards {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .areating-section .award-card {
        flex: 1;
        min-width: 220px;
        background: #3D75DD;
        border-radius: 12px;
        padding: 25px;
        color: var(--white);
        text-align: center;
        transition: var(--transition);
    }

    .areating-section .rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .areating-section .stars {
        color: gold;
        font-size: 18px;
    }

    .areating-section .award-card h4 {
        font-size: 20px;
        margin-top: 10px;
        font-weight: 600;
    }

    .areating-section .award-card img {
        max-width: 100px;
        margin-top: 15px;
        width: 100%;
        border: 2px solid #fff;
        border-radius: 50%;
    }

    .areating-section {
        background-color: #fff;
    }

    /* reating  section css end */

    /* About page css end */

    /* career page css start */

    /* hero section css start */
    .careerhero {
        background: linear-gradient(rgba(14, 38, 58, 0.9), rgba(14, 38, 58, 0.9)),
            url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80");
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
    }

    /* hero section css end */

    /* Benefits Section css start */

    .benefits {
        background-color: white;
    }

    .benefits .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
    }

    .benefits .benefit-card {
        background-color: var(--primary);
        border-radius: 8px;
        padding: 30px;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 15px 30px rgba(22, 54, 79, 0.2);
        /* border-left: 4px solid var(--primary); */
    }

    .benefits .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(22, 54, 79, 0.3);
    }

    .benefits .benefit-icon {
        font-size: 2.5rem;
        color: var(--secondary);
        margin-bottom: 20px;
    }

    .benefits .benefit-card h3 {
        margin-bottom: 15px;
        color: var(--white);
    }

    .benefits .benefit-card p {
        color: var(--white);
    }

    /* Benefits Section css end */

    /* Open Positions section css start */
    .positions {
        background-color: #fff6ef;
    }

    .positions .filters {
        text-align: center;
        margin-bottom: 30px;
    }

    .positions .filter-btn {
        border: 1px solid #16364f;
        background: #fff;
        color: #16364f;
        padding: 8px 16px;
        margin: 5px;
        border-radius: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .positions .filter-btn.active,
    .positions .filter-btn:hover {
        background: #16364f;
        color: #fff;
    }

    .positions .jobs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .positions .job-card {
        background: #fff;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        transition: var(--transition);
    }

    .positions .job-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
    }

    .positions .job-tag {
        font-size: 0.8rem;
        color: #fff;
        background: var(--secondary);
        padding: 4px 10px;
        border-radius: 12px;
        margin-bottom: 10px;
        display: inline-block;
        width: fit-content;
    }

    .positions .job-card h3 {
        margin: 10px 0;
        color: #000;
        font-size: 1.2rem;
    }

    .positions .job-details {
        font-size: 0.9rem;
        color: #555;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 10px;
    }

    .positions .job-card p {
        flex-grow: 1;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    /* === Popup Modal Form === */
    #jobModal.modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    #jobModal .modal-content {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        max-width: 500px;
        width: 100%;
        position: relative;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        animation: fadeIn 0.3s ease;
    }

    #jobModal .modal-content h3 {
        margin-bottom: 20px;
        color: #16364f;
        text-align: center;
    }

    #jobModal .modal-content input,
    #jobModal .modal-content textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    #jobModal .modal-content input[type="file"] {
        border: none;
    }

    #jobModal .modal-content button[type="submit"] {
        background: #16364f;
        color: #fff;
        padding: 12px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        width: 100%;
        transition: background 0.3s ease;
    }

    #jobModal .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        border: none;
        background: none;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Open Positions section css end */

    /* Culture Section css start */
    .culture {
        background-color: white;
    }

    .culture .culture-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .culture .culture-image {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .culture .culture-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .culture .culture-text h2 {
        margin-bottom: 20px;
        color: var(--primary);
    }

    .culture .culture-features {
        margin-top: 25px;
    }

    .culture .culture-feature {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .culture .culture-feature i {
        color: var(--secondary);
        margin-right: 10px;
        background: var(--secondary-light);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Culture Section css end */

    /* Application Process section css start */
    .jobprocess .process-container {
        position: relative;
        margin-top: 40px;
    }

    .jobprocess .process-steps {
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 2;
    }

    .jobprocess .process-step {
        text-align: center;
        flex: 1;
        padding: 0 15px;
        position: relative;
        transition: var(--transition);
    }

    .jobprocess .step-icon-container {
        position: relative;
        margin-bottom: 25px;
    }

    .jobprocess .step-icon {
        width: 90px;
        height: 90px;
        background: white;
        border: 4px solid var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        position: relative;
        z-index: 3;
        transition: var(--transition);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .jobprocess .step-icon i {
        font-size: 2.2rem;
        color: var(--primary);
        transition: var(--transition);
    }

    .jobprocess .step-number {
        position: absolute;
        top: -10px;
        right: -5px;
        width: 40px;
        height: 40px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
    }

    .jobprocess .process-step h3 {
        margin-bottom: 15px;
        color: var(--primary);
        font-size: 1.4rem;
        font-weight: 600;
    }

    .jobprocess .process-step p {
        margin-bottom: 20px;
        font-size: 1rem;
        line-height: 1.6;
    }

    .jobprocess .step-duration {
        display: inline-block;
        padding: 8px 18px;
        background: var(--light);
        color: var(--primary);
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .jobprocess .step-highlight {
        background: linear-gradient(135deg, var(--accent), var(--primary));
        color: white;
        padding: 15px;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: 0 8px 15px rgba(76, 161, 217, 0.3);
        transform: translateY(10px);
        opacity: 0;
        transition: var(--transition);
    }

    .jobprocess .step-highlight p {
        color: white;
        margin: 0;
        font-size: 0.95rem;
    }

    /* Hover effects */
    .jobprocess .process-step:hover {
        transform: translateY(-5px);
    }

    .jobprocess .process-step:hover .step-icon {
        transform: scale(1.1);
        background: var(--primary);
        border-color: var(--primary);
    }

    .jobprocess .process-step:hover .step-icon i {
        color: white;
    }

    .jobprocess .process-step:hover .step-number {
        transform: scale(1.1);
        background: var(--secondary);
    }

    .jobprocess .process-step:hover .step-highlight {
        transform: translateY(0);
        opacity: 1;
    }

    /* Stats section */
    .jobprocess .stats-container {
        display: flex;
        justify-content: space-around;
        margin-top: 80px;
        padding: 40px;
        background: linear-gradient(to right, var(--primary), var(--secondary2));
        border-radius: 16px;
        color: white;
        text-align: center;
    }

    .jobprocess .stat-item {
        padding: 0 20px;
    }

    .jobprocess .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        font-family: "Poppins", sans-serif;
    }

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

    /* Animation */
    @keyframes key {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    .jobprocess .process-step {
        animation: key 0.6s ease forwards;
    }

    .jobprocess .process-step:nth-child(1) {
        animation-delay: 0.1s;
    }

    .jobprocess .process-step:nth-child(2) {
        animation-delay: 0.2s;
    }

    .jobprocess .process-step:nth-child(3) {
        animation-delay: 0.3s;
    }

    .jobprocess .process-step:nth-child(4) {
        animation-delay: 0.4s;
    }

    .jobprocess .process-step:nth-child(5) {
        animation-delay: 0.5s;
    }

    .jobprocess .stat-item {
        animation: key 0.6s ease forwards;
    }

    .jobprocess .stat-item:nth-child(1) {
        animation-delay: 0.6s;
    }

    .jobprocess .stat-item:nth-child(2) {
        animation-delay: 0.7s;
    }

    .jobprocess .stat-item:nth-child(3) {
        animation-delay: 0.8s;
    }

    /* Application Process section css end */

    /* career page css end */

    /* Store page css start */

    /* Hero Section css start */
    .storehero {
        background: linear-gradient(rgba(22, 54, 79, 0.8), rgba(22, 54, 79, 0.9)),
            url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80");
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
    }

    /* Hero Section css end */

    /* call section css start */

    .call-section {
        background-color: var(--light);
        text-align: center;
    }

    .call-section .call-options {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .call-section .call-option {
        background: white;
        padding: 40px 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        flex: 1;
        min-width: 250px;
        max-width: 350px;
        transition: var(--transition);
    }

    .call-section .call-option:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .call-section .call-icon {
        font-size: 2.5rem;
        color: var(--secondary);
        margin-bottom: 20px;
    }

    .call-section .call-option h3 {
        margin-bottom: 15px;
        color: var(--primary);
    }

    .call-section .call-option p {
        margin-bottom: 20px;
        font-size: 1rem;
    }

    /* call section css end */

    /* Form Section css start*/
    .inquiry {
        background: linear-gradient(to right, var(--primary), var(--secondary2));
        color: white;
    }

    .inquiry-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .inquiry-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .inquiry-content p {
        margin-bottom: 25px;
        opacity: 0.9;
        font-size: 1.1rem;
    }

    .inquiry-features {
        list-style: none;
        margin-top: 30px;
    }

    .inquiry-features li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .inquiry-features i {
        color: var(--secondary);
        margin-right: 15px;
        font-size: 1.2rem;
    }

    .inquiry-form {
        background: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .form-title {
        color: var(--primary);
        margin-bottom: 25px;
        text-align: center;
        font-size: 1.8rem;
    }

    /* Form Section css end*/

    /* services Section css start*/
    .servicesstore {
        background-color: white;
    }

    .servicesstore .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .servicesstore .service-card {
        background: linear-gradient(to right, var(--primary), var(--secondary2));
        border-radius: 10px;
        padding: 40px 30px;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .servicesstore .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .servicesstore .service-icon {
        font-size: 3rem;
        color: var(--secondary);
        margin-bottom: 25px;
    }

    .servicesstore .service-card h3 {
        margin-bottom: 20px;
        color: var(--white);
        font-size: 1.5rem;
    }

    .servicesstore .service-card p {
        color: var(--white);
        margin-bottom: 25px;
    }

    .servicesstore .service-link {
        color: var(--secondary);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
    }

    .servicesstore .service-link i {
        margin-left: 8px;
        transition: var(--transition);
    }

    .servicesstore .service-link:hover i {
        transform: translateX(5px);
    }

    /* services Section css end*/

    .storecard .file-type {
        font-size: 0.75rem;
        background: #f1f1f1;
        color: #555;
        border-radius: 4px;
        padding: 2px 8px;
        display: inline-block;
    }

    .storecard .card-custom {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .row_gap {
        column-gap: 20px;
    }

    /* Store page css end */

    /* digital marketing page css start */

    /* hero section css start */
    .digitalhero {
        background: linear-gradient(rgba(22, 54, 79, 0.85), rgba(22, 54, 79, 0.9)),
            url("../img/digital-marketing.jpg");
        background-size: cover;
        background-position: top;
        color: white;
        text-align: center;
    }

    /* Typewriter Container */
    .digitalhero .typewriter-container {
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .digitalhero .typewriter-line {
        font-size: 1.9rem;
        font-weight: 600;
        color: var(--secondary);
        white-space: nowrap;
        overflow: hidden;
        border-right: 3px solid var(--secondary);
        animation: blinkCursor 0.8s infinite;
    }

    @keyframes blinkCursor {

        0%,
        50% {
            border-color: var(--secondary);
        }

        51%,
        100% {
            border-color: transparent;
        }
    }

    /* hero section css end */

    /* digital marketing process section css start */
    .digitalproces .custom-bg {
        background: linear-gradient(135deg, #1a1f36 0%, #2c2f48 100%);
        border-radius: 20px;
    }

    .digitalproces .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .digitalproces .stat-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* digital marketing process section css start */

    /* add section css start */
    .addsection .service-card {
        background-color: var(--primary2);
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        height: 100%;
        color: var(--white);
    }

    .addsection .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .addsection .service-icon {
        font-size: 2.5rem;
        color: var(--secondary);
    }

    .addsection .table-custom th {
        background-color: var(--primary2);
        color: var(--white);
    }

    .addsection .table-custom td {
        background-color: var(--white);
    }

    /* add section css end */

    /* industries section css start */
    .digiindustries {
        background: linear-gradient(to right, var(--dark-bg), #121217);
    }

    .digiindustries .industry-slider {
        margin: 0 -15px;
    }

    .digiindustries .industry-slide {
        padding: 0px 15px;
        outline: none;
    }

    .digiindustries .industry-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        height: 350px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease-in-out;
    }

    .digiindustries .industry-card:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }


    .digiindustries .industry-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: all 0.4s ease-in-out;
    }

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

    .digiindustries .industry-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        /* background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent); */
        padding: 25px;
        color: white;
        transition: all 0.4s ease;
    }

    /* .digiindustries .industry-card:hover .industry-overlay {
    background: linear-gradient(to top, var(--primary), transparent);
} */

    .digiindustries .industry-title {
        font-weight: 700;
        font-size: 1.4rem;
        margin: 0 0 10px 0;
    }

    .digiindustries .industry-desc {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .digiindustries .slick-prev,
    .webdcase_studies .slick-prev,
    .webdcase_studies .slick-next,
    .digiindustries .slick-next {
        width: 50px;
        height: 50px;
        z-index: 10;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .webdcase_studies .slick-prev,
    .digiindustries .slick-prev {
        left: -25px;
    }

    .webdcase_studies .slick-next,
    .digiindustries .slick-next {
        right: -25px;
    }

    .digiindustries .slick-prev:hover,
    .webdcase_studies .slick-prev:hover,
    .webdcase_studies .slick-next:hover,
    .digiindustries .slick-next:hover {
        background: var(--primary);
    }

    .digiindustries .slick-prev:before,
    .webdcase_studies .slick-prev:before,
    .webdcase_studies .slick-next:before,
    .digiindustries .slick-next:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 20px;
        color: white;
        opacity: 1;
    }

    .digiindustries .slick-prev:before,
    .webdcase_studies .slick-prev:before {
        content: "\f053";
    }

    .digiindustries .slick-next:before,
    .webdcase_studies .slick-next:before {
        content: "\f054";
    }

    /* industries section css end */

    /* why choose section css start */
    .adswhy_choose .choose-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
        gap: 25px;
    }

    .adswhy_choose .choose-card {
        background: var(--primary2);
        border: 1px solid var(--card-border);
        border-radius: 15px;
        padding: 30px 20px;
        transition: var(--transition);
        text-align: center;
    }

    .adswhy_choose .choose-card:hover {
        transform: translateY(-8px);
        border-color: var(--secondary);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .adswhy_choose .choose-card .icon {
        font-size: 2.5rem;
        color: var(--secondary);
        margin-bottom: 15px;
    }

    .adswhy_choose .choose-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--white);
    }

    .adswhy_choose .choose-card p {
        font-size: 0.95rem;
        color: var(--light);
        line-height: 1.5;
    }

    /* why choose section css start */

    /* brands section css start */
    .digitalbrands_section {
        overflow: hidden;
        background-color: #fff;
    }

    .slider {
        overflow: hidden;
        position: relative;
    }

    .slider-track {
        display: flex;
        width: calc(200px * 14);
        animation: scroll 25s linear infinite;
    }

    .slide {
        width: 200px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }

    .slide img {
        max-width: 200px;
        max-height: 70px;
        object-fit: contain;
        transition: all 0.3s ease;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* brands section css end */

    /* review secton css start */
    .digitalreviews-section .reviewscontent {
        max-width: 700px;
        margin: auto;
    }

    .digitalreviews-section .reviews-slider {
        margin: 0 auto;
    }

    .digitalreviews-section .slick-list {
        padding: 10px 0;
    }

    .digitalreviews-section .slick-dots {
        bottom: -40px;
    }

    .digitalreviews-section .slick-dots li button:before {
        font-size: 12px;
        color: var(--light-gray);
        opacity: 0.5;
    }

    .digitalreviews-section .slick-dots li.slick-active button:before {
        color: var(--secondary);
        opacity: 1;
    }

    .digitalreviews-section .slick-prev,
    .digitalreviews-section .slick-next {
        display: none !important;
    }

    .digitalreviews-section .review-card {
        background: var(--primary2);
        border: 1px solid var(--card-border);
        border-radius: 16px;
        padding: 30px;
        margin: 0 10px;
        transition: var(--transition);
        text-align: center;
    }

    .digitalreviews-section .review-card:hover {
        transform: translateY(-5px);
        border-color: var(--secondary);
    }

    .digitalreviews-section .client-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 20px;
        border: 3px solid var(--secondary-light);
    }

    .digitalreviews-section .client-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .digitalreviews-section .client-info {
        margin-bottom: 20px;
    }

    .digitalreviews-section .client-name {
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 5px;
    }

    .digitalreviews-section .client-position {
        font-size: 16px;
        color: var(--secondary);
    }

    .digitalreviews-section .review-text {
        font-size: 17px;
        line-height: 1.7;
        color: var(--light);
        margin-bottom: 20px;
        position: relative;
        padding: 0 10px;
    }

    .digitalreviews-section .review-text::before {
        content: "";
        font-size: 50px;
        color: var(--secondary-light);
        position: absolute;
        top: -25px;
        left: -5px;
        font-family: Georgia, serif;
        opacity: 0.3;
        line-height: 1;
    }

    .digitalreviews-section .review-rating {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .digitalreviews-section .rating-stars {
        color: var(--secondary);
        margin-right: 10px;
    }

    .digitalreviews-section .rating-stars i {
        margin-right: 2px;
    }

    .digitalreviews-section .rating-value {
        font-weight: 700;
        color: var(--white);
    }

    /* review secton css end */

    /* digital marketing page css end */

    /*  app development page css start */

    /* hero section css  start */
    .apphero-section {
        background: linear-gradient(rgba(22, 54, 79, 0.85), rgba(22, 54, 79, 0.9)),
            url("../img/appbanner.jpg");
        background-size: cover;
        background-repeat: no-repeat;
    }

    /* hero section css  end */

    /* CTA  section css start */
    .ctaapp {
        background: linear-gradient(135deg,
                var(--primary) 0%,
                var(--primary2) 100%);
        color: var(--white);
        text-align: center;
    }

    .ctaapp p {
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: 0.9;
    }

    /* CTA  section css end */

    /* Tech Stack css start */
    .apptech .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .apptech .tech-item {
        transition: var(--transition);
    }

    .apptech .tech-item:hover {
        transform: translateY(-10px);
    }

    .apptech .tech-icon {
        width: 100px;
        height: 100px;
        background-color: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 40px;
    }

    .apptech .tech-item h4 {
        color: var(--primary);
    }

    /* CTA  section css end */

    /* fulter service section css start */
    .appservices .services-container {
        background-color: var(--primary);
        color: var(--white);
        border-radius: 12px;
        padding: 20px;
        margin: auto;
        max-width: 1050px;
    }

    .appservices .nav-pills .nav-link {
        border-radius: 8px;
        color: var(--dark);
        background-color: var(--primary-light);
        margin-bottom: 10px;
        transition: var(--transition);
        width: 100%;
        text-align: left;
        font-weight: 600;
    }

    .appservices .nav-pills {
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
    }

    .appservices .nav-pills .nav-link.active {
        background-color: var(--secondary);
        color: var(--white);
    }

    .appservices .tab-content {
        padding: 20px;
    }

    .appservices .feature-list p {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .appservices .feature-list i {
        color: var(--secondary);
    }

    .appservices .nav-link i {
        width: 20px;
        margin-right: 5px;
    }

    /* fulter service section css end */

    /* form service section css star */
    .appform {
        display: flex;
        flex-wrap: wrap;
        gap: 80px;
        align-items: flex-start;
    }

    .appform .left-column {
        flex: 1;
        min-width: 300px;
    }

    .appform .right-column {
        flex: 1;
        min-width: 300px;
    }

    .appform .cards-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .appform .card {
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .appform .card-dark {
        background-color: var(--primary);
        color: var(--white);
    }

    .appform .card-light {
        background-color: var(--white);
        color: var(--dark);
        border: 1px solid var(--primary-light);
    }

    .appform .card-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .appform .card-title::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--secondary);
    }

    .appform .card-content {
        font-size: 1rem;
        font-weight: 400;
    }

    .appform .form-container {
        background-color: var(--primary);
        color: #fff;
        border-radius: 10px;
        padding: 40px;
    }

    /* form service section css end */

    /* solutions-section section css start */
    .solutions-section {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: flex-start;
    }

    .solutions-section .left-column {
        flex: 1;
        min-width: 200px;
        position: sticky;
        top: 100px;
    }

    .solutions-section .highlight-box {
        background-color: var(--primary);
        color: var(--white);
        padding: 40px;
        border-radius: 16px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: sticky;
    }

    .solutions-section .right-column {
        flex: 1.5;
        min-width: 200px;
    }

    .solutions-section .service-cards {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .solutions-section .service-card {
        background-color: var(--white);
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid var(--primary-light);
        transition: all 0.3s ease;
        display: flex;
        gap: 20px;
    }

    .solutions-section .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .solutions-section .card-icon {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        border-radius: 12px;
        background-color: var(--primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        font-size: 1.5rem;
    }

    .solutions-section .card-content {
        flex-grow: 1;
    }

    .solutions-section .card-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--primary);
    }

    .solutions-section .card-description {
        color: var(--gray);
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .solutions-section .card-features {
        list-style-type: none;
    }

    .solutions-section .card-features li {
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.95rem;
        color: var(--dark);
    }

    .solutions-section .card-features li i {
        color: var(--secondary);
        font-size: 0.9rem;
        margin-top: 4px;
        flex-shrink: 0;
    }

    /* solutions-section section css end */

    /* Achievements Section css start */

    .achievements-section .achievements-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .achievements-section .achievements-content .section-title::after {
        width: 0px;
    }

    .achievements-section .awards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .achievements-section .award-card {
        background: var(--white);
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid var(--primary-light);
    }

    .achievements-section .award-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    .achievements-section .award-icon {
        width: 60px;
        height: 60px;
        background-color: var(--secondary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--secondary);
        font-size: 24px;
    }

    .achievements-section .award-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 10px;
    }

    .achievements-section .award-year {
        font-size: 14px;
        color: var(--secondary);
        font-weight: 500;
    }

    /* Achievements Section css end */

    /* Workflow Section css start*/
    .workflow-section {
        background: linear-gradient(135deg, var(--primary) 0%, var(--footer-bg) 100%);
        color: var(--white);
        padding-inline: 40px;
        border-radius: 20px;
    }

    .workflow-section .workflow-container {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .workflow-section .workflow-content {
        flex: 1;
    }

    .workflow-section .mobile-app {
        max-width: 500px;
        width: 100%;
        border-radius: 30px;
        margin-top: -100px;
    }

    /* Workflow Section css end */

    /* tools section css start */
    .apptool .tools-card {
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        width: fit-content;
        margin: auto;
    }

    .apptool .tabs-container {
        background: var(--light-bg);
        padding: 30px 0;
    }

    .apptool .tabs {
        display: flex;
        align-items: center;
    }

    .apptool .tab {
        padding: 16px 24px;
        margin: 0 10px;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: var(--primary-light);
        color: var(--dark);
        display: flex;
        align-items: center;
    }

    .apptool .tab:hover {
        background: rgba(22, 54, 79, 0.15);
    }

    .apptool .tab.active {
        background: var(--primary);
        color: var(--white);
    }

    .apptool .tab i {
        font-size: 20px;
        margin-right: 12px;
        width: 24px;
        text-align: center;
    }

    .apptool .tab span {
        font-weight: 500;
    }

    .apptool .content-container {
        flex: 1;
        padding: 30px;
        background-color: var(--primary);
    }

    .apptool .tab-content {
        display: none;
    }

    .apptool .tab-content.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    .apptool .tools-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }

    .apptool .tool-card {
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .apptool .tool-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .apptool .tool-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        color: var(--primary);
        font-size: 22px;
    }

    .apptool .tool-name {
        font-weight: 600;
        color: var(--primary);
    }

    /* tools section css end */

    /* case-studies section css start */
    .appcase-studies {
        overflow: hidden;
    }

    .appcase-studies .case-slider .case-card {
        position: relative;
        background: #fff;
        border-radius: 0px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .appcase-studies .case-slider .case-card:hover img {
        transform: scale(1.2);
    }

    .appcase-studies .case-slider .case-card img {
        width: 100%;
        height: auto;
        display: block;
        transition: var(--transition);
    }

    .appcase-studies .case-slider .case-title {
        padding: 5px 15px;
        background: #16364f;
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        font-weight: 400;
        width: fit-content;
        border-radius: 30px;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    /* case-studies section css end */

    /* industry section css start */
    .flutter-industrial-exposure .tabs-container {
        position: relative;
        background: rgba(22, 54, 79, 0.95);
        backdrop-filter: blur(10px);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding-inline: 30px;
    }

    .flutter-industrial-exposure .tabs-scroll {
        display: flex;
        overflow-x: auto;
        padding: 15px 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 15px;
        margin: 0 -10px;
    }

    .flutter-industrial-exposure .tabs-scroll::-webkit-scrollbar {
        display: none;
    }

    .flutter-industrial-exposure .tab {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
        /* background: rgba(255, 255, 255, 0.7); */
        /* background:var(--light-bg); */
        background: transparent;
        /* backdrop-filter: blur(10px); */
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.5s ease-in-out;
        border: 1px solid transparent;
        /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
        min-width: 110px;
        color: #fff;
    }

    .flutter-industrial-exposure .tab.active {
        background: var(--primary);
        border: 1px solid var(--secondary);
        /* box-shadow: 0 8px 20px rgba(76, 161, 217, 0.3); */
        margin-top: 15px;
    }

    .flutter-industrial-exposure .tab.active .tab-icon,
    .flutter-industrial-exposure .tab.active .tab-label {
        color: var(--white);
    }

    .flutter-industrial-exposure .tab-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
        color: #fff;
        transition: color 0.3s ease;
    }

    .flutter-industrial-exposure .tab-label {
        font-weight: 500;
        font-size: 0.9rem;
        color: #fff;
        transition: color 0.3s ease;
        text-align: center;
    }

    .flutter-industrial-exposure .content-area {
        background: rgba(22, 54, 79, 0.95);
        backdrop-filter: blur(10px);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        overflow: hidden;
        /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
        /* margin-bottom: 40px; */
        /* border: 1px solid rgba(255, 255, 255, 0.1); */
    }

    .flutter-industrial-exposure .tab-content {
        display: none;
        padding: 40px;
    }

    .flutter-industrial-exposure .tab-content.active {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .flutter-industrial-exposure .text-content {
        flex: 1;
        min-width: 300px;
    }

    .flutter-industrial-exposure .industry-title {
        font-size: 2rem;
        margin-bottom: 20px;
        color: var(--white);
    }

    .flutter-industrial-exposure .industry-description {
        color: #fff;
        margin-bottom: 25px;
    }

    .flutter-industrial-exposure .industry-features {
        list-style-type: none;
    }

    .flutter-industrial-exposure .industry-features li {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: var(--white);
    }

    .flutter-industrial-exposure .industry-features li i {
        color: var(--secondary);
        font-size: 1.1rem;
        margin-top: 4px;
        flex-shrink: 0;
    }

    .flutter-industrial-exposure .visual-content {
        flex: 1;
        min-width: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .flutter-industrial-exposure .industry-image {
        width: 100%;
        max-width: 450px;
        max-height: 350px;
        object-fit: cover;
        object-position: top;
        border-radius: 16px;
        transition: transform 0.3s ease;
    }

    /* .industry-image:hover {
            transform: scale(1.02);
        } */

    /* Navigation arrows for tabs */
    .flutter-industrial-exposure .tab-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        opacity: 0.8;
        transition: all 0.3s ease;
        display: none !important;
    }

    /* Animation for content transition */
    @keyframes appfadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    .tab-content.active {
        animation: appfadeIn 0.5s ease-out;
    }

    /* industry section css end */

    .whyapp .row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 3 equal columns */
        gap: 20px;
        /* columns ke beech space */
        margin-bottom: 2rem;
    }

    .whyapp .column {
        background-color: #0b2a41;
        padding: 20px;
        border-radius: 12px;
        color: #fff;
        box-sizing: border-box;
        min-height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Image wali column */
    .whyapp .column img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }

    .whyapp .column h2 {
        color: #fff;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .whyapp .lead {
        font-size: 16px;
        margin: 0px;
    }


    /*  app development page css end */

    /*  Web development page css start */

    /* hero section css  start */
    .webhero-section {
        background: linear-gradient(rgba(22, 54, 79, 0.85), rgba(22, 54, 79, 0.9)),
            url("../img/webbanner.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    /* hero section css  end */


    /*Technology section css start */
    .webdtechnologies {
        background-color: var(--dark);
    }

    .webdtechnologies .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
    }

    .webdtechnologies .tech-card {
        background: var(--primary2);
        border-radius: 12px;
        padding: 30px 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
        text-align: center;
        border: 1px solid var(--card-border);
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .webdtechnologies .tech-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--primary-light);
        transition: var(--transition);
        z-index: 0;
    }

    .webdtechnologies .tech-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(248, 145, 0, 0.2);
        border-color: rgba(248, 145, 0, 0.3);
    }

    .webdtechnologies .tech-card:hover:before {
        height: 100%;
    }

    .webdtechnologies .tech-card:focus-within {
        outline: 2px solid var(--secondary);
        outline-offset: 2px;
    }

    .webdtechnologies .tech-icon {
        width: 80px;
        height: 80px;
        background: var(--secondary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: var(--white);
        font-size: 2rem;
        transition: var(--transition);
        position: relative;
        z-index: 1;
    }

    .webdtechnologies .tech-card:hover .tech-icon {
        background: var(--secondary);
        transform: scale(1.1);
    }

    .webdtechnologies .tech-name {
        color: var(--white);
        font-size: 1.4rem;
        margin-bottom: 10px;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }

    .webdtechnologies .tech-desc {
        color: var(--white);
        font-size: 0.95rem;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .webdtechnologies .tech-badges {
        display: flex;
        gap: 10px;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .webdtechnologies .tech-badge {
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .webdtechnologies .badge-expert {
        background: var(--secondary);
        color: var(--dark);
    }

    .webdtechnologies .badge-partner {
        background: var(--primary);
        color: var(--white);
    }

    /*Technology section css end */

    /*case-studies section css start */
    .webdcase_studies .case-studies {
        padding: 60px 20px;
        text-align: center;
        background: var(--light-bg);
    }

    .webdcase_studies .case-slider {
        width: 90%;
        margin: 0 auto;
    }

    .webdcase_studies .case-card {
        border-radius: 16px;
        overflow: hidden;
        transition: var(--transition);
        /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
        text-align: left;
        margin: 15px;
        border: none !important;
    }

    .webdcase_studies .case-card img {
        width: 100%;
        object-fit: cover;
        display: block;
        transition: var(--transition);
    }

    .webdcase_studies .case-card:hover img {
        transform: scale(1.2);
    }

    .webdcase_studies .imgoverlay {
        position: relative;
        overflow: hidden;
        max-height: 300px;
    }

    .webdcase_studies .imgoverlay img {
        width: 100%;
        max-height: 260px;
        height: 100%;
        object-fit: cover;
    }

    .webdcase_studies .imgoverlay::after {
        content: '';
        width: 100%;
        height: 100%;
        background-color: rgba(22, 54, 79, 0.5);
        position: absolute;
        top: 0;
        left: 0;

    }

    .webdcase_studies .case-content {
        padding: 20px;
        background: var(--primary);
    }

    .webdcase_studies .case-content h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        color: var(--white);
    }

    .webdcase_studies .case-content p {
        color: var(--light);
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .webdcase_studies .case-content a {
        display: inline-block;
        padding: 10px 20px;
        background: var(--secondary);
        color: var(--white);
        font-size: 0.9rem;
        border-radius: 8px;
        text-decoration: none;
        transition: var(--transition);
    }

    .webdcase_studies .case-content a:hover {
        background: var(--secondary2);
    }

    .webdcase_studies .slick-prev,
    .webdcase_studies .slick-next {
        background: var(--dark);
    }

    /*case-studies section css end */


    /*service section css start */
    .webdservice .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .webdservice .service-card {
        background: linear-gradient(145deg, var(--primary), var(--primary2));
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .webdservice .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }


    .webdservice .service-icon {
        width: 80px;
        height: 80px;
        background: var(--secondary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        transition: var(--transition);
    }

    .webdservice .service-card:hover .service-icon {
        background: var(--secondary);
        transform: scale(1.1);
    }

    .webdservice .service-icon i {
        font-size: 2.5rem;
        color: var(--secondary);
        transition: var(--transition);
    }

    .webdservice .service-card:hover .service-icon i {
        color: var(--white);
    }

    .webdservice .service-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 1rem;
    }

    .webdservice .service-description {
        color: var(--light);
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .webdservice .service-link {
        color: var(--light);
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        transition: var(--transition);
    }

    .webdservice .service-link:hover {
        color: var(--secondary);
    }

    .webdservice .service-link i {
        margin-left: 0.5rem;
        transition: var(--transition);
    }

    .webdservice .service-link:hover i {
        transform: translateX(5px);
    }

    /*service section css end */

    /* why choose section css start */
    .webdwhy_choose .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .webdwhy_choose .feature-card {
        background: linear-gradient(145deg, var(--primary2), var(--primary));
        border: 1px solid var(--card-border);
        border-radius: 12px;
        padding: 2rem;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .webdwhy_choose .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .webdwhy_choose .card-icon {
        background: var(--secondary-light);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        transition: var(--transition);
    }

    .webdwhy_choose .feature-card:hover .card-icon {
        background: var(--secondary);
        transform: scale(1.1);
    }

    .webdwhy_choose .card-icon i {
        font-size: 2rem;
        color: var(--secondary);
        transition: var(--transition);
    }

    .webdwhy_choose .feature-card:hover .card-icon i {
        color: var(--light-bg);
        transform: rotate(10deg);
    }

    .webdwhy_choose .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--white);
    }

    .webdwhy_choose .feature-card p {
        color: var(--light);
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    /* why choose section css end */

    /* process section css start */

    .webd-process {
        background-color: var(--dark);
    }

    .webd-process .process-container {
        position: relative;
        padding: 2rem 0;
    }

    /* Timeline connector */
    .webd-process .process-container::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        background: linear-gradient(to bottom, var(--primary), var(--secondary));
        border-radius: 10px;
    }

    .webd-process .process-steps {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        position: relative;
    }

    .webd-process .process-step {
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: 1rem;
    }

    .webd-process .step-number {
        background: linear-gradient(145deg, var(--primary), var(--primary2));
        color: var(--white);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        z-index: 2;
        flex-shrink: 0;
        transition: var(--transition);
        border: 1px solid var(--card-border);
    }

    .webd-process .step-content {
        background: linear-gradient(145deg, var(--primary), var(--primary2));
        border: 1px solid var(--card-border);
        border-radius: 12px;
        padding: 2rem;
        margin: 0 2rem;
        width: calc(50% - 60px);
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .webd-process .process-step:nth-child(even) {
        flex-direction: row-reverse;
    }

    .webd-process .step-content:hover {
        transform: translateY(-5px);
        border-color: var(--secondary);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .webd-process .process-step:hover .step-number {
        border-color: var(--secondary);
        transition: var(--transition);
    }

    .webd-process .step-content:hover .step-icon {
        background: var(--secondary);
        color: var(--light);
        transform: scale(1.1) rotate(5deg);
    }

    .webd-process .step-icon {
        background: var(--primary-light);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        transition: var(--transition);
        color: var(--secondary);
        font-size: 1.5rem;
    }

    .webd-process .step-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        color: var(--white);
    }

    .webd-process .step-content p {
        color: var(--light);
        line-height: 1.6;
    }

    /* process section css end */

    /* Tool section css start */
    .webdtool .split-layout {
        display: flex;
        flex-wrap: wrap;
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        min-height: 600px;
    }

    .webdtool .heading-section {
        flex: 1;
        min-width: 320px;
        background: linear-gradient(145deg, var(--primary) 0%, var(--primary2) 100%);
        color: var(--white);
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .webdtool .content-section {
        flex: 2;
        min-width: 320px;
        padding: 50px 40px;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .webdtool .features {
        list-style: none;
        margin-top: 30px;
    }

    .webdtool .features li {
        padding: 12px 0;
        display: flex;
        align-items: center;
        font-size: 1.1rem;
    }

    .webdtool .features li i {
        color: var(--secondary);
        margin-right: 15px;
        font-size: 1.3rem;
        background: rgba(255, 255, 255, 0.1);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .webdtool .tools-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .webdtool .tool-card {
        background: var(--primary);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px var(--primary-light);
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .webdtool .tool-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(22, 54, 79, 0.15);
    }

    .webdtool .card-header {
        padding: 25px 25px 15px;
        background: var(--primary);
    }

    .webdtool .card-header h3 {
        font-size: 1.5rem;
        color: var(--white);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }

    .webdtool .card-header h3 i {
        margin-right: 12px;
        color: var(--secondary);
        font-size: 1.8rem;
        background: var(--secondary-light);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .webdtool .card-body {
        padding: 0 25px 25px;
        flex-grow: 1;
    }

    .webdtool .tool-list {
        list-style: none;
        color: var(--white);
    }

    .webdtool .tool-list li {
        padding: 12px 0;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--primary-light);
    }

    .webdtool .tool-list li:last-child {
        border-bottom: none;
    }

    .webdtool .tool-list li i {
        color: var(--secondary);
        margin-right: 12px;
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
    }

    /* Tool section css end */

    /*  Web development page css end */


    /* uiux page css start */

    /* hero section css start */
    .uiuxhero {
        background: linear-gradient(rgba(22, 54, 79, 0.8), rgba(22, 54, 79, 0.8)),
            url("../img/uiuxbanner.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    /* hero section css end */

    /* Awards Section css start */

    .uiuxawards {
        background-color: var(--white);
    }

    .uiuxawards .awards {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap
    }

    .uiuxawards .award {
        background: var(--primary);
        border: 1px solid var(--card-border);
        padding: 18px;
        border-radius: 12px;
        max-width: 240px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .uiuxawards .award i {
        color: var(--secondary);
    }

    .uiuxawards .award .txt {
        font-size: 16px;
        color: var(--white)
    }

    /* Awards Section css end */

    /* About section css start */
    .uiuxabout {
        background-color: var(--dark);
    }

    .uiuxabout .about {
        display: flex;
        gap: 50px;
        align-items: center;
        flex-wrap: wrap
    }

    .uiuxabout .about .text {
        flex: 1;
        min-width: 260px
    }

    .uiuxabout .about .side {
        flex: 0 0 500px;
        min-width: 460px;
        border-radius: 15px;
        background-color: var(--primary);
        padding: 20px;
        border: 1px solid var(--card-border);
    }

    .uiuxabout .about .card {
        background: var(--primary);
        padding: 22px;
        border-radius: 15px;
        border: 1px solid var(--card-border);
    }

    /* About section css end */

    /* Services Section css start*/
    .uiuxservices {
        background-color: var(--white);
    }

    .uiuxservices .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
        gap: 30px;
    }

    .uiuxservices .service-card {
        padding: 40px 30px;
        text-align: center;
        background-color: var(--primary2);
    }

    .uiuxservices .service-card p,
    .uiuxservices .service-card h4 {
        color: var(--white);
    }

    .uiuxservices .service-icon {
        width: 80px;
        height: 80px;
        background: var(--secondary-light);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }

    .uiuxservices .service-icon i {
        font-size: 32px;
        color: var(--secondary);
    }

    /* Services Section css end*/


    /* Why choose css start*/

    .uiuxwhy-choose {
        background-color: var(--white);
    }

    .uiuxwhy-choose .choose-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 18px;
        margin-top: 22px;
        text-align: center;
    }

    .uiuxwhy-choose .choose-card {
        background: var(--primary2);
        border: 1px solid var(--card-border);
        padding: 22px;
        border-radius: 12px;
        transition: var(--transition)
    }

    .uiuxwhy-choose .choose-card:hover {
        transform: translateY(-6px);
    }

    .uiuxwhy-choose .choose-card .ico {
        font-size: 22px;
        color: var(--secondary);
        margin-bottom: 10px
    }

    .uiuxwhy-choose .choose-card h5 {
        color: var(--white);
    }

    .uiuxwhy-choose .choose-card p {
        margin: 0;
        color: var(--white)
    }

    /* Why choose css end*/

    /* Testimonials section css start */

    .uiuxtesti {
        background-color: var(--white);
    }

    .uiuxtesti .testi-slider {
        max-width: 600px;
        margin: auto;
    }

    .uiuxtesti .card {
        background: var(--primary);
        border-radius: 12px;
        padding: 22px;
        border: 1px solid var(--card-border);
        margin-bottom: 30px;
    }

    .uiuxtesti .author {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 16px
    }

    .uiuxtesti .author img {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--secondary)
    }

    .uiuxtesti .slick-dots li.slick-active button:before {
        opacity: 1;
        color: var(--secondary);
    }

    /* Testimonials section css start */

    /* ui ux page css end */

    /* game page css start */

    /* hero section css start */
    .gamephero {
        background: linear-gradient(rgba(22, 54, 79, 0.85), rgba(22, 54, 79, 0.85)),
            url("../img/gamebanner.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .gamephero .platform-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
        margin-top: 20px;
    }

    .gamephero .badge {
        background-color: var(--secondary-light);
        color: var(--secondary);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 500;
        transition: var(--transition);
    }

    /* hero section css end */

    /* Services Section css start */
    .gamepservices {
        background-color: var(--white);
    }

    .gamepservices .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .gamepservices .service-card {
        background: var(--primary2);
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        border: 1px solid var(--light-bg);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-align: center;
    }

    .gamepservices .service-card:hover {
        transform: translateY(-10px);
    }

    .gamepservices .service-card:hover .service-icon {
        background-color: var(--secondary);
        color: var(--white);
    }

    .gamepservices .service-icon {
        width: 70px;
        height: 70px;
        background: var(--secondary-light);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: var(--secondary);
        font-size: 1.8rem;
        transition: var(--transition);
    }

    /* Services Section css end */


    /* genres-section css start */

    .genres-section {
        background-color: var(--dark);
    }

    .genre-card {
        background: var(--primary2);
        /* border: 1px solid var(--secondary); */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        text-align: center;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .genre-image {
        height: 200px;
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .genre-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    }

    .genre-icon {
        width: 70px;
        height: 70px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        font-size: 1.8rem;
        transition: var(--transition);
        position: relative;
        z-index: 2;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .genre-card:hover .genre-icon {
        transform: scale(1.1);
        background: var(--secondary);
        color: var(--white);
    }

    .genre-content {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .genre-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--white);
    }

    .genre-card p {
        font-size: 0.95rem;
        color: var(--white);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .genre-features {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .genre-features li {
        background: var(--secondary-light);
        color: var(--accent);
        padding: 0.3rem 0.8rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    .slick-prev,
    .slick-next {
        width: 50px;
        height: 50px;
        z-index: 10;
        background: var(--white);
        opacity: 0.3;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .slick-prev:hover,
    .slick-next:hover {
        background: var(--secondary);
        opacity: 0.6;
    }

    .slick-prev:hover:before,
    .slick-next:hover:before {
        color: var(--white);
    }

    .slick-prev {
        left: -25px;
    }

    .slick-next {
        right: -25px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        color: var(--secondary);
        font-size: 1.2rem;
    }

    .slick-prev:before {
        content: '\f104';
    }

    .slick-next:before {
        content: '\f105';
    }

    /* Slick Dots */

    .slick-dots li button:before {
        font-size: 12px;
        color: var(--light-gray);
        opacity: 0.5;
    }

    .slick-dots li.slick-active button:before {
        color: var(--secondary);
        opacity: 1;
    }

    /* process section css start */
    .gamepprocess-section {
        background: #f9f9f9;
        text-align: center;
    }

    .gamepprocess-section .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .gamepprocess-section .step-card {
        background: #fff;
        border-radius: 15px;
        padding: 25px 20px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        position: relative;
    }

    .gamepprocess-section .step-card:hover {
        transform: translateY(-6px);
    }

    .gamepprocess-section .step-number {
        width: 45px;
        height: 45px;
        line-height: 45px;
        background: #fff;
        border: 2px solid #ff6600;
        color: #ff6600;
        border-radius: 50%;
        font-weight: bold;
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .gamepprocess-section .step-card img {
        width: 50px;
        margin: 20px auto;
        display: block;
    }

    .gamepprocess-section .step-card p {
        margin-top: 10px;
        font-size: 1rem;
        font-weight: 500;
    }

    /* process section css end */

    /* html game development css start */
    .game-genres-section {
        background-color: #fff6ef;
    }

    .game-genres-section .genres-slider .slick-track {
        display: flex !important;
    }

    .game-genres-section .genres-slider .slick-slide {
        height: inherit !important;
    }

    .game-genres-section .genres-slider .genre-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .game-genres-section .genres-slider {
        position: relative;
    }

    .game-genres-section .genre-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        margin: 0 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }

    .game-genres-section .card-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 30px;
        color: white;
        margin-inline: auto;
    }

    .game-genres-section .racing .card-icon {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
    }

    .game-genres-section .arcade .card-icon {
        background: linear-gradient(135deg, #3498db, #2980b9);
    }

    .game-genres-section .sports .card-icon {
        background: linear-gradient(135deg, #2ecc71, #27ae60);
    }

    .action .card-icon {
        background: linear-gradient(135deg, #9b59b6, #8e44ad);
    }

    .game-genres-section .genre-card h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--dark);
    }

    .game-genres-section .genre-card p {
        font-size: 16px;
        line-height: 1.6;
        color: var(--dark);
    }

    /* Slick slider customization */
    .game-genres-section .slick-prev,
    .game-genres-section .slick-next {
        width: 40px;
        height: 40px;
        z-index: 10;
        background: var(--primary);
        opacity: 1;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .game-genres-section .slick-prev:hover,
    .game-genres-section .slick-next:hover {
        background: var(--secondary);
    }

    .game-genres-section .slick-prev:hover:before,
    .game-genres-section .slick-next:hover:before {
        color: white;
    }

    .game-genres-section .slick-prev {
        left: -20px;
    }

    .game-genres-section .slick-next {
        right: -20px;
    }

    .game-genres-section .slick-prev:before,
    .game-genres-section .slick-next:before {
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        color: var(--white);
        font-size: 18px;
    }

    .game-genres-section .slick-prev:before {
        content: '\f104';
    }

    .game-genres-section .slick-next:before {
        content: '\f105';
    }

    /* html game development css end */

    /* contact secttion css start */
    .game_contect .banner {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .game_contect .banner-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    .game_contect .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
        z-index: 2;
        opacity: 0.85;
    }

    .game_contect .banner-content {
        position: relative;
        z-index: 3;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 60px;
        color: var(--white);
    }

    /* banner secttion css end */

    /* Key Features section css start */
    .features-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: auto;
    }

    .features-section .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-section .feature-card {
        border-radius: 12px;
        padding: 1.8rem;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
    }

    .features-section .feature-card .icon {
        font-size: 2rem;
    }

    .features-section .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--light-gray);
    }

    .features-section .light-card {
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .features-section .dark-card {
        background: var(--primary2);
        color: var(--white);
    }

    .features-section .dark-card p {
        color: var(--light);
    }

    .features-section .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Key Features section css end */

    /* game page css end */


    /* custom software development page css*/

    /* hero section css  start */
    .csd-section {
        background: linear-gradient(rgba(22, 54, 79, 0.85), rgba(22, 54, 79, 0.9)),
            url("https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=700&q=80");
        background-size: cover;
        background-repeat: no-repeat;
    }

    /* hero section css  end */

    /* custom software development page css end */


    /* service section css start */
    .ai-container {
        display: flex;
        gap: 40px;
        max-width: 1300px;
        padding-inline: 15px;
        margin: auto;
    }

    .ai-sidebar {
        flex: 1;
        min-width: 250px;
        position: sticky;
        top: 100px;
        height: max-content;
        background-color: var(--primary2);
        border-radius: 10px;
        padding: 10px;
    }

    .ai-sidebar h2 {
        font-size: 22px;
        font-weight: 700;
    }

    .ai-sidebar h2 .blue {
        color: #fff;
    }

    .ai-sidebar p {
        margin: 8px 0 20px;
        color: #fff;
    }

    .ai-sidebar ul {
        list-style: none;
        padding: 0;
    }

    .ai-sidebar li {
        margin-bottom: 15px;
        padding: 10px;
        padding-left: 10px;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .ai-sidebar li strong {
        display: block;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
    }

    .ai-sidebar li span {
        font-size: 14px;
        color: #fff;
    }

    .ai-sidebar li:hover,
    .ai-sidebar li.active {
        border-left: 3px solid var(--secondary);
        background: var(--primary);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .ai-content {
        flex: 3;
    }

    .ai-header {
        position: relative;
        margin-bottom: 30px;
    }

    .ai-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: #031e35;
    }

    .ai-header p {
        margin: 10px 0 20px;
        color: #4b4b4b;
    }

    .ai-btn {
        position: absolute;
        right: 0;
        top: 10px;
        background: #d0f5d0;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        padding: 12px 18px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .ai-btn:hover {
        background: #aef5ae;
        transform: scale(1.1);
    }

    .ai-block {
        background-color: #fff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
    }

    .ai-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 30px;
    }

    .highlight {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .highlight h3 {
        font-size: 16px;
        font-weight: 600;
        color: #16364f;
    }

    .highlight .icon {
        font-size: 20px;
        background: #c3f5c3;
        padding: 8px;
        border-radius: 6px;
        color: #16364f;
    }

    .ai-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .service {
        background: #fff;
        border: 1px solid #e5e7eb;
        padding: 20px 20px;
        text-align: center;
        border-radius: 8px;
        transition: 0.3s;
    }

    .service span {
        font-size: 30px;
        display: block;
        margin-bottom: 10px;
        color: var(--primary);
    }

    .service p {
        font-size: 15px;
        font-weight: 500;
    }

    .service:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    /* service section css end */


    /* why choose section css start */
    .whyh .custom-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        min-height: 350px;
        display: flex;
        align-items: center;
        padding: 50px 25px 20px 25px;
        transition: all 0.4s ease-in-out;
        background: var(--primary);
    }

    .whyh .custom-card img {
        filter: brightness(0) saturate(100%) invert(67%) sepia(22%) saturate(7265%) hue-rotate(2deg) brightness(98%) contrast(102%);
    }

    .whyh .custom-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.90);
        opacity: 0;
        transition: all 0.4s ease-in-out;
    }

    .whyh .custom-card .content {
        position: relative;
        z-index: 2;
        color: #000;
        transition: color 0.4s ease;
    }

    .whyh .custom-card .arrow {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
        z-index: 2;
        color: var(--white);
        background: transparent;
    }

    .whyh .custom-card:hover .arrow {
        border-color: var(--secondary);
        color: var(--secondary);
    }

    .whyh .bg-hover {
        background: var(--primary2);
        background-size: cover;
        background-position: center;
    }

    .whyh .bg-hover:hover::before {
        opacity: 1;
    }

    .whyh .bg-hover:hover .content {
        color: #fff;
    }

    .whyh .green-hover:hover {
        transform: translateY(-8px);
    }

    .whyh {
        max-width: 1050px;
        margin: auto;
    }

    /* why choose section css start */


    /* success section css start*/
    .homesucces {
        background-color: #fff;
    }

    .homesucces .award-card img {
        max-width: 100px;
        width: 100%;
    }

    .homesucces .awards-slider {
        max-width: 800px;
        margin: auto;
    }

    /* success section css  end*/
    .addtab .nav-tabs .nav-link {
        display: flex;
        align-items: center;
        gap: 8px;
        border: none;
        background: transparent;
        color: #fff;
        padding: 6px 14px;
        border-radius: 20px;
    }

    .addtab .nav-tabs .nav-link.active {
        background: #444;
        border-radius: 20px;
        padding: 6px 14px;
    }

    .addtab .tab-content {
        margin-top: 20px;
        color: #fff;
    }

    .addtab .flag-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        object-fit: cover;
    }

    .addtab #countryTab {
        border: none;
    }

    /* ai page css start */

    /* hero section css start */
    .aiph {
        background: linear-gradient(rgba(22, 54, 79, 0.7), rgba(22, 54, 79, 0.7)),
            url("../img/AI_impact.jpg");
        background-size: cover;
        background-repeat: no-repeat;
    }

    /* hero section css end */

    /* aword section css start */
    .aiaword .wrapper {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .aiaword .card {
        position: relative;
        max-width: 300px;
        width: 100%;
        min-width: 270px;
        height: 370px;
        padding: 2rem 1rem;
        background-color: #fff;
        box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.2);
        transition: 0.5s ease-in-out;
        border: none;
    }

    .aiaword .card::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(22, 54, 79, 0.5), rgba(3, 30, 53, 1));
        z-index: 2;
        transition: 0.5s all;
        opacity: 0;
    }

    .aiaword .card:hover::before {
        opacity: 1;
    }

    .aiaword .card img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .aiaword .card .overlay {
        position: relative;
        z-index: 3;
        color: #fff;
        opacity: 0;
        transform: translateY(30px);
        transition: 0.5s all;
        padding: 30px 0px;
    }

    .aiaword .card:hover .overlay {
        opacity: 1;
        transform: translateY(30px);
    }

    .aiaword .card .overlay {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .aiaword .card .overlay h2 {
        font-size: 50px;
    }


    .aiaword .text-p {
        letter-spacing: 1px;
        margin-top: 8px;
        margin-bottom: 10px;
    }

    .aiaword .icon_card i {
        font-size: 50px;
    }

    /* aword section css end */

    /* industry section css start */

    .aiindustries-section {
        background-color: var(--primary2);
    }

    .aiindustries-section .industry-card {
        overflow: hidden;
        text-align: center;
    }

    .aiindustries-section .industry-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 1s ease-in-out;
    }

    .aiindustries-section .industry-card h5 {
        padding: 10px;
        margin-top: 15px;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transform: scale(1);
    }

    .aiindustries-section .industry-card:hover h5 {
        background-color: var(--secondary);
        color: #fff;
    }

    .aiindustries-section .industry-card:hover img {
        transform: scale(1.2);

    }

    /* industry section css end */

    /* ai tool section css start */
    .ai-tools-section {
        padding: 80px 0;
    }

    .ai-tools-section h3 {
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 10px;

    }

    .ai-tools-section .tool-card {
        background: var(--card-bg);
        border-radius: 0px;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: var(--transition);
        font-size: 0.95rem;
        font-weight: 500;
        color: #fff;
        height: 100%;
    }

    .ai-tools-section .tool-card i {
        font-size: 20px;
        color: var(--secondary);
    }

    .ai-tools-section .category-row {
        margin-bottom: 40px;
    }

    /* ai tool section css end */

    /* ai development section css start */

    .aimodels-section{
        background-color: var(--primary2);
    }

    .aidevelopment-section .ai-list p {
        font-weight: 600;
        font-size: 17px;
        color: var(--text-dark);
        margin-bottom: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .aidevelopment-section .ai-list p:hover {
        color: var(--secondary);
        transform: translateX(5px);
    }

    .aidevelopment-section .ai-img {
        width: 100%;
        max-height: 550px;
        object-fit: cover;
    }

    /* ai development section css end */

    /* ai Models section css start */
    .aimodels-section .tools-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .aimodels-section .tool-tile {
        width: 120px;
        text-align: center;
        user-select: none;
    }

    .aimodels-section .tile-box {
        height: var(--tile-size);
        width: var(--tile-size);
        border-radius: 18px;
        background: var(--tile-bg);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6) inset;
        transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
        margin: 0 auto 10px;
    }

    .aimodels-section .tile-box i {
        font-size: 28px;
        color: #ffffff;
        opacity: 0.95;
    }

    .aimodels-section .tool-tile .label {
        font-size: 12.5px;
        font-weight: 600;
        color: #dce7f3;
        letter-spacing: 0.1px;
        line-height: 1.1;
    }

    .aimodels-section .tool-tile .sub {
        font-size: 11px;
        color: #9fb3c9;
        margin-top: 4px;
    }

    .aimodels-section .grid-col {
        flex: 0 0 10.5%;
        max-width: 10.5%;
    }

    /* ai Models section css end */

    /* ai page css end */