@font-face {
    font-family: BebasNeue-Regular;
    src: url(../font/BebasNeue-Regular.ttf);
}

@font-face {
    font-family: Syne-VariableFont;
    src: url(../font/Syne-VariableFont_wght.ttf);
}

:root {
    --primary-color: #17356c;
    --primary-glow: rgba(33, 150, 243, 0.8);
    --secondary-color: #9c27b0;
    --text-color: #ffffff;
    --bg-color: #0a0a12;
    --nav-bg: rgba(16, 16, 26, 0.7);
    --dropdown-bg: rgba(20, 20, 35, 0.8);
    --hover-color: #3f51b5;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --neon-glow: 0 0 10px rgba(33, 150, 243, 0.5),
        0 0 20px rgba(33, 150, 243, 0.3),
        0 0 30px rgba(33, 150, 243, 0.1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-bg: #eef4f4;
    --glass-effect: saturate(180%) blur(10px);
    --border-radius: 12px;
    --text-description: rgba(255, 255, 255, 0.7);
    --colors--soft-white: #eef4f4;
    --title-font: BebasNeue-Regular;
    --cnt-font: Syne-VariableFont;
}



h1,
.title {
    font-family: BebasNeue-Regular;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}
a:hover{
    cursor: pointer;
}
body {
    font-family:  inherit;
    background: var(--gradient-bg) !important;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header and Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;


    .navbar {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 2rem 2rem;
        /* background: var(--nav-bg); */
        backdrop-filter: var(--glass-effect);
        -webkit-backdrop-filter: var(--glass-effect);
        /* border-bottom: 1px solid var(--border-color); */
        /* box-shadow: 0 4px 30px var(--shadow-color); */
        transition: var(--transition-medium);
        border-bottom: none !important;
        @media (max-width:768px) {
            justify-content: space-between;
        }
    }

    /* Logo */
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        /* text-shadow: var(--neon-glow); */
        position: relative;
        display: inline-block;
        transition: var(--transition-medium);
    }

    .logo:hover {
        transform: translateY(-2px);

    }

    .logo::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        bottom: -4px;
        left: 0;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform var(--transition-medium);
        box-shadow: var(--neon-glow);
    }

    .logo:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    /* Navigation Menu */
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-list {
        display: flex;
        gap: 1.5rem;
        list-style: none;
        margin-bottom: 0;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: var(--border-radius);
        transition: all var(--transition-medium);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color);
        /* text-shadow: var(--neon-glow); */
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-2px);
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        height: 5px;
        background-color: transparent;
        border-radius: 50%;
        box-shadow: var(--neon-glow);
    }

    /* Icons */
    .icon {
        transition: var(--transition-medium);
        vertical-align: middle;
    }

    .chevron-icon {
        transition: transform var(--transition-medium);
    }

    .has-dropdown:hover .chevron-icon {
        transform: rotate(180deg);
    }

    .hidden {
        display: none;
    }

    /* Dropdown Menus */
    .has-dropdown {
        position: relative;
    }

    .dropdown {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        min-width: 350px;
        background: var(--primary-color);
        backdrop-filter: var(--glass-effect);
        -webkit-backdrop-filter: var(--glass-effect);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        padding: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.98);
        transition: all var(--transition-medium);
        box-shadow: 0 10px 30px var(--shadow-color);
        z-index: 100;
    }

    .has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .dropdown::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 20px;
        width: 12px;
        height: 12px;
        background: var(--primary-color);
        border-left: 1px solid var(--border-color);
        border-top: 1px solid var(--border-color);
        transform: rotate(45deg);
        backdrop-filter: var(--glass-effect);
        -webkit-backdrop-filter: var(--glass-effect);
    }

    .dropdown li {
        list-style: none;
    }

    .dropdown a {
        color: var(--text-color);
        text-decoration: none;
        padding: 0.7rem 1rem;
        display: block;
        border-radius: var(--border-radius);
        transition: all var(--transition-medium);
        margin-bottom: 2px;
        transform: 0.2s;
        i{
            color: #22c784;
            opacity: 0;
            transition: 0.2s;
        }
    }

    .dropdown a:hover {
        transform: translateX(8px);
        i{
            opacity: 1;
        }
    }

    /* navbar button */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        .contact-btn{
            padding: 10px 15px;
    border-radius: 25px;
    color: white;
    background: #22c784;
    border: 0;
    font-weight: bold;
        }
    }

    .search-container {
        position: relative;
        display: flex;
        align-items: center;
    }

    .search-input {
        padding: 0.6rem 1rem;
        border: none;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--text-color);
        width: 180px;
        transition: all var(--transition-medium);
        font-size: 0.9rem;
    }

    .search-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.15);
        width: 240px;
        box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.3);
    }

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .search-btn {
        background: none;
        border: none;
        color: var(--text-color);
        cursor: pointer;
        padding: 0.5rem;
        position: absolute;
        right: 5px;
        transition: var(--transition-fast);
    }

    .search-btn:hover {
        color: var(--primary-color);
        transform: scale(1.1);
    }

    /* Theme Toggle */
    .theme-toggle {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--border-color);
        color: var(--text-color);
        cursor: pointer;
        padding: 0.6rem;
        font-size: 1.2rem;
        transition: all var(--transition-medium);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .theme-toggle:hover {
        color: var(--primary-color);
        text-shadow: var(--neon-glow);
        background: rgba(255, 255, 255, 0.15);
        transform: rotate(15deg);
    }

    /* Hamburger Menu */
    .nav-toggle {
        display: none;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        padding: 0.6rem;
        transition: var(--transition-medium);
    }

    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .hamburger {
        width: 24px;
        height: 20px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-color);
        position: absolute;
        transition: all var(--transition-medium);
        border-radius: 10px;
    }

    .hamburger span:first-child {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 9px;
        width: 70%;
    }

    .hamburger span:last-child {
        top: 18px;
    }

    /* Mobile Menu Active State */
    .nav-active .hamburger span:first-child {
        transform: rotate(45deg);
        top: 9px;
    }

    .nav-active .hamburger span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .nav-active .hamburger span:last-child {
        transform: rotate(-45deg);
        top: 9px;
    }

    /* Content Styling */
    .content {
        margin-top: 70px;
        padding: 2rem;
    }

    .hero {
        height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin-bottom: 2rem;
        color: var(--text-description);
    }

    .cta-button {
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 30px;
        cursor: pointer;
        transition: var(--transition-medium);
        box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
    }

    .section {
        padding: 5rem 2rem;
    }

    .section h2 {
        text-align: center;
        margin-bottom: 3rem;
        font-size: 2.5rem;
        color: var(--primary-color);
    }

    .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .feature {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        padding: 2rem;
        transition: var(--transition-medium);
    }

    .feature:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-color: rgba(33, 150, 243, 0.3);
    }

    .feature h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .feature p {
        color: var(--text-description);
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .nav-toggle {
            display: flex;
        }

        .nav-menu {
            position: fixed;
            top: 70px;
            right: -100%;
            flex-direction: column;
            align-items: flex-start;
            background: var(--nav-bg);
            backdrop-filter: var(--glass-effect);
            -webkit-backdrop-filter: var(--glass-effect);
            width: 80%;
            height: calc(100vh - 70px);
            padding: 2rem;
            transition: right var(--transition-slow);
            box-shadow: -10px 0 30px var(--shadow-color);
            border-left: 1px solid var(--border-color);
        }

        .nav-active .nav-menu {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            margin-bottom: 2rem;
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            width: 100%;
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

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

        .nav-link.active {
            background: rgba(33, 150, 243, 0.15);
        }

        .dropdown {
            position: static;
            width: 100%;
            background: rgba(0, 0, 0, 0.2);
            border: none;
            padding: 0;
            padding-left: 1rem;
            margin-left: 1rem;
            display: none;
            box-shadow: none;
            border-left: 1px solid var(--border-color);
            transform: none;
            transition: all var(--transition-medium);
        }

        .dropdown::before {
            display: none;
        }

        .has-dropdown.active .dropdown {
            display: block;
            opacity: 1;
            visibility: visible;
        }

        .dropdown a {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-actions {
            width: 100%;
            flex-direction: column;
            gap: 1rem;
        }

        .search-container {
            width: 100%;
        }

        .search-input,
        .search-input:focus {
            width: 100%;
        }

        .search-input {
            padding: 0.8rem 1rem;
        }

        .theme-toggle {
            align-self: flex-start;
        }

        .chevron-icon {
            position: absolute;
            right: 1rem;
        }

        .has-dropdown.active .chevron-icon {
            transform: rotate(180deg);
        }
    }

    @media (max-width: 576px) {
        .navbar {
            padding: 1rem;
        }

        .nav-menu {
            width: 100%;
        }

        .hero h1 {
            font-size: 2.2rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .content {
            padding: 1rem;
        }

        .section {
            padding: 3rem 1rem;
        }
    }
}

/* ==================================================================
      banner 
==================================================================  */
.bnr-scn {
    min-height: 100vh;
    padding-top: 100px;
@media (max-width: 768px) {
    padding-top: 70px;
    overflow: hidden;
}
    .title {
        color: var(--primary-color);
        text-align: center;
        font-size: 80px;
        @media (max-width: 768px) {
            font-size: 50px;
        }
    }

    .card-row {
        position: relative;
        display: flex;
        justify-content: center;
        .img-card{
            height: 200px;
        width: 200px;
        border-radius: 32px;
        overflow: hidden;
        position: absolute;
        @media (max-width:768px) {
            height: 170px;
            width: 170px;
        }
        }
        img {
            /* position: absolute; */
            margin: auto;
            height: 100%;
            width:100%;
            object-fit: cover;
        }

        .img-card{
            /* transform: rotate(350deg); */
        }
        .img-card.a {
            transform: translate3d(175%, 25%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(24deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
            z-index: 5;
        }

        .img-card.b {
            transform: translate3d(125%, 22%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(18deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
            z-index: 6;
        }

        .img-card.c {
                transform: translate3d(75%, 14%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(12deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
            z-index: 7;
        }

        .img-card.d {
                transform: translate3d(25%, 6%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(6deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
            z-index: 8;
        }

        .img-card.e {
                transform: translate3d(-25%, 6%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-6deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
            z-index: 9;
        }

        .img-card.f {
            transform: translate3d(-75%, 14%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-12deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
            z-index: 10;
        }

        .img-card.g {
            transform: translate3d(-125%, 22%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-18deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
            z-index: 11;
        }

        .img-card.h {
            transform: translate3d(-175%, 25%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-24deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
            z-index: 12;
        }


        
    }
}

/* ==================================================================
      banner END
==================================================================  */

/* ==================================================================
      about 
==================================================================  */
.abt-scn {
    min-height: 100vh;
    display: flex;
    align-items: center;

    .cnt-col {
        .title {
            font-size: 50px;
        }

        .cnt {
            font-size: 15px;
        }

        button {
            border: 1px solid black;
            border-radius: 50px;
            padding: 10px 25px;
        }
    }

    .img-col {
        .img-div {
            position: relative;

            img {
                height: 210px;
                width: 210px;
                object-fit: cover;
                border-radius: 20%;
                position: absolute;
                top: 0;
                left: 0;
            }

            .img-2 {
                transform: translate(115px, 60px);
                z-index: 1;
            }

            .img-3 {
                transform: translate(215px, 120px);
                z-index: 2;
            }

            .img-4 {
                transform: translate(315px, 180px);
                z-index: 3;
            }
        }
    }
}

/* ==================================================================
      about END
==================================================================  */


/* ==================================================================
      webistes 
==================================================================  */
.web_cli_scn {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #134575, #0085be);
    border-radius: 50px;
    .col-md-4{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
a{
    width: fit-content;
    color: white;
    text-decoration: none;
    background: #22c784;
    padding: 5px 10px;
    border-radius: 15px;
}
}

/* ==================================================================
      webistes END
==================================================================  */


/* ==================================================================
      Why choss us 
==================================================================  */
.y_chs_scn {
    min-height: 100vh;

    .title {
        font-size: 50px
    }

    .img-col {
        .y_img {
            height: calc(100% - 30px);
            width: calc(100% - 50px);
            border-radius: 20px;
            object-fit: cover;
        }
    }

    .cnt-col {
        margin-top: 50px;
        position: relative;

        .card {
            background: transparent;
            border: 0;
            /* padding-top: 40px;     */
            padding-bottom: 20px;
            padding-top: 20px;
            border-bottom: 2px dotted #0087be;
            position: relative;

            .card-title {
                color: var(--primary-color);
                font-size: 20px;
                font-family: BebasNeue-Regular;
            }

            .card-cnt {
                font-size: 14px;
            }

            .num-label {
                position: absolute;
                left: 0;
                top: 0;
                margin: auto;
                transform: translateX(-120px);
                color: white;
                font-family: BebasNeue-Regular;
                font-size: 50px;
                text-align: center;
                display: flex;
                align-items: center;
                width: 100px;

                bottom: 0;
            }
        }
    }

    .cnt-col::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 160px;
        background-color: #0c88b9ec;
        transform: translateX(calc(-100% + -10px));
        border-radius: 20px 0 0 20px;
    }

    .third_row {
        .col-md-6 {
            margin-bottom: 20px;
        }

        .card {
            border-radius: 10px;
            border: 0;
            height: 100%;

            /* margin-bottom: 20px; */
            .card-body {
                display: flex;
                gap: 10px;
                padding: 10px;

            }

            .img-div {
                width: 150px;
                padding: 15px;
                background: #d8e1f5;
                border-radius: 10px;
                /* min-height: 100p; */
                min-width: 100px;

                img {
                    object-fit: contain;
                }
            }

            .cnt-prt {
                .card-title {
                    font-family: var(--title-font);
                }
            }
        }
    }
}

/* ==================================================================
      Why choss us END
==================================================================  */


/* ==================================================================
      Rank slider 
==================================================================  */
.rnk_list_scn {
    .rank-slider {
        .card {
            /* height: 150px; */
            /* margin: 10px; */
            padding-bottom: 50px;

            img {
                width: 100%;
                height: 50px;
                object-fit: contain;
                padding: 5px;
            }

            table {
                width: 100%;
                position: relative;

                th {
                    font-family: var(--title-font);
                }

                th,
                td {
                    padding: 5px;
                }
            }

            table tr:nth-child(even) {
                background-color: #dddddd;
            }

            table::before {
                content: '';
                background: linear-gradient(359deg, #ffffff, transparent);
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
            }

            .card_btn {
                position: absolute;
                width: fit-content;
                margin: auto;
                left: 0;
                right: 0;
                /* width: 80%; */
                padding: 5px;
                border: 0;
                background-color: var(--primary-color);
                color: white;
                border-radius: 10px 10px 0 0;
                bottom: 0;
            }
        }
    }
}

/* ==================================================================
      Rank slider END
==================================================================  */


/* ==================================================================
      Services 
==================================================================  */
.srv_scn {
    h2.title {
        font-size: 50px
    }
    .col-md-6{
        padding: 0;
    }
    .img-col {
        display: flex;
        justify-content: flex-end;
        /* padding: 0 10px; */
        /* height: 204px; */
    }

    .img-col-inner {
        border: 2px solid var(--primary-color);
        width: 80%;
        padding: 5px;
        border-radius: 50% 0 0 50%;
        border-right: 0;
        /* height: 204px; */

        .img-div {
            position: relative;
            height: 100%;
            border-radius: 50% 0 0 50%;
            overflow: hidden;
            min-height: 204px;

            img {
                position: absolute;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }

    }

    .cnt-col {
        padding: 15px 10px;
        height: 200px;
        .cnt{
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            -webkit-line-clamp: 2;
        }
        .btn {
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            background-color: rgba(255, 255, 255, 0);
            padding: 5px 10px;
            border-radius: 15px;
        }
    }

   
        .img-col.even {
            justify-content: flex-start;
            transform: translateY(-2px);
            .img-col-inner {
            border-radius: 0 50% 50% 0;
            border-left: 0;
            border-right: 2px solid rgb(0, 0, 0);
            .img-div {
                border-radius: 0 50% 50% 0;
            }

        }
        }
       .cnt-col.even {
            text-align: right;
            .btn {
                border: 1px solid var(--primary-color);
                color: var(--primary-color);
                background-color: rgba(255, 255, 255, 0);
                padding: 5px 10px;
                border-radius: 15px;
            }
        }
    
    .row.t{
        .img-col {
            /* justify-content: flex-start; */
            transform: translateY(-2px);
        }
    }
}

/* ==================================================================
      Services END
==================================================================  */



/* ==================================================================
      FAQ  
==================================================================  */
.faq-scn{
    background-color: var(--primary-color);
    min-height: 100vh;
    .container{
        /* height: 90vh; */
    }
    .h2{
        color: white;
    }
    .img-col{
        img{
            border-radius: 15px;
            /* height: 100%; */
            object-fit: cover;
            height: fit-content;
        }
    }
}
.faq-scn{
  padding-bottom: 10vh;
  width: 100%;
  margin: 10vh 0;
  .title{
    /* padding-bottom: 0; */
    /* margin-bottom: 0; */
    font-weight: bold;
    font-size: 3rem;
  }
  .faq-heading {
    /* font-family: Lato;    */
    font-weight: 400;
    font-size: 19px;
     -webkit-transition: text-indent 0.2s;
    /* text-indent: 20px; */
    color: #e6e3e3;
    padding: 10px;
  }
  
  .faq-text {
    /* font-family: Open Sans;    */
    font-weight: 400;
    color: #cbc9c9;
    width:95%;
    padding-left:20px;
    margin-bottom:30px;
  }
  
  .faq-col {
    /* width: 100%; */
    margin: 0 auto;
    /* background: white;*/
    border-radius: 4px;
    position: relative;
    /* border: 1px solid #E1E1E1; */
    /* display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px; */
        background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 0px 6px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  .faq-col label {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 56px;
    padding-top:1px;
    margin-bottom: 10px;
    /* background-color: #9a94d861; */
    /* border-bottom: 1px solid #E1E1E1; */
  }
  
  .faq-col input[type="checkbox"] {
    display: none;
  }
  
  .faq-col .faq-arrow {
    width: 10px;
    height: 10px;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 2px solid rgba(0, 0, 0, 0.33);
    border-right: 2px solid rgba(0, 0, 0, 0.33);
    float: right;
    position: relative;
    top: -38px;
    right: 27px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  
   .faq-col input[type="checkbox"]:checked + label > .faq-arrow {
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
            
  }
   .faq-col input[type="checkbox"]:checked + label {
    display: block;
    /* background: rgba(255,255,255,255) !important; */
    color: #4f7351;
    height: 350px;
    transition: height 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
   .faq-col input[type='checkbox']:not(:checked) + label {
    display: block;
    transition: height 0.8s;
    height: 60px;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  ::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width:765px) {
  .faq-scn{
    .faq-col input[type='checkbox']:not(:checked) + label {
      height: 70px;
      /* -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); */
    }
    .faq-col input[type="checkbox"]:checked + label {
      height: 450px;
    }
  }
}
/* ==================================================================
      FAQ  END
==================================================================  */


/* ==================================================================
      keyword ranking  END
==================================================================  */
.kywrd-rnk-scn {
    h2.title {
        font-size: 50px
    }
    .col-md-6{
        margin-bottom: 20px;
    }
  .card {
    padding: 10px;
    background: linear-gradient(45deg, #134575, #0085be);
    border-radius: 15px;
    color: white;
    border: 0;
    .img-div {
      display: block;
      width: 100%;
      height: 350px;
      overflow: hidden;
      position: relative;
     
      border-radius: 10px;
      margin: 0 auto;
      .title{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        background: #22c784;
        width: fit-content;
        color: white;
        padding: 5px 10px ;
        border-radius: 10px 10px 0 0;
        transition: 0.5s;
        cursor: pointer;
      }
    }

    .img-div img {
      display: block;
      width: 100%;
      height: auto;
      transform: translateY(0);   /* start from top */
      transition: transform 2s linear;
    }

    .img-div:hover{
        .title{
            letter-spacing: 1px;
        }
    }
    .img-div:hover img {
      transform: translateY(calc(-100% + 350px)); 
      transition: transform 11s linear; /* smooth */
      /* moves image up until its bottom touches container bottom */
    }
    a{
        color: #22c784;
        cursor: pointer;
    }
  }
}

/* ==================================================================
      keyword ranking  END
==================================================================  */



/* ==================================================================
      clints logos  
==================================================================  */
@keyframes slide {
  from {
      transform: translateX(0);
  }

  to {
      transform: translateX(-100%);
  }
}
/* Setting the Animation using Keyframes */
@keyframes scroll-left {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-100%);
  }
}

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


.clnt-scn{/* large devices */
    h2.title {
        font-size: 50px
    }

.scrolling-text-container {/* scrolling heading */
    background-color: #eff5ff;
    background: linear-gradient(45deg, var(--Algae-Green),var(--Lapis-Blue));
    border-radius: 4px;
    overflow: hidden;
    padding: 20px 0;
}
.scrolling-text-inner {
    display: flex;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
}
.scrolling-text {
    display: flex;
}
.scrolling-text-item {
    padding: 0 30px;
    color: white;
    font-style: italic;
    font-size: 3rem;
    img{
        height: 60px;
        width: 150px;
        object-fit: contain;
    }
}
.scrolling-text-inner > div {
    animation: var(--direction) var(--marquee-speed) linear infinite;
}
.scrolling-text-container:hover{
  cursor: pointer;
}
.scrolling-text-container:hover .scrolling-text-inner > div {
    /* animation-play-state: paused; */
}
/* scrolling heading  end*/
  
.col-md-6.col-lg-6{
  margin-bottom: 50px;
}
 
  .hide{
    display: none;
  }
  .card{
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 27%);
    transform: translateY(50px);
    opacity: 0;
    transition: 1s;
    height: 100%;
    background: #f7f6f2;
    border: 0;
    border-radius: 20px;
    .crs-count{
      padding: 1px 7px;
    border-radius: 20px;
    background: linear-gradient(45deg, #456bbd, #1c3964);
    width: fit-content;
    color: white;
    }
    .img-div{
      height: 150px;
      overflow: hidden;
      display: none;
    }
    .card-body{
      position: relative;
      padding-top: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .card-title{
      font-weight: 600;
      text-transform: uppercase;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      -webkit-line-clamp: 2;
      background: linear-gradient(45deg, #47b970, #215b7b);
      background-clip: text;
      color: transparent;
      font-size: 1.5rem;
      margin-bottom: 0;
    }
    ul{
      list-style-type: '✔';
      color: var(--Algae-Green);
      margin: 30px 0;
      li span{
        color: grey;
        padding-left: 5px;
      }
    }


    .duration{/* job assured program in large */
      box-shadow: 0 0 8px 3px rgb(33 42 57 / 26%);
      position: absolute;
      display: flex;
      align-items: center;
      background: white;
      padding: 5px 20px 5px 5px;
      border-radius: 5px;
      top: -18px;
      font-weight: 600;
      font-size: 12px;
      color: #3c4852;
      width: 265px;
      margin: auto;
      left: 0;
      right: 0;
      height: 50px;
      display: none;
      .img,.txt-part{
        width: 50%;
      }
      .txt-part{
        padding-left: 20px;
      }
    .img{
     height: 90%;
     text-align: center;
     position: relative;
    }
    .img::after{
      content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 30px;
    margin: auto;
    width: 1px;
    background-color: var(--primary_clr);
    }
    }

    .tools{
      padding: 20px 0;
      .tool{
        height: 25px;
      }
    }

    
    .rating{
      display: flex;
      align-items: center;
      font-weight: bold;
      i{
        color: #ffbd00;
      }
    }
    .buttons-div{
      display: flex;
      justify-content: space-between;
    }
    .more,.apply{
      width: 100%;
      border-radius: 25px;
      padding: 7px 0;
    }
    .apply{
      border: 0;
      background: var(--Algae-Green);
      color: white;
      margin-bottom: 10px;
    }
    .more{
      background: white;
    border: 2px solid var(--Lapis-Blue);
    color: var(--Lapis-Blue);
    transition: 0.4s;
    }
    .more:hover{
      color: white;
      background: var(--Lapis-Blue);
    }
  }
  .crs .col-lg-6.reveal .card{
    transform: translateY(0);
    opacity: 1;
    transition: 1s;
  }
  .crs.hide .col-lg-6.reveal .card{
    transform: translateY(50px);
    opacity: 0;
    transition: 1s;
  }
}
@media screen and (min-width:992px) {
  .clnt-scn{
    .card{
      width: 80%;
      margin: auto;
    }
  }
}
@media screen and (max-width:992px) {
  .clnt-scn{
    .card{
      width: 90%;
      margin: auto;
    }
  }
}
/* ==================================================================
      clints logos  END
==================================================================  */


/* ==================================================================
      footer  
==================================================================  */
footer{
    background-color: var(--primary-color);
}
/* ==================================================================
      footer  END
==================================================================  */