* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

:root {
    /* Fonts */
    --font-primary: "Gilroy", sans-serif;

    /* Primary Colors */
    --primary: rgb(0, 115, 236);
    --secondary: rgb(0, 0, 0);
    --white: #ffffff;

    /* Gradient */
    --primary-gradient: linear-gradient(57deg,
            rgb(0, 115, 236) -22.87%,
            #a644e5 111.43%);

    /* Background Colors */
    --bg-primary: var(--primary);
    --bg-dark: var(--secondary);
    --bg-light: var(--white);

    /* Text Colors */
    --text-primary: var(--primary);
    --text-dark: var(--secondary);
    --text-light: var(--white);
}

body {
    font-family: var(--font-primary);
    color: var(--secondary);
    background: var(--white);
}

/*======================
        NAVBAR style start
======================*/

.custom-navbar {
    margin: 18px auto;
    width: 95%;
    max-width: 1320px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .4);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .08);
    transition: .4s;
}

.custom-navbar:hover {
    transform: translateY(-2px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, .12);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.header-menu {
    gap: 12px;
}

.header-menu .nav-link {
    color: #444;
    font-weight: 600;
    padding: 10px 18px !important;
    border-radius: 40px;
    transition: .35s;
    position: relative;
    font-size: 15px;
}

.header-menu .nav-link:hover {
    color: var(--primary);
    background: #eef6ff;
}

.header-menu .nav-link.active {
    color: #fff;
    background: var(--primary-gradient);
    font-size: 15px;
}

.header-btn {
    margin-left: 25px;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
    transition: .35s;
    font-size: 15px;
}

.header-btn::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 200%;
    background: rgba(255, 255, 255, .45);
    left: -80px;
    top: -40px;
    transform: rotate(25deg);
    transition: .7s;
}

.header-btn:hover::before {
    left: 160%;
}

.header-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 15px 35px rgba(0, 115, 236, .35);
}

/*====================
Dropdown
=====================*/
.dropdown-menu {
    border: none;
    border-radius: 18px;
    padding: 12px;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .08);
}

.dropdown-item {
    border-radius: 10px;
    padding: 12px 15px;
    transition: .3s;
}

.dropdown-item:hover {
    background: #eef6ff;
    color: var(--primary);
}

/*====================
Mobile
=====================*/

@media(max-width:991px) {
    .custom-navbar {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .offcanvas {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 320px;
        height: 100vh !important;
        max-height: 100vh !important;
        margin: 0;
        border-radius: 0;
    }

    .offcanvas-body {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .offcanvas-header {
        padding: 25px;
    }

    .header-menu {
        gap: 5px;
    }

    .header-menu .nav-link {
        padding: 14px 18px !important;
        border-radius: 12px;
    }

    .header-btn {
        display: block;
        margin: 20px 0 0;
        text-align: center;
    }
}

header .nav-bg {
    background: var(--primary);
}

/* .header-menu li a{color: var(--white);} */


/*====================
banner sections start
=====================*/
.banner-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #f7fbff;
}

.banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(0, 115, 236, .12),
            transparent 45%);
}

.mobil-banner {
    display: none;
}

.blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .5;
}

.blur-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -80px;
    left: -80px;
}

.blur-2 {
    width: 350px;
    height: 350px;
    background: #a644e5;
    right: -120px;
    bottom: -120px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(0, 115, 236, .15);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}


.banner-section h1 {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.banner-section h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-section p {
    font-size: 18px;
    color: #666;
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 60px;
}

.btn-primary-custom {
    padding: 11px 35px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    background: var(--primary-gradient);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    z-index: 1;
}

.btn-primary-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80px;
    height: 100%;
    background: rgba(255, 255, 255, .35);
    transform: skewX(-25deg);
    transition: .8s;
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 130%;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 115, 236, .35);
}

.btn-outline-custom {
    padding: 11px 35px;
    border-radius: 50px;
    border: 2px solid rgba(0, 115, 236, .15);
    text-decoration: none;
    color: #000;
    font-weight: 700;
    background: #fff;
    transition: .35s;
}

.btn-outline-custom:hover {

    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);

}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-box {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
    min-width: 140px;
}

.stat-box p {
    color: var(--primary);
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.stat-box span {
    color: #666;
    font-size: 14px;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 540px;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .18);
}


.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 15px 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    transition: .4s ease;
    cursor: pointer;
}

.card-one {
    left: -30px;
    top: 50px;
    animation: floatOne 4s ease-in-out infinite;
}

.card-two {
    right: -20px;
    bottom: 60px;
    animation: floatTwo 5s ease-in-out infinite;
}

.card-one strong {
    display: block;
    color: var(--primary);
    font-size: 24px;
}

@keyframes floatOne {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(-2deg);
    }

}

@keyframes floatTwo {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(18px);
    }

}

/*=========================
        SERVICES START
=========================*/

.services-section {
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

.service-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .08);
    color: #6bb8ff;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-title {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.service-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-text {
    color: #bfbfbf;
    font-size: 18px;
    line-height: 1.8;
    max-width: 450px;
}

/* Right Side */

.services-wrapper {
    position: relative;
    width: 620px;
    height: 520px;
    margin: auto;
}

/* Half Circle Background */

.services-wrapper::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 35px solid rgba(255, 255, 255, .08);
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    border-bottom: none;
}

/* Circle Cards */

.service-card {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #081f2c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.05);
}

.service-card i {
    font-size: 34px;
    color: #fff;
    margin-bottom: 12px;
}

.service-card h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.service-card p {
    margin: 6px 0 0;
    color: #ddd;
    font-size: 15px;
}

/* Positions */

.card1 {
    top: 0;
    left: 60px;
}

.card2 {
    top: 0;
    left: 230px;
}

.card3 {
    top: 0;
    right: 60px;
}

.card4 {
    bottom: 40px;
    left: 160px;
}

.card5 {
    bottom: 40px;
    right: 160px;
}

.card6 {
    top: 180px;
    left: 230px;
}

/*=========================
        SERVICES END
=========================*/


/* */
/*====================================
 PREMIUM VIDEO MODEL SECTION
=====================================*/


.mahipalpurgel-section {
    position: relative;
    height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.model-dark-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .45),
            rgba(5, 8, 22, .65)),
        linear-gradient(90deg,
            rgba(0, 0, 0, .8),
            rgba(0, 115, 236, .10));
    z-index: 1;
}

.mahipalpurgel-section .container {
    position: relative;
    z-index: 2;
}

.model-content-center {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: white;
}

.model-small-tag {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    background:
        rgba(255, 255, 255, .12);
    border:
        1px solid rgba(255, 255, 255, .25);
    color: #6bb8ff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(15px);
}

.model-content-center h2 {
    font-size: 75px;
    font-weight: 900;
    line-height: 1.1;
}

.model-content-center h2 span {
    background:
        var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.model-content-center p {
    font-size: 19px;
    line-height: 1.8;
    color:
        rgba(255, 255, 255, .75);
    max-width: 650px;
    margin: 25px auto 40px;
}

.model-service-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;

}

.model-service-list div {
    padding: 15px 25px;
    border-radius: 50px;
    background:
        rgba(255, 255, 255, .10);
    border:
        1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(20px);
    color: white;
    transition: .3s;
}

.model-service-list div:hover {
    background:
        var(--primary-gradient);
    transform: translateY(-5px);
}

.model-service-list i {
    color: #6bb8ff;
    margin-right: 8px;
}

.model-action-btn {
    display: inline-block;
    padding: 17px 45px;
    border-radius: 50px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 700;
    text-decoration: none;
    box-shadow:
        0 20px 50px rgba(0, 115, 236, .45);
    transition: .4s;
}

.model-action-btn:hover {
    transform: translateY(-5px);
    color: white;
}



/*=====================================
        PREMIUM PORTFOLIO Gallery
======================================*/

.portfolio-section {

    padding: 120px 0;
    background: #050816;
    position: relative;
    overflow: hidden;

}

.portfolio-section::before {

    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(180px);
    opacity: .18;
    left: -120px;
    top: -120px;

}

.portfolio-section::after {

    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #a644e5;
    filter: blur(180px);
    opacity: .18;
    right: -100px;
    bottom: -100px;

}

/* Heading */

.portfolio-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #6bb8ff;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-title {
    color: #fff;
    font-size: 58px;
    font-weight: 800;
}

.portfolio-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-text {
    max-width: 760px;
    margin: auto;
    color: rgba(255, 255, 255, .72);
    line-height: 1.9;
    font-size: 17px;
}

/*========================*/

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 22px;
    margin-top: 70px;
}

/* Card */

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

/* Sizes */

.large {
    grid-column: span 2;
    grid-row: span 2;
}

.tall {
    grid-row: span 2;
}

.wide {
    grid-column: span 2;
}

/* Overlay */

.portfolio-overlay {

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .88),
            rgba(0, 0, 0, .15));

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;

}

.portfolio-overlay::before {

    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(0, 115, 236, .45),
            rgba(166, 68, 229, .35));

    opacity: 0;
    transition: .45s;

}

.portfolio-item:hover .portfolio-overlay::before {
    opacity: 1;
}

.portfolio-overlay span {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: max-content;
    padding: 8px 18px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px);
    color: #fff;
    font-size: 13px;
    margin-bottom: 16px;
}

.portfolio-overlay h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

/* Hover */
.portfolio-item:hover img {
    transform: scale(1.12);
}

.portfolio-item:hover {
    box-shadow: 0 25px 80px rgba(0, 115, 236, .35);
}




/*=========================
        WHY US
=========================*/

.why-section {
    position: relative;
    padding: 120px 0;
    background: #050816;
    /* overflow:hidden; */
}

.why-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: .20;
    top: -120px;
    left: -120px;
}

/* 
.why-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#a644e5;
    border-radius:50%;
    filter:blur(130px);
    opacity:.18;
    right:-150px;
    bottom:-150px;
} */

/* Heading */

.why-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #6bb8ff;
    font-weight: 700;
    margin-bottom: 25px;
}

.why-title {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.why-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-text {
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* Cards */

.why-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 115, 236, .5);
    box-shadow: 0 20px 45px rgba(0, 115, 236, .25);
}

.why-card i {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    color: #fff;
    background: var(--primary-gradient);
}

.why-card h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.why-card p {
    color: rgba(255, 255, 255, .70);
    line-height: 1.8;
    margin: 0;
}

.why-sticky {
    position: sticky;
    top: 120px;
}







/*=========================
        PRICE SECTION
=========================*/

.price-section {

    padding: 120px 0;
    background: #050816;
    position: relative;
    overflow: hidden;
}

/* .price-section::before{ 
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:var(--primary);
    border-radius:50%;
    filter:blur(130px);
    opacity:.18;
    left:-150px;
    top:-100px; 
}  */
.price-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #a644e5;
    border-radius: 50%;
    filter: blur(130px);
    opacity: .18;
    right: -150px;
    bottom: -100px;
}

/* Heading */
.price-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    color: #6bb8ff;
    border: 1px solid rgba(255, 255, 255, .15);
    font-weight: 700;
    margin-bottom: 20px;
}

.price-title {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.price-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-desc {
    color: rgba(255, 255, 255, .7);
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* Table */

.price-table-wrapper {
    max-width: 1000px;
    margin: 60px auto;
    border-radius: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, .04);
    border: 2px solid transparent;
    background-image:
        linear-gradient(#050816, #050816),
        var(--primary-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.price-table th {
    padding: 18px;
    text-align: left;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.price-table td {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
}

.price-table tbody tr {
    transition: .3s;
}

.price-table tbody tr:hover {
    background: rgba(0, 115, 236, .08);
}

.check {
    color: #00d68f;
    font-weight: bold;
    margin-right: 8px;
}

.available {
    color: #6bb8ff;
    font-weight: 600;
}



/*=========================
      TESTIMONIAL SECTION
=========================*/

.testimonial-section {
    padding: 120px 0;
    background: rgb(0 0 0);
    position: relative;
    overflow: hidden;
}

/*
.testimonial-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:var(--primary);
    border-radius:50%;
    filter:blur(140px);
    opacity:.18;
    top:-150px;
    left:-150px;
}
.testimonial-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#a644e5;
    border-radius:50%;
    filter:blur(140px);
    opacity:.15;
    right:-150px;
    bottom:-150px;
} */

/* Heading */
.testimonial-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    color: #6bb8ff;
    border: 1px solid rgba(255, 255, 255, .15);
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-title {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
}

.testimonial-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-desc {
    max-width: 650px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

/* Cards */
.testimonial-card {
    height: 100%;
    padding: 35px;
    border-radius: 25px;
    background:
        rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px);
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 115, 236, .6);
    box-shadow:
        0 25px 60px rgba(0, 115, 236, .25);
}

.quote-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    font-size: 16px;
}

.stars {
    margin: 20px 0;
}

.stars i {
    color: #ffc107;
    margin-right: 4px;
}

/* Client */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        var(--primary-gradient) border-box;
}

.client-info h5 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 5px;
}

.client-info span {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
}

/*=========================
          FAQ SECTION
=========================*/

/*=========================
          FAQ SECTION
=========================*/

.faq-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(0, 115, 236, .08);
    border-radius: 50%;
    filter: blur(120px);
    top: -120px;
    left: -120px;
}

.faq-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(166, 68, 229, .08);
    border-radius: 50%;
    filter: blur(120px);
    bottom: -120px;
    right: -120px;
}

/* Heading */

.faq-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #eef6ff;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 56px;
    font-weight: 800;
    color: #111;
}

.faq-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-desc {
    max-width: 650px;
    margin: 20px auto 0;
    color: #666;
    line-height: 1.8;
}

/* Accordion */

.premium-accordion .accordion-item {
    background: #fff;
    border: 1px solid rgba(0, 115, 236, .12);
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    transition: .35s;
}

.premium-accordion .accordion-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 115, 236, .35);
    box-shadow: 0 20px 45px rgba(0, 115, 236, .12);
}

.premium-accordion .accordion-button {
    background: #fff;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    padding: 24px 28px;
    box-shadow: none;
}

.premium-accordion .accordion-button::after {
    display: none;
}

.premium-accordion .accordion-button i {
    margin-left: auto;
    font-size: 22px;
    color: var(--primary);
    transition: .3s;
}

.premium-accordion .accordion-button:not(.collapsed) {
    background: #f7fbff;
    color: var(--primary);
}

.premium-accordion .accordion-button:not(.collapsed) i {
    transform: rotate(45deg);
}

.accordion-body {
    padding: 0 28px 25px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/*=========================
        FOOTER
=========================*/

.footer-section {
    background: rgb(0 0 0);
    padding: 90px 0 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* .footer-section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:var(--primary);
    border-radius:50%;
    filter:blur(130px);
    opacity:.15;
    top:-100px;
    left:-100px;
} */
.footer-logo {
    font-size: 34px;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
}

.footer-logo::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 8px;
    border-radius: 10px;
    background: var(--primary-gradient);
}

.footer-brand p {
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    margin: 25px 0;
    max-width: 360px;
    font-size: 15px;
}

/* Social */

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .35s;
}

.footer-social a:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
}

/* Widgets */
.footer-widget h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    font-size: 15px;
    margin-bottom: 14px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: .3s;
    font-size: 15px;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

/* Contact */
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, .7);
}

.footer-contact i {
    color: #6bb8ff;
    font-size: 20px;
}

/*=========================
        Footer Bottom Premium
=========================*/

.footer-bottom {

    margin-top: 70px;
    padding: 25px 30px;

    border-radius: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    position: relative;
    overflow: hidden;

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

}


/* Gradient Glow */

.footer-bottom::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background: var(--primary);

    border-radius: 50%;

    filter: blur(100px);

    opacity: .25;

    left: -120px;
    bottom: -120px;

}


.footer-bottom::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background: #a644e5;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .20;

    right: -120px;
    top: -120px;

}


/* Content */

.footer-bottom p {

    position: relative;
    z-index: 1;

    font-size: 15px;

    margin: 0;

    color:
        rgba(255, 255, 255, .75);

}


/* Links */

.footer-bottom div {

    position: relative;
    z-index: 1;

}


.footer-bottom a {

    font-size: 15px;

    color:
        rgba(255, 255, 255, .65);

    text-decoration: none;

    margin-left: 25px;

    padding: 8px 18px;

    border-radius: 30px;

    transition: .35s;

}


.footer-bottom a:hover {

    color: #fff;

    background:
        var(--primary-gradient);

    box-shadow:
        0 10px 25px rgba(0, 115, 236, .35);

}


/* Mobile */

@media(max-width:576px) {

    .footer-bottom {

        flex-direction: column;

        text-align: center;

        padding: 25px 15px;

    }


    .footer-bottom a {

        display: inline-block;

        margin: 10px 5px 0;

    }

}

/*=========================
        Responsive
=========================*/

@media(max-width:991px) {

    .banner-section {
        padding: 70px 0;
    }

    .banner-section h1 {
        font-size: 42px;
    }

    .hero-image {
        margin-top: 70px;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .floating-card {
        display: none;
    }

    .mobil-banner {
        display: block;
        background-size: cover;
        width: 100%;
    }

    .desctop-banner {
        display: none;
    }

    /*=========================
            SERVICES RESHPONSIVE
    =========================*/
    .services-section {
        padding: 80px 0;
        text-align: center;
    }

    .service-title {
        font-size: 40px;
    }

    .service-text {
        margin: 0 auto 50px;
    }

    .services-wrapper {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        justify-items: center;
    }

    .services-wrapper::before {
        display: none;
    }

    .service-card {
        position: static;
        width: 150px;
        height: 150px;
    }


    /*=========================
   Gallery RESHPONSIVE START
=========================*/

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .large,
    .wide {
        grid-column: span 2;
    }


    /*=========================
        WHY US
=========================*/
    .why-section {
        padding: 80px 0;
    }

    .why-title {
        font-size: 42px;
        text-align: center;
    }

    .why-tag,
    .why-text {
        display: block;
        text-align: center;
    }

    .why-text {
        margin-bottom: 40px;
    }

    .left-content {
        text-align: center;
        margin-bottom: 50px;
    }

    /*=========================
        Price RESHPONSIVE
=========================*/
    .price-section {
        padding: 90px 0;
    }

    .price-title {
        font-size: 42px;
    }

    .price-table-wrapper {
        padding: 20px;
    }

    /*====================================
         PREMIUM VIDEO MODEL SECTION
        =====================================*/
    .mahipalpurgel-section {

        height: auto;
        min-height: 850px;

        padding: 100px 0 180px;

        display: flex;
        align-items: center;
        justify-content: center;

    }


    .mahipalpurgel-section .container {

        width: 100%;
        padding-left: 20px;
        padding-right: 20px;

    }


    .model-content-center {

        max-width: 100%;
        margin: 0 auto;

    }


    .model-content-center h2 {

        font-size: 48px;
        line-height: 1.15;

    }


    .model-content-center p {

        font-size: 16px;

        margin: 20px auto 35px;

        max-width: 500px;

    }


    .model-service-list {

        gap: 12px;

        margin-bottom: 35px;

    }


    .model-service-list div {

        width: 100%;

        padding: 14px 20px;

        text-align: center;

    }


    .model-action-btn {

        padding: 15px 35px;

        width: 100%;

        max-width: 330px;

    }


    /* floating stats fix */

    .model-floating-stats {

        position: absolute;

        bottom: 25px;

        left: 50%;

        transform: translateX(-50%);

        width: 90%;

    }

    /*=========================
        Testimonial RESHPONSIVE
=========================*/
    .testimonial-section {
        padding: 90px 0;
    }

    .testimonial-title {
        font-size: 42px;
    }


    /*=========================
        Faq RESHPONSIVE
=========================*/
    .faq-section {
        padding: 90px 0;
    }

    .faq-title {
        font-size: 42px;
    }


    /*=========================
        Footer RESHPONSIVE
=========================*/
    .footer-section {
        padding: 70px 0 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 10px;
    }


}

@media(max-width:576px) {

    /*=========================
        SERVICES RESHPONSIVE
=========================*/
    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .service-title {
        font-size: 34px;
    }

    .service-card {
        width: 170px;
        height: 170px;
    }


    /*=========================
   Gallery RESHPONSIVE START
=========================*/
    .portfolio-title {
        font-size: 36px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .large,
    .wide,
    .tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .portfolio-overlay h3 {
        font-size: 22px;
    }


    /*=========================
        WHY US RESHPONSIVE
=========================*/
    .why-title {
        font-size: 34px;
    }

    .why-card {
        padding: 25px;
    }


    /*=========================
        Price RESHPONSIVE
=========================*/
    .price-title {
        font-size: 34px;
    }

    .price-table {
        min-width: 700px;
    }


    /*=========================
        testiminial RESHPONSIVE
=========================*/
    .testimonial-title {
        font-size: 34px;
    }

    .testimonial-card {
        padding: 25px;
    }

    /*=========================
        Faq RESHPONSIVE
=========================*/
    .faq-title {
        font-size: 34px;
    }

    .premium-accordion .accordion-button {
        padding: 20px;
        font-size: 16px;
    }

    .accordion-body {
        padding: 0 20px 20px;
    }

    /*=========================
        Footer RESHPONSIVE
=========================*/
    .footer-widget {
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-logo::after {
        margin-left: auto;
        margin-right: auto;
    }



    /* *************/
    .mahipalpurgel-section {

        min-height: 950px;

        padding-top: 80px;

        padding-bottom: 170px;

    }


    .model-content-center h2 {

        font-size: 36px;

    }


    .model-small-tag {

        padding: 8px 18px;

        font-size: 13px;

        margin-bottom: 20px;

    }


    .model-content-center p {

        font-size: 15px;

        line-height: 1.7;

    }


    .model-service-list div {

        font-size: 14px;

    }


    .model-floating-stats {

        display: flex;

        gap: 10px;

        justify-content: center;

    }


    .model-floating-stats div {

        flex: 1;

        padding: 15px 5px;

        font-size: 12px;

    }


    .model-floating-stats strong {

        display: block;

        font-size: 22px;

    }


}




/*============================ */
/*=========================
        JOIN SECTION
=========================*/

.join-section {

    position: relative;
    padding: 160px 0;
    overflow: hidden;

    background-image: url("../../images/background.webp");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

}

.join-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(5, 8, 22, .92) 0%,
            rgba(5, 8, 22, .82) 35%,
            rgba(5, 8, 22, .55) 65%,
            rgba(5, 8, 22, .20) 100%);

}

/* blue glow */

.join-section::before {

    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    background: rgba(0, 115, 236, .18);

    filter: blur(140px);

    border-radius: 50%;

    left: -120px;
    top: -120px;

}

/* purple glow */

.join-section::after {

    content: "";
    position: absolute;

    width: 380px;
    height: 380px;

    background: rgba(166, 68, 229, .16);

    filter: blur(150px);

    border-radius: 50%;

    right: -120px;
    bottom: -120px;

}

.join-content {

    position: relative;
    z-index: 2;

    max-width: 620px;

}

.join-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 40px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    color: #6bb8ff;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;

}

.join-content h2 {

    font-size: 64px;

    color: #fff;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 28px;

}

.join-content h2 span {

    background: var(--primary-gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.join-content p {

    color: rgba(255, 255, 255, .72);

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 45px;

    max-width: 560px;

}

.join-btns {

    display: flex;
    gap: 18px;
    flex-wrap: wrap;

}

.btn-outline-light {

    padding: 11px 34px;

    border-radius: 50px;

    text-decoration: none;

    color: #fff;

    border: 2px solid rgba(255, 255, 255, .18);

    transition: .35s;

}

.btn-outline-light:hover {

    background: #fff;

    color: #111;

}

/*=========================
        Responsive
=========================*/

@media(max-width:991px) {

    .join-section {

        padding: 100px 0;

        background-attachment: scroll;

    }

    .join-content {

        text-align: center;
        margin: auto;

    }

    .join-content h2 {

        font-size: 46px;

    }

    .join-btns {

        justify-content: center;

    }

}

@media(max-width:576px) {

    .join-section {
        padding: 80px 0;
    }

    .join-content h2 {
        font-size: 36px;
    }

    .join-content p {
        font-size: 16px;
    }

    .join-tag {
        font-size: 13px;
    }

    .model-content-center h2 {
        font-size: 35px;
    }

    .model-service-list div {
        width: 100%;
    }

}