@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {

    /*================ COLORS ================*/
    --primary-color: #4169ff;
    --primary-hover: #5b7cff;
    --dark-bg: #060624;
    --section-bg: #0d0d2f;
    --card-bg: #1b1b1b;
    --white: #ffffff;
    --text-color: #d5d5d5;
    --text-light: #9fa4c5;
    --border-color: rgba(255, 255, 255, .08);
    /*================ GRADIENT ================*/
    --primary-gradient: linear-gradient(90deg, #4169ff, #5b7cff);
    /*================ SHADOW ================*/
    --shadow-sm: 0 10px 25px rgba(0, 0, 0, .20);
    --shadow-md: 0 20px 45px rgba(0, 0, 0, .35);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, .45);
    /*================ BORDER ================*/
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-round: 50px;
    /*================ TRANSITION ================*/
    --transition: .35s ease;
    /*================ CONTAINER ================*/
    --container-width: 90%;
    --container-max: 1400px;
    /*================ SECTION ================*/
    --section-padding: 90px;
    /*================ FONT SIZE ================*/
    --fs-small: 14px;
    --fs-normal: 16px;
    --fs-medium: 18px;
    --fs-large: 22px;
    --fs-xl: 48px;
    --fs-hero: 62px;
    /* Service Cards */
    --service-card-bg: #171717;
    --service-card-border: rgba(255, 255, 255, .08);
    --service-card-radius: 22px;
    --service-card-padding: 28px;

    /* Service Icons */
    --service-icon-size: 58px;
    --service-icon-radius: 16px;

    /* Service Section */
    --service-gap: 28px;
    --service-title-size: 22px;
    --service-text-size: 15px;

    /* CTA Box */
    --cta-bg: #09092d;
    --cta-radius: 24px;

    /* Hover */
    --hover-shadow: 0 18px 45px rgba(65, 105, 255, .18);
    --hover-border: rgba(65, 105, 255, .45);
}


/* ==============TOP BAR========================= */
.top-bar {
    background: #151515;
    border-bottom: 1px solid #2b2b2b;
    display: flex;
    justify-content: space-between;
    padding: 12px 80px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.top-left a {

    display: flex;
    align-items: center;
    gap: 8px;
    /* icon aur text ke beech ka gap */
    color: #bdbebd;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
}

.top-left a:hover {
    color: #ffffff;
}

.top-left i {
    color: var(--primary-color);
    font-size: 16px;
    /* margin-top:2px ; 
    margin-bottom:2px ;
    margin-left:2px ; */
    margin-right: -1px;

}



/* .topbar-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.contact-info{
    display:flex;
    align-items:center;
    gap:35px;      /* Pehle 10-15 hoga, ise badhao */
/* } */

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--primary-color);
}

.quote-btn {
    background: #2d5cff;
    color: #fff;
    padding: 4px 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .5s;
    border-radius: 25px;
}

.quote-btn:hover {
    background: white;
    color: black;
}

/*==================================
          Navigation bar            
===================================*/

.navbar {
    height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    background: #0d0d0d;
}

.logo {
    width: 220px;
}

/*================================
             Menu
================================*/

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-links a {
    display: inline-block;
    color: #d5d5d5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
    position: relative
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #2d5cff;
    transition: width .35s ease;
}

.nav-links a:hover {
    color: #2d5cff;
    transform: scale(1.1)
}

.nav-links a:hover:after {
    width: 100%;

}

/*===================================
           BUTTONS
===================================*/
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;




}

.nav-buttons a {

    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.enquiry-btn {
    border: 2px solid #2d5cff;
    color: #2d5cff;
}

.enquiry-btn:hover {

    background: #2d5cff;
    transform: scale(1.1);
    color: #fff;

}

.call-btn {

    background: #22c55e;

    color: #fff;

}

.call-btn:hover {

    background: #045723;
    transform: scale(1.1);

}

.whatsapp-btn {

    background: #2d5cff;

    color: #fff;

}

.whatsapp-btn:hover {

    background: #0a2fa9;
    transform: scale(1.1);

}

/*==================================================
            SERVICE HERO
==================================================*/
.service-hero {
    padding: 70px 0;
    background: #05070d;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: "";

    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(65, 105, 255, .12), transparent 35%),
        radial-gradient(circle at 90% 90%, rgba(65, 105, 255, .08), transparent 40%);
    z-index: 0;
}

.service-hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    margin: auto;
    max-width: 92%;
}

/*=========================
      LEFT SIDE
==========================*/
.service-content {
    flex: 0 0 48%;
    max-width: 560px;
}

.service-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.service-content h1 {
    font-size: 48px;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 25px;
}

.service-content h1 span {
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 35px;
    max-width: 580px;
}

/*=========================
      FEATURES
==========================*/
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.service-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

.service-features i {
    color: #2ecc71;
    font-size: 18px;
}

/*=========================
      BUTTONS
==========================*/
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

/* Primary Button */
.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Secondary Button */
.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: white;
    color: black;
    border-color: white;
    transform: translateY(-5px);
}

/*=========================
      RATING
==========================*/
.service-rating {
    color: #FFD700;
    font-size: 18px;
}

.service-rating span {
    color: var(--text-light);
    margin-left: 10px;
    font-size: 15px;
}

/*=========================
      RIGHT SIDE
==========================*/
.service-image::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(65, 105, 255, .28);
    border-radius: 50%;
    filter: blur(110px);
    z-index: 0;
    animation: glowMove 6s ease-in-out infinite;
}

@keyframes glowMove {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .6;
    }
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .30),
            transparent 45%);
    pointer-events: none;
    z-index: 3;
}

.service-image {
    flex: 0 0 48%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image img {
    width: 100%;
    max-width: 808px;
    height: 421px;
    border-radius: 28px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .45),
        0 0 40px rgba(65, 105, 255, .25);
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, .08);
    animation: imageFloat 8s ease-in-out infinite;
}

@keyframes imageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/*=========================
     FLOATING BOX
==========================*/
.floating-box {
    position: absolute;
    background: #161616;
    padding: 15px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    animation: floatBox 5s ease-in-out infinite;
    z-index: 10;
}

.floating-box h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 5px;
}

.floating-box p {
    color: var(--text-light);
    font-size: 13px;
}

/*=========================
      POSITION
==========================*/
.one {
    /* animation:floatOne 4s ease-in-out infinite; */
    animation: imageFloat 8s ease-in-out infinite;
    top: 41px;
    left: -66px;
}

.two {
    /* animation:floatTwo 5s ease-in-out infinite; */
    animation: imageFloat 8s ease-in-out infinite;
    bottom: 42px;
    right: -64px;
}

.three {
    /* animation:floatThree 4.5s ease-in-out infinite; */
    animation: imageFloat 8s ease-in-out infinite;
    top: 11%;
    right: -64px;
}

/*=========================
      ANIMATION
==========================*/
@keyframes floatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}

@keyframes floatThree {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 12px));
    }
}
/*=========================================
        Mobile Responsive
=========================================*/

@media (max-width: 992px) {

    .service-hero {
        padding: 60px 0;
    }

    .service-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .service-content {
        flex: 1;
        max-width: 100%;
    }

    .service-content h1 {
        font-size: 38px;
    }

    .service-content p {
        font-size: 15px;
    }

    .service-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .service-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-rating {
        justify-content: center;
    }

    /* Phone/Tablet par image hide */
    .service-image {
        display: none !important;
    }
}

@media (max-width:768px){

    .service-hero{
        padding:50px 0;
    }

    .service-content h1{
        font-size:30px;
    }

    .service-content p{
        font-size:14px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .service-buttons{
        flex-direction:column;
    }

    .service-features div{
        font-size:14px;
    }

}

@media (max-width:480px){

    .service-content h1{
        font-size:24px;
        line-height:1.3;
    }

    .service-content p{
        font-size:14px;
    }

    .service-badge{
        font-size:11px;
        padding:7px 14px;
    }

}
/*==================================================
        OUR NETWORK SERVICES
==================================================*/

.network-services .container {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    
    
}

.network-services {
    padding: 90px 0;
    /* background:var(--dark-bg); */
    background: #05070d;
    position: relative;
    overflow: hidden;
}

/* Background Glow */

/*.network-services::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 500px;*/
/*    height: 500px;*/
/*    background: rgba(65, 105, 255, .08);*/
/*    filter: blur(130px);*/
/*    top: -180px;*/
/*    left: -180px;*/
/*}*/

/*.network-services::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 450px;*/
/*    height: 450px;*/
/*    background: rgba(65, 105, 255, .05);*/
/*    filter: blur(120px);*/
/*    right: -180px;*/
/*    bottom: -150px;*/
/*}*/

/*=========================
      SECTION TITLE
==========================*/

.section-title {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(65, 105, 255, .12);
    color: var(--primary-color);
    border: 1px solid rgba(65, 105, 255, .35);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 45px;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
}

/*=========================
      GRID
==========================*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 380px));
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}

/*=========================
      CARD
==========================*/
.service-card {
    background: var(--service-card-bg);
    border: 1px solid var(--service-card-border);
    border-radius: var(--service-card-radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 310px;
    display: flex;
    flex-direction: column;
}

/* Top Line */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

/*=========================
        ICON
==========================*/
.service-icon {
    width: 62px;
    height: 62px;
    border-radius: var(--service-icon-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(65, 105, 255, .10);
    border: 1px solid rgba(65, 105, 255, .25);
    margin-bottom: 18px;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

/*=========================
        TITLE
==========================*/
.service-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.4;
}

/*=========================
      DESCRIPTION
==========================*/
.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/*=========================
        LINK
==========================*/
.service-card a {
    display: inline-flex;
    font-size: 14px;
    align-items: center;
    margin-top: auto;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-card a i {
    font-size: 13px;
}


.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(65, 105, 255, .35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    border-color: transparent;
}

.service-card:hover .service-icon i {
    color: #fff;
    /* transform:rotate(-8deg) scale(1.1); */
}

.service-card:hover a {
    gap: 16px;
}

/*=========================================
        ICON ANIMATION
=========================================*/

.service-icon {
    transition: .4s ease;
}

.service-icon i {
    transition: .4s ease;
}

/*=========================================
        CTA SECTION
=========================================*/
.service-cta {
    margin-top: 90px;
    padding: 60px;
    text-align: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(65, 105, 255, .12),
            rgba(65, 105, 255, .04));
    border: 1px solid rgba(65, 105, 255, .18);
}

/* Blue Glow */
.service-cta::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(65, 105, 255, .18);
    filter: blur(120px);
    top: -120px;
    left: -100px;
}

.service-cta::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(65, 105, 255, .12);
    filter: blur(120px);
    bottom: -150px;
    right: -80px;
}

/*=========================================
        CTA CONTENT
=========================================*/

.service-cta>* {
    position: relative;
    z-index: 2;
}

.service-cta h3 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 18px;
}

.service-cta p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 35px;
}


/*=========================================
        CTA BUTTON
=========================================*/

.btn-primary_2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: 50px;
    background: var(--primary-gradient);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(65, 105, 255, .30);
}

.btn-primary_2:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(65, 105, 255, .45);
}

.inf_cta {
    color: #5b7cff;
}

/*=========================================
        NETWORK SERVICES RESPONSIVE
=========================================*/

@media (max-width:992px){

    .network-services{
        padding:70px 0;
    }

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:38px;
    }

    .section-title p{
        font-size:15px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .service-card{
        min-height:auto;
        padding:24px;
    }

    .service-cta{
        padding:45px 30px;
        margin-top:60px;
    }

    .service-cta h3{
        font-size:30px;
    }
}

/*=========================================
        MOBILE
=========================================*/

@media (max-width:768px){

    .network-services{
        padding:55px 0;
    }

    .network-services .container{
        width:92%;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:14px;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:18px;
        margin-top:35px;
    }

    .service-card{
        padding:22px;
        border-radius:18px;
    }

    .service-icon{
        width:55px;
        height:55px;
    }

    .service-icon i{
        font-size:22px;
    }

    .service-card h3{
        font-size:20px;
    }

    .service-card p{
        font-size:14px;
        margin-bottom:22px;
    }

    .service-cta{
        padding:35px 20px;
        border-radius:20px;
        margin-top:45px;
    }

    .service-cta h3{
        font-size:24px;
    }

    .service-cta p{
        font-size:14px;
    }

    .btn-primary_2{
        width:100%;
    }
}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width:480px){

    .section-title h2{
        font-size:24px;
        line-height:1.3;
    }

    .section-badge{
        font-size:11px;
        padding:8px 16px;
    }

    .service-card{
        padding:20px;
    }

    .service-card h3{
        font-size:18px;
    }

    .service-card p{
        font-size:13px;
    }

    .service-cta h3{
        font-size:21px;
    }

}


/*==================================================
        INDUSTRIES WE SERVE
==================================================*/

.industries {
    padding: 90px 0;
    background: #05070d;
    position: relative;
    overflow: hidden;
    /* width: 90%;
    max-width: 1400px;
    margin: auto; */
}

.industries .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/*=========================
      BACKGROUND GLOW
==========================*/

/*.industries::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 450px;*/
/*    height: 450px;*/
/*    background: rgba(65, 105, 255, .08);*/
/*    filter: blur(140px);*/
/*    top: -180px;*/
/*    left: -180px;*/
/*}*/

/*.industries::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 420px;*/
/*    height: 420px;*/
/*    background: rgba(65, 105, 255, .06);*/
/*    filter: blur(130px);*/
/*    right: -180px;*/
/*    bottom: -180px;*/
/*}*/

/*=========================
        GRID
==========================*/

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;

}

/*=========================
        CARD
==========================*/
.industry-card {
    background: #0b1020;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Top Gradient Line */
.industry-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

/*=========================
        ICON
==========================*/
.industry-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: rgba(65, 105, 255, .10);
    border: 1px solid rgba(65, 105, 255, .25);
    transition: .4s;
}

.industry-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: .4s;
}

/*=========================
        TITLE
==========================*/
.industry-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 14px;
}

/*=========================
      DESCRIPTION
==========================*/
.industry-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/*=========================
      HOVER
==========================*/
.industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(65, 105, 255, .45);
    box-shadow: 0 20px 50px rgba(65, 105, 255, .18);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover .industry-icon {
    background: var(--primary-gradient);
    /* transform:rotate(-8deg) scale(1.08); */
}

.industry-card:hover .industry-icon i {

    color: #fff;
}

/*=========================
      BOTTOM CTA
==========================*/
.industry-bottom {
    margin-top: 70px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.industry-bottom p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}
/*=========================================
        INDUSTRIES RESPONSIVE
=========================================*/

@media (max-width:992px){

    .industries{
        padding:70px 0;
    }

    .industry-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .industry-card{
        padding:25px 20px;
    }

    .industry-icon{
        width:65px;
        height:65px;
    }

    .industry-icon i{
        font-size:28px;
    }

    .industry-card h3{
        font-size:20px;
    }

    .industry-card p{
        font-size:14px;
    }

    .industry-bottom{
        margin-top:55px;
    }

    .industry-bottom p{
        font-size:15px;
    }

}

/*=========================================
        MOBILE
=========================================*/

@media (max-width:768px){

    .industries{
        padding:55px 0;
    }

    .industries .container{
        width:92%;
    }

    .industry-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .industry-card{
        padding:22px 18px;
        border-radius:18px;
    }

    .industry-icon{
        width:58px;
        height:58px;
        margin-bottom:18px;
    }

    .industry-icon i{
        font-size:24px;
    }

    .industry-card h3{
        font-size:19px;
    }

    .industry-card p{
        font-size:14px;
        line-height:1.7;
    }

    .industry-bottom{
        margin-top:40px;
    }

    .industry-bottom p{
        font-size:14px;
    }

    .btn-primary_2{
        width:100%;
    }

}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width:480px){

    .industry-card{
        padding:20px 16px;
    }

    .industry-icon{
        width:52px;
        height:52px;
    }

    .industry-icon i{
        font-size:22px;
    }

    .industry-card h3{
        font-size:18px;
    }

    .industry-card p{
        font-size:13px;
    }

    .industry-bottom p{
        font-size:13px;
    }

}

/*==================================================
                    FAQ SECTION
==================================================*/

.faq-section {
    padding: 90px 0;
    background: #05070d;
    position: relative;
    overflow: hidden;
}

/*=========================
      BACKGROUND GLOW
==========================*/

/*.faq-section::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 450px;*/
/*    height: 450px;*/
/*    background: rgba(65, 105, 255, .08);*/
/*    filter: blur(140px);*/
/*    top: -180px;*/
/*    left: -180px;*/
/*}*/

/*.faq-section::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 420px;*/
/*    height: 420px;*/
/*    background: rgba(65, 105, 255, .06);*/
/*    filter: blur(130px);*/
/*    right: -180px;*/
/*    bottom: -180px;*/
/*}*/

/*=========================
      WRAPPER
==========================*/

.faq-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    z-index: 2;
}

/*=========================
      FAQ ITEM
==========================*/

.faq-item {
    background: #0b1020;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(65, 105, 255, .40);
    box-shadow: 0 18px 40px rgba(65, 105, 255, .15);
}

/*=========================
      QUESTION
==========================*/

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 28px;

    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 18px;
    transition: .35s;
}

/*=========================
      ANSWER
==========================*/

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/*=========================
      ACTIVE
==========================*/

.faq-item.active {
    border-color: rgba(65, 105, 255, .45);
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/*=========================================
        FAQ RESPONSIVE
=========================================*/

@media (max-width:992px){

    .faq-section{
        padding:70px 0;
    }

    .faq-wrapper{
        max-width:100%;
        margin-top:45px;
    }

    .faq-question{
        padding:20px 24px;
        font-size:17px;
    }

    .faq-answer p{
        padding:0 24px 20px;
        font-size:14px;
    }

}

/*=========================================
        MOBILE
=========================================*/

@media (max-width:768px){

    .faq-section{
        padding:55px 0;
    }

    .faq-wrapper{
        margin-top:35px;
    }

    .faq-item{
        border-radius:16px;
        margin-bottom:15px;
    }

    .faq-question{
        padding:18px 20px;
        font-size:16px;
        line-height:1.5;
    }

    .faq-question span{
        padding-right:12px;
    }

    .faq-question i{
        font-size:16px;
    }

    .faq-answer p{
        padding:0 20px 18px;
        font-size:14px;
        line-height:1.7;
    }

}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width:480px){

    .faq-question{
        padding:16px;
        font-size:15px;
    }

    .faq-question i{
        font-size:15px;
    }

    .faq-answer p{
        padding:0 16px 16px;
        font-size:13px;
    }

}

/*==================================================
                FINAL CTA SECTION
==================================================*/

.final-cta {
    padding: 90px 0;
    background: #05070d;
    position: relative;
    overflow: hidden;
}

/*=========================
      BACKGROUND GLOW
==========================*/

/*.final-cta::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 500px;*/
/*    height: 500px;*/
/*    background: rgba(65, 105, 255, .10);*/
/*    filter: blur(150px);*/
/*    top: -180px;*/
/*    left: -180px;*/
/*}*/

/*.final-cta::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 450px;*/
/*    height: 450px;*/
/*    background: rgba(65, 105, 255, .08);*/
/*    filter: blur(140px);*/
/*    bottom: -180px;*/
/*    right: -180px;*/
/*}*/

/*=========================
        CTA CARD
==========================*/
.cta-card {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: auto;
    padding: 70px 60px;
    text-align: center;
    border-radius: 30px;
    background: rgba(13, 18, 40, .88);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
    overflow: hidden;
}

/* Top Gradient Line */
.cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /* background:var(--primary-gradient); */
}

/*=========================
        HEADING
==========================*/
.cta-card h2 {
    color: var(--white);
    font-size: 46px;
    line-height: 1.25;
    margin: 25px 0 18px;
}

.cta-card h2 span {
    color: var(--primary-color);
}

/*=========================
      DESCRIPTION
==========================*/
.cta-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
    max-width: 720px;
    margin: 0 auto 40px;
}

/*=========================
      FEATURES
==========================*/
.cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 45px;
}

.cta-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(65, 105, 255, .08);
    border: 1px solid rgba(65, 105, 255, .20);
    padding: 12px 22px;
    border-radius: 50px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.cta-features i {
    color: #2ecc71;
    font-size: 16px;
}

/*=========================
        BUTTONS
==========================*/
.cta-buttons_3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 45px;
}

.btn-primary_3,
.btn-secondary_3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary_3 {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary_3:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary_3 {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary_3:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/*=========================
      CONTACT INFO
==========================*/
.cta-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 16px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(65, 105, 255, .12);
    border: 1px solid rgba(65, 105, 255, .25);
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

/*=========================================
        FINAL CTA RESPONSIVE
=========================================*/

@media (max-width:992px){

    .final-cta{
        padding:70px 0;
    }

    .cta-card{
        padding:55px 35px;
        border-radius:24px;
    }

    .cta-card h2{
        font-size:38px;
    }

    .cta-card p{
        font-size:15px;
    }

    .cta-features{
        gap:15px;
    }

    .cta-contact{
        gap:25px;
    }

}

/*=========================================
        MOBILE
=========================================*/

@media (max-width:768px){

    .final-cta{
        padding:55px 0;
    }

    .cta-card{
        width:92%;
        padding:40px 22px;
        border-radius:20px;
    }

    .cta-card h2{
        font-size:28px;
        line-height:1.35;
        margin:18px 0 15px;
    }

    .cta-card p{
        font-size:14px;
        line-height:1.7;
        margin-bottom:30px;
    }

    .cta-features{
        flex-direction:column;
        gap:12px;
        margin-bottom:30px;
    }

    .cta-features div{
        width:100%;
        justify-content:center;
        font-size:14px;
        padding:12px 16px;
    }

    .cta-buttons_3{
        flex-direction:column;
        gap:15px;
        margin-bottom:30px;
    }

    .btn-primary_3,
    .btn-secondary_3{
        width:100%;
    }

    .cta-contact{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .contact-item{
        font-size:14px;
    }

    .contact-item i{
        width:40px;
        height:40px;
        font-size:16px;
    }

}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width:480px){

    .cta-card{
        padding:30px 18px;
    }

    .cta-card h2{
        font-size:23px;
    }

    .cta-card p{
        font-size:13px;
    }

    .cta-features div{
        font-size:13px;
        padding:10px 14px;
    }

    .contact-item{
        font-size:13px;
    }

    .contact-item i{
        width:36px;
        height:36px;
        font-size:15px;
    }
    .cta-features div{
    background:transparent;
    border:none;
    padding:0;
    border-radius:0;
    justify-content:center;
    font-size:15px;
    color:#fff;
    box-shadow:none;
}

.cta-features i{
    color:#2ecc71;
    font-size:16px;
}

}




/*=========================================
                FOOTER
=========================================*/
.footer {
    padding: 80px 13px 25px;
    background: #070707;
    position: relative;
    overflow: hidden;
}

/*=========================================
            FOOTER GRID
=========================================*/
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/*=========================================
            FOOTER LOGO
=========================================*/
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 180px;
}

/*=========================================
            ABOUT CONTENT
=========================================*/
.footer-about p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 22px;
}

/*=========================================
            SOCIAL ICONS
=========================================*/
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #1b1b1b;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
}

/*=========================================
            FOOTER HEADING
=========================================*/
.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

/*=========================================
            FOOTER LIST
=========================================*/
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/*=========================================
            NEWSLETTER FORM
=========================================*/
.footer-form {
    display: flex;
    margin-bottom: 25px;
}

/*=========================================
            NEWSLETTER INPUT
=========================================*/
.footer-form input {
    flex: 1;
    border: none;
    font-size: 14px;
    outline: none;
    padding: 14px;
    background: #1b1b1b;
    color: var(--white);
    border-radius: 12px 0 0 12px;
}

/*=========================================
            NEWSLETTER BUTTON
=========================================*/
.footer-form button {
    width: 56px;
    border: none;
    cursor: pointer;
    color: var(--white);
    background: var(--primary-gradient);
    border-radius: 0 12px 12px 0;
    transition: var(--transition);
}

.footer-form button:hover {
    transform: scale(1.05);
}

/*=========================================
            CONTACT INFO
=========================================*/
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/*=========================================
            CONTACT ICON
=========================================*/
.contact-info i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 4px;
}

/*=========================================
            FOOTER BOTTOM
=========================================*/
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}

/*=========================================
            COPYRIGHT
=========================================*/
.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}