/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --hero-bg: #D3E3E7;
    --font-heading: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;

    --primary: #3565BD;
    --primary-light: #4365CB;
    --secondary: #5663D7;
    --accent: #6B60E1;
    --highlight: #835AE9;

    --gradient-primary: linear-gradient(to right,
            #3565bd,
            #4365cb,
            #5663d7,
            #6b60e1,
            #835ae9);

    --gradient-hover: linear-gradient(to right,
            #2e59a8,
            #3c5fc0,
            #4f5fd0,
            #655ee0,
            #7d58e7);

    --body-bg: #ffffff;
    --section-bg: #F4FAFD;
    --section-alt: #ffffff;
    --card-bg: #ffffff;
    --card-hover: #F8FBFE;
    --footer-bg: #081329;

    /* ==========================
       Text Colors
    ========================== */

    --heading: #17203A;
    --text: #58657D;
    --text-light: #7C8AA5;
    --white: #ffffff;
    --border: #E3EDF8;

    /* ==========================
       Shadows
    ========================== */

    --shadow-sm: 0 5px 20px rgba(53, 101, 189, .08);
    --shadow-md: 0 12px 35px rgba(53, 101, 189, .12);
    --shadow-lg: 0 20px 60px rgba(53, 101, 189, .18);


    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: .35s ease;
}

body {
    font-family: var(--font-body);
    background: var(--body-bg);
    color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading);
    font-weight: 700;
}

section {
    padding: 100px 0;
}

section:first-child {
    padding: 0px;
}

.section-light {
    background: var(--section-alt);
}

.section-gray {
    background: var(--section-bg);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    background: var(--card-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.off-white-bg {
    background: var(--section-bg);
}

.white-bg {
    background: var(--white);
}

/*============================
header Nav section 
=============================*/
.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1055;
    padding: 12px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: all .4s ease;
}

.premium-navbar.scrolled {
    padding: 11px 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 15px 40px rgba(53, 101, 189, .12);
    animation: headerSlide .4s ease;
}

@keyframes headerSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    padding-top: 80px;
}

.premium-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*=========================================
            LOGO
=========================================*/
.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    height: 54px;
    width: auto;
    transition: .35s;
}

.premium-navbar.scrolled .navbar-brand img {
    height: 48px;
}

/*=========================================
            DESKTOP MENU
=========================================*/

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    gap: 10px;
}

.nav-item {
    position: relative;
    border: none;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 11px !important;
    color: #17203A;
    font-size: 15.5px;
    font-weight: 500;
    transition: .35s;
    border: none;
}

.nav-link:hover {
    color: #3565BD;
}

.nav-link:focus-visible {
    box-shadow: none !important;
}

.nav-link.active {
    color: #3565BD !important;
}

.nav-link::before {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 0;
    height: 3px;
    border-radius: 30px;
    background: linear-gradient(90deg, #3565BD, #835AE9);
    transition: .35s;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 36px);
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-icon {
    font-size: 18px;
    color: #3565BD;
    transition: .35s;
}

@media(min-width:992px) {
    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

/*=========================================
            BUTTON
=========================================*/
.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 34px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #3565BD, #835AE9);
    box-shadow: 0 12px 35px rgba(53, 101, 189, .22);
    transition: .35s;
}

.header-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(53, 101, 189, .32);
}

/*=========================================
        MOBILE TOGGLE
=========================================*/
.navbar-toggler {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: #F4FAFD;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.navbar-toggler i {
    color: #3565BD;
    font-size: 28px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.offcanvas {
    width: 320px;
    border: none;
    background: #fff;
}

.offcanvas-header {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.offcanvas-body {
    padding: 24px;
}

.btn-close {
    box-shadow: none !important;
}

.offcanvas .navbar-nav {
    gap: 0;
}

.offcanvas .nav-link {
    padding: 13px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.offcanvas .nav-link::before {
    display: none;
}




/*=========================================
        PREMIUM DROPDOWN
=========================================*/

.dropdown {
    position: relative;
}

.dropdown-menu {
    min-width: 280px;
    padding: 14px;
    border: none;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(53, 101, 189, .14);
    overflow: hidden;
    transition: all .35s ease;
    z-index: 999;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(53, 101, 189, .05);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    filter: blur(30px);
}

.dropdown-menu::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(131, 90, 233, .05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    filter: blur(30px);
}

/*=========================================
        DESKTOP HOVER DROPDOWN
=========================================*/

@media(min-width:992px) {

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: .35s;
    }

    .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown:hover>.nav-link {

        color: #3565BD;

    }

}

/*=========================================
        DROPDOWN ITEMS
=========================================*/

.dropdown-item {
    display: block;
    padding: 14px 15px;
    border-radius: 14px;
    color: #17203A;
    font-size: 15px;
    font-weight: 500;
    transition: .35s;
}

.dropdown-item:not(:last-child) {
    margin-bottom: 6px;
}

.dropdown-item:hover {
    color: #fff;
    background: linear-gradient(135deg, #3565BD, #835AE9);
    transform: translateX(6px);
}

.nav-link,
.dropdown-item,
.dropdown-icon,
.header-btn,
.navbar-brand img {
    transition: all .35s ease;
}

.nav-item:hover>.nav-link {
    transform: translateY(-2px);
}

/*=========================================
        SMOOTH SHADOW
=========================================*/
.premium-navbar.scrolled {
    box-shadow:
        0 10px 35px rgba(53, 101, 189, .08),
        0 25px 60px rgba(53, 101, 189, .08);
}



.dropdown:hover>.dropdown-menu {
    animation: fadeDropdown .35s ease;
}


/* marquee */
.marquee-alert {
    display: flex;
    align-items: center;
    height: 40px;
    color: #da2026;
    font-size: 14.5px;
    background: #17203A;
    font-weight: 600;
    /* letter-spacing: 2px; */
}

.marquee-alert span {
    display: inline-block;
    width: 180px;
    padding: 0px 15px;
}

/*============================
Hero banner Section
=============================*/
.hero-banner {
    background: #D3E3E7;
}

.hero-image {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: url("../cover.webp") center center/cover no-repeat;
    overflow: hidden;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(10, 15, 25, .88) 0%,
            rgba(10, 15, 25, .82) 35%,
            rgba(10, 15, 25, .20) 70%,
            rgba(10, 15, 25, .05) 100%);
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    /* background: rgba(7, 13, 24, .82); */
    backdrop-filter: blur(6px);
    padding: 70px 55px;
    /* border-left: 5px solid var(--primary); */
}

.hero-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--white);
    background: var(--gradient-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-content p {
    color: rgba(255, 255, 255, .82);
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 38px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: .35s;
}

.hero-btn:hover {
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(53, 101, 189, .35);
}


/*============================
Professional Section
=============================*/

.section-title {
    text-align: center;
    max-width: 750px;
    margin: auto;
}

.section-title span {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 48px;
    margin: 15px 0;
    font-weight: 800;
    color: #17203A;
}

.section-title h2 span {
    font-size: 46px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: #6d7b94;
    font-size: 18px;
    margin-bottom: 2rem;
}

.service-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(53, 101, 189, .18);
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.service-img {
    width: 120px;
    height: 120px;
    margin: auto;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(53, 101, 189, .12);
}

.service-img img {
    width: 75px;
}

.service-card h3 {
    margin: 30px 0 15px;
    font-size: 24px;
    color: #17203A;
    font-weight: 700;
}

.service-card p {
    color: #6f7d96;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.service-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/*======================================
        Gallery Section
======================================*/
.gallery-row {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.gallery-row.five {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-row.four {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .5s;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(53, 101, 189, .15),
            rgba(131, 90, 233, .65));
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/*=============================

WHY SECTION

==============================*/
/* 
.why-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}


.why-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.why-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
} */

.why-heading {
    color: #fff;
    padding: 20px;
}

.why-heading span {
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    /* font-size:   14px; */
}

.why-heading h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    /* color: #fff; */
    margin: 15px 0;
}

.why-heading h2 span {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-heading p {
    color: #6d7b94;
    font-size: 17px;
    line-height: 1.8;
}

/* Card */

.why-card {
    background: var(--white);
    padding: 35px;
    border-radius: 22px;
    height: 100%;
    transition: .4s;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card-gradient {
    background: #ffffff;
}

.why-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 18px;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    color: #fff;
}

.why-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #17203A;

}

.why-card p {
    color: #6f7d96;
    line-height: 1.8;
}

/*==================================
CTA SECTION
===================================*/

.cta-wrapper {
    position: relative;
    overflow: hidden;
    padding: 80px 50px;
    text-align: center;
    border-radius: 30px;
    background: var(--gradient-primary);
}

/* Decorative Circle */

.cta-wrapper::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    top: -120px;
    left: -80px;
}

.cta-wrapper::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    right: -80px;
    bottom: -120px;
}

.cta-wrapper>* {
    position: relative;
    z-index: 2;
}

.cta-wrapper h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: auto;
}

.cta-wrapper h2 span {
    display: block;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.8;
    max-width: 720px;
    margin: 30px auto;
}

.cta-team {
    margin: 40px 0;
}

.cta-team img {
    width: 100%;
    max-width: 760px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 60px;
    text-decoration: none;
    background: #fff;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    transition: .35s;
}

.cta-btn:hover {
    transform: translateY(-5px);
    color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
}

/*============================
BLOG SECTION
=============================*/



.blog-card {
    display: grid;
    grid-template-columns: 270px 1fr;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(53, 101, 189, .15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.blog-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
}

.blog-image img {
    position: absolute;
    width: 85%;
    height: 85%;
    object-fit: cover;
    right: 0;
    bottom: 0;
    border-radius: 90px 0 0 0;
    transition: .5s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-content {
    padding: 35px;
}

.blog-meta {
    color: #7f8aa8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-content h3 {
    margin: 18px 0;
    font-size: 21px;
    font-weight: 700;
    color: #17203A;
    line-height: 1.3;
}

.blog-content p {
    color: #68768f;
    line-height: 1.8;
    margin-bottom: 28px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-footer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.blog-footer span {
    color: #888;
    font-size: 14px;
}

/*============================

SERVICE BRANDS

============================*/

/* .brands-section {
    padding: 100px 0;
    background: #F4FAFD;
} */

.brand-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    position: relative;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(53, 101, 189, .15);
}

.brand-card.active {
    border: 2px solid var(--primary);
}

.popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
}

.brand-card h3 {
    color: #17203A;
    font-size: 26px;
    font-weight: 800;
}

.brand-card small {
    display: block;
    margin: 8px 0 20px;
    color: #8a95ab;
}

.brand-card h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #17203A;
}

.brand-card p {
    color: #6d7b94;
    line-height: 1.8;
    margin-bottom: 25px;
}

.brand-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.brand-card ul li {
    padding: 9px 0;
    border-bottom: 1px solid #eef2f7;
    position: relative;
    padding-left: 28px;
    color: #49556d;
}

.brand-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.brand-card a {
    display: block;
    text-align: center;
    text-decoration: none;
    background: var(--gradient-primary);
    color: #fff;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    transition: .3s;
}

.brand-card a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/*============================

Challenge Section

=============================*/

.challenge-section {
    background: #17203A;
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: 55px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.challenge-number {
    width: 140px;
    flex-shrink: 0;
    text-align: center;
    font-size: 92px;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(to bottom, #835AE9, #3565BD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.challenge-content h3 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.challenge-content p {
    color: rgba(255, 255, 255, .78);
    font-size: 20px;
    line-height: 1.8;
    max-width: 750px;
}

.challenge-item:hover .challenge-number {
    transform: translateX(10px);
}

.challenge-number {
    transition: .35s;
}

.challenge-item:hover h3 {
    color: #835AE9;
}

.challenge-content h3 {
    transition: .35s;
}


/*====================================
Creative Service Card
====================================*/

.service-box {
    position: sticky;
    border-radius: 35px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid rgba(53, 101, 189, .06);
    transition: .45s ease;
    border-radius: 0 0 50px 0;
    box-shadow: 0 25px 50px #0000001a, 0 0 0 1px #fbbf241a;
}

.service-card-1 {
    top: 90px;
    z-index: 1;
}


.service-card-2 {
    top: 115px;
    z-index: 2;
}


.service-card-3 {
    top: 140px;
    z-index: 3;
}

.service-card-4 {
    top: 165px;
    z-index: 4;
}

.service-box:hover {
    transform: translateY(-2px);
    border-color: rgba(131, 90, 233, .30);
    box-shadow:
        0 40px 100px rgba(53, 101, 189, .16);
}

.service-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    /* border-radius: 20px; */
    transition: .5s;
    -webkit-border-radius: 0 0 200px 0
}

.service-box:hover img {
    transform: scale(1.02);
}

.service-content {
    padding: 60px;
}

.service-content span {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-content h2 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right,
            #3565BD,
            #4365CB,
            #5663D7,
            #6B60E1,
            #835AE9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-content h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    border-radius: 20px;
    margin-top: 18px;
    background: linear-gradient(to right,
            #3565BD,
            #835AE9);
}

.service-content p {
    color: #6F7D96;
    font-size: 18px;
    line-height: 1.9;
    margin: 30px 0;
}


/*=====================================
        Testimonials
=====================================*/
.carousel-item {
    /* min-height: 350px; */
    background-color: transparent !important;

}

.testimonial-section {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    /* overflow: visible; */
}

/* Background Glow */

.testimonial-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: rgba(53, 101, 189, .08);
    filter: blur(80px);
}

.testimonial-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    left: -150px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(131, 90, 233, .08);
    filter: blur(80px);
}



/* Carousel */

.testimonial-carousel {
    max-width: 700px;
    margin: auto;
    position: relative;
}

/* Card */

.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 30px 40px;
    min-height: 350px;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    box-shadow: 0px 6px 20px rgba(26, 137, 185, 0.07);

}

/* Image */

.client-image {
    width: 150px;
    height: 150px;
    /* margin-top: -55px; */
    /* margin-bottom: 25px; */
    border-radius: 22px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 20px 40px rgba(53, 101, 189, .20);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */

.testimonial-content h3 {
    font-size: 25px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 3px;
}

.testimonial-content span {
    display: block;
    color: #835AE9;
    font-weight: 600;
    /* margin-bottom: 25px; */
}

.testimonial-content p i {
    font-size: 15px;
    font-weight: 500;
}

.testimonial-content p {
    color: #6F7D96;
    line-height: 1.9;
    font-size: 17px;
}

/* Navigation */

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
    z-index: 10;
}

.carousel-control-prev {
    left: -90px;
}

.carousel-control-next {
    right: -90px;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    background: var(--gradient-primary);
    box-shadow: 0 15px 30px rgba(53, 101, 189, .25);
    transition: .35s;
}

.slider-arrow:hover {
    transform: scale(1.08);
}

/*=========================
        FAQ Section
=========================*/

.custom-faq {
    margin-top: 30px;
    max-width: 1100px;
    margin: auto;
}

.custom-faq .accordion-item {
    border: none;
    border-bottom: 1px solid #e8edf5;
    margin-bottom: 20px;
    background: #fff;
}

.custom-faq .accordion-button {
    background: #fff;
    box-shadow: none;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #fff;
    color: #111;
}

.custom-faq .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 34px;
    font-weight: 300;
    color: var(--primary);
    transform: none;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    content: "−";
    transform: none;
    color: #835ae9;
}

.faq-number {
    min-width: 80px;
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
    margin-right: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-title {
    font-size: 26px;
    font-weight: 700;
    color: #17203A;
}

.custom-faq .accordion-body {
    background: #F4FAFD;
    border-radius: 18px;
    padding: 35px;
    margin-left: 105px;
    margin-bottom: 25px;
    color: #5f6573;
    font-size: 17px;
    line-height: 1.9;
    border-left: 5px solid var(--primary);

}

.custom-faq .accordion-item:hover .faq-number {
    transform: translateX(5px);
    transition: .3s;
}

.custom-faq .accordion-item:hover .faq-title {
    color: var(--primary);
    transition: .3s;
}


.premium-footer {
    position: relative;
    overflow: hidden;
    background: #17203A;
    padding: 90px 0 30px;
    color: #fff;
}

/* Decorative Background */
.premium-footer::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(53, 101, 189, .08);
    border-radius: 50%;
    top: -180px;
    right: -150px;
    filter: blur(30px);
}

.premium-footer::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(131, 90, 233, .08);
    border-radius: 50%;
    bottom: -120px;
    left: -100px;
    filter: blur(30px);
}

.premium-footer .container {
    position: relative;
    z-index: 2;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 25px;
    transition: .35s;
}

.footer-logo:hover {
    color: #3565bd;
}

.footer-widget h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.footer-widget p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    margin-bottom: 30px;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 14px;
    transition: .35s;
}

.footer-widget ul li:hover {
    transform: translateX(8px);
}

.footer-widget ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, .78);
    transition: .35s;
}

.footer-widget ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 20px;
    transition: .35s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #3565bd, #835ae9);
    color: #fff;
    transform: translateY(-6px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 18px;
    line-height: 1.8;
}

.footer-contact li i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 18px;
    transition: .35s;
}

.footer-contact li:hover i {
    background: var(--gradient-primary)
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, .75);
    transition: .35s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-widget {
    transition: .35s;
}

.footer-widget:hover {
    transform: translateY(-5px);
}


/************************** Responsive ***************************/
@media(max-width:1199px) {

    .gallery-row.five {
        grid-template-columns: repeat(3, 1fr);

    }

    .gallery-row.four {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:991px) {

    /**** navbar Responsive */
    body {
        padding-top: 62px;
    }

    .premium-navbar {
        padding: 8px 0;
    }

    .navbar-brand img {
        height: 46px;
    }

    .offcanvas {
        width: 320px;
    }

    .dropdown-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 5px;
    }

    .dropdown-menu::before,
    .dropdown-menu::after {
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 10px 15px;
        margin-bottom: 4px;
        background: transparent;
    }

    .dropdown-item:hover {
        transform: none;
    }

    .header-btn {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    /**** navbar Responsive  end*/
    .marquee-alert {
        font-size: 13.5px;
    }

    .hero-image {
        min-height: 700px;
    }

    .hero-content {
        max-width: 100%;
        padding: 45px 35px;
    }

    .hero-content h1 {
        font-size: 42px;

    }

    .section-title h2,
    .section-title h2 span {
        font-size: 38px;
    }

    .gallery-row.five,
    .gallery-row.four {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-wrapper {
        padding: 60px 35px;
    }

    .cta-wrapper h2 {
        font-size: 42px;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 280px;
    }

    .blog-image img {
        width: 80%;
        height: 80%;
    }

    .brand-card {
        padding: 30px;
    }

    .challenge-number {
        font-size: 70px;
        width: 100px;
    }

    .challenge-content h3 {
        font-size: 30px;
    }

    .challenge-content p {
        font-size: 17px;
    }

    .service-content {
        padding: 40px;
        text-align: center;
    }

    .service-content h2 {
        font-size: 35px;
    }

    .service-content h2::after {
        margin: auto;
        margin-top: 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .faq-number {
        font-size: 42px;
        min-width: 60px;

    }

    .faq-title {
        font-size: 22px;
    }

    .custom-faq .accordion-body {
        margin-left: 0;
        margin-top: 20px;

    }

    .footer-widget {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        gap: 18px;
    }


}

@media(max-width:767px) {

    section {
        padding: 70px 0;
    }

    .section-title h2,
    .section-title h2 span {
        font-size: 30px;
    }

    .service-card {
        margin-top: 20px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-wrapper {
        padding: 45px 25px;
        border-radius: 20px;
    }

    .cta-wrapper h2 {
        font-size: 30px;
    }

    .cta-wrapper p {
        font-size: 16px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .challenge-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 0;
    }

    .challenge-number {
        width: auto;
        font-size: 62px;
    }

    .challenge-content h3 {
        font-size: 26px;
    }

    .challenge-content p {
        font-size: 16px;
    }

    .service-image {
        padding: 25px;
    }

    .service-content {
        padding: 30px 25px;
    }

    .service-content h2 {
        font-size: 30px;
    }

    .service-content p {
        font-size: 16px;
    }

    .footer-logo {
        font-size: 30px;
    }

    .footer-widget h4 {
        font-size: 21px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }

}

@media(max-width:576px) {

    /* navbar responsive */
    .offcanvas {
        width: 290px;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
    }

    .navbar-toggler i {
        font-size: 24px;
    }

    .navbar-brand img {
        height: 42px;
    }

    .offcanvas {
        width: 290px;
    }

    .dropdown-item {
        font-size: 14px;
        padding: 11px 14px;
    }

    /* navbar responsive end*/

    .hero-banner {
        padding-top: 90px;
    }

    .hero-image {
        min-height: 620px;
    }

    .hero-content {
        padding: 35px 25px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* .gallery-section {
        padding: 70px 0;
    } */

    .gallery-row.five,
    .gallery-row.four {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 250px;
    }

    .why-card {
        padding: 25px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-content h3 {
        font-size: 24px;
    }

    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .brands-section {
        padding: 70px 0;
    }

    .brand-card {
        padding: 25px;
    }

    .brand-card h3 {
        font-size: 20px;
    }

    .testimonial-card {
        padding: 15px 25px;
    }

    .client-image {
        width: 100px;
        height: 100px;
    }


    .testimonial-content h3 {
        font-size: 24px;
    }

    .testimonial-content p {
        font-size: 15px;
    }

    .faq-number {
        font-size: 34px;
        min-width: 45px;
        margin-right: 15px;
    }

    .faq-title {
        font-size: 18px;
    }

    .custom-faq .accordion-button {
        padding: 22px 0;
    }

    /* footer */
    .premium-footer {
        padding: 70px 0 25px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .footer-widget p {
        font-size: 15px;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .footer-contact li i {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
    }

}