/*
Theme Name: xact-theme
*/


/* =====================================
MAX MEGA MENU PREMIUM CONTINUOUS TOGGLE
===================================== */

/* ALIGN TOGGLE */
.mega-toggle-animated {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: .3s;
}

/* MENU TEXT ON RIGHT */
.mega-toggle-animated::after {
    content: "Menu";
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #ffffff;
    transition: .3s;
}

.mega-toggle-animated:hover::after {
    letter-spacing: 2px;
}


/* HAMBURGER SIZE */
.mega-toggle-animated-box {
    position: relative;
    width: 36px;
    height: 24px;
}


/* CREATE BARS */
.mega-toggle-animated-inner,
.mega-toggle-animated-inner::before,
.mega-toggle-animated-inner::after {
    position: absolute;
    right: 0;
    height: 2px;
    background: #000;
    content: "";
}


/* TOP BAR */
.mega-toggle-animated-inner::before {
    top: -9px;
    width: 100%;
    animation: barTop 2s infinite ease-in-out;
}

/* MIDDLE BAR */
.mega-toggle-animated-inner {
    top: 0;
    width: 70%;
    animation: barMid 2s infinite ease-in-out;
}

/* BOTTOM BAR */
.mega-toggle-animated-inner::after {
    top: 9px;
    width: 40%;
    animation: barBot 2s infinite ease-in-out;
}


/* CONTINUOUS ANIMATION */
@keyframes barTop {
    0% {
        width: 100%;
    }

    50% {
        width: 60%;
    }

    100% {
        width: 100%;
    }
}

@keyframes barMid {
    0% {
        width: 70%;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 70%;
    }
}

@keyframes barBot {
    0% {
        width: 40%;
    }

    50% {
        width: 75%;
    }

    100% {
        width: 40%;
    }
}


/* OPEN STATE → MORPH TO CROSS */
.mega-menu-open .mega-toggle-animated-inner {
    background: transparent;
    animation: none;
}

.mega-menu-open .mega-toggle-animated-inner::before {
    animation: none;
    transform: rotate(45deg);
    top: 0;
    width: 100%;
}

.mega-menu-open .mega-toggle-animated-inner::after {
    animation: none;
    transform: rotate(-45deg);
    top: 0;
    width: 100%;
}





h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

p,
a {
    font-family: "Roboto", sans-serif;
    color: #ffffffd2;
    font-size: 16px;
    font-weight: 300;
}

span {
    font-family: "Roboto", sans-serif;
}

a:hover {
    color: #00d4ff;
    text-decoration: none !important;
}

body {
    background: #000 !important;
}

.custom-container {
    padding: 60px 4% 0;
}

.error-404 img {
    width: 100%;
    height: 485px;
    object-fit: contain;
    margin: 106px 0;
}

/* width */
::-webkit-scrollbar {
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #1D1D1D;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #00e0ff;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html {
    scroll-behavior: smooth;
}

/* top header ends */
/* header start */
.header-logo img {
    width: 88px;
    object-fit: cover;
    height: auto;
    margin-right: auto;
    display: block;
}


.header-wrapper {
    width: 100%;
    background: rgb(0, 0, 0);
    text-align: center;
    position: fixed;
    top: 0px;
    z-index: 9;
    padding: 8px 0;
    box-shadow: 0px 4px 4px 0 #00000021;
}

.f-nav .header-wrapper {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    padding-top: 0px;
    margin-top: 0px;
    transition: .3s ease;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 78px;
}

.f-nav .menu-logoheader {
    padding-top: 0;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu li {
    list-style: none;
}

.menu li a {
    color: #fff !important;
}

/* header ends */




/* banner starts */


.home-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO BACKGROUND */

.home-banner-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-banner-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 40%,
            rgba(0, 0, 0, 0.3) 100%);
}

/* CAPTION WRAP */

.home-caption-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* CONTAINER */

.home-caption-wrap .container {
    margin: auto;
    width: 100%;
}

/* MAIN CAPTION LAYOUT */

.banner-caption-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

/* LEFT SIDE */

.banner-left {
    width: 60%;
}

.banner-left h1 {
    font-size: 70px;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

.banner-left h1 span {
    display: block;
    font-weight: 700;
    margin-top: 10px;
}

/* RIGHT SIDE */

.banner-right {
    width: 32%;
    color: #fff;
    position: absolute;
    right: 137px;
    bottom: 28px;
}

/* PARAGRAPH */

.banner-para {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: .9;
}

/* BUTTON */

.readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* BUTTON ARROW */

.readmore-btn-wrapper {
    position: relative;
    width: 18px;
    height: 18px;
}

.readmore-btn i {
    transition: 0.3s;
}

/* DEFAULT ARROW */

.readmore-btn-default {
    position: absolute;
    left: 0;
}

/* HOVER ARROW */

.readmore-btn-hover {
    position: absolute;
    left: -15px;
    opacity: 0;
}

/* HOVER EFFECT */

.readmore-btn:hover .readmore-btn-default {
    transform: translateX(12px);
    opacity: 0;
}

.readmore-btn:hover .readmore-btn-hover {
    transform: translateX(12px);
    opacity: 1;
}

.readmore-btn:hover {
    color: #00d4ff;
}

/* banner ends */

/* marquee starts */

.marquee-section {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding: 18px 0;
}

/* wrapper */

.marquee-wrap {
    overflow: hidden;
    width: 100%;
}

/* track */

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 30s linear infinite;
}

/* groups */

.marquee-group {
    display: flex;
}

/* items */

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    margin-right: 70px;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* dot */

.marquee-dot {
    width: 8px;
    height: 8px;
    background: #00e0ff;
    border-radius: 50%;
}

/* animation */

@keyframes marqueeMove {

    0% {
        transform: translateX(0);
    }

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

}

/* marquee ends */
/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about-wrapper {
    padding: 100px 0;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}


/* ============================= */
/* LEFT CONTENT */
/* ============================= */

.about-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content span {
    color: #7ab6ff;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 520px;
    color: #fff;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 24px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;

    color: #fff;
    text-decoration: none;

    font-size: 14px;

    transition: all .3s ease;
}

.about-btn:hover {
    background: #fff;
    color: #000;
}


/* ============================= */
/* COUNTER AREA */
/* ============================= */

.counter-area {
    position: relative;
    height: 380px;
}


/* ============================= */
/* BACKGROUND GLOW IMAGE */
/* ============================= */

.counter-bg {
    position: absolute;

    width: 420px;
    height: 420px;

    background: url(../xact-theme/assets/img/abtbg.webp)no-repeat center/cover;
    background-size: contain;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    opacity: 0.9;

    z-index: 1;
}


/* ============================= */
/* COUNTER BOX */
/* ============================= */

.counter-box {
    position: absolute;
    width: 180px;
    height: 150px;
    padding: 30px 20px;
    text-align: center;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow: 0 0 40px rgba(0, 150, 255, 0.25);

    z-index: 2;

    /* animation base */
    animation: floatWave 6s ease-in-out infinite;
}

/* counter positions */
.counter1 {
    top: 0;
    right: 40px;
    animation-duration: 6s;
}

.counter2 {
    bottom: 0;
    left: 40px;
    animation-duration: 7s;
    animation-direction: reverse;
}

.counter3 {
    bottom: 0;
    right: 40px;
    animation-duration: 8s;
}

/* smooth floating wave */
@keyframes floatWave {

    0% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-8px) translateX(4px);
    }

    50% {
        transform: translateY(-15px) translateX(0px);
    }

    75% {
        transform: translateY(-8px) translateX(-4px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}


/* Counter Numbers */

.counter-box h3 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Counter Text */

.counter-box p {
    font-size: 14px;
    opacity: 0.85;
    color: #fff;
}



/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1200px) {

    .about-content h2 {
        font-size: 36px;
    }

    .counter-box {
        width: 160px;
        height: 140px;
    }

    .counter-box h3 {
        font-size: 34px;
    }

}


/* Tablet */

@media (max-width: 991px) {

    .counter-area {

        height: auto;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 20px;

        margin-top: 50px;
    }

    .counter-bg {
        display: none;
    }

    .counter-box {
        position: relative;
        width: 60%;
    }
    .counter1{
        right:0
    }
    .counter2{
        left:105px;
    }

    .counter3 {
        grid-column: span 2;
        right: 0;
    }
    .inner-service-wrapper {
    padding: 18% 0 50px;
}

}
@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 85!important;
    }
}

/* Mobile */

@media (max-width: 600px) {

    .about-wrapper {
        padding: 80px 0;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
    }

    .counter-area {
        grid-template-columns: 1fr;
    }

    .counter3 {
        grid-column: auto;
    }

    .counter-box h3 {
        font-size: 30px;
    }

}

/* service section starts */
.service-card {
    background: #0b0b0b;
    border-radius: 30px;
    padding: 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    position: relative;
    height: 100%;
}

.services-section .col-12 {
    padding-right: 7px !important;
    padding-left: 7px !important;
    margin-bottom: 15px;
}

.services-section {
    background: url(../xact-theme/assets/img/servbg.png) no-repeat center/cover;
    padding: 50px 0;
    ;
}

.service-card:hover {
    transform: translateY(-6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121212;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 30px;
}

.service-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.service-text {
    color: #9a9a9a;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.service-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.services-section h6 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
}

.services-section h1 {
    text-align: center;
    color: #fff;
    font-size: 50px;
    margin-bottom: 40px;
}

.services-section h1 span {
    color: #00e0ff;
}

/* service section ends */

/* works starts */
.works-section {
    background: #000;
    padding: 80px 0;
    color: #fff;
}

.works-head-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.works-head span {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .6;
}

.works-head h2 {
    font-size: 70px;
    font-weight: 500;
    line-height: 1.1;
}

.works-head strong {
    color: #10c4d4;
    font-weight: 500;
}

.works-btn-wrap {
    padding-top: 40px;
}

.view-projects-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: .4s;
}

.view-projects-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.work-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #00e1ff67, #7a5cff73);
    padding: 1px;
    transition: .5s;
}

.work-media {
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
}

.work-media img,
.work-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.work-card:hover img,
.work-card:hover video {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
}

.work-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    font-size: 12px;
    margin-bottom: 10px;
}

.work-overlay h4 {
    font-size: 26px;
    margin-bottom: 5px;
}

.work-overlay p {
    opacity: .7;
    font-size: 14px;
    color: #fff;
}

@media(max-width:991px) {

    .works-head-wrap {
        flex-direction: column;
        gap: 20px;
    }

    .works-btn-wrap {
        padding-top: 0;
    }

    .works-head h2 {
        font-size: 42px;
    }

    .work-media {
        height: 300px;
    }

}

/* work section ends */

/* team section sarts */

.team-head {
    text-align: center;
    margin-bottom: 60px;
}

.team-head h5 {
    letter-spacing: 3px;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.team-head h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.team-head h2 span {
    color: #00e0ff;
}
.team-section {
    padding: 30px 0;
}

/* SLIDER */
.team-slider {
    padding: 20px 0;
}

/* CARD */
.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* IMAGE */
.team-img {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-strip span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    letter-spacing: 2px;
}

/* OVERLAY */
.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;

    background: linear-gradient(to top, #154147, transparent);
    color: #fff;
}

.team-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.team-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

/* SPACING BETWEEN SLIDES */
.swiper-slide {
    padding: 10px;
}
/* ARROWS */
.team-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s;
}

.team-arrow i {
    color: #333;
    font-size: 14px;
}

/* POSITION */
.team-prev {
    left: 0px;
}

.team-next {
    right: 0px;
}

/* HOVER */
.team-arrow:hover {
    background: #00cfff;
}

.team-arrow:hover i {
    color: #fff;
}
/* team section ends */

/* client section starts */
.client-section{
    padding: 30px 0;
}
.client-header {
    text-align: center;
    margin-bottom: 60px;
}

.client-header h5 {
    letter-spacing: 3px;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.client-header h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.client-header h2 span {
    color: #00e0ff;
}
.client-slider {
    overflow: hidden;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 10px;
    border: 1px solid #ffffff0a;
}

.client-item img {
    max-width: 160px;
    transition: 0.3s;
}

.client-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* client section ends */

/* testimonial section starts */
/* ================================
TESTIMONIAL SECTION
================================ */

.testimonial-section {
    background: #000;
    padding: 80px 0;
    color: #fff;
    position: relative;
}

/* HEADER */

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h5 {
    letter-spacing: 3px;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.testimonial-header h2 {
    font-size: 38px;
    font-weight: 600;
}

.testimonial-header h2 span {
    color: #00e0ff;
}

/* ================================
SLIDER CORE
================================ */

.testimonial-slider {
    overflow: hidden;
    /* VERY IMPORTANT prevents preview slides */
    width: 100%;
}

.testimonial-slide {
    padding: 0;
}

/* slick track alignment */
.slick-track {
    display: flex;
    align-items: center;
}


/* ================================
SLIDE ANIMATION STATES
================================ */

/* default slide */
.slick-slide {
    transform: scale(.82);
    opacity: .45;
    transition: .6s cubic-bezier(.17, .67, .32, 1.34);
    z-index: 1;
}

/* LEFT ACTIVE */
.slick-slide.slick-active:not(.slick-center) {
    transform: scale(.82) translateX(40px);
}

/* RIGHT ACTIVE */
.slick-slide.slick-center+.slick-active {
    transform: scale(.82) translateX(-40px);
}

/* CENTER SLIDE */
.slick-center {
    transform: scale(1);
    opacity: 1;
    z-index: 9;
}


/* ================================
CARD DESIGN
================================ */

.testimonial-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 24px;
    padding: 45px 40px;
    transition: .4s;
    height: 100%;
}

.slick-center .testimonial-card {
    border-color: #444;
    box-shadow: 0 25px 60px rgba(255, 255, 255, .08);
}


/* ================================
CONTENT
================================ */

.testimonial-content {
    margin-bottom: 30px;
    min-height: 130px;
}

.testimonial-content p {
    color: #e6e6e6b8;
    font-size: 15px;
    line-height: 1.7;
}


/* ================================
AUTHOR
================================ */

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details .name {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}


/* ================================
ARROWS
================================ */

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #333;
    z-index: 999;
    cursor: pointer;
    transition: .3s;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* LEFT */
.testimonial-slider .slick-prev {
    left: 8px;
}

/* RIGHT */
.testimonial-slider .slick-next {
    right: 8px;
}

/* ICON */
.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    font-size: 22px;
    color: #fff;
    opacity: 1;
}

/* HOVER */
.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-slider .slick-prev:hover:before,
.testimonial-slider .slick-next:hover:before {
    color: #000;
}

.testimonial-slider {
    overflow: hidden;
}

/* ================================
RESPONSIVE
================================ */

@media(max-width:991px) {

    .slick-slide {
        transform: scale(.9);
        opacity: .7;
    }

    .slick-slide.slick-active {
        transform: scale(1);
        opacity: 1;
    }

}

@media(max-width:767px) {

    .testimonial-header h2 {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

}

/* testimonial ends */

/* blog section starts */

.blog-section {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 80px 20px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    margin-bottom: 60px;
}

.blog-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    display: block;
}

.blog-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.blog-title span {
    color: #00e0ff;
}

.blog-description {
    font-size: 16px;
    color: #999;
    max-width: 500px;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.blog-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 30px;
}

.blog-category {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 25px 0;
    color: #ffffff;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    background: #1a1a1a;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.blog-read-more:hover {
    background: #2a2a2a;
}

.blog-read-more::after {
    content: '→';
    font-size: 16px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 36px;
    }
}

/* blog section ends */

/* contact section starts */
.contact-section {
    position: relative;
    color: #ffffff;
    padding: 100px 20px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Video Container */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Overlay to darken video and improve text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    /* Adjust opacity as needed */
    z-index: -1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-left {
    padding-right: 40px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cbedf5;
    margin-bottom: 20px;
    display: block;
}

.contact-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.contact-title .highlight {
    color: #00d4ff;
}

.contact-description {
    font-size: 16px;
    color: #cbedf5;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 500px;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.contact-info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.contact-info-content p {
    font-size: 14px;
    color: #cbedf5;
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.home-contact input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    height: 40px;
}

.home-contact textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    height: 150px;
}

.home-contact label {
    color: #ffffffba;
}

.home-contact .wpcf7-submit {
    background: #fff;
    width: 100%;
    text-align: center;
    color: #000;
    margin: auto;
    height: auto;
    padding: 12px;
    border: 1px solid #ffffff;
}

.home-contact .wpcf7-submit:hover {
    background: #ffffff03;
    color: #ffffff;
    border: 1px solid #ffffff;
    transition: .3s ease;
}





@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-left {
        padding-right: 0;
    }

    .contact-title {
        font-size: 42px;
    }

}

/* contact section ends */


/* footer starts */
.footer{
    padding: 40px 0 15px;
    border:1px solid #ffffff3b
}
.video-footer {
    position: relative;
    overflow: hidden;
    padding: 50px 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* VIDEO LAYER */
.footer-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.footer-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0000002f 10%, rgba(0, 0, 0, 0.116));
    z-index: 0;
}

/* CONTENT */
.footer-content {
    text-align: left;
}

.footer-logo {
    text-align: left;
}

.footer-logo p {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* MENUS */
.footermenu,
.servicemenu {
    text-align: left;
}

.footermenu h4,
.servicemenu h4 {
    margin-bottom: 15px;
}

.footermenu ul,
.servicemenu ul {
    padding: 0;
    list-style: none;
}

.footermenu li,
.servicemenu li {
    margin-bottom: 8px;
}
.footer-social{
    text-align: end;
}
.footer-social i{

    color: #049094;
    margin: 0 4px;
}
.copy-left {
    text-align: justify;
}
/* CONTACT */
.footercontact {
    text-align: left;
}

.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* CARD */
.footer-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

/* ICON */
.footer-icon {
    min-width: 35px;
    font-size: 16px;
    margin-top: 3px;
}

/* TEXT */
.footer-info {
    text-align: left;
}

.footer-info span {
    font-size: 12px;
    opacity: 0.6;
    display: block;
}

.footer-info p {
    margin: 0;
    font-size: 14px;
}
.copyright {
    text-align: center;
}
/* footer ends */


/* inner banner starts */
.breadcrumb {
    background: none !important;
}

.yoast-breadcrumb {
    font-size: 14px !important;
    color: #919191 !important;
}

.yoast-breadcrumb a {
    color: #a19f9f !important;
    text-decoration: none;
    font-size: 15px !important;
}

.yoast-breadcrumb a:hover {
    color: #00d4ff;
}

.inner-banner {
    min-height: 450px;
    display: flex;
    align-items: center;
    background: #030306;
    height: 100%;
    padding: 40px 0 0;
}

/* FLEX WRAP */

.inner-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* LEFT */

.inner-banner-left {
    max-width: 520px;
}

.inner-title {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 23px;
    color: #ffffffcf;
    letter-spacing: 2px;
}

.inner-desc p {
    color: #ffffffd2;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 14px;
}

/* breadcrumb */

.yoast-breadcrumb {
    font-size: 14px;
    color: #5b6576;
}

.yoast-breadcrumb a {
    color: #8d97a8;
    text-decoration: none;
}

/* RIGHT */

.inner-banner-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* VIDEO */

.video-circle {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
}


/* MOBILE */

@media(max-width:992px) {

    .inner-banner-wrap {
        flex-direction: column;
        text-align: center;
    }

    .video-circle {
        width: 280px;
        height: 280px;
    }

    .inner-title {
        font-size: 46px;
        letter-spacing: 8px;
    }

}

/* inner banner ends */

/* inner about us page starts */
.inner-about-page{
    padding: 8% 0 50px;
}

.who-we-are-wrapper {
    padding: 100px 0 60px;
}

.inner-abt-img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    padding: 10px;
    -webkit-box-reflect: below -1px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(67%, transparent), to(rgba(250, 250, 250, 21%)));
}

.inner-abt-content h2 {
    font-size: 42px;
    color: #fff;
    font-style: italic;
}

.inner-abt-content ul {
    list-style: none;
    padding-left: 0;
}

.inner-abt-content li {
    color: #ffffffd2;
    padding-bottom: 14px;
    position: relative;
    padding-left: 32px;
}

/* bullet base */
.inner-abt-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

/* moving light sweep */
.inner-abt-content li::after {
    content: "";
    position: absolute;
    left: -6px;
    top: 10px;
    width: 6px;
    height: 14px;
    background: linear-gradient(90deg, transparent, #00cfff, transparent);
    animation: sweepMove 2.2s linear infinite;
}

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

    30% {
        opacity: 1;
    }

    100% {
        transform: translateX(18px);
        opacity: 0;
    }
}

.inner-abtus-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    padding: 10px;
    -webkit-box-reflect: below -1px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(67%, transparent), to(rgba(250, 250, 250, 21%)));
}

.inner-abtus h2 {
    font-size: 42px;
    color: #fff;
    font-style: italic;
}

.about-us-wrapper {
    padding-bottom: 50px;
}


/* about page ends */

/* service page starts */

.inner-service-wrapper {
    padding: 12% 0 50px;
}

.inner-service-wrapper .col-12 {
    padding-left: 7px !important;
    padding-right: 7px !important;
    margin-bottom: 10px;
}
.inner-service-card{
    background: #ffffff0d !important;
}
.inner-service-icon{
    background: #ffffff21 !important;
}
.inner-serv-btn:hover {
    box-shadow: 0 0 2px rgb(255 255 255 / 26%);
}
.inner-abtus {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

/* service ends */

/* service detail starts */

.service-detail {
    padding: 100px 0;
}


.service-detail {
    text-align: justify;
}

.service-contact input {
    background: none;
    width: 100%;
    padding: 10px;
    height: 40px;
    border: 1px solid #ffffff1f;
    border-radius: 15px;
    background: #ffffff09;
    color: #fff;
}

.service-contact textarea {
    background: none;
    width: 100%;
    padding: 10px;
    height: 150px;
    border: 1px solid #ffffff1f;
    border-radius: 15px;
    background: #ffffff09;
}

.service-contact {
    background: #22222207;
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff15;
    border-radius: 18px;
    padding: 25px 0;
}

.service-sidebar {
    margin-left: 20px;
}

/* service ends */

/* work inner starts */

.works-inner-wrapper{
    padding: 13% 0 60px;
}



/* contact us page starts */

.inner-hero {
    position: relative;
    padding: 170px 0 140px;
    background: #05090c;
    overflow: hidden;
    color: white;
}

/* BIG BACKGROUND TEXT */
.hero-bg-text {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: 700;
    letter-spacing: 12px;
    color: rgba(255, 255, 255, .03);
    pointer-events: none;
}

/* MESH GLOW */
.hero-mesh-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #00ffd0, #0088ff00 60%);
    filter: blur(180px);
    top: -200px;
    left: 0;
    right: 0;
    margin: auto;
    opacity: .25;
    animation: meshMove 12s infinite alternate;
}

@keyframes meshMove {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(80px, 40px)
    }
}

/* NOISE */
.hero-noise {
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/noise.png");
    opacity: .12;
    mix-blend-mode: overlay;
}

/* TECH LINES */
.hero-tech-lines {
    position: absolute;
    width: 220px;
    height: 120px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.hero-line-left {
    top: 80px;
    left: 40px;
    border-radius: 20px 0 0 0;
}

.hero-line-right {
    bottom: 120px;
    right: 60px;
    transform: rotate(180deg);
    border-radius: 20px 0 0 0;
}

/* LEFT CONTENT */
.hero-pill {
    background: rgba(255, 255, 255, .08);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 14px;
}

.hero-content p {
    color: #ffffff9a;
    max-width: 400px;
    margin-bottom: 40px;
}

/* CARDS */
.hero-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    text-decoration: none;
    color: white;
    transition: .4s;
}

.hero-card:hover {
    transform: translateY(-6px);
    border-color: #00ffd0;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
}

.card-info span {
    font-size: 13px;
    color: #ffffff80;
}

.card-info p {
    margin: 0;
}

.card-arrow {
    margin-left: auto;
    opacity: .6;
}

/* FORM GLASS */
.hero-form {
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
    margin-top: 140px;
}

/* CF7 */
.hero-form input,
.hero-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 15px;
    border-radius: 12px;
    color: white;
    margin-bottom: 14px;
}

.hero-form input[type=submit] {
    background: white;
    color: black;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    margin-bottom: 0;
    height: auto;
    padding: 5px;
}


.hero-form input[type=submit]:hover {
    background: #00ffd0;
}

.sbmtbtn {
    height: 40px;
}

.hero-content {
    padding-top: 10%;
}

/* RESPONSIVE */
@media(max-width:991px) {


    .inner-hero {
        padding: 120px 0 0;
    }

    .hero-form {
       padding: 40px 0;
        width: 100%;
        margin: auto;
        display: block;
    }

    .service-description h1{
        text-align: left;
    }
    .hero-line-left {
    left: 14px;
}

.hero-line-right,
 .hero-line-left{
    display: none;
}

}


/* blog page starts */

.inner-blog-wrapper{
    padding: 10% 0 50px;
}
.blog-main-img img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}
.blog-detail-wrapper {
    background: #171818;
    padding: 20px;
    border-radius: 0 0 15px 15px;
}
.blog-detail-wrapper h5{
    font-size: 18px;
    color: #fff;
}
.blog-read-more:hover{
    background: #fff;
    color: #000;
}
.blog-inner-img img{
    width: 98%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 40px;
}
.inner-blog-detail{
    padding: 10% 0 50px;
}
.inner-blog-detail h6{
    color: #ffffff8c;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 300;
}
.sidebar-post-item h4 {
    font-size: 15px;
    font-weight: 300;
    color: #fefefecf;
    line-height: 24px;
}
.sidebar-post-item a{
    color: #fff;
}
.sidebar-post-item a:hover{
    color: #00cfff;
}
.sidebar-post-item {
    background: #ffffff14;
    padding: 12px;
    border-radius: 15px;
    margin-bottom: 12px;
}

/* client page starts */
.client-inner-item img{
    background: #ffffff1f;
    border-radius: 10px;
    border: 1px solid #ffffff1f;
}
.client-inner{
    padding: 15% 0 50px;
}
.client-inner .col-6{
    margin-bottom: 20px;
}


@media only screen and (max-width: 767px){
    .home-banner{
        height: 90vh;
    }
    .banner-left {
        width: 100%;
    }
    .banner-left h1 {
        font-size: 45px;
    }
    .banner-right {
        width: 82%;
        text-align: end;
        right: 15px;
    }
    .banner-para {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 10px;
        opacity: .9;
    }
    .services-section h1 {
        font-size: 30px;
    }
    .works-section {
        padding: 50px 0;
    }
    .work-card {
        margin-bottom: 25px;
    }
    .client-header h2 {
        font-size: 33px;
    }
    .client-header h2 {
        font-size: 30px;
    }
    .slick-slide.slick-active:not(.slick-center) {
    transform: unset;
    }
    .testimonial-slider .slick-prev {
        left: 0;
    }
    .testimonial-slider .slick-next {
        right: 0;
    }
    .testimonial-slider .slick-prev, .testimonial-slider .slick-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #11111100;
        border: 1px solid #333;
        z-index: 999;
        cursor: pointer;
        transition: .3s;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .service-card {
    width: 90%;
    margin: auto;
}

        .hero-bg-text {
        font-size: 60px;
        top: 82px;
        font-weight: 900;
        letter-spacing: 3px;
    }
    .inner-abt-img img {
    height: 380px;

}
.who-we-are-wrapper {
    padding: 60px 0 60px;
}
.works-inner-wrapper {
    padding: 75px 0px 60px;
}
.inner-service-wrapper {
    padding: 75px 0 50px;
}
.inner-blog-wrapper {
    padding: 75px 0 50px;
}
.inner-blog-detail {
    padding: 75px 0 50px;
}
.blog-inner-img img {
    width: 100%;
    height: 295px;

}
.footer-icon .fa-phone {
    rotate: 102deg;
}
.footer-social, .copy-left{
    text-align: center;
}
.contact-page .hero-content h2 {
    font-size: 30px;
    margin-bottom: 14px;
    margin-top: 51px;
}
}




@media (max-width: 991px) {
    .container, .container-md, .container-sm {
        max-width: 850px !important;
    }
}
@media only screen and (min-width:767px) and (max-width:991px){

        .hero-bg-text {
        font-size: 90px;

    }
}
@media (max-width: 767px) {
    .container, .container-sm {
       padding-left: 25px !important;
       padding-right: 25px !important;
    }
     .container, .container-md, .container-sm {
        max-width: 1020px !important;
    }
}

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary{
    position: fixed;
    overflow: hidden;
}

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary canvas.menu-particle-canvas{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary > *{
    position: relative;
    z-index: 2;
}



/*
 reflection
 -webkit-box-reflect: below -1px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(67%, transparent), to(rgba(250, 250, 250, 0.5))); */